* [gentoo-commits] gentoo-x86 commit in sys-apps/elfix: elfix-0.7.0.ebuild ChangeLog
@ 2012-12-17 0:47 Anthony G. Basile (blueness)
0 siblings, 0 replies; 10+ messages in thread
From: Anthony G. Basile (blueness) @ 2012-12-17 0:47 UTC (permalink / raw
To: gentoo-commits
blueness 12/12/17 00:47:45
Modified: ChangeLog
Added: elfix-0.7.0.ebuild
Log:
Version bump: adds improved tests, fixes flag setting, bug #446518
(Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
Revision Changes Path
1.39 sys-apps/elfix/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?rev=1.39&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?rev=1.39&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?r1=1.38&r2=1.39
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/elfix/ChangeLog,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- ChangeLog 6 Dec 2012 04:07:27 -0000 1.38
+++ ChangeLog 17 Dec 2012 00:47:45 -0000 1.39
@@ -1,4 +1,8 @@
+*elfix-0.7.0 (17 Dec 2012)
+
+ 17 Dec 2012; Anthony G. Basile <blueness@gentoo.org> +elfix-0.7.0.ebuild:
+ Version bump: adds improved tests, fixes flag setting, bug #446518
06 Dec 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> elfix-0.6.0.ebuild:
x86 stable wrt bug #445334
1.1 sys-apps/elfix/elfix-0.7.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild?rev=1.1&content-type=text/plain
Index: elfix-0.7.0.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild,v 1.1 2012/12/17 00:47:44 blueness Exp $
EAPI="4"
DESCRIPTION="Tools to work with ELF binaries and libraries on Hardened Gentoo."
HOMEPAGE="http://dev.gentoo.org/~blueness/elfix/"
SRC_URI="http://dev.gentoo.org/~blueness/elfix/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
IUSE="test +ptpax xtpax"
# These only work on a properly configure pax kernel
RESTRICT="test"
DEPEND="
dev-libs/elfutils
=dev-python/pypax-${PV}[ptpax=,xtpax=]
xtpax? ( sys-apps/attr )"
RDEPEND="${DEPEND}"
src_configure() {
rm -f "${S}/scripts/setup.py"
econf \
$(use_enable test tests) \
$(use_enable ptpax ptpax) \
$(use_enable xtpax xtpax)
}
src_install() {
emake DESTDIR="${D}" install
dodoc AUTHORS ChangeLog INSTALL README THANKS TODO
}
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-apps/elfix: elfix-0.7.0.ebuild ChangeLog
@ 2012-12-18 2:02 Anthony G. Basile (blueness)
0 siblings, 0 replies; 10+ messages in thread
From: Anthony G. Basile (blueness) @ 2012-12-18 2:02 UTC (permalink / raw
To: gentoo-commits
blueness 12/12/18 02:02:57
Modified: elfix-0.7.0.ebuild ChangeLog
Log:
Remove USE=test which only works on a properly configured pax kernel
(Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
Revision Changes Path
1.2 sys-apps/elfix/elfix-0.7.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild?r1=1.1&r2=1.2
Index: elfix-0.7.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- elfix-0.7.0.ebuild 17 Dec 2012 00:47:44 -0000 1.1
+++ elfix-0.7.0.ebuild 18 Dec 2012 02:02:57 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild,v 1.1 2012/12/17 00:47:44 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild,v 1.2 2012/12/18 02:02:57 blueness Exp $
EAPI="4"
@@ -11,9 +11,9 @@
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
-IUSE="test +ptpax xtpax"
+IUSE="+ptpax +xtpax"
-# These only work on a properly configure pax kernel
+# These only work on a properly configured pax kernel
RESTRICT="test"
DEPEND="
@@ -26,7 +26,7 @@
src_configure() {
rm -f "${S}/scripts/setup.py"
econf \
- $(use_enable test tests) \
+ --disable-tests \
$(use_enable ptpax ptpax) \
$(use_enable xtpax xtpax)
}
1.40 sys-apps/elfix/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?rev=1.40&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?rev=1.40&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?r1=1.39&r2=1.40
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/elfix/ChangeLog,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ChangeLog 17 Dec 2012 00:47:45 -0000 1.39
+++ ChangeLog 18 Dec 2012 02:02:57 -0000 1.40
@@ -1,4 +1,7 @@
+ 18 Dec 2012; Anthony G. Basile <blueness@gentoo.org> elfix-0.7.0.ebuild:
+ Remove USE=test which only works on a properly configured pax kernel
+
*elfix-0.7.0 (17 Dec 2012)
17 Dec 2012; Anthony G. Basile <blueness@gentoo.org> +elfix-0.7.0.ebuild:
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-apps/elfix: elfix-0.7.0.ebuild ChangeLog
@ 2012-12-18 2:08 Anthony G. Basile (blueness)
0 siblings, 0 replies; 10+ messages in thread
From: Anthony G. Basile (blueness) @ 2012-12-18 2:08 UTC (permalink / raw
To: gentoo-commits
blueness 12/12/18 02:08:42
Modified: elfix-0.7.0.ebuild ChangeLog
Log:
Minor clean up of use_enable syntax
(Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
Revision Changes Path
1.3 sys-apps/elfix/elfix-0.7.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild?r1=1.2&r2=1.3
Index: elfix-0.7.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- elfix-0.7.0.ebuild 18 Dec 2012 02:02:57 -0000 1.2
+++ elfix-0.7.0.ebuild 18 Dec 2012 02:08:42 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild,v 1.2 2012/12/18 02:02:57 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild,v 1.3 2012/12/18 02:08:42 blueness Exp $
EAPI="4"
@@ -27,8 +27,8 @@
rm -f "${S}/scripts/setup.py"
econf \
--disable-tests \
- $(use_enable ptpax ptpax) \
- $(use_enable xtpax xtpax)
+ $(use_enable ptpax) \
+ $(use_enable xtpax)
}
src_install() {
1.41 sys-apps/elfix/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?rev=1.41&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?rev=1.41&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?r1=1.40&r2=1.41
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/elfix/ChangeLog,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- ChangeLog 18 Dec 2012 02:02:57 -0000 1.40
+++ ChangeLog 18 Dec 2012 02:08:42 -0000 1.41
@@ -1,5 +1,8 @@
18 Dec 2012; Anthony G. Basile <blueness@gentoo.org> elfix-0.7.0.ebuild:
+ Minor clean up of use_enable syntax
+
+ 18 Dec 2012; Anthony G. Basile <blueness@gentoo.org> elfix-0.7.0.ebuild:
Remove USE=test which only works on a properly configured pax kernel
*elfix-0.7.0 (17 Dec 2012)
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-apps/elfix: elfix-0.7.0.ebuild ChangeLog
@ 2012-12-18 10:44 Agostino Sarubbo (ago)
0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-12-18 10:44 UTC (permalink / raw
To: gentoo-commits
ago 12/12/18 10:44:26
Modified: elfix-0.7.0.ebuild ChangeLog
Log:
Stable for amd64, wrt bug #445334
(Portage version: 2.1.11.31/cvs/Linux x86_64, unsigned Manifest commit)
Revision Changes Path
1.4 sys-apps/elfix/elfix-0.7.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild?r1=1.3&r2=1.4
Index: elfix-0.7.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- elfix-0.7.0.ebuild 18 Dec 2012 02:08:42 -0000 1.3
+++ elfix-0.7.0.ebuild 18 Dec 2012 10:44:26 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild,v 1.3 2012/12/18 02:08:42 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild,v 1.4 2012/12/18 10:44:26 ago Exp $
EAPI="4"
@@ -10,7 +10,7 @@
LICENSE="GPL-3"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
IUSE="+ptpax +xtpax"
# These only work on a properly configured pax kernel
1.42 sys-apps/elfix/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?rev=1.42&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?rev=1.42&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?r1=1.41&r2=1.42
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/elfix/ChangeLog,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- ChangeLog 18 Dec 2012 02:08:42 -0000 1.41
+++ ChangeLog 18 Dec 2012 10:44:26 -0000 1.42
@@ -1,4 +1,7 @@
+ 18 Dec 2012; Agostino Sarubbo <ago@gentoo.org> elfix-0.7.0.ebuild:
+ Stable for amd64, wrt bug #445334
+
18 Dec 2012; Anthony G. Basile <blueness@gentoo.org> elfix-0.7.0.ebuild:
Minor clean up of use_enable syntax
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-apps/elfix: elfix-0.7.0.ebuild ChangeLog
@ 2012-12-18 12:59 Anthony G. Basile (blueness)
0 siblings, 0 replies; 10+ messages in thread
From: Anthony G. Basile (blueness) @ 2012-12-18 12:59 UTC (permalink / raw
To: gentoo-commits
blueness 12/12/18 12:59:49
Modified: elfix-0.7.0.ebuild ChangeLog
Log:
stable arm ppc ppc64, bug #445334
(Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
Revision Changes Path
1.5 sys-apps/elfix/elfix-0.7.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild?r1=1.4&r2=1.5
Index: elfix-0.7.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- elfix-0.7.0.ebuild 18 Dec 2012 10:44:26 -0000 1.4
+++ elfix-0.7.0.ebuild 18 Dec 2012 12:59:49 -0000 1.5
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild,v 1.4 2012/12/18 10:44:26 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild,v 1.5 2012/12/18 12:59:49 blueness Exp $
EAPI="4"
@@ -10,7 +10,7 @@
LICENSE="GPL-3"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~sparc ~x86"
IUSE="+ptpax +xtpax"
# These only work on a properly configured pax kernel
1.43 sys-apps/elfix/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?rev=1.43&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?rev=1.43&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?r1=1.42&r2=1.43
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/elfix/ChangeLog,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -r1.42 -r1.43
--- ChangeLog 18 Dec 2012 10:44:26 -0000 1.42
+++ ChangeLog 18 Dec 2012 12:59:49 -0000 1.43
@@ -1,4 +1,7 @@
+ 18 Dec 2012; Anthony G. Basile <blueness@gentoo.org> elfix-0.7.0.ebuild:
+ stable arm ppc ppc64, bug #445334
+
18 Dec 2012; Agostino Sarubbo <ago@gentoo.org> elfix-0.7.0.ebuild:
Stable for amd64, wrt bug #445334
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-apps/elfix: elfix-0.7.0.ebuild ChangeLog
@ 2012-12-18 19:58 Agostino Sarubbo (ago)
0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-12-18 19:58 UTC (permalink / raw
To: gentoo-commits
ago 12/12/18 19:58:27
Modified: elfix-0.7.0.ebuild ChangeLog
Log:
Stable for ia64, wrt bug #445334
(Portage version: 2.1.11.31/cvs/Linux ia64, unsigned Manifest commit)
Revision Changes Path
1.6 sys-apps/elfix/elfix-0.7.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild?r1=1.5&r2=1.6
Index: elfix-0.7.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- elfix-0.7.0.ebuild 18 Dec 2012 12:59:49 -0000 1.5
+++ elfix-0.7.0.ebuild 18 Dec 2012 19:58:27 -0000 1.6
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild,v 1.5 2012/12/18 12:59:49 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild,v 1.6 2012/12/18 19:58:27 ago Exp $
EAPI="4"
@@ -10,7 +10,7 @@
LICENSE="GPL-3"
SLOT="0"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~sparc ~x86"
IUSE="+ptpax +xtpax"
# These only work on a properly configured pax kernel
1.44 sys-apps/elfix/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?rev=1.44&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?rev=1.44&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?r1=1.43&r2=1.44
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/elfix/ChangeLog,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- ChangeLog 18 Dec 2012 12:59:49 -0000 1.43
+++ ChangeLog 18 Dec 2012 19:58:27 -0000 1.44
@@ -1,4 +1,7 @@
+ 18 Dec 2012; Agostino Sarubbo <ago@gentoo.org> elfix-0.7.0.ebuild:
+ Stable for ia64, wrt bug #445334
+
18 Dec 2012; Anthony G. Basile <blueness@gentoo.org> elfix-0.7.0.ebuild:
stable arm ppc ppc64, bug #445334
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-apps/elfix: elfix-0.7.0.ebuild ChangeLog
@ 2012-12-29 14:24 Agostino Sarubbo (ago)
0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-12-29 14:24 UTC (permalink / raw
To: gentoo-commits
ago 12/12/29 14:24:51
Modified: elfix-0.7.0.ebuild ChangeLog
Log:
Stable for sparc, wrt bug #445334
(Portage version: 2.1.11.31/cvs/Linux ppc64, unsigned Manifest commit)
Revision Changes Path
1.7 sys-apps/elfix/elfix-0.7.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild?r1=1.6&r2=1.7
Index: elfix-0.7.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- elfix-0.7.0.ebuild 18 Dec 2012 19:58:27 -0000 1.6
+++ elfix-0.7.0.ebuild 29 Dec 2012 14:24:51 -0000 1.7
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild,v 1.6 2012/12/18 19:58:27 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild,v 1.7 2012/12/29 14:24:51 ago Exp $
EAPI="4"
@@ -10,7 +10,7 @@
LICENSE="GPL-3"
SLOT="0"
-KEYWORDS="~alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 sparc ~x86"
IUSE="+ptpax +xtpax"
# These only work on a properly configured pax kernel
1.45 sys-apps/elfix/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?rev=1.45&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?rev=1.45&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?r1=1.44&r2=1.45
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/elfix/ChangeLog,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- ChangeLog 18 Dec 2012 19:58:27 -0000 1.44
+++ ChangeLog 29 Dec 2012 14:24:51 -0000 1.45
@@ -1,4 +1,7 @@
+ 29 Dec 2012; Agostino Sarubbo <ago@gentoo.org> elfix-0.7.0.ebuild:
+ Stable for sparc, wrt bug #445334
+
18 Dec 2012; Agostino Sarubbo <ago@gentoo.org> elfix-0.7.0.ebuild:
Stable for ia64, wrt bug #445334
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-apps/elfix: elfix-0.7.0.ebuild ChangeLog
@ 2012-12-30 14:36 Agostino Sarubbo (ago)
0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-12-30 14:36 UTC (permalink / raw
To: gentoo-commits
ago 12/12/30 14:36:10
Modified: elfix-0.7.0.ebuild ChangeLog
Log:
Stable for alpha, wrt bug #445334
(Portage version: 2.1.11.31/cvs/Linux ppc64, unsigned Manifest commit)
Revision Changes Path
1.8 sys-apps/elfix/elfix-0.7.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild?r1=1.7&r2=1.8
Index: elfix-0.7.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- elfix-0.7.0.ebuild 29 Dec 2012 14:24:51 -0000 1.7
+++ elfix-0.7.0.ebuild 30 Dec 2012 14:36:10 -0000 1.8
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild,v 1.7 2012/12/29 14:24:51 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild,v 1.8 2012/12/30 14:36:10 ago Exp $
EAPI="4"
@@ -10,7 +10,7 @@
LICENSE="GPL-3"
SLOT="0"
-KEYWORDS="~alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 sparc ~x86"
+KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 sparc ~x86"
IUSE="+ptpax +xtpax"
# These only work on a properly configured pax kernel
1.48 sys-apps/elfix/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?rev=1.48&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?rev=1.48&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?r1=1.47&r2=1.48
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/elfix/ChangeLog,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ChangeLog 29 Dec 2012 22:26:43 -0000 1.47
+++ ChangeLog 30 Dec 2012 14:36:10 -0000 1.48
@@ -1,4 +1,7 @@
+ 30 Dec 2012; Agostino Sarubbo <ago@gentoo.org> elfix-0.7.0.ebuild:
+ Stable for alpha, wrt bug #445334
+
29 Dec 2012; Anthony G. Basile <blueness@gentoo.org> -elfix-0.5.2.ebuild:
Remove older version, bug #440018
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-apps/elfix: elfix-0.7.0.ebuild ChangeLog
@ 2012-12-31 15:23 Jeroen Roovers (jer)
0 siblings, 0 replies; 10+ messages in thread
From: Jeroen Roovers (jer) @ 2012-12-31 15:23 UTC (permalink / raw
To: gentoo-commits
jer 12/12/31 15:23:03
Modified: elfix-0.7.0.ebuild ChangeLog
Log:
Stable for HPPA (bug #445334).
(Portage version: 2.2.0_alpha149/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Revision Changes Path
1.9 sys-apps/elfix/elfix-0.7.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild?r1=1.8&r2=1.9
Index: elfix-0.7.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- elfix-0.7.0.ebuild 30 Dec 2012 14:36:10 -0000 1.8
+++ elfix-0.7.0.ebuild 31 Dec 2012 15:23:03 -0000 1.9
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild,v 1.8 2012/12/30 14:36:10 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild,v 1.9 2012/12/31 15:23:03 jer Exp $
EAPI="4"
@@ -10,7 +10,7 @@
LICENSE="GPL-3"
SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 sparc ~x86"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc ~x86"
IUSE="+ptpax +xtpax"
# These only work on a properly configured pax kernel
1.49 sys-apps/elfix/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?rev=1.49&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?rev=1.49&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?r1=1.48&r2=1.49
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/elfix/ChangeLog,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- ChangeLog 30 Dec 2012 14:36:10 -0000 1.48
+++ ChangeLog 31 Dec 2012 15:23:03 -0000 1.49
@@ -1,4 +1,8 @@
+
+ 31 Dec 2012; Jeroen Roovers <jer@gentoo.org> elfix-0.7.0.ebuild:
+ Stable for HPPA (bug #445334).
+
30 Dec 2012; Agostino Sarubbo <ago@gentoo.org> elfix-0.7.0.ebuild:
Stable for alpha, wrt bug #445334
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-apps/elfix: elfix-0.7.0.ebuild ChangeLog
@ 2013-01-10 20:36 Anthony G. Basile (blueness)
0 siblings, 0 replies; 10+ messages in thread
From: Anthony G. Basile (blueness) @ 2013-01-10 20:36 UTC (permalink / raw
To: gentoo-commits
blueness 13/01/10 20:36:10
Modified: elfix-0.7.0.ebuild ChangeLog
Log:
Stable x86, bug #445334
(Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
Revision Changes Path
1.10 sys-apps/elfix/elfix-0.7.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild?r1=1.9&r2=1.10
Index: elfix-0.7.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- elfix-0.7.0.ebuild 31 Dec 2012 15:23:03 -0000 1.9
+++ elfix-0.7.0.ebuild 10 Jan 2013 20:36:10 -0000 1.10
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild,v 1.9 2012/12/31 15:23:03 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/elfix/elfix-0.7.0.ebuild,v 1.10 2013/01/10 20:36:10 blueness Exp $
EAPI="4"
@@ -10,7 +10,7 @@
LICENSE="GPL-3"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc ~x86"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86"
IUSE="+ptpax +xtpax"
# These only work on a properly configured pax kernel
1.52 sys-apps/elfix/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?rev=1.52&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?rev=1.52&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?r1=1.51&r2=1.52
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/elfix/ChangeLog,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- ChangeLog 6 Jan 2013 23:00:25 -0000 1.51
+++ ChangeLog 10 Jan 2013 20:36:10 -0000 1.52
@@ -1,4 +1,7 @@
+ 10 Jan 2013; Anthony G. Basile <blueness@gentoo.org> elfix-0.7.0.ebuild:
+ Stable x86, bug #445334
+
06 Jan 2013; Anthony G. Basile <blueness@gentoo.org> -elfix-0.8.0.ebuild:
Remove deprecated unstable version
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2013-01-10 20:36 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-17 0:47 [gentoo-commits] gentoo-x86 commit in sys-apps/elfix: elfix-0.7.0.ebuild ChangeLog Anthony G. Basile (blueness)
-- strict thread matches above, loose matches on Subject: below --
2012-12-18 2:02 Anthony G. Basile (blueness)
2012-12-18 2:08 Anthony G. Basile (blueness)
2012-12-18 10:44 Agostino Sarubbo (ago)
2012-12-18 12:59 Anthony G. Basile (blueness)
2012-12-18 19:58 Agostino Sarubbo (ago)
2012-12-29 14:24 Agostino Sarubbo (ago)
2012-12-30 14:36 Agostino Sarubbo (ago)
2012-12-31 15:23 Jeroen Roovers (jer)
2013-01-10 20:36 Anthony G. Basile (blueness)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox