[pacman-dev] [PATCH] makepkg: download sources for all architectures when making source package
We validated all sources when making a source package, whether or not they are included in the tarball. Signed-off-by: Allan McRae <allan@archlinux.org> --- makepkg --source was broken when source_i686 and source_x86_64 were present. This may count as the first real breakage! scripts/makepkg.sh.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index 60276f6..ae8cf57 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -3607,7 +3607,7 @@ if (( SOURCEONLY )); then download_sources allarch elif ( (( ! SKIPCHECKSUMS )) || \ ( (( ! SKIPPGPCHECK )) && source_has_signatures ) ); then - download_sources novcs + download_sources allarch novcs fi check_source_integrity all cd_safe "$startdir" -- 2.2.1
On Mon, Dec 22, 2014 at 04:20:09PM +1000, Allan McRae wrote:
We validated all sources when making a source package, whether or not they are included in the tarball.
Signed-off-by: Allan McRae <allan@archlinux.org> ---
makepkg --source was broken when source_i686 and source_x86_64 were present. This may count as the first real breakage!
scripts/makepkg.sh.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index 60276f6..ae8cf57 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -3607,7 +3607,7 @@ if (( SOURCEONLY )); then download_sources allarch elif ( (( ! SKIPCHECKSUMS )) || \ ( (( ! SKIPPGPCHECK )) && source_has_signatures ) ); then - download_sources novcs + download_sources allarch novcs
Ack.
fi check_source_integrity all cd_safe "$startdir" -- 2.2.1
participants (2)
-
Allan McRae
-
Dave Reisner