public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-admin/chrpath: ChangeLog chrpath-0.13-r2.ebuild
@ 2011-10-10 22:28 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 7+ messages in thread
From: Samuli Suominen (ssuominen) @ 2011-10-10 22:28 UTC (permalink / raw
  To: gentoo-commits

ssuominen    11/10/10 22:28:37

  Modified:             ChangeLog chrpath-0.13-r2.ebuild
  Log:
  Remove unnecessary static libraries because chrpath is dlopening the dynamic libraries instead. Fix documentation path.
  
  (Portage version: 2.2.0_alpha64/cvs/Linux x86_64)

Revision  Changes    Path
1.16                 app-admin/chrpath/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/ChangeLog?rev=1.16&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/ChangeLog?rev=1.16&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/ChangeLog?r1=1.15&r2=1.16

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-admin/chrpath/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog	29 Aug 2011 19:23:22 -0000	1.15
+++ ChangeLog	10 Oct 2011 22:28:37 -0000	1.16
@@ -1,6 +1,10 @@
 # ChangeLog for app-admin/chrpath
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/chrpath/ChangeLog,v 1.15 2011/08/29 19:23:22 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/chrpath/ChangeLog,v 1.16 2011/10/10 22:28:37 ssuominen Exp $
+
+  10 Oct 2011; Samuli Suominen <ssuominen@gentoo.org> chrpath-0.13-r2.ebuild:
+  Remove unnecessary static libraries because chrpath is dlopening the dynamic
+  libraries instead. Fix documentation path.
 
 *chrpath-0.13-r2 (29 Aug 2011)
 



1.2                  app-admin/chrpath/chrpath-0.13-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild?r1=1.1&r2=1.2

Index: chrpath-0.13-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- chrpath-0.13-r2.ebuild	29 Aug 2011 19:23:22 -0000	1.1
+++ chrpath-0.13-r2.ebuild	10 Oct 2011 22:28:37 -0000	1.2
@@ -1,15 +1,13 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild,v 1.1 2011/08/29 19:23:22 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild,v 1.2 2011/10/10 22:28:37 ssuominen Exp $
 
-EAPI="2"
-
-inherit eutils autotools
+EAPI=4
+inherit autotools eutils
 
 DESCRIPTION="chrpath can modify the rpath and runpath of ELF executables"
 HOMEPAGE="http://directory.fsf.org/project/chrpath/"
-# original upstream no longer exists (ftp://ftp.hungry.com/pub/hungry)
-SRC_URI="http://ftp.tux.org/pub/X-Windows/ftp.hungry.com/chrpath/${P}.tar.gz"
+SRC_URI="mirror://gentoo/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
@@ -17,14 +15,21 @@
 IUSE=""
 
 src_prepare() {
-	epatch "${FILESDIR}"/${P}-multilib.patch
-	epatch "${FILESDIR}"/${PN}-keepgoing.patch
-	epatch "${FILESDIR}"/${P}-testsuite-1.patch
-	sed -i -e '/^docdir/d' Makefile.am # use standard docdir
+	epatch \
+		"${FILESDIR}"/${P}-multilib.patch \
+		"${FILESDIR}"/${PN}-keepgoing.patch \
+		"${FILESDIR}"/${P}-testsuite-1.patch
+
 	eautoreconf
 }
 
 src_install() {
-	emake install DESTDIR="${D}" || die
-	dodoc ChangeLog AUTHORS NEWS README
+	emake \
+		DESTDIR="${D}" \
+		docdir=/usr/share/doc/${PF} \
+		install
+
+	rm -f \
+		"${ED}"usr/lib*/lib*.{a,la} \
+		"${ED}"usr/share/doc/${PF}/{COPYING,INSTALL}
 }






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

* [gentoo-commits] gentoo-x86 commit in app-admin/chrpath: ChangeLog chrpath-0.13-r2.ebuild
@ 2011-10-11 16:49 Fabian Groffen (grobian)
  0 siblings, 0 replies; 7+ messages in thread
From: Fabian Groffen (grobian) @ 2011-10-11 16:49 UTC (permalink / raw
  To: gentoo-commits

grobian     11/10/11 16:49:18

  Modified:             ChangeLog chrpath-0.13-r2.ebuild
  Log:
  Revert ssuominen's changes that were totally uncalled for and most importantly broke the installation of this package on the main consumer's platform: Prefix
  
  (Portage version: 2.2.01.19295-prefix/cvs/SunOS i386)

Revision  Changes    Path
1.17                 app-admin/chrpath/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/ChangeLog?rev=1.17&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/ChangeLog?rev=1.17&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/ChangeLog?r1=1.16&r2=1.17

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-admin/chrpath/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog	10 Oct 2011 22:28:37 -0000	1.16
+++ ChangeLog	11 Oct 2011 16:49:17 -0000	1.17
@@ -1,6 +1,11 @@
 # ChangeLog for app-admin/chrpath
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/chrpath/ChangeLog,v 1.16 2011/10/10 22:28:37 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/chrpath/ChangeLog,v 1.17 2011/10/11 16:49:17 grobian Exp $
+
+  11 Oct 2011; Fabian Groffen <grobian@gentoo.org> chrpath-0.13-r2.ebuild:
+  Revert ssuominen's changes that were totally uncalled for and most
+  importantly broke the installation of this package on the main consumer's
+  platform: Prefix
 
   10 Oct 2011; Samuli Suominen <ssuominen@gentoo.org> chrpath-0.13-r2.ebuild:
   Remove unnecessary static libraries because chrpath is dlopening the dynamic



1.3                  app-admin/chrpath/chrpath-0.13-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild?r1=1.2&r2=1.3

Index: chrpath-0.13-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- chrpath-0.13-r2.ebuild	10 Oct 2011 22:28:37 -0000	1.2
+++ chrpath-0.13-r2.ebuild	11 Oct 2011 16:49:17 -0000	1.3
@@ -1,13 +1,15 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild,v 1.2 2011/10/10 22:28:37 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild,v 1.3 2011/10/11 16:49:17 grobian Exp $
 
-EAPI=4
-inherit autotools eutils
+EAPI="2"
+
+inherit eutils autotools
 
 DESCRIPTION="chrpath can modify the rpath and runpath of ELF executables"
 HOMEPAGE="http://directory.fsf.org/project/chrpath/"
-SRC_URI="mirror://gentoo/${P}.tar.gz"
+# original upstream no longer exists (ftp://ftp.hungry.com/pub/hungry)
+SRC_URI="http://ftp.tux.org/pub/X-Windows/ftp.hungry.com/chrpath/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
@@ -15,21 +17,14 @@
 IUSE=""
 
 src_prepare() {
-	epatch \
-		"${FILESDIR}"/${P}-multilib.patch \
-		"${FILESDIR}"/${PN}-keepgoing.patch \
-		"${FILESDIR}"/${P}-testsuite-1.patch
-
+	epatch "${FILESDIR}"/${P}-multilib.patch
+	epatch "${FILESDIR}"/${PN}-keepgoing.patch
+	epatch "${FILESDIR}"/${P}-testsuite-1.patch
+	sed -i -e '/^docdir/d' Makefile.am # use standard docdir
 	eautoreconf
 }
 
 src_install() {
-	emake \
-		DESTDIR="${D}" \
-		docdir=/usr/share/doc/${PF} \
-		install
-
-	rm -f \
-		"${ED}"usr/lib*/lib*.{a,la} \
-		"${ED}"usr/share/doc/${PF}/{COPYING,INSTALL}
+	emake install DESTDIR="${D}" || die
+	dodoc ChangeLog AUTHORS NEWS README
 }






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

* [gentoo-commits] gentoo-x86 commit in app-admin/chrpath: ChangeLog chrpath-0.13-r2.ebuild
@ 2011-10-11 18:19 Fabian Groffen (grobian)
  0 siblings, 0 replies; 7+ messages in thread
From: Fabian Groffen (grobian) @ 2011-10-11 18:19 UTC (permalink / raw
  To: gentoo-commits

grobian     11/10/11 18:19:50

  Modified:             ChangeLog chrpath-0.13-r2.ebuild
  Log:
  Fix odd double docs dir installation, remove libtool archives, install static archives with USE=static-libs
  
  (Portage version: 2.2.01.19295-prefix/cvs/SunOS i386)

Revision  Changes    Path
1.18                 app-admin/chrpath/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/ChangeLog?rev=1.18&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/ChangeLog?rev=1.18&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/ChangeLog?r1=1.17&r2=1.18

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-admin/chrpath/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog	11 Oct 2011 16:49:17 -0000	1.17
+++ ChangeLog	11 Oct 2011 18:19:49 -0000	1.18
@@ -1,6 +1,10 @@
 # ChangeLog for app-admin/chrpath
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/chrpath/ChangeLog,v 1.17 2011/10/11 16:49:17 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/chrpath/ChangeLog,v 1.18 2011/10/11 18:19:49 grobian Exp $
+
+  11 Oct 2011; Fabian Groffen <grobian@gentoo.org> chrpath-0.13-r2.ebuild:
+  Fix odd double docs dir installation, remove libtool archives, install static
+  archives with USE=static-libs
 
   11 Oct 2011; Fabian Groffen <grobian@gentoo.org> chrpath-0.13-r2.ebuild:
   Revert ssuominen's changes that were totally uncalled for and most



1.4                  app-admin/chrpath/chrpath-0.13-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild?r1=1.3&r2=1.4

Index: chrpath-0.13-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- chrpath-0.13-r2.ebuild	11 Oct 2011 16:49:17 -0000	1.3
+++ chrpath-0.13-r2.ebuild	11 Oct 2011 18:19:49 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild,v 1.3 2011/10/11 16:49:17 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild,v 1.4 2011/10/11 18:19:49 grobian Exp $
 
 EAPI="2"
 
@@ -14,17 +14,20 @@
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~arm ~ppc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE=""
+IUSE="static-libs"
 
 src_prepare() {
 	epatch "${FILESDIR}"/${P}-multilib.patch
 	epatch "${FILESDIR}"/${PN}-keepgoing.patch
 	epatch "${FILESDIR}"/${P}-testsuite-1.patch
-	sed -i -e '/^docdir/d' Makefile.am # use standard docdir
+	# disable installing redundant docs in the wrong dir
+	sed -i -e '/doc_DATA/d' Makefile.am || die
 	eautoreconf
 }
 
 src_install() {
-	emake install DESTDIR="${D}" || die
+	emake DESTDIR="${D}" install || die
 	dodoc ChangeLog AUTHORS NEWS README
+	find "${D}" -name "*.la" -exec rm '{}' +
+	use static-libs || find "${D}" -name "*.a" -exec rm '{}' +
 }






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

* [gentoo-commits] gentoo-x86 commit in app-admin/chrpath: ChangeLog chrpath-0.13-r2.ebuild
@ 2011-12-03 11:00 Markus Meier (maekke)
  0 siblings, 0 replies; 7+ messages in thread
From: Markus Meier (maekke) @ 2011-12-03 11:00 UTC (permalink / raw
  To: gentoo-commits

maekke      11/12/03 11:00:18

  Modified:             ChangeLog chrpath-0.13-r2.ebuild
  Log:
  arm stable, bug #391239
  
  (Portage version: 2.1.10.38/cvs/Linux i686)

Revision  Changes    Path
1.21                 app-admin/chrpath/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/ChangeLog?rev=1.21&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/ChangeLog?rev=1.21&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/ChangeLog?r1=1.20&r2=1.21

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-admin/chrpath/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog	29 Nov 2011 18:39:55 -0000	1.20
+++ ChangeLog	3 Dec 2011 11:00:18 -0000	1.21
@@ -1,6 +1,9 @@
 # ChangeLog for app-admin/chrpath
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/chrpath/ChangeLog,v 1.20 2011/11/29 18:39:55 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/chrpath/ChangeLog,v 1.21 2011/12/03 11:00:18 maekke Exp $
+
+  03 Dec 2011; Markus Meier <maekke@gentoo.org> chrpath-0.13-r2.ebuild:
+  arm stable, bug #391239
 
   29 Nov 2011; Fabian Groffen <grobian@gentoo.org> chrpath-0.13-r2.ebuild:
   Fix USE-flag name in use_enable



1.7                  app-admin/chrpath/chrpath-0.13-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild?r1=1.6&r2=1.7

Index: chrpath-0.13-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- chrpath-0.13-r2.ebuild	29 Nov 2011 18:39:55 -0000	1.6
+++ chrpath-0.13-r2.ebuild	3 Dec 2011 11:00:18 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild,v 1.6 2011/11/29 18:39:55 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild,v 1.7 2011/12/03 11:00:18 maekke Exp $
 
 EAPI="2"
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~amd64 arm ~ppc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs"
 
 src_prepare() {






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

* [gentoo-commits] gentoo-x86 commit in app-admin/chrpath: ChangeLog chrpath-0.13-r2.ebuild
@ 2011-12-07  7:45 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 7+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2011-12-07  7:45 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    11/12/07 07:45:48

  Modified:             ChangeLog chrpath-0.13-r2.ebuild
  Log:
  x86 stable wrt bug #391239
  
  (Portage version: 2.1.10.11/cvs/Linux i686)

Revision  Changes    Path
1.23                 app-admin/chrpath/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/ChangeLog?rev=1.23&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/ChangeLog?rev=1.23&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/ChangeLog?r1=1.22&r2=1.23

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-admin/chrpath/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog	4 Dec 2011 12:44:48 -0000	1.22
+++ ChangeLog	7 Dec 2011 07:45:48 -0000	1.23
@@ -1,6 +1,9 @@
 # ChangeLog for app-admin/chrpath
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/chrpath/ChangeLog,v 1.22 2011/12/04 12:44:48 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/chrpath/ChangeLog,v 1.23 2011/12/07 07:45:48 phajdan.jr Exp $
+
+  07 Dec 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> chrpath-0.13-r2.ebuild:
+  x86 stable wrt bug #391239
 
   04 Dec 2011; Markos Chandras <hwoarang@gentoo.org> chrpath-0.13-r2.ebuild:
   Stable on amd64 wrt bug #391239



1.9                  app-admin/chrpath/chrpath-0.13-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild?r1=1.8&r2=1.9

Index: chrpath-0.13-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- chrpath-0.13-r2.ebuild	4 Dec 2011 12:44:48 -0000	1.8
+++ chrpath-0.13-r2.ebuild	7 Dec 2011 07:45:48 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild,v 1.8 2011/12/04 12:44:48 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild,v 1.9 2011/12/07 07:45:48 phajdan.jr Exp $
 
 EAPI="2"
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 arm ~ppc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 arm ~ppc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs"
 
 src_prepare() {






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

* [gentoo-commits] gentoo-x86 commit in app-admin/chrpath: ChangeLog chrpath-0.13-r2.ebuild
@ 2012-01-09 19:51 Brent Baude (ranger)
  0 siblings, 0 replies; 7+ messages in thread
From: Brent Baude (ranger) @ 2012-01-09 19:51 UTC (permalink / raw
  To: gentoo-commits

ranger      12/01/09 19:51:17

  Modified:             ChangeLog chrpath-0.13-r2.ebuild
  Log:
  Marking chrpath-0.13-r2 ppc for bug 391239
  
  (Portage version: 2.1.10.11/cvs/Linux ppc64)

Revision  Changes    Path
1.24                 app-admin/chrpath/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/ChangeLog?rev=1.24&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/ChangeLog?rev=1.24&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/ChangeLog?r1=1.23&r2=1.24

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-admin/chrpath/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog	7 Dec 2011 07:45:48 -0000	1.23
+++ ChangeLog	9 Jan 2012 19:51:17 -0000	1.24
@@ -1,6 +1,9 @@
 # ChangeLog for app-admin/chrpath
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/chrpath/ChangeLog,v 1.23 2011/12/07 07:45:48 phajdan.jr Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-admin/chrpath/ChangeLog,v 1.24 2012/01/09 19:51:17 ranger Exp $
+
+  09 Jan 2012; Brent Baude <ranger@gentoo.org> chrpath-0.13-r2.ebuild:
+  Marking chrpath-0.13-r2 ppc for bug 391239
 
   07 Dec 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> chrpath-0.13-r2.ebuild:
   x86 stable wrt bug #391239



1.10                 app-admin/chrpath/chrpath-0.13-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild?r1=1.9&r2=1.10

Index: chrpath-0.13-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- chrpath-0.13-r2.ebuild	7 Dec 2011 07:45:48 -0000	1.9
+++ chrpath-0.13-r2.ebuild	9 Jan 2012 19:51:17 -0000	1.10
@@ -1,6 +1,6 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild,v 1.9 2011/12/07 07:45:48 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild,v 1.10 2012/01/09 19:51:17 ranger Exp $
 
 EAPI="2"
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 arm ~ppc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 arm ppc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs"
 
 src_prepare() {






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

* [gentoo-commits] gentoo-x86 commit in app-admin/chrpath: ChangeLog chrpath-0.13-r2.ebuild
@ 2013-07-30 23:09 Alexis Ballier (aballier)
  0 siblings, 0 replies; 7+ messages in thread
From: Alexis Ballier (aballier) @ 2013-07-30 23:09 UTC (permalink / raw
  To: gentoo-commits

aballier    13/07/30 23:09:41

  Modified:             ChangeLog chrpath-0.13-r2.ebuild
  Log:
  keyword ~amd64-fbsd
  
  (Portage version: 2.2.0_alpha191/cvs/Linux x86_64, signed Manifest commit with key 160F534A)

Revision  Changes    Path
1.27                 app-admin/chrpath/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/ChangeLog?rev=1.27&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/ChangeLog?rev=1.27&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/ChangeLog?r1=1.26&r2=1.27

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-admin/chrpath/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog	3 May 2013 18:14:51 -0000	1.26
+++ ChangeLog	30 Jul 2013 23:09:41 -0000	1.27
@@ -1,6 +1,9 @@
 # ChangeLog for app-admin/chrpath
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/chrpath/ChangeLog,v 1.26 2013/05/03 18:14:51 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/chrpath/ChangeLog,v 1.27 2013/07/30 23:09:41 aballier Exp $
+
+  30 Jul 2013; Alexis Ballier <aballier@gentoo.org> chrpath-0.13-r2.ebuild:
+  keyword ~amd64-fbsd
 
   03 May 2013; Fabian Groffen <grobian@gentoo.org> chrpath-0.13-r2.ebuild:
   Fix building with automake-1.13, bug #467538



1.13                 app-admin/chrpath/chrpath-0.13-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild?r1=1.12&r2=1.13

Index: chrpath-0.13-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- chrpath-0.13-r2.ebuild	3 May 2013 18:14:51 -0000	1.12
+++ chrpath-0.13-r2.ebuild	30 Jul 2013 23:09:41 -0000	1.13
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild,v 1.12 2013/05/03 18:14:51 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild,v 1.13 2013/07/30 23:09:41 aballier Exp $
 
 EAPI="2"
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 arm ppc x86 ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 arm ppc x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs"
 
 src_prepare() {





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

end of thread, other threads:[~2013-07-30 23:09 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-11 16:49 [gentoo-commits] gentoo-x86 commit in app-admin/chrpath: ChangeLog chrpath-0.13-r2.ebuild Fabian Groffen (grobian)
  -- strict thread matches above, loose matches on Subject: below --
2013-07-30 23:09 Alexis Ballier (aballier)
2012-01-09 19:51 Brent Baude (ranger)
2011-12-07  7:45 PaweA Hajdan (phajdan.jr)
2011-12-03 11:00 Markus Meier (maekke)
2011-10-11 18:19 Fabian Groffen (grobian)
2011-10-10 22:28 Samuli Suominen (ssuominen)

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