public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-libs/libmath++: libmath++-0.0.4-r1.ebuild ChangeLog
@ 2013-06-19 17:03 Sergey Popov (pinkbyte)
  0 siblings, 0 replies; 5+ messages in thread
From: Sergey Popov (pinkbyte) @ 2013-06-19 17:03 UTC (permalink / raw
  To: gentoo-commits

pinkbyte    13/06/19 17:03:28

  Modified:             ChangeLog
  Added:                libmath++-0.0.4-r1.ebuild
  Log:
  Revision bump: EAPI 5, utilize autotools-utils eclass, add compatibility with automake 1.13, wrt bug #471950
  
  (Portage version: 2.2.0_alpha181/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)

Revision  Changes    Path
1.14                 sys-libs/libmath++/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libmath++/ChangeLog?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libmath++/ChangeLog?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libmath++/ChangeLog?r1=1.13&r2=1.14

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libmath++/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog	20 Apr 2008 21:51:02 -0000	1.13
+++ ChangeLog	19 Jun 2013 17:03:28 -0000	1.14
@@ -1,6 +1,12 @@
 # ChangeLog for sys-libs/libmath++
-# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libmath++/ChangeLog,v 1.13 2008/04/20 21:51:02 flameeyes Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libmath++/ChangeLog,v 1.14 2013/06/19 17:03:28 pinkbyte Exp $
+
+*libmath++-0.0.4-r1 (19 Jun 2013)
+
+  19 Jun 2013; Sergey Popov <pinkbyte@gentoo.org> +libmath++-0.0.4-r1.ebuild:
+  Revision bump: EAPI 5, utilize autotools-utils eclass, add compatibility with
+  automake 1.13, wrt bug #471950
 
   20 Apr 2008; Diego Pettenò <flameeyes@gentoo.org> libmath++-0.0.4.ebuild:
   Run eautoreconf in src_unpack phase, bug #207479.



1.1                  sys-libs/libmath++/libmath++-0.0.4-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libmath++/libmath++-0.0.4-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libmath++/libmath++-0.0.4-r1.ebuild?rev=1.1&content-type=text/plain

Index: libmath++-0.0.4-r1.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/libmath++/libmath++-0.0.4-r1.ebuild,v 1.1 2013/06/19 17:03:28 pinkbyte Exp $

EAPI=5

AUTOTOOLS_AUTORECONF=1
inherit autotools-utils

DESCRIPTION="template based math library, written in C++, for symbolic and numeric calculus applications"
HOMEPAGE="http://rm-rf.in/libmath%2B%2B/"
SRC_URI="http://upstream.rm-rf.in/libmath%2B%2B/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="1"
KEYWORDS="~amd64 ~ppc ~s390 ~x86"
IUSE="doc static-libs"

DEPEND="doc? ( app-doc/doxygen )"
RDEPEND=""

DOCS=( AUTHORS README TODO )

src_prepare() {
	# Autotools 1.13 compatibility, bug #471950
	sed -i -e 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/' configure.in || die 'sed on configure.in failed'

	autotools-utils_src_prepare
}

src_compile() {
	autotools-utils_src_compile

	if use doc; then
		pushd "${AUTOTOOLS_BUILD_DIR}" >/dev/null
		emake -C doc api-doc
		popd >/dev/null
	fi
}

src_install() {
	autotools-utils_src_install

	if use doc; then
		pushd "${AUTOTOOLS_BUILD_DIR}" >/dev/null
		dohtml -r doc/user-api/*
		popd >/dev/null
	fi
}





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

* [gentoo-commits] gentoo-x86 commit in sys-libs/libmath++: libmath++-0.0.4-r1.ebuild ChangeLog
@ 2013-06-22 19:43 Sergey Popov (pinkbyte)
  0 siblings, 0 replies; 5+ messages in thread
From: Sergey Popov (pinkbyte) @ 2013-06-22 19:43 UTC (permalink / raw
  To: gentoo-commits

pinkbyte    13/06/22 19:43:52

  Modified:             libmath++-0.0.4-r1.ebuild ChangeLog
  Log:
  Force in-source build, wrt bug #474098. Thanks to Jason Mours for discovering this issue
  
  (Portage version: 2.2.0_alpha181/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)

Revision  Changes    Path
1.2                  sys-libs/libmath++/libmath++-0.0.4-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libmath++/libmath++-0.0.4-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libmath++/libmath++-0.0.4-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libmath++/libmath++-0.0.4-r1.ebuild?r1=1.1&r2=1.2

Index: libmath++-0.0.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libmath++/libmath++-0.0.4-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libmath++-0.0.4-r1.ebuild	19 Jun 2013 17:03:28 -0000	1.1
+++ libmath++-0.0.4-r1.ebuild	22 Jun 2013 19:43:52 -0000	1.2
@@ -1,10 +1,11 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libmath++/libmath++-0.0.4-r1.ebuild,v 1.1 2013/06/19 17:03:28 pinkbyte Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libmath++/libmath++-0.0.4-r1.ebuild,v 1.2 2013/06/22 19:43:52 pinkbyte Exp $
 
 EAPI=5
 
 AUTOTOOLS_AUTORECONF=1
+AUTOTOOLS_IN_SOURCE_BUILD=1 # bug #474098
 inherit autotools-utils
 
 DESCRIPTION="template based math library, written in C++, for symbolic and numeric calculus applications"



1.15                 sys-libs/libmath++/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libmath++/ChangeLog?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libmath++/ChangeLog?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libmath++/ChangeLog?r1=1.14&r2=1.15

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libmath++/ChangeLog,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- ChangeLog	19 Jun 2013 17:03:28 -0000	1.14
+++ ChangeLog	22 Jun 2013 19:43:52 -0000	1.15
@@ -1,6 +1,10 @@
 # ChangeLog for sys-libs/libmath++
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libmath++/ChangeLog,v 1.14 2013/06/19 17:03:28 pinkbyte Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libmath++/ChangeLog,v 1.15 2013/06/22 19:43:52 pinkbyte Exp $
+
+  22 Jun 2013; Sergey Popov <pinkbyte@gentoo.org> libmath++-0.0.4-r1.ebuild:
+  Force in-source build, wrt bug #474098. Thanks to Jason Mours for discovering
+  this issue
 
 *libmath++-0.0.4-r1 (19 Jun 2013)
 





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

* [gentoo-commits] gentoo-x86 commit in sys-libs/libmath++: libmath++-0.0.4-r1.ebuild ChangeLog
@ 2013-08-12 22:16 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-08-12 22:16 UTC (permalink / raw
  To: gentoo-commits

ago         13/08/12 22:16:10

  Modified:             libmath++-0.0.4-r1.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #480694
  
  (Portage version: 2.1.13.7/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.3                  sys-libs/libmath++/libmath++-0.0.4-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libmath++/libmath++-0.0.4-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libmath++/libmath++-0.0.4-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libmath++/libmath++-0.0.4-r1.ebuild?r1=1.2&r2=1.3

Index: libmath++-0.0.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libmath++/libmath++-0.0.4-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- libmath++-0.0.4-r1.ebuild	22 Jun 2013 19:43:52 -0000	1.2
+++ libmath++-0.0.4-r1.ebuild	12 Aug 2013 22:16:10 -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/sys-libs/libmath++/libmath++-0.0.4-r1.ebuild,v 1.2 2013/06/22 19:43:52 pinkbyte Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libmath++/libmath++-0.0.4-r1.ebuild,v 1.3 2013/08/12 22:16:10 ago Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2"
 SLOT="1"
-KEYWORDS="~amd64 ~ppc ~s390 ~x86"
+KEYWORDS="amd64 ~ppc ~s390 ~x86"
 IUSE="doc static-libs"
 
 DEPEND="doc? ( app-doc/doxygen )"



1.16                 sys-libs/libmath++/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libmath++/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog	22 Jun 2013 19:43:52 -0000	1.15
+++ ChangeLog	12 Aug 2013 22:16:10 -0000	1.16
@@ -1,6 +1,9 @@
 # ChangeLog for sys-libs/libmath++
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libmath++/ChangeLog,v 1.15 2013/06/22 19:43:52 pinkbyte Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libmath++/ChangeLog,v 1.16 2013/08/12 22:16:10 ago Exp $
+
+  12 Aug 2013; Agostino Sarubbo <ago@gentoo.org> libmath++-0.0.4-r1.ebuild:
+  Stable for amd64, wrt bug #480694
 
   22 Jun 2013; Sergey Popov <pinkbyte@gentoo.org> libmath++-0.0.4-r1.ebuild:
   Force in-source build, wrt bug #474098. Thanks to Jason Mours for discovering
@@ -47,4 +50,3 @@
 
   1 Aug 2002; J. Alberto Suárez López <bass@gentoo.org> libmath++-0.0.3.ebuild
   First relase 
-





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

* [gentoo-commits] gentoo-x86 commit in sys-libs/libmath++: libmath++-0.0.4-r1.ebuild ChangeLog
@ 2013-08-12 22:21 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-08-12 22:21 UTC (permalink / raw
  To: gentoo-commits

ago         13/08/12 22:21:11

  Modified:             libmath++-0.0.4-r1.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #480694
  
  (Portage version: 2.1.13.7/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.4                  sys-libs/libmath++/libmath++-0.0.4-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libmath++/libmath++-0.0.4-r1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libmath++/libmath++-0.0.4-r1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libmath++/libmath++-0.0.4-r1.ebuild?r1=1.3&r2=1.4

Index: libmath++-0.0.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libmath++/libmath++-0.0.4-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- libmath++-0.0.4-r1.ebuild	12 Aug 2013 22:16:10 -0000	1.3
+++ libmath++-0.0.4-r1.ebuild	12 Aug 2013 22:21:11 -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/sys-libs/libmath++/libmath++-0.0.4-r1.ebuild,v 1.3 2013/08/12 22:16:10 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libmath++/libmath++-0.0.4-r1.ebuild,v 1.4 2013/08/12 22:21:11 ago Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2"
 SLOT="1"
-KEYWORDS="amd64 ~ppc ~s390 ~x86"
+KEYWORDS="amd64 ~ppc ~s390 x86"
 IUSE="doc static-libs"
 
 DEPEND="doc? ( app-doc/doxygen )"



1.17                 sys-libs/libmath++/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libmath++/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog	12 Aug 2013 22:16:10 -0000	1.16
+++ ChangeLog	12 Aug 2013 22:21:11 -0000	1.17
@@ -1,6 +1,9 @@
 # ChangeLog for sys-libs/libmath++
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libmath++/ChangeLog,v 1.16 2013/08/12 22:16:10 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libmath++/ChangeLog,v 1.17 2013/08/12 22:21:11 ago Exp $
+
+  12 Aug 2013; Agostino Sarubbo <ago@gentoo.org> libmath++-0.0.4-r1.ebuild:
+  Stable for x86, wrt bug #480694
 
   12 Aug 2013; Agostino Sarubbo <ago@gentoo.org> libmath++-0.0.4-r1.ebuild:
   Stable for amd64, wrt bug #480694





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

* [gentoo-commits] gentoo-x86 commit in sys-libs/libmath++: libmath++-0.0.4-r1.ebuild ChangeLog
@ 2013-08-26 16:55 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-08-26 16:55 UTC (permalink / raw
  To: gentoo-commits

ago         13/08/26 16:55:04

  Modified:             libmath++-0.0.4-r1.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #480694
  
  (Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.5                  sys-libs/libmath++/libmath++-0.0.4-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libmath++/libmath++-0.0.4-r1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libmath++/libmath++-0.0.4-r1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libmath++/libmath++-0.0.4-r1.ebuild?r1=1.4&r2=1.5

Index: libmath++-0.0.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libmath++/libmath++-0.0.4-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- libmath++-0.0.4-r1.ebuild	12 Aug 2013 22:21:11 -0000	1.4
+++ libmath++-0.0.4-r1.ebuild	26 Aug 2013 16:55:04 -0000	1.5
@@ -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/sys-libs/libmath++/libmath++-0.0.4-r1.ebuild,v 1.4 2013/08/12 22:21:11 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libmath++/libmath++-0.0.4-r1.ebuild,v 1.5 2013/08/26 16:55:04 ago Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2"
 SLOT="1"
-KEYWORDS="amd64 ~ppc ~s390 x86"
+KEYWORDS="amd64 ppc ~s390 x86"
 IUSE="doc static-libs"
 
 DEPEND="doc? ( app-doc/doxygen )"



1.18                 sys-libs/libmath++/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/libmath++/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog	12 Aug 2013 22:21:11 -0000	1.17
+++ ChangeLog	26 Aug 2013 16:55:04 -0000	1.18
@@ -1,6 +1,9 @@
 # ChangeLog for sys-libs/libmath++
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libmath++/ChangeLog,v 1.17 2013/08/12 22:21:11 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libmath++/ChangeLog,v 1.18 2013/08/26 16:55:04 ago Exp $
+
+  26 Aug 2013; Agostino Sarubbo <ago@gentoo.org> libmath++-0.0.4-r1.ebuild:
+  Stable for ppc, wrt bug #480694
 
   12 Aug 2013; Agostino Sarubbo <ago@gentoo.org> libmath++-0.0.4-r1.ebuild:
   Stable for x86, wrt bug #480694





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

end of thread, other threads:[~2013-08-26 16:55 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-12 22:21 [gentoo-commits] gentoo-x86 commit in sys-libs/libmath++: libmath++-0.0.4-r1.ebuild ChangeLog Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2013-08-26 16:55 Agostino Sarubbo (ago)
2013-08-12 22:16 Agostino Sarubbo (ago)
2013-06-22 19:43 Sergey Popov (pinkbyte)
2013-06-19 17:03 Sergey Popov (pinkbyte)

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