diff options
author | Pacho Ramos <pacho@gentoo.org> | 2015-01-07 13:58:21 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2015-01-07 13:58:21 +0000 |
commit | 47e8461c063ded835885580d0d450ae10aa6d88e (patch) | |
tree | 45e7b25517935016cdc4dc01fda1e33e4c489bb6 /net-proxy/http-replicator | |
parent | Reassign as and cleanup discussed at https://www.mail-archive.com/gentoo-dev@... (diff) | |
download | gentoo-2-47e8461c063ded835885580d0d450ae10aa6d88e.tar.gz gentoo-2-47e8461c063ded835885580d0d450ae10aa6d88e.tar.bz2 gentoo-2-47e8461c063ded835885580d0d450ae10aa6d88e.zip |
Reassign and cleanup as discussed at https://www.mail-archive.com/gentoo-dev@lists.gentoo.org/msg66357.html
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'net-proxy/http-replicator')
-rw-r--r-- | net-proxy/http-replicator/ChangeLog | 10 | ||||
-rw-r--r-- | net-proxy/http-replicator/http-replicator-3.0-r2.ebuild | 65 | ||||
-rw-r--r-- | net-proxy/http-replicator/http-replicator-3.0-r3.ebuild | 66 | ||||
-rw-r--r-- | net-proxy/http-replicator/http-replicator-4.0_alpha2-r3.ebuild | 72 | ||||
-rw-r--r-- | net-proxy/http-replicator/metadata.xml | 2 |
5 files changed, 9 insertions, 206 deletions
diff --git a/net-proxy/http-replicator/ChangeLog b/net-proxy/http-replicator/ChangeLog index 495a13ec6939..645670f4b091 100644 --- a/net-proxy/http-replicator/ChangeLog +++ b/net-proxy/http-replicator/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-proxy/http-replicator -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-proxy/http-replicator/ChangeLog,v 1.45 2014/04/05 07:05:35 pacho Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-proxy/http-replicator/ChangeLog,v 1.46 2015/01/07 13:58:21 pacho Exp $ + + 07 Jan 2015; Pacho Ramos <pacho@gentoo.org> -http-replicator-3.0-r2.ebuild, + -http-replicator-3.0-r3.ebuild, -http-replicator-4.0_alpha2-r3.ebuild, + metadata.xml: + Reassign and cleanup as discussed at https://www.mail-archive.com/gentoo- + dev@lists.gentoo.org/msg66357.html 05 Apr 2014; Pacho Ramos <pacho@gentoo.org> http-replicator-3.0-r4.ebuild: ppc stable, bug #499316 diff --git a/net-proxy/http-replicator/http-replicator-3.0-r2.ebuild b/net-proxy/http-replicator/http-replicator-3.0-r2.ebuild deleted file mode 100644 index 4c1089b659d0..000000000000 --- a/net-proxy/http-replicator/http-replicator-3.0-r2.ebuild +++ /dev/null @@ -1,65 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-proxy/http-replicator/http-replicator-3.0-r2.ebuild,v 1.6 2012/09/30 18:52:35 armin76 Exp $ - -inherit eutils - -MY_P="${PN}_${PV}" - -DESCRIPTION="Proxy cache for Gentoo packages" -HOMEPAGE="http://sourceforge.net/projects/http-replicator" -SRC_URI="mirror://sourceforge/http-replicator/${MY_P}.tar.gz" -S="${WORKDIR}/${MY_P}" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 hppa ppc ~sparc x86" -IUSE="" - -DEPEND=">=dev-lang/python-2.3" -RDEPEND="${DEPEND}" - -src_compile() { - epatch "${FILESDIR}/http-replicator-3.0-sighup.patch" - einfo "No compilation necessary" -} - -src_install(){ - # Daemon and repcacheman into /usr/bin - exeinto /usr/bin - doexe http-replicator - newexe "${FILESDIR}/http-replicator-3.0-callrepcacheman-0.1" repcacheman - if has_version '>=sys-apps/portage-2.1.6.4'; then - newexe "${FILESDIR}/http-replicator-3.0-repcacheman-0.44-r1" repcacheman.py - else - newexe "${FILESDIR}/http-replicator-3.0-repcacheman-0.44" repcacheman.py - fi - - # init.d scripts - newinitd "${FILESDIR}/http-replicator-3.0.init" http-replicator - newconfd "${FILESDIR}/http-replicator-3.0.conf" http-replicator - - # Docs - dodoc README debian/changelog - - # Man Page - Not Gentooified yet - doman http-replicator.1 - - insinto /etc/logrotate.d - newins debian/logrotate http-replicator -} - -pkg_postinst() { - einfo - einfo "Before starting http-replicator, please follow the next few steps:" - einfo "- modify /etc/conf.d/http-replicator if required" - einfo "- run /usr/bin/repcacheman to set up the cache" - einfo "- add http_proxy=\"http://serveraddress:8080\" to make.conf on" - einfo " the server as well as on the client machines" - einfo "- make sure GENTOO_MIRRORS in /etc/make.conf starts with several" - einfo " good http mirrors" - einfo - einfo "For more information please refer to the following forum thread:" - einfo " http://forums.gentoo.org/viewtopic-t-173226.html" - einfo -} diff --git a/net-proxy/http-replicator/http-replicator-3.0-r3.ebuild b/net-proxy/http-replicator/http-replicator-3.0-r3.ebuild deleted file mode 100644 index 873e2749177d..000000000000 --- a/net-proxy/http-replicator/http-replicator-3.0-r3.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-proxy/http-replicator/http-replicator-3.0-r3.ebuild,v 1.5 2012/08/24 12:05:24 xmw Exp $ - -EAPI=4 -PYTHON_DEPEND="2:2.7:2.7" # not 2.6 bug #33907, not 3.0 bug #411083 -inherit eutils python - -MY_P="${PN}_${PV}" - -DESCRIPTION="Proxy cache for Gentoo packages" -HOMEPAGE="http://sourceforge.net/projects/http-replicator" -SRC_URI="mirror://sourceforge/http-replicator/${MY_P}.tar.gz" -S="${WORKDIR}/${MY_P}" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 hppa ppc ~sparc x86" -IUSE="" - -DEPEND="" -RDEPEND="${DEPEND}" - -src_compile() { - epatch "${FILESDIR}/http-replicator-3.0-sighup.patch" - einfo "No compilation necessary" -} - -src_install(){ - # Daemon and repcacheman into /usr/bin - exeinto /usr/bin - doexe http-replicator - newexe "${FILESDIR}/http-replicator-3.0-callrepcacheman-0.1" repcacheman - newexe "${FILESDIR}/http-replicator-3.0-repcacheman-0.44-r2" repcacheman.py - - # init.d scripts - newinitd "${FILESDIR}/http-replicator-3.0.init" http-replicator - newconfd "${FILESDIR}/http-replicator-3.0.conf" http-replicator - - # not 2.6 bug #33907, not 3.0 bug #411083 - python_convert_shebangs -r 2.7 "${ED}" - - # Docs - dodoc README debian/changelog - - # Man Page - Not Gentooified yet - doman http-replicator.1 - - insinto /etc/logrotate.d - newins debian/logrotate http-replicator -} - -pkg_postinst() { - einfo - einfo "Before starting http-replicator, please follow the next few steps:" - einfo "- modify /etc/conf.d/http-replicator if required" - einfo "- run /usr/bin/repcacheman to set up the cache" - einfo "- add http_proxy=\"http://serveraddress:8080\" to make.conf on" - einfo " the server as well as on the client machines" - einfo "- make sure GENTOO_MIRRORS in /etc/make.conf starts with several" - einfo " good http mirrors" - einfo - einfo "For more information please refer to the following forum thread:" - einfo " http://forums.gentoo.org/viewtopic-t-173226.html" - einfo -} diff --git a/net-proxy/http-replicator/http-replicator-4.0_alpha2-r3.ebuild b/net-proxy/http-replicator/http-replicator-4.0_alpha2-r3.ebuild deleted file mode 100644 index 7dd12bf76f74..000000000000 --- a/net-proxy/http-replicator/http-replicator-4.0_alpha2-r3.ebuild +++ /dev/null @@ -1,72 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-proxy/http-replicator/http-replicator-4.0_alpha2-r3.ebuild,v 1.1 2013/06/10 14:01:46 tomwij Exp $ - -EAPI="5" - -# Not 2.6, see bug #33907; not 3.0, see bug #411083. -PYTHON_COMPAT=( python2_7 ) - -inherit eutils python-r1 - -MY_P="${PN}_${PV/_/}" - -DESCRIPTION="Proxy cache for Gentoo packages" -HOMEPAGE="http://sourceforge.net/projects/http-replicator" -SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~sparc ~x86" - -S="${WORKDIR}/${MY_P}" - -# Tests downloads files as well as breaks, should be turned into local tests. -RESTRICT="test" - -src_prepare() { - epatch "${FILESDIR}"/${PN}-4.0_alpha2-r3-pid.patch -} - -src_test() { - ./unit-test && die -} - -src_install(){ - python_export python2_7 EPYTHON PYTHON PYTHON_SITEDIR - - python_scriptinto /usr/bin - python_doscript http-replicator - - exeinto /usr/bin - newexe "${FILESDIR}"/${PN}-3.0-callrepcacheman-0.1 repcacheman - - python_domodule *.py - - cp "${FILESDIR}"/${PN}-3.0-repcacheman-0.44-r2 repcacheman.py || die - python_doscript repcacheman.py - - newinitd "${FILESDIR}"/${PN}-4.0_alpha2-r3.init http-replicator - newconfd "${FILESDIR}"/${PN}-4.0_alpha2-r2.conf http-replicator - - dodoc README.user README.devel RELNOTES -} - -pkg_postinst() { - einfo - einfo "Before starting ${PN}, please follow the next few steps:" - einfo - einfo "- Modify /etc/conf.d/${PN} if required." - einfo "- Run \`repcacheman\` to set up the cache." - einfo "- Add HTTP_PROXY=\"http://serveraddress:8080\" to make.conf on" - einfo " the server as well as on the client machines." - einfo "- Make sure GENTOO_MIRRORS in /etc/portage/make.conf" - einfo " starts with several good HTTP mirrors." - einfo - einfo "For more information please refer to the following forum thread:" - einfo - einfo " http://forums.gentoo.org/viewtopic-t-173226.html" - einfo - einfo "Starting with 4.x releases, the conf.d parameters have changed." - einfo -} diff --git a/net-proxy/http-replicator/metadata.xml b/net-proxy/http-replicator/metadata.xml index 9cb9f71e4f8d..4538a68724a6 100644 --- a/net-proxy/http-replicator/metadata.xml +++ b/net-proxy/http-replicator/metadata.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> -<herd>net-proxy</herd> +<maintainer><email>maintainer-needed@gentoo.org</email></maintainer> </pkgmetadata> |