Index: alpine/Makefile
===================================================================
--- alpine/Makefile (revision 8)
+++ alpine/Makefile (revision 9)
@@ -33,13 +33,23 @@
$(tarballs):
@echo -e "\n======= Downloading source tarballs =======" ; \
for tarball in $(tarballs) ; do \
- echo "$(url)/$$tarball" | xargs -n 1 -P 100 wget $(WGET_OPTIONS) - & \
+ if `echo "$$tarball" | grep -q 'patch'` ; then \
+ url=$(url)/maildir-patch ; \
+ else \
+ url=$(url)/alpine ; \
+ fi ; \
+ echo "$$url/$$tarball" | xargs -n 1 -P 100 wget $(WGET_OPTIONS) - & \
done ; wait
$(sha1s): $(tarballs)
@for sha in $@ ; do \
echo -e "\n======= Downloading '$$sha' signature =======\n" ; \
- echo "$(url)/$$sha" | xargs -n 1 -P 100 wget $(WGET_OPTIONS) - & wait %1 ; \
+ if `echo "$$sha" | grep -q 'patch'` ; then \
+ url=$(url)/maildir-patch ; \
+ else \
+ url=$(url)/alpine ; \
+ fi ; \
+ echo "$$url/$$sha" | xargs -n 1 -P 100 wget $(WGET_OPTIONS) - & wait %1 ; \
touch $$sha ; \
echo -e "\n======= Check the '$$sha' sha1sum =======\n" ; \
sha1sum --check $$sha ; ret="$$?" ; \
Index: net-tools/Makefile
===================================================================
--- net-tools/Makefile (revision 8)
+++ net-tools/Makefile (revision 9)
@@ -9,7 +9,7 @@
versions = 1.60-20210110
pkgname = net-tools
-suffix = tar.bz2
+suffix = tar.xz
tarballs = $(addsuffix .$(suffix), $(addprefix $(pkgname)-, $(versions)))
sha1s = $(addsuffix .sha1sum, $(tarballs))
Index: net-tools/create-1.60-20210110-patch/create.patch.sh
===================================================================
--- net-tools/create-1.60-20210110-patch/create.patch.sh (revision 8)
+++ net-tools/create-1.60-20210110-patch/create.patch.sh (revision 9)
@@ -2,7 +2,7 @@
VERSION=1.60-20210110
-tar --files-from=file.list -xjvf ../net-tools-$VERSION.tar.bz2
+tar --files-from=file.list -xJvf ../net-tools-$VERSION.tar.xz
mv net-tools-$VERSION net-tools-$VERSION-orig
cp -rf ./net-tools-$VERSION-new ./net-tools-$VERSION