summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAllan McRae <allan@archlinux.org>2009-10-11 13:16:09 +0200
committerDan McGee <dan@archlinux.org>2010-05-18 18:35:55 +0200
commitc1fc00508e337f20eb94e95978e193d23cfeaf10 (patch)
treec24c39477d12a71fc4c06f4e7a24f8ab1915c1a2
parent0e7ba6bddd4b6c67cb6344ee3af4bacb00cda76b (diff)
downloadpacman-c1fc00508e337f20eb94e95978e193d23cfeaf10.tar.gz
pacman-c1fc00508e337f20eb94e95978e193d23cfeaf10.tar.xz
makepkg: allow skipping integrity checks when making source package
Extends the use of the --skipinteg option to creating a source package. Fixes FS#15984. Signed-off-by: Allan McRae <allan@archlinux.org> Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r--scripts/makepkg.sh.in12
1 files changed, 9 insertions, 3 deletions
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in
index 30e365c0..17072454 100644
--- a/scripts/makepkg.sh.in
+++ b/scripts/makepkg.sh.in
@@ -1077,9 +1077,15 @@ create_srcpackage() {
mkdir -p "$srcdir"
chmod a-s "$srcdir"
cd "$srcdir"
- download_sources
- # We can only check checksums if we have all files.
- check_checksums
+ if (( ! SKIPINTEG || SOURCEONLY == 2 )); then
+ download_sources
+ fi
+ if (( ! SKIPINTEG )); then
+ # We can only check checksums if we have all files.
+ check_checksums
+ else
+ warning "$(gettext "Skipping integrity checks.")"
+ fi
cd "$startdir"
msg "$(gettext "Creating source package...")"