public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-proxy/http-replicator: ChangeLog http-replicator-3.0-r2.ebuild
@ 2009-03-23 19:07 Maurice van der Pot (griffon26)
  0 siblings, 0 replies; 2+ messages in thread
From: Maurice van der Pot (griffon26) @ 2009-03-23 19:07 UTC (permalink / raw
  To: gentoo-commits

griffon26    09/03/23 19:07:00

  Modified:             ChangeLog
  Added:                http-replicator-3.0-r2.ebuild
  Log:
  Make net-proxy/http-replicator install later version of repcacheman to prevent portage deprecation warnings.
  (Portage version: 2.1.6.8/cvs/Linux x86_64)

Revision  Changes    Path
1.26                 net-proxy/http-replicator/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-proxy/http-replicator/ChangeLog?rev=1.26&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-proxy/http-replicator/ChangeLog?rev=1.26&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-proxy/http-replicator/ChangeLog?r1=1.25&r2=1.26

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-proxy/http-replicator/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog	20 Jan 2009 19:54:07 -0000	1.25
+++ ChangeLog	23 Mar 2009 19:07:00 -0000	1.26
@@ -1,6 +1,13 @@
 # ChangeLog for net-proxy/http-replicator
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-proxy/http-replicator/ChangeLog,v 1.25 2009/01/20 19:54:07 griffon26 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-proxy/http-replicator/ChangeLog,v 1.26 2009/03/23 19:07:00 griffon26 Exp $
+
+*http-replicator-3.0-r2 (23 Mar 2009)
+
+  23 Mar 2009; Maurice van der Pot <griffon26@gentoo.org>
+  +http-replicator-3.0-r2.ebuild:
+  Install repcacheman that uses new portage API for portage 2.1.6.4 and up 
+  instead of only for 2.2_rc6 and up. Gets rid of some deprecation notices.
 
   20 Jan 2009; Maurice van der Pot <griffon26@gentoo.org>
   http-replicator-3.0-r1.ebuild:



1.1                  net-proxy/http-replicator/http-replicator-3.0-r2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-proxy/http-replicator/http-replicator-3.0-r2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-proxy/http-replicator/http-replicator-3.0-r2.ebuild?rev=1.1&content-type=text/plain

Index: http-replicator-3.0-r2.ebuild
===================================================================
# Copyright 1999-2009 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.1 2009/03/23 19:07:00 griffon26 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
}






^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-proxy/http-replicator: ChangeLog http-replicator-3.0-r2.ebuild
@ 2012-09-30 18:52 Raul Porcel (armin76)
  0 siblings, 0 replies; 2+ messages in thread
From: Raul Porcel (armin76) @ 2012-09-30 18:52 UTC (permalink / raw
  To: gentoo-commits

armin76     12/09/30 18:52:35

  Modified:             ChangeLog http-replicator-3.0-r2.ebuild
  Log:
  Move to ~alpha
  
  (Portage version: 2.1.11.16/cvs/Linux ia64)

Revision  Changes    Path
1.36                 net-proxy/http-replicator/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/http-replicator/ChangeLog?rev=1.36&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/http-replicator/ChangeLog?rev=1.36&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/http-replicator/ChangeLog?r1=1.35&r2=1.36

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-proxy/http-replicator/ChangeLog,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- ChangeLog	24 Aug 2012 12:05:24 -0000	1.35
+++ ChangeLog	30 Sep 2012 18:52:35 -0000	1.36
@@ -1,6 +1,9 @@
 # ChangeLog for net-proxy/http-replicator
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-proxy/http-replicator/ChangeLog,v 1.35 2012/08/24 12:05:24 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-proxy/http-replicator/ChangeLog,v 1.36 2012/09/30 18:52:35 armin76 Exp $
+
+  30 Sep 2012; Raúl Porcel <armin76@gentoo.org> http-replicator-3.0-r2.ebuild:
+  Move to ~alpha
 
   24 Aug 2012; Michael Weber <xmw@gentoo.org> http-replicator-3.0-r3.ebuild:
   ppc stable (bug 422157).



1.6                  net-proxy/http-replicator/http-replicator-3.0-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/http-replicator/http-replicator-3.0-r2.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/http-replicator/http-replicator-3.0-r2.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/http-replicator/http-replicator-3.0-r2.ebuild?r1=1.5&r2=1.6

Index: http-replicator-3.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-proxy/http-replicator/http-replicator-3.0-r2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- http-replicator-3.0-r2.ebuild	9 Jun 2009 20:30:18 -0000	1.5
+++ http-replicator-3.0-r2.ebuild	30 Sep 2012 18:52:35 -0000	1.6
@@ -1,6 +1,6 @@
-# Copyright 1999-2009 Gentoo Foundation
+# 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.5 2009/06/09 20:30:18 jer Exp $
+# $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
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 hppa ppc ~sparc x86"
+KEYWORDS="~alpha amd64 hppa ppc ~sparc x86"
 IUSE=""
 
 DEPEND=">=dev-lang/python-2.3"





^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-09-30 18:52 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-30 18:52 [gentoo-commits] gentoo-x86 commit in net-proxy/http-replicator: ChangeLog http-replicator-3.0-r2.ebuild Raul Porcel (armin76)
  -- strict thread matches above, loose matches on Subject: below --
2009-03-23 19:07 Maurice van der Pot (griffon26)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox