diff options
author | 2013-12-21 15:11:33 +0000 | |
---|---|---|
committer | 2013-12-21 15:11:33 +0000 | |
commit | db440482be27797043a6af9edec2cc56c4f25bfe (patch) | |
tree | dbc5496a3f6c71d5d7ac7c66c2a8a7e237cdae09 /net-misc/apt-cacher-ng/files | |
parent | Stable for HPPA (bug #494822). (diff) | |
download | gentoo-2-db440482be27797043a6af9edec2cc56c4f25bfe.tar.gz gentoo-2-db440482be27797043a6af9edec2cc56c4f25bfe.tar.bz2 gentoo-2-db440482be27797043a6af9edec2cc56c4f25bfe.zip |
Remove USE=lzma: we install it already to unpack the tarball, and USE=-lzma is broken in this release.
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'net-misc/apt-cacher-ng/files')
-rw-r--r-- | net-misc/apt-cacher-ng/files/apt-cacher-ng-0.7.19-gentoo.diff | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/net-misc/apt-cacher-ng/files/apt-cacher-ng-0.7.19-gentoo.diff b/net-misc/apt-cacher-ng/files/apt-cacher-ng-0.7.19-gentoo.diff deleted file mode 100644 index bb7a202773f5..000000000000 --- a/net-misc/apt-cacher-ng/files/apt-cacher-ng-0.7.19-gentoo.diff +++ /dev/null @@ -1,44 +0,0 @@ -Support Gentoo mirrors in apt-cacher-ng - -Please note the use of a script to build the gentoo_mirrors file live; this -should probably be done when each release is being built. - -The geo-balanced http://distfiles.gentoo.org/ mirror is NOT included in the -mirrors3.xml source, so it gets added manually. - -The first 3 sed expresssions aren't actually required, but are useful in making -the output list understandable. - -Signed-off-by: Robin H. Johnson <robbat2@gentoo.org> - ---- a/conf/acng.conf 2013-07-28 11:09:43.000000000 -0700 -+++ b/conf/acng.conf 2013-12-03 19:55:07.000000000 -0800 -@@ -44,6 +44,7 @@ - Remap-fedora: file:fedora_mirrors # Fedora Linux - Remap-epel: file:epel_mirrors # Fedora EPEL - Remap-slrep: file:sl_mirrors # Scientific Linux -+Remap-gentoo: file:gentoo_mirrors.gz http://distfiles.gentoo.org/ /gentoo ; file:backends_gentoo # Gentoo Archives - - # This is usually not needed for security.debian.org because it's always the - # same DNS hostname. However, it might be enabled in order to use hooks, ---- a/conf/backends_gentoo.default 1969-12-31 16:00:00.000000000 -0800 -+++ b/conf/backends_gentoo.default 2013-12-03 19:46:38.000000000 -0800 -@@ -0,0 +1,4 @@ -+# This is a configuration file. All lines starting with # are ignored. -+ -+# gentoo mirrors use geodns to dispatch to the nearest location -+http://distfiles.gentoo.org/ ---- a/conf/gentoo_mirrors.sh 1969-12-31 16:00:00.000000000 -0800 -+++ b/conf/gentoo_mirrors.sh 2013-12-04 18:20:07.000000000 -0800 -@@ -0,0 +1,11 @@ -+#!/bin/sh -+# This fetchs the live Gentoo mirrors list -+# robbat2@gentoo.org - 2013/Dec/03 -+OUTFILE=/etc/apt-cacher-ng/gentoo_mirrors -+wget --save-headers -q http://www.gentoo.org/main/en/mirrors3.xml -O - \ -+ |sed -n \ -+ -e '/^[A-Z]/{s,^,#,g;p}' \ -+ -e '/<mirrorgroup/{s,^,\n#,g;p}' \ -+ -e '/<name/{s,^,#,g;p}' \ -+ -e '/<uri/{/protocol="http"/{s/.*<uri[^>]\+>//g;s/<\/uri>//g;p}}' \ -+ | gzip -9 >${OUTFILE}.gz |