Gentoo Archives: gentoo-commits

From: "Tom Wijsman (tomwij)" <tomwij@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-proxy/http-replicator: http-replicator-4.0_alpha2.ebuild ChangeLog
Date: Mon, 04 Mar 2013 13:00:45
Message-Id: 20130304130040.D546B2171D@flycatcher.gentoo.org
1 tomwij 13/03/04 13:00:40
2
3 Modified: ChangeLog
4 Added: http-replicator-4.0_alpha2.ebuild
5 Log:
6 Version bump to 4.0_alpha2.
7
8 (Portage version: 2.1.11.52/cvs/Linux x86_64, signed Manifest commit with key 6D34E57D)
9
10 Revision Changes Path
11 1.37 net-proxy/http-replicator/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/http-replicator/ChangeLog?rev=1.37&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/http-replicator/ChangeLog?rev=1.37&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/http-replicator/ChangeLog?r1=1.36&r2=1.37
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-proxy/http-replicator/ChangeLog,v
20 retrieving revision 1.36
21 retrieving revision 1.37
22 diff -u -r1.36 -r1.37
23 --- ChangeLog 30 Sep 2012 18:52:35 -0000 1.36
24 +++ ChangeLog 4 Mar 2013 13:00:40 -0000 1.37
25 @@ -1,6 +1,12 @@
26 # ChangeLog for net-proxy/http-replicator
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-proxy/http-replicator/ChangeLog,v 1.36 2012/09/30 18:52:35 armin76 Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/net-proxy/http-replicator/ChangeLog,v 1.37 2013/03/04 13:00:40 tomwij Exp $
31 +
32 +*http-replicator-4.0_alpha2 (04 Mar 2013)
33 +
34 + 04 Mar 2013; Tom Wijsman <TomWij@g.o>
35 + +http-replicator-4.0_alpha2.ebuild:
36 + Version bump to 4.0_alpha2.
37
38 30 Sep 2012; Raúl Porcel <armin76@g.o> http-replicator-3.0-r2.ebuild:
39 Move to ~alpha
40
41
42
43 1.1 net-proxy/http-replicator/http-replicator-4.0_alpha2.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/http-replicator/http-replicator-4.0_alpha2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/http-replicator/http-replicator-4.0_alpha2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: http-replicator-4.0_alpha2.ebuild
49 ===================================================================
50 # Copyright 1999-2013 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/net-proxy/http-replicator/http-replicator-4.0_alpha2.ebuild,v 1.1 2013/03/04 13:00:40 tomwij Exp $
53
54 EAPI="5"
55 PYTHON_DEPEND="2:2.7:2.7" # not 2.6 bug #33907, not 3.0 bug #411083
56 inherit eutils python
57
58 MY_P="${PN}_${PV/_/}"
59
60 DESCRIPTION="Proxy cache for Gentoo packages"
61 HOMEPAGE="http://sourceforge.net/projects/${PN}"
62 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tgz"
63 S="${WORKDIR}/${MY_P}"
64
65 LICENSE="GPL-2"
66 SLOT="0"
67 KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~sparc ~x86"
68
69 src_install(){
70 # Daemon and repcacheman into /usr/bin
71 exeinto /usr/bin
72 doexe http-replicator
73 newexe "${FILESDIR}/http-replicator-3.0-callrepcacheman-0.1" repcacheman
74 newexe "${FILESDIR}/http-replicator-3.0-repcacheman-0.44-r2" repcacheman.py
75
76 # init.d scripts
77 newinitd "${FILESDIR}/http-replicator-3.0.init" http-replicator
78 newconfd "${FILESDIR}/http-replicator-3.0.conf" http-replicator
79
80 # not 2.6 bug #33907, not 3.0 bug #411083
81 python_convert_shebangs -r 2.7 "${ED}"
82
83 # Docs
84 dodoc README.user README.devel RELNOTES
85 }
86
87 pkg_postinst() {
88 einfo
89 einfo "Before starting http-replicator, please follow the next few steps:"
90 einfo "- modify /etc/conf.d/http-replicator if required"
91 einfo "- run /usr/bin/repcacheman to set up the cache"
92 einfo "- add http_proxy=\"http://serveraddress:8080\" to make.conf on"
93 einfo " the server as well as on the client machines"
94 einfo "- make sure GENTOO_MIRRORS in /etc/make.conf starts with several"
95 einfo " good http mirrors"
96 einfo
97 einfo "For more information please refer to the following forum thread:"
98 einfo " http://forums.gentoo.org/viewtopic-t-173226.html"
99 einfo
100 }