summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2019-04-06 21:26:55 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2019-04-06 21:26:55 (EDT)
commit0c44e759491e92a2a5df56f834e2b47a5f6ed063 (patch)
tree0872acf790e861901ddf48b7462c2e31ea87fb17
parent63ae100214a12cb9ed5882e7ed457eefc7b3b39c (diff)
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.
-rwxr-xr-xbuild2
-rw-r--r--source.mk13
2 files changed, 0 insertions, 15 deletions
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)