From 0c44e759491e92a2a5df56f834e2b47a5f6ed063 Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Sat, 06 Apr 2019 21:26:55 -0400 Subject: source.mk: Remove The "bzip.org" domain is no longer under the maintainer's control, so do not try to download source archives from it. A new upstream version would be downloaded and verified in a different way and is unlikely to be released in the near future, so for now just remove the "source" target altogether. The ProteanOS package archive has a copy of the bzip2 1.0.6 sources archive, so this target isn't really necessary even if upstream vanishes completely. --- diff --git a/build b/build index 72ff067..95f3ac5 100755 --- a/build +++ b/build @@ -1,7 +1,5 @@ #!/usr/bin/make -f -include ../source.mk - nop: @: diff --git a/source.mk b/source.mk deleted file mode 100644 index 7966034..0000000 --- a/source.mk +++ /dev/null @@ -1,13 +0,0 @@ -upstream_base_url = http://www.bzip.org/$(OPK_SOURCE_VERSION_UPSTREAM) -upstream_url = $(upstream_base_url)/$(upstream_archive) -upstream_archive = bzip2-$(OPK_SOURCE_VERSION_UPSTREAM).tar.gz -source_archive = ../bzip2-$(OPK_SOURCE_VERSION_UPSTREAM).orig.tar.gz -# For 1.0.6: -md5sum = 00b516f4704d4a7cb50a1d97e6e8e15b - -$(source_archive): - wget -c '$(upstream_url)' - printf '$(md5sum) $(upstream_archive)' | md5sum -c - - mv '$(upstream_archive)' '$(source_archive)' - -source: $(source_archive) -- cgit v0.9.1