diff options
author | Patrick 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) |
commit | 0c44e759491e92a2a5df56f834e2b47a5f6ed063 (patch) | |
tree | 0872acf790e861901ddf48b7462c2e31ea87fb17 | |
parent | 63ae100214a12cb9ed5882e7ed457eefc7b3b39c (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-x | build | 2 | ||||
-rw-r--r-- | source.mk | 13 |
2 files changed, 0 insertions, 15 deletions
@@ -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) |