* [gentoo-commits] gentoo-x86 commit in sci-libs/mpir: mpir-2.6.0-r2.ebuild ChangeLog
@ 2013-05-22 16:20 Thomas Kahle (tomka)
0 siblings, 0 replies; 8+ messages in thread
From: Thomas Kahle (tomka) @ 2013-05-22 16:20 UTC (permalink / raw
To: gentoo-commits
tomka 13/05/22 16:20:34
Modified: ChangeLog
Added: mpir-2.6.0-r2.ebuild
Log:
fix tests with gcc-4.8 (bug 470838)
(Portage version: 2.1.12.1/cvs/Linux x86_64, signed Manifest commit with key 0x89DEB219565C32BC!)
Revision Changes Path
1.19 sci-libs/mpir/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/ChangeLog?rev=1.19&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/ChangeLog?rev=1.19&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/ChangeLog?r1=1.18&r2=1.19
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/mpir/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog 19 Feb 2013 16:03:02 -0000 1.18
+++ ChangeLog 22 May 2013 16:20:34 -0000 1.19
@@ -1,6 +1,12 @@
# ChangeLog for sci-libs/mpir
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/mpir/ChangeLog,v 1.18 2013/02/19 16:03:02 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/mpir/ChangeLog,v 1.19 2013/05/22 16:20:34 tomka Exp $
+
+*mpir-2.6.0-r2 (22 May 2013)
+
+ 22 May 2013; Thomas Kahle <tomka@gentoo.org> +files/mpir-2.6.0-gcc48.patch,
+ +mpir-2.6.0-r2.ebuild:
+ fix tests with gcc-4.8 (bug 470838)
*mpir-2.6.0-r1 (19 Feb 2013)
1.1 sci-libs/mpir/mpir-2.6.0-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/mpir-2.6.0-r2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/mpir-2.6.0-r2.ebuild?rev=1.1&content-type=text/plain
Index: mpir-2.6.0-r2.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/mpir/mpir-2.6.0-r2.ebuild,v 1.1 2013/05/22 16:20:34 tomka Exp $
EAPI=5
inherit autotools-utils eutils toolchain-funcs
DESCRIPTION="Library for arbitrary precision integer arithmetic (fork of gmp)"
HOMEPAGE="http://www.mpir.org/"
SRC_URI="http://www.mpir.org/${P}.tar.lzma"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
IUSE="+cxx cpudetection static-libs"
DEPEND="x86? ( dev-lang/yasm )
amd64? ( dev-lang/yasm )"
RDEPEND=""
src_prepare() {
tc-export CC
epatch \
"${FILESDIR}"/${PN}-2.6.0-yasm.patch \
"${FILESDIR}"/${PN}-1.3.0-ABI-multilib.patch \
"${FILESDIR}"/${PN}-2.5.1-automake-1.12.patch \
"${FILESDIR}"/${PN}-2.6.0-gcc48.patch
# In the same way there was QA regarding executable stacks
# with GMP we have some here as well. We cannot apply the
# GMP solution as yasm is used, at least on x86/amd64.
# Furthermore we are able to patch config.ac.
ebegin "Patching assembler files to remove executable sections"
local i
for i in $(find . -type f -name '*.asm') ; do
cat >> $i <<-EOF
#if defined(__linux__) && defined(__ELF__)
.section .note.GNU-stack,"",%progbits
#endif
EOF
done
for i in $(find . -type f -name '*.as') ; do
cat >> $i <<-EOF
%ifidn __OUTPUT_FORMAT__,elf
section .note.GNU-stack noalloc noexec nowrite progbits
%endif
EOF
done
eend
eautoreconf
}
src_configure() {
# beware that cpudetection aka fat binaries is x86/amd64 only.
# Place mpir in profiles/arch/$arch/package.use.mask
# when making it available on $arch.
myeconfargs+=(
$(use_enable cxx)
$(use_enable cpudetection fat)
)
autotools-utils_src_configure
}
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/mpir: mpir-2.6.0-r2.ebuild ChangeLog
@ 2013-06-24 17:00 Agostino Sarubbo (ago)
0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-06-24 17:00 UTC (permalink / raw
To: gentoo-commits
ago 13/06/24 17:00:19
Modified: mpir-2.6.0-r2.ebuild ChangeLog
Log:
Stable for ppc, wrt bug #474076
(Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)
Revision Changes Path
1.2 sci-libs/mpir/mpir-2.6.0-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/mpir-2.6.0-r2.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/mpir-2.6.0-r2.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/mpir-2.6.0-r2.ebuild?r1=1.1&r2=1.2
Index: mpir-2.6.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/mpir/mpir-2.6.0-r2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- mpir-2.6.0-r2.ebuild 22 May 2013 16:20:34 -0000 1.1
+++ mpir-2.6.0-r2.ebuild 24 Jun 2013 17:00:19 -0000 1.2
@@ -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/sci-libs/mpir/mpir-2.6.0-r2.ebuild,v 1.1 2013/05/22 16:20:34 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/mpir/mpir-2.6.0-r2.ebuild,v 1.2 2013/06/24 17:00:19 ago Exp $
EAPI=5
@@ -12,7 +12,7 @@
LICENSE="LGPL-3"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ppc ~x86 ~amd64-linux ~x86-linux"
IUSE="+cxx cpudetection static-libs"
DEPEND="x86? ( dev-lang/yasm )
1.20 sci-libs/mpir/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/ChangeLog?rev=1.20&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/ChangeLog?rev=1.20&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/ChangeLog?r1=1.19&r2=1.20
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/mpir/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog 22 May 2013 16:20:34 -0000 1.19
+++ ChangeLog 24 Jun 2013 17:00:19 -0000 1.20
@@ -1,6 +1,9 @@
# ChangeLog for sci-libs/mpir
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/mpir/ChangeLog,v 1.19 2013/05/22 16:20:34 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/mpir/ChangeLog,v 1.20 2013/06/24 17:00:19 ago Exp $
+
+ 24 Jun 2013; Agostino Sarubbo <ago@gentoo.org> mpir-2.6.0-r2.ebuild:
+ Stable for ppc, wrt bug #474076
*mpir-2.6.0-r2 (22 May 2013)
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/mpir: mpir-2.6.0-r2.ebuild ChangeLog
@ 2013-06-25 12:30 Agostino Sarubbo (ago)
0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-06-25 12:30 UTC (permalink / raw
To: gentoo-commits
ago 13/06/25 12:30:08
Modified: mpir-2.6.0-r2.ebuild ChangeLog
Log:
Stable for x86, wrt bug #474076
(Portage version: 2.1.12.9/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key 7194459F)
Revision Changes Path
1.3 sci-libs/mpir/mpir-2.6.0-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/mpir-2.6.0-r2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/mpir-2.6.0-r2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/mpir-2.6.0-r2.ebuild?r1=1.2&r2=1.3
Index: mpir-2.6.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/mpir/mpir-2.6.0-r2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- mpir-2.6.0-r2.ebuild 24 Jun 2013 17:00:19 -0000 1.2
+++ mpir-2.6.0-r2.ebuild 25 Jun 2013 12:30:08 -0000 1.3
@@ -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/sci-libs/mpir/mpir-2.6.0-r2.ebuild,v 1.2 2013/06/24 17:00:19 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/mpir/mpir-2.6.0-r2.ebuild,v 1.3 2013/06/25 12:30:08 ago Exp $
EAPI=5
@@ -12,7 +12,7 @@
LICENSE="LGPL-3"
SLOT="0"
-KEYWORDS="~amd64 ppc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ppc x86 ~amd64-linux ~x86-linux"
IUSE="+cxx cpudetection static-libs"
DEPEND="x86? ( dev-lang/yasm )
1.21 sci-libs/mpir/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/ChangeLog?rev=1.21&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/ChangeLog?rev=1.21&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/ChangeLog?r1=1.20&r2=1.21
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/mpir/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog 24 Jun 2013 17:00:19 -0000 1.20
+++ ChangeLog 25 Jun 2013 12:30:08 -0000 1.21
@@ -1,6 +1,9 @@
# ChangeLog for sci-libs/mpir
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/mpir/ChangeLog,v 1.20 2013/06/24 17:00:19 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/mpir/ChangeLog,v 1.21 2013/06/25 12:30:08 ago Exp $
+
+ 25 Jun 2013; Agostino Sarubbo <ago@gentoo.org> mpir-2.6.0-r2.ebuild:
+ Stable for x86, wrt bug #474076
24 Jun 2013; Agostino Sarubbo <ago@gentoo.org> mpir-2.6.0-r2.ebuild:
Stable for ppc, wrt bug #474076
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/mpir: mpir-2.6.0-r2.ebuild ChangeLog
@ 2013-06-25 13:01 Agostino Sarubbo (ago)
0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-06-25 13:01 UTC (permalink / raw
To: gentoo-commits
ago 13/06/25 13:01:37
Modified: mpir-2.6.0-r2.ebuild ChangeLog
Log:
Stable for amd64, wrt bug #474076
(Portage version: 2.1.12.9/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key 7194459F)
Revision Changes Path
1.4 sci-libs/mpir/mpir-2.6.0-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/mpir-2.6.0-r2.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/mpir-2.6.0-r2.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/mpir-2.6.0-r2.ebuild?r1=1.3&r2=1.4
Index: mpir-2.6.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/mpir/mpir-2.6.0-r2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- mpir-2.6.0-r2.ebuild 25 Jun 2013 12:30:08 -0000 1.3
+++ mpir-2.6.0-r2.ebuild 25 Jun 2013 13:01:37 -0000 1.4
@@ -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/sci-libs/mpir/mpir-2.6.0-r2.ebuild,v 1.3 2013/06/25 12:30:08 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/mpir/mpir-2.6.0-r2.ebuild,v 1.4 2013/06/25 13:01:37 ago Exp $
EAPI=5
@@ -12,7 +12,7 @@
LICENSE="LGPL-3"
SLOT="0"
-KEYWORDS="~amd64 ppc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux"
IUSE="+cxx cpudetection static-libs"
DEPEND="x86? ( dev-lang/yasm )
1.22 sci-libs/mpir/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/ChangeLog?rev=1.22&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/ChangeLog?rev=1.22&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/ChangeLog?r1=1.21&r2=1.22
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/mpir/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog 25 Jun 2013 12:30:08 -0000 1.21
+++ ChangeLog 25 Jun 2013 13:01:37 -0000 1.22
@@ -1,6 +1,9 @@
# ChangeLog for sci-libs/mpir
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/mpir/ChangeLog,v 1.21 2013/06/25 12:30:08 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/mpir/ChangeLog,v 1.22 2013/06/25 13:01:37 ago Exp $
+
+ 25 Jun 2013; Agostino Sarubbo <ago@gentoo.org> mpir-2.6.0-r2.ebuild:
+ Stable for amd64, wrt bug #474076
25 Jun 2013; Agostino Sarubbo <ago@gentoo.org> mpir-2.6.0-r2.ebuild:
Stable for x86, wrt bug #474076
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/mpir: mpir-2.6.0-r2.ebuild ChangeLog
@ 2014-01-27 14:09 Akinori Hattori (hattya)
0 siblings, 0 replies; 8+ messages in thread
From: Akinori Hattori (hattya) @ 2014-01-27 14:09 UTC (permalink / raw
To: gentoo-commits
hattya 14/01/27 14:09:54
Modified: mpir-2.6.0-r2.ebuild ChangeLog
Log:
keyword ~ia64 wrt bug #495120
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key EC917A6D)
Revision Changes Path
1.5 sci-libs/mpir/mpir-2.6.0-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/mpir-2.6.0-r2.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/mpir-2.6.0-r2.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/mpir-2.6.0-r2.ebuild?r1=1.4&r2=1.5
Index: mpir-2.6.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/mpir/mpir-2.6.0-r2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- mpir-2.6.0-r2.ebuild 25 Jun 2013 13:01:37 -0000 1.4
+++ mpir-2.6.0-r2.ebuild 27 Jan 2014 14:09:54 -0000 1.5
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/mpir/mpir-2.6.0-r2.ebuild,v 1.4 2013/06/25 13:01:37 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/mpir/mpir-2.6.0-r2.ebuild,v 1.5 2014/01/27 14:09:54 hattya Exp $
EAPI=5
@@ -12,7 +12,7 @@
LICENSE="LGPL-3"
SLOT="0"
-KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~ia64 ppc x86 ~amd64-linux ~x86-linux"
IUSE="+cxx cpudetection static-libs"
DEPEND="x86? ( dev-lang/yasm )
1.24 sci-libs/mpir/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/ChangeLog?rev=1.24&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/ChangeLog?rev=1.24&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/ChangeLog?r1=1.23&r2=1.24
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/mpir/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog 26 Jun 2013 15:29:22 -0000 1.23
+++ ChangeLog 27 Jan 2014 14:09:54 -0000 1.24
@@ -1,6 +1,9 @@
# ChangeLog for sci-libs/mpir
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/mpir/ChangeLog,v 1.23 2013/06/26 15:29:22 jlec Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/mpir/ChangeLog,v 1.24 2014/01/27 14:09:54 hattya Exp $
+
+ 27 Jan 2014; Akinori Hattori <hattya@gentoo.org> mpir-2.6.0-r2.ebuild:
+ keyword ~ia64 wrt bug #495120
26 Jun 2013; Justin Lecher <jlec@gentoo.org> -mpir-2.2.1.ebuild,
-mpir-2.5.1.ebuild, -mpir-2.6.0.ebuild, -mpir-2.6.0-r1.ebuild, metadata.xml:
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/mpir: mpir-2.6.0-r2.ebuild ChangeLog
@ 2014-08-27 12:05 Anthony G. Basile (blueness)
0 siblings, 0 replies; 8+ messages in thread
From: Anthony G. Basile (blueness) @ 2014-08-27 12:05 UTC (permalink / raw
To: gentoo-commits
blueness 14/08/27 12:05:07
Modified: mpir-2.6.0-r2.ebuild ChangeLog
Log:
Keyword ~ppc64, bug #495116
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
Revision Changes Path
1.6 sci-libs/mpir/mpir-2.6.0-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/mpir-2.6.0-r2.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/mpir-2.6.0-r2.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/mpir-2.6.0-r2.ebuild?r1=1.5&r2=1.6
Index: mpir-2.6.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/mpir/mpir-2.6.0-r2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- mpir-2.6.0-r2.ebuild 27 Jan 2014 14:09:54 -0000 1.5
+++ mpir-2.6.0-r2.ebuild 27 Aug 2014 12:05:07 -0000 1.6
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/mpir/mpir-2.6.0-r2.ebuild,v 1.5 2014/01/27 14:09:54 hattya Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/mpir/mpir-2.6.0-r2.ebuild,v 1.6 2014/08/27 12:05:07 blueness Exp $
EAPI=5
@@ -12,7 +12,7 @@
LICENSE="LGPL-3"
SLOT="0"
-KEYWORDS="amd64 ~ia64 ppc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~ia64 ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="+cxx cpudetection static-libs"
DEPEND="x86? ( dev-lang/yasm )
1.25 sci-libs/mpir/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/ChangeLog?rev=1.25&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/ChangeLog?rev=1.25&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/ChangeLog?r1=1.24&r2=1.25
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/mpir/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog 27 Jan 2014 14:09:54 -0000 1.24
+++ ChangeLog 27 Aug 2014 12:05:07 -0000 1.25
@@ -1,6 +1,9 @@
# ChangeLog for sci-libs/mpir
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/mpir/ChangeLog,v 1.24 2014/01/27 14:09:54 hattya Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/mpir/ChangeLog,v 1.25 2014/08/27 12:05:07 blueness Exp $
+
+ 27 Aug 2014; Anthony G. Basile <blueness@gentoo.org> mpir-2.6.0-r2.ebuild:
+ Keyword ~ppc64, bug #495116
27 Jan 2014; Akinori Hattori <hattya@gentoo.org> mpir-2.6.0-r2.ebuild:
keyword ~ia64 wrt bug #495120
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/mpir: mpir-2.6.0-r2.ebuild ChangeLog
@ 2014-12-04 8:51 Agostino Sarubbo (ago)
0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-12-04 8:51 UTC (permalink / raw
To: gentoo-commits
ago 14/12/04 08:51:10
Modified: mpir-2.6.0-r2.ebuild ChangeLog
Log:
Stable for ppc64, wrt bug #526460
(Portage version: 2.2.8-r2/cvs/Linux x86_64, RepoMan options: --include-arches="ppc64", signed Manifest commit with key 7194459F)
Revision Changes Path
1.7 sci-libs/mpir/mpir-2.6.0-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/mpir-2.6.0-r2.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/mpir-2.6.0-r2.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/mpir-2.6.0-r2.ebuild?r1=1.6&r2=1.7
Index: mpir-2.6.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/mpir/mpir-2.6.0-r2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- mpir-2.6.0-r2.ebuild 27 Aug 2014 12:05:07 -0000 1.6
+++ mpir-2.6.0-r2.ebuild 4 Dec 2014 08:51:10 -0000 1.7
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/mpir/mpir-2.6.0-r2.ebuild,v 1.6 2014/08/27 12:05:07 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/mpir/mpir-2.6.0-r2.ebuild,v 1.7 2014/12/04 08:51:10 ago Exp $
EAPI=5
@@ -12,7 +12,7 @@
LICENSE="LGPL-3"
SLOT="0"
-KEYWORDS="amd64 ~ia64 ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~ia64 ppc ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="+cxx cpudetection static-libs"
DEPEND="x86? ( dev-lang/yasm )
1.26 sci-libs/mpir/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/ChangeLog?rev=1.26&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/ChangeLog?rev=1.26&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/ChangeLog?r1=1.25&r2=1.26
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/mpir/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog 27 Aug 2014 12:05:07 -0000 1.25
+++ ChangeLog 4 Dec 2014 08:51:10 -0000 1.26
@@ -1,6 +1,9 @@
# ChangeLog for sci-libs/mpir
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/mpir/ChangeLog,v 1.25 2014/08/27 12:05:07 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/mpir/ChangeLog,v 1.26 2014/12/04 08:51:10 ago Exp $
+
+ 04 Dec 2014; Agostino Sarubbo <ago@gentoo.org> mpir-2.6.0-r2.ebuild:
+ Stable for ppc64, wrt bug #526460
27 Aug 2014; Anthony G. Basile <blueness@gentoo.org> mpir-2.6.0-r2.ebuild:
Keyword ~ppc64, bug #495116
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/mpir: mpir-2.6.0-r2.ebuild ChangeLog
@ 2014-12-06 16:54 Agostino Sarubbo (ago)
0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-12-06 16:54 UTC (permalink / raw
To: gentoo-commits
ago 14/12/06 16:54:01
Modified: mpir-2.6.0-r2.ebuild ChangeLog
Log:
Stable for ia64, wrt bug #526460
(Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="ia64", signed Manifest commit with key 7194459F)
Revision Changes Path
1.8 sci-libs/mpir/mpir-2.6.0-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/mpir-2.6.0-r2.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/mpir-2.6.0-r2.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/mpir-2.6.0-r2.ebuild?r1=1.7&r2=1.8
Index: mpir-2.6.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/mpir/mpir-2.6.0-r2.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- mpir-2.6.0-r2.ebuild 4 Dec 2014 08:51:10 -0000 1.7
+++ mpir-2.6.0-r2.ebuild 6 Dec 2014 16:54:01 -0000 1.8
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/mpir/mpir-2.6.0-r2.ebuild,v 1.7 2014/12/04 08:51:10 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/mpir/mpir-2.6.0-r2.ebuild,v 1.8 2014/12/06 16:54:01 ago Exp $
EAPI=5
@@ -12,7 +12,7 @@
LICENSE="LGPL-3"
SLOT="0"
-KEYWORDS="amd64 ~ia64 ppc ppc64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ia64 ppc ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="+cxx cpudetection static-libs"
DEPEND="x86? ( dev-lang/yasm )
1.27 sci-libs/mpir/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/ChangeLog?rev=1.27&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/ChangeLog?rev=1.27&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/mpir/ChangeLog?r1=1.26&r2=1.27
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/mpir/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog 4 Dec 2014 08:51:10 -0000 1.26
+++ ChangeLog 6 Dec 2014 16:54:01 -0000 1.27
@@ -1,6 +1,9 @@
# ChangeLog for sci-libs/mpir
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/mpir/ChangeLog,v 1.26 2014/12/04 08:51:10 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/mpir/ChangeLog,v 1.27 2014/12/06 16:54:01 ago Exp $
+
+ 06 Dec 2014; Agostino Sarubbo <ago@gentoo.org> mpir-2.6.0-r2.ebuild:
+ Stable for ia64, wrt bug #526460
04 Dec 2014; Agostino Sarubbo <ago@gentoo.org> mpir-2.6.0-r2.ebuild:
Stable for ppc64, wrt bug #526460
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2014-12-06 16:54 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-27 14:09 [gentoo-commits] gentoo-x86 commit in sci-libs/mpir: mpir-2.6.0-r2.ebuild ChangeLog Akinori Hattori (hattya)
-- strict thread matches above, loose matches on Subject: below --
2014-12-06 16:54 Agostino Sarubbo (ago)
2014-12-04 8:51 Agostino Sarubbo (ago)
2014-08-27 12:05 Anthony G. Basile (blueness)
2013-06-25 13:01 Agostino Sarubbo (ago)
2013-06-25 12:30 Agostino Sarubbo (ago)
2013-06-24 17:00 Agostino Sarubbo (ago)
2013-05-22 16:20 Thomas Kahle (tomka)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox