* [gentoo-commits] gentoo-x86 commit in dev-libs/libtommath: libtommath-0.42.0-r1.ebuild ChangeLog
@ 2013-04-24 1:10 Mike Frysinger (vapier)
0 siblings, 0 replies; 13+ messages in thread
From: Mike Frysinger (vapier) @ 2013-04-24 1:10 UTC (permalink / raw
To: gentoo-commits
vapier 13/04/24 01:10:55
Modified: libtommath-0.42.0-r1.ebuild ChangeLog
Log:
Use CPPFLAGS when compiling and CFLAGS when linking. Avoid building static objects when USE=static-libs. Use new libtool code for all targets including darwin.
(Portage version: 2.2.0_alpha170/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)
Revision Changes Path
1.7 dev-libs/libtommath/libtommath-0.42.0-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild?r1=1.6&r2=1.7
Index: libtommath-0.42.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- libtommath-0.42.0-r1.ebuild 23 Apr 2013 19:27:24 -0000 1.6
+++ libtommath-0.42.0-r1.ebuild 24 Apr 2013 01:10:55 -0000 1.7
@@ -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/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild,v 1.6 2013/04/23 19:27:24 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild,v 1.7 2013/04/24 01:10:55 vapier Exp $
EAPI=4
@@ -16,40 +16,44 @@
IUSE="doc examples static-libs"
DEPEND="sys-devel/libtool"
+RDEPEND=""
src_prepare() {
epatch "${FILESDIR}"/${P}-makefile.patch
- if [[ ${CHOST} == *-darwin* ]]; then
- sed -i -e 's/libtool/glibtool/g' makefile.shared
- export LT="glibtool"
- else
- # need libtool for cross compilation. Bug #376643
- cat <<-EOF > configure.ac
- AC_INIT(libtommath, 0)
- AM_INIT_AUTOMAKE
- LT_INIT
- AC_CONFIG_FILES(Makefile)
- AC_OUTPUT
- EOF
- touch NEWS README AUTHORS ChangeLog Makefile.am
- eautoreconf
- export LT="${S}"/libtool
- fi
+ # need libtool for cross compilation. Bug #376643
+ cat <<-EOF > configure.ac
+ AC_INIT(libtommath, 0)
+ AM_INIT_AUTOMAKE
+ LT_INIT
+ AC_CONFIG_FILES(Makefile)
+ AC_OUTPUT
+ EOF
+ touch NEWS README AUTHORS ChangeLog Makefile.am
+ eautoreconf
+ export LT="${S}"/libtool
}
-src_compile() {
- emake CC=$(tc-getCC) -f makefile.shared \
- IGNORE_SPEED=1 \
- LIBPATH="${EPREFIX}/usr/$(get_libdir)"
+src_configure() {
+ econf $(use_enable static-libs static)
}
-src_install() {
- emake -f makefile.shared \
- DESTDIR="${ED}" \
+_emake() {
+ emake CC="$(tc-getCC)" -f makefile.shared \
+ IGNORE_SPEED=1 \
LIBPATH="${EPREFIX}/usr/$(get_libdir)" \
INCPATH="${EPREFIX}/usr/include" \
- install
+ "$@"
+}
+
+src_compile() {
+ _emake
+}
+
+src_install() {
+ _emake DESTDIR="${ED}" install
+ # We only link against -lc, so drop the .la file.
+ find "${ED}" -name '*.la' -delete
dodoc changes.txt
@@ -59,6 +63,4 @@
docinto demo
dodoc demo/*.c
fi
-
- use static-libs || find "${ED}" \( -name '*.a' -or -name '*.la' \) -delete
}
1.51 dev-libs/libtommath/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/ChangeLog?rev=1.51&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/ChangeLog?rev=1.51&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/ChangeLog?r1=1.50&r2=1.51
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libtommath/ChangeLog,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -r1.50 -r1.51
--- ChangeLog 23 Apr 2013 19:27:24 -0000 1.50
+++ ChangeLog 24 Apr 2013 01:10:55 -0000 1.51
@@ -1,6 +1,12 @@
# ChangeLog for dev-libs/libtommath
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/ChangeLog,v 1.50 2013/04/23 19:27:24 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/ChangeLog,v 1.51 2013/04/24 01:10:55 vapier Exp $
+
+ 24 Apr 2013; Mike Frysinger <vapier@gentoo.org>
+ files/libtommath-0.42.0-makefile.patch, libtommath-0.42.0-r1.ebuild:
+ Use CPPFLAGS when compiling and CFLAGS when linking. Avoid building static
+ objects when USE=static-libs. Use new libtool code for all targets including
+ darwin.
23 Apr 2013; Markos Chandras <hwoarang@gentoo.org>
libtommath-0.42.0-r1.ebuild, files/libtommath-0.42.0-makefile.patch:
^ permalink raw reply [flat|nested] 13+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/libtommath: libtommath-0.42.0-r1.ebuild ChangeLog
@ 2013-05-20 12:52 Agostino Sarubbo (ago)
0 siblings, 0 replies; 13+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-20 12:52 UTC (permalink / raw
To: gentoo-commits
ago 13/05/20 12:52:43
Modified: libtommath-0.42.0-r1.ebuild ChangeLog
Log:
Stable for ppc, wrt bug #470264
(Portage version: 2.1.11.63/cvs/Linux ppc64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)
Revision Changes Path
1.8 dev-libs/libtommath/libtommath-0.42.0-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild?r1=1.7&r2=1.8
Index: libtommath-0.42.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- libtommath-0.42.0-r1.ebuild 24 Apr 2013 01:10:55 -0000 1.7
+++ libtommath-0.42.0-r1.ebuild 20 May 2013 12:52:43 -0000 1.8
@@ -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/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild,v 1.7 2013/04/24 01:10:55 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild,v 1.8 2013/05/20 12:52:43 ago Exp $
EAPI=4
@@ -12,7 +12,7 @@
LICENSE="WTFPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="doc examples static-libs"
DEPEND="sys-devel/libtool"
1.52 dev-libs/libtommath/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/ChangeLog?rev=1.52&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/ChangeLog?rev=1.52&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/ChangeLog?r1=1.51&r2=1.52
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libtommath/ChangeLog,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- ChangeLog 24 Apr 2013 01:10:55 -0000 1.51
+++ ChangeLog 20 May 2013 12:52:43 -0000 1.52
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/libtommath
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/ChangeLog,v 1.51 2013/04/24 01:10:55 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/ChangeLog,v 1.52 2013/05/20 12:52:43 ago Exp $
+
+ 20 May 2013; Agostino Sarubbo <ago@gentoo.org> libtommath-0.42.0-r1.ebuild:
+ Stable for ppc, wrt bug #470264
24 Apr 2013; Mike Frysinger <vapier@gentoo.org>
files/libtommath-0.42.0-makefile.patch, libtommath-0.42.0-r1.ebuild:
^ permalink raw reply [flat|nested] 13+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/libtommath: libtommath-0.42.0-r1.ebuild ChangeLog
@ 2013-05-20 17:24 Agostino Sarubbo (ago)
0 siblings, 0 replies; 13+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-20 17:24 UTC (permalink / raw
To: gentoo-commits
ago 13/05/20 17:24:03
Modified: libtommath-0.42.0-r1.ebuild ChangeLog
Log:
Stable for arm, wrt bug #470264
(Portage version: 2.1.11.63/cvs/Linux ppc64, RepoMan options: --include-arches="arm", signed Manifest commit with key 7194459F)
Revision Changes Path
1.9 dev-libs/libtommath/libtommath-0.42.0-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild?r1=1.8&r2=1.9
Index: libtommath-0.42.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- libtommath-0.42.0-r1.ebuild 20 May 2013 12:52:43 -0000 1.8
+++ libtommath-0.42.0-r1.ebuild 20 May 2013 17:24:03 -0000 1.9
@@ -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/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild,v 1.8 2013/05/20 12:52:43 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild,v 1.9 2013/05/20 17:24:03 ago Exp $
EAPI=4
@@ -12,7 +12,7 @@
LICENSE="WTFPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha ~amd64 arm ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="doc examples static-libs"
DEPEND="sys-devel/libtool"
1.53 dev-libs/libtommath/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/ChangeLog?rev=1.53&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/ChangeLog?rev=1.53&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/ChangeLog?r1=1.52&r2=1.53
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libtommath/ChangeLog,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -r1.52 -r1.53
--- ChangeLog 20 May 2013 12:52:43 -0000 1.52
+++ ChangeLog 20 May 2013 17:24:03 -0000 1.53
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/libtommath
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/ChangeLog,v 1.52 2013/05/20 12:52:43 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/ChangeLog,v 1.53 2013/05/20 17:24:03 ago Exp $
+
+ 20 May 2013; Agostino Sarubbo <ago@gentoo.org> libtommath-0.42.0-r1.ebuild:
+ Stable for arm, wrt bug #470264
20 May 2013; Agostino Sarubbo <ago@gentoo.org> libtommath-0.42.0-r1.ebuild:
Stable for ppc, wrt bug #470264
^ permalink raw reply [flat|nested] 13+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/libtommath: libtommath-0.42.0-r1.ebuild ChangeLog
@ 2013-05-20 17:57 Agostino Sarubbo (ago)
0 siblings, 0 replies; 13+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-20 17:57 UTC (permalink / raw
To: gentoo-commits
ago 13/05/20 17:57:39
Modified: libtommath-0.42.0-r1.ebuild ChangeLog
Log:
Stable for s390, wrt bug #470264
(Portage version: 2.1.11.63/cvs/Linux ppc64, RepoMan options: --include-arches="s390", signed Manifest commit with key 7194459F)
Revision Changes Path
1.10 dev-libs/libtommath/libtommath-0.42.0-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild?r1=1.9&r2=1.10
Index: libtommath-0.42.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- libtommath-0.42.0-r1.ebuild 20 May 2013 17:24:03 -0000 1.9
+++ libtommath-0.42.0-r1.ebuild 20 May 2013 17:57:38 -0000 1.10
@@ -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/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild,v 1.9 2013/05/20 17:24:03 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild,v 1.10 2013/05/20 17:57:38 ago Exp $
EAPI=4
@@ -12,7 +12,7 @@
LICENSE="WTFPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha ~amd64 arm ~hppa ~ia64 ~mips ppc ~ppc64 s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="doc examples static-libs"
DEPEND="sys-devel/libtool"
1.54 dev-libs/libtommath/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/ChangeLog?rev=1.54&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/ChangeLog?rev=1.54&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/ChangeLog?r1=1.53&r2=1.54
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libtommath/ChangeLog,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -r1.53 -r1.54
--- ChangeLog 20 May 2013 17:24:03 -0000 1.53
+++ ChangeLog 20 May 2013 17:57:38 -0000 1.54
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/libtommath
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/ChangeLog,v 1.53 2013/05/20 17:24:03 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/ChangeLog,v 1.54 2013/05/20 17:57:38 ago Exp $
+
+ 20 May 2013; Agostino Sarubbo <ago@gentoo.org> libtommath-0.42.0-r1.ebuild:
+ Stable for s390, wrt bug #470264
20 May 2013; Agostino Sarubbo <ago@gentoo.org> libtommath-0.42.0-r1.ebuild:
Stable for arm, wrt bug #470264
^ permalink raw reply [flat|nested] 13+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/libtommath: libtommath-0.42.0-r1.ebuild ChangeLog
@ 2013-05-22 10:48 Agostino Sarubbo (ago)
0 siblings, 0 replies; 13+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-22 10:48 UTC (permalink / raw
To: gentoo-commits
ago 13/05/22 10:48:52
Modified: libtommath-0.42.0-r1.ebuild ChangeLog
Log:
Stable for ia64, wrt bug #470264
(Portage version: 2.1.11.63/cvs/Linux ppc64, RepoMan options: --include-arches="ia64", signed Manifest commit with key 7194459F)
Revision Changes Path
1.12 dev-libs/libtommath/libtommath-0.42.0-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild?r1=1.11&r2=1.12
Index: libtommath-0.42.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- libtommath-0.42.0-r1.ebuild 21 May 2013 15:52:23 -0000 1.11
+++ libtommath-0.42.0-r1.ebuild 22 May 2013 10:48:52 -0000 1.12
@@ -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/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild,v 1.11 2013/05/21 15:52:23 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild,v 1.12 2013/05/22 10:48:52 ago Exp $
EAPI=4
@@ -12,7 +12,7 @@
LICENSE="WTFPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 arm hppa ~ia64 ~mips ppc ~ppc64 s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha ~amd64 arm hppa ia64 ~mips ppc ~ppc64 s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="doc examples static-libs"
DEPEND="sys-devel/libtool"
1.56 dev-libs/libtommath/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/ChangeLog?rev=1.56&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/ChangeLog?rev=1.56&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/ChangeLog?r1=1.55&r2=1.56
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libtommath/ChangeLog,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -r1.55 -r1.56
--- ChangeLog 21 May 2013 15:52:23 -0000 1.55
+++ ChangeLog 22 May 2013 10:48:52 -0000 1.56
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/libtommath
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/ChangeLog,v 1.55 2013/05/21 15:52:23 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/ChangeLog,v 1.56 2013/05/22 10:48:52 ago Exp $
+
+ 22 May 2013; Agostino Sarubbo <ago@gentoo.org> libtommath-0.42.0-r1.ebuild:
+ Stable for ia64, wrt bug #470264
21 May 2013; Jeroen Roovers <jer@gentoo.org> libtommath-0.42.0-r1.ebuild:
Stable for HPPA (bug #470264).
^ permalink raw reply [flat|nested] 13+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/libtommath: libtommath-0.42.0-r1.ebuild ChangeLog
@ 2013-05-23 17:16 Agostino Sarubbo (ago)
0 siblings, 0 replies; 13+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-23 17:16 UTC (permalink / raw
To: gentoo-commits
ago 13/05/23 17:16:25
Modified: libtommath-0.42.0-r1.ebuild ChangeLog
Log:
Stable for amd64, wrt bug #470264
(Portage version: 2.1.12.1/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key 7194459F)
Revision Changes Path
1.13 dev-libs/libtommath/libtommath-0.42.0-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild?r1=1.12&r2=1.13
Index: libtommath-0.42.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- libtommath-0.42.0-r1.ebuild 22 May 2013 10:48:52 -0000 1.12
+++ libtommath-0.42.0-r1.ebuild 23 May 2013 17:16:25 -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/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild,v 1.12 2013/05/22 10:48:52 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild,v 1.13 2013/05/23 17:16:25 ago Exp $
EAPI=4
@@ -12,7 +12,7 @@
LICENSE="WTFPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 arm hppa ia64 ~mips ppc ~ppc64 s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha amd64 arm hppa ia64 ~mips ppc ~ppc64 s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="doc examples static-libs"
DEPEND="sys-devel/libtool"
1.57 dev-libs/libtommath/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/ChangeLog?rev=1.57&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/ChangeLog?rev=1.57&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/ChangeLog?r1=1.56&r2=1.57
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libtommath/ChangeLog,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- ChangeLog 22 May 2013 10:48:52 -0000 1.56
+++ ChangeLog 23 May 2013 17:16:25 -0000 1.57
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/libtommath
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/ChangeLog,v 1.56 2013/05/22 10:48:52 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/ChangeLog,v 1.57 2013/05/23 17:16:25 ago Exp $
+
+ 23 May 2013; Agostino Sarubbo <ago@gentoo.org> libtommath-0.42.0-r1.ebuild:
+ Stable for amd64, wrt bug #470264
22 May 2013; Agostino Sarubbo <ago@gentoo.org> libtommath-0.42.0-r1.ebuild:
Stable for ia64, wrt bug #470264
^ permalink raw reply [flat|nested] 13+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/libtommath: libtommath-0.42.0-r1.ebuild ChangeLog
@ 2013-05-24 19:46 Agostino Sarubbo (ago)
0 siblings, 0 replies; 13+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-24 19:46 UTC (permalink / raw
To: gentoo-commits
ago 13/05/24 19:46:23
Modified: libtommath-0.42.0-r1.ebuild ChangeLog
Log:
Stable for ppc64, wrt bug #470264
(Portage version: 2.1.11.63/cvs/Linux ppc64, RepoMan options: --include-arches="ppc64", signed Manifest commit with key 7194459F)
Revision Changes Path
1.14 dev-libs/libtommath/libtommath-0.42.0-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild?r1=1.13&r2=1.14
Index: libtommath-0.42.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- libtommath-0.42.0-r1.ebuild 23 May 2013 17:16:25 -0000 1.13
+++ libtommath-0.42.0-r1.ebuild 24 May 2013 19:46:23 -0000 1.14
@@ -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/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild,v 1.13 2013/05/23 17:16:25 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild,v 1.14 2013/05/24 19:46:23 ago Exp $
EAPI=4
@@ -12,7 +12,7 @@
LICENSE="WTFPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ia64 ~mips ppc ~ppc64 s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="doc examples static-libs"
DEPEND="sys-devel/libtool"
1.58 dev-libs/libtommath/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/ChangeLog?rev=1.58&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/ChangeLog?rev=1.58&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/ChangeLog?r1=1.57&r2=1.58
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libtommath/ChangeLog,v
retrieving revision 1.57
retrieving revision 1.58
diff -u -r1.57 -r1.58
--- ChangeLog 23 May 2013 17:16:25 -0000 1.57
+++ ChangeLog 24 May 2013 19:46:23 -0000 1.58
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/libtommath
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/ChangeLog,v 1.57 2013/05/23 17:16:25 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/ChangeLog,v 1.58 2013/05/24 19:46:23 ago Exp $
+
+ 24 May 2013; Agostino Sarubbo <ago@gentoo.org> libtommath-0.42.0-r1.ebuild:
+ Stable for ppc64, wrt bug #470264
23 May 2013; Agostino Sarubbo <ago@gentoo.org> libtommath-0.42.0-r1.ebuild:
Stable for amd64, wrt bug #470264
^ permalink raw reply [flat|nested] 13+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/libtommath: libtommath-0.42.0-r1.ebuild ChangeLog
@ 2013-05-25 7:55 Agostino Sarubbo (ago)
0 siblings, 0 replies; 13+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-25 7:55 UTC (permalink / raw
To: gentoo-commits
ago 13/05/25 07:55:24
Modified: libtommath-0.42.0-r1.ebuild ChangeLog
Log:
Stable for sparc, wrt bug #470264
(Portage version: 2.1.11.63/cvs/Linux ppc64, RepoMan options: --include-arches="sparc", signed Manifest commit with key 7194459F)
Revision Changes Path
1.15 dev-libs/libtommath/libtommath-0.42.0-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild?r1=1.14&r2=1.15
Index: libtommath-0.42.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- libtommath-0.42.0-r1.ebuild 24 May 2013 19:46:23 -0000 1.14
+++ libtommath-0.42.0-r1.ebuild 25 May 2013 07:55:23 -0000 1.15
@@ -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/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild,v 1.14 2013/05/24 19:46:23 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild,v 1.15 2013/05/25 07:55:23 ago Exp $
EAPI=4
@@ -12,7 +12,7 @@
LICENSE="WTFPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 ~sh sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="doc examples static-libs"
DEPEND="sys-devel/libtool"
1.59 dev-libs/libtommath/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/ChangeLog?rev=1.59&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/ChangeLog?rev=1.59&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/ChangeLog?r1=1.58&r2=1.59
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libtommath/ChangeLog,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -r1.58 -r1.59
--- ChangeLog 24 May 2013 19:46:23 -0000 1.58
+++ ChangeLog 25 May 2013 07:55:24 -0000 1.59
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/libtommath
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/ChangeLog,v 1.58 2013/05/24 19:46:23 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/ChangeLog,v 1.59 2013/05/25 07:55:24 ago Exp $
+
+ 25 May 2013; Agostino Sarubbo <ago@gentoo.org> libtommath-0.42.0-r1.ebuild:
+ Stable for sparc, wrt bug #470264
24 May 2013; Agostino Sarubbo <ago@gentoo.org> libtommath-0.42.0-r1.ebuild:
Stable for ppc64, wrt bug #470264
^ permalink raw reply [flat|nested] 13+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/libtommath: libtommath-0.42.0-r1.ebuild ChangeLog
@ 2013-05-25 14:29 Agostino Sarubbo (ago)
0 siblings, 0 replies; 13+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-25 14:29 UTC (permalink / raw
To: gentoo-commits
ago 13/05/25 14:29:55
Modified: libtommath-0.42.0-r1.ebuild ChangeLog
Log:
Stable for alpha, wrt bug #470264
(Portage version: 2.1.11.63/cvs/Linux ppc64, RepoMan options: --include-arches="alpha", signed Manifest commit with key 7194459F)
Revision Changes Path
1.16 dev-libs/libtommath/libtommath-0.42.0-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild?rev=1.16&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild?rev=1.16&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild?r1=1.15&r2=1.16
Index: libtommath-0.42.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- libtommath-0.42.0-r1.ebuild 25 May 2013 07:55:23 -0000 1.15
+++ libtommath-0.42.0-r1.ebuild 25 May 2013 14:29:55 -0000 1.16
@@ -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/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild,v 1.15 2013/05/25 07:55:23 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild,v 1.16 2013/05/25 14:29:55 ago Exp $
EAPI=4
@@ -12,7 +12,7 @@
LICENSE="WTFPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 ~sh sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 ~sh sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="doc examples static-libs"
DEPEND="sys-devel/libtool"
1.60 dev-libs/libtommath/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/ChangeLog?rev=1.60&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/ChangeLog?rev=1.60&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/ChangeLog?r1=1.59&r2=1.60
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libtommath/ChangeLog,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -r1.59 -r1.60
--- ChangeLog 25 May 2013 07:55:24 -0000 1.59
+++ ChangeLog 25 May 2013 14:29:55 -0000 1.60
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/libtommath
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/ChangeLog,v 1.59 2013/05/25 07:55:24 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/ChangeLog,v 1.60 2013/05/25 14:29:55 ago Exp $
+
+ 25 May 2013; Agostino Sarubbo <ago@gentoo.org> libtommath-0.42.0-r1.ebuild:
+ Stable for alpha, wrt bug #470264
25 May 2013; Agostino Sarubbo <ago@gentoo.org> libtommath-0.42.0-r1.ebuild:
Stable for sparc, wrt bug #470264
^ permalink raw reply [flat|nested] 13+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/libtommath: libtommath-0.42.0-r1.ebuild ChangeLog
@ 2013-05-26 15:57 Agostino Sarubbo (ago)
0 siblings, 0 replies; 13+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-26 15:57 UTC (permalink / raw
To: gentoo-commits
ago 13/05/26 15:57:30
Modified: libtommath-0.42.0-r1.ebuild ChangeLog
Log:
Stable for x86, wrt bug #470264
(Portage version: 2.1.12.2/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key 7194459F)
Revision Changes Path
1.17 dev-libs/libtommath/libtommath-0.42.0-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild?rev=1.17&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild?rev=1.17&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild?r1=1.16&r2=1.17
Index: libtommath-0.42.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- libtommath-0.42.0-r1.ebuild 25 May 2013 14:29:55 -0000 1.16
+++ libtommath-0.42.0-r1.ebuild 26 May 2013 15:57:30 -0000 1.17
@@ -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/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild,v 1.16 2013/05/25 14:29:55 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild,v 1.17 2013/05/26 15:57:30 ago Exp $
EAPI=4
@@ -12,7 +12,7 @@
LICENSE="WTFPL-2"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 ~sh sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="doc examples static-libs"
DEPEND="sys-devel/libtool"
1.61 dev-libs/libtommath/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/ChangeLog?rev=1.61&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/ChangeLog?rev=1.61&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/ChangeLog?r1=1.60&r2=1.61
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libtommath/ChangeLog,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -r1.60 -r1.61
--- ChangeLog 25 May 2013 14:29:55 -0000 1.60
+++ ChangeLog 26 May 2013 15:57:30 -0000 1.61
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/libtommath
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/ChangeLog,v 1.60 2013/05/25 14:29:55 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/ChangeLog,v 1.61 2013/05/26 15:57:30 ago Exp $
+
+ 26 May 2013; Agostino Sarubbo <ago@gentoo.org> libtommath-0.42.0-r1.ebuild:
+ Stable for x86, wrt bug #470264
25 May 2013; Agostino Sarubbo <ago@gentoo.org> libtommath-0.42.0-r1.ebuild:
Stable for alpha, wrt bug #470264
^ permalink raw reply [flat|nested] 13+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/libtommath: libtommath-0.42.0-r1.ebuild ChangeLog
@ 2013-06-09 16:03 Agostino Sarubbo (ago)
0 siblings, 0 replies; 13+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-06-09 16:03 UTC (permalink / raw
To: gentoo-commits
ago 13/06/09 16:03:02
Modified: libtommath-0.42.0-r1.ebuild ChangeLog
Log:
Stable for sh, wrt bug #470264
(Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="sh", signed Manifest commit with key 7194459F)
Revision Changes Path
1.18 dev-libs/libtommath/libtommath-0.42.0-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild?rev=1.18&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild?rev=1.18&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild?r1=1.17&r2=1.18
Index: libtommath-0.42.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- libtommath-0.42.0-r1.ebuild 26 May 2013 15:57:30 -0000 1.17
+++ libtommath-0.42.0-r1.ebuild 9 Jun 2013 16:03:02 -0000 1.18
@@ -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/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild,v 1.17 2013/05/26 15:57:30 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild,v 1.18 2013/06/09 16:03:02 ago Exp $
EAPI=4
@@ -12,7 +12,7 @@
LICENSE="WTFPL-2"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="doc examples static-libs"
DEPEND="sys-devel/libtool"
1.62 dev-libs/libtommath/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/ChangeLog?rev=1.62&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/ChangeLog?rev=1.62&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/ChangeLog?r1=1.61&r2=1.62
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libtommath/ChangeLog,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -r1.61 -r1.62
--- ChangeLog 26 May 2013 15:57:30 -0000 1.61
+++ ChangeLog 9 Jun 2013 16:03:02 -0000 1.62
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/libtommath
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/ChangeLog,v 1.61 2013/05/26 15:57:30 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/ChangeLog,v 1.62 2013/06/09 16:03:02 ago Exp $
+
+ 09 Jun 2013; Agostino Sarubbo <ago@gentoo.org> libtommath-0.42.0-r1.ebuild:
+ Stable for sh, wrt bug #470264
26 May 2013; Agostino Sarubbo <ago@gentoo.org> libtommath-0.42.0-r1.ebuild:
Stable for x86, wrt bug #470264
^ permalink raw reply [flat|nested] 13+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/libtommath: libtommath-0.42.0-r1.ebuild ChangeLog
@ 2015-02-17 1:30 Ian Delaney (idella4)
0 siblings, 0 replies; 13+ messages in thread
From: Ian Delaney (idella4) @ 2015-02-17 1:30 UTC (permalink / raw
To: gentoo-commits
idella4 15/02/17 01:30:59
Modified: libtommath-0.42.0-r1.ebuild ChangeLog
Log:
update HOMEPAGE, SRC-URI
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Revision Changes Path
1.20 dev-libs/libtommath/libtommath-0.42.0-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild?rev=1.20&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild?rev=1.20&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild?r1=1.19&r2=1.20
Index: libtommath-0.42.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- libtommath-0.42.0-r1.ebuild 16 Aug 2013 13:30:06 -0000 1.19
+++ libtommath-0.42.0-r1.ebuild 17 Feb 2015 01:30:59 -0000 1.20
@@ -1,14 +1,14 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild,v 1.19 2013/08/16 13:30:06 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild,v 1.20 2015/02/17 01:30:59 idella4 Exp $
EAPI=4
inherit autotools eutils multilib toolchain-funcs
DESCRIPTION="highly optimized and portable routines for integer based number theoretic applications"
-HOMEPAGE="http://www.libtom.org/"
-SRC_URI="http://www.libtom.org/files/ltm-${PV}.tar.bz2"
+HOMEPAGE="https://github.com/libtom/libtommath"
+SRC_URI="https://github.com/libtom/libtommath/archive/v${PV}.tar.gz"
LICENSE="WTFPL-2"
SLOT="0"
1.65 dev-libs/libtommath/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/ChangeLog?rev=1.65&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/ChangeLog?rev=1.65&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/ChangeLog?r1=1.64&r2=1.65
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libtommath/ChangeLog,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -r1.64 -r1.65
--- ChangeLog 16 Aug 2013 13:30:06 -0000 1.64
+++ ChangeLog 17 Feb 2015 01:30:59 -0000 1.65
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/libtommath
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/ChangeLog,v 1.64 2013/08/16 13:30:06 aballier Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/ChangeLog,v 1.65 2015/02/17 01:30:59 idella4 Exp $
+
+ 17 Feb 2015; Ian Delaney <idella4@gentoo.org> libtommath-0.42.0-r1.ebuild:
+ update HOMEPAGE, SRC-URI
16 Aug 2013; Alexis Ballier <aballier@gentoo.org>
libtommath-0.42.0-r1.ebuild:
^ permalink raw reply [flat|nested] 13+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/libtommath: libtommath-0.42.0-r1.ebuild ChangeLog
@ 2015-07-16 3:00 Mike Frysinger (vapier)
0 siblings, 0 replies; 13+ messages in thread
From: Mike Frysinger (vapier) @ 2015-07-16 3:00 UTC (permalink / raw
To: gentoo-commits
vapier 15/07/16 03:00:25
Modified: libtommath-0.42.0-r1.ebuild ChangeLog
Log:
Add arm64/m68k love.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
Revision Changes Path
1.22 dev-libs/libtommath/libtommath-0.42.0-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild?rev=1.22&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild?rev=1.22&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild?r1=1.21&r2=1.22
Index: libtommath-0.42.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- libtommath-0.42.0-r1.ebuild 18 Apr 2015 13:03:10 -0000 1.21
+++ libtommath-0.42.0-r1.ebuild 16 Jul 2015 03:00:25 -0000 1.22
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild,v 1.21 2015/04/18 13:03:10 swegener Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild,v 1.22 2015/07/16 03:00:25 vapier Exp $
EAPI=4
@@ -12,7 +12,7 @@
LICENSE="WTFPL-2"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="doc examples static-libs"
DEPEND="sys-devel/libtool"
1.68 dev-libs/libtommath/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/ChangeLog?rev=1.68&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/ChangeLog?rev=1.68&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtommath/ChangeLog?r1=1.67&r2=1.68
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libtommath/ChangeLog,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -r1.67 -r1.68
--- ChangeLog 6 Jun 2015 19:19:19 -0000 1.67
+++ ChangeLog 16 Jul 2015 03:00:25 -0000 1.68
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/libtommath
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/ChangeLog,v 1.67 2015/06/06 19:19:19 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/ChangeLog,v 1.68 2015/07/16 03:00:25 vapier Exp $
+
+ 16 Jul 2015; Mike Frysinger <vapier@gentoo.org> libtommath-0.42.0-r1.ebuild:
+ Add arm64/m68k love.
06 Jun 2015; Justin Lecher <jlec@gentoo.org> metadata.xml:
Add github to remote-id in metadata.xml
^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2015-07-16 3:00 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-20 17:24 [gentoo-commits] gentoo-x86 commit in dev-libs/libtommath: libtommath-0.42.0-r1.ebuild ChangeLog Agostino Sarubbo (ago)
-- strict thread matches above, loose matches on Subject: below --
2015-07-16 3:00 Mike Frysinger (vapier)
2015-02-17 1:30 Ian Delaney (idella4)
2013-06-09 16:03 Agostino Sarubbo (ago)
2013-05-26 15:57 Agostino Sarubbo (ago)
2013-05-25 14:29 Agostino Sarubbo (ago)
2013-05-25 7:55 Agostino Sarubbo (ago)
2013-05-24 19:46 Agostino Sarubbo (ago)
2013-05-23 17:16 Agostino Sarubbo (ago)
2013-05-22 10:48 Agostino Sarubbo (ago)
2013-05-20 17:57 Agostino Sarubbo (ago)
2013-05-20 12:52 Agostino Sarubbo (ago)
2013-04-24 1:10 Mike Frysinger (vapier)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox