public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-libs/quantlib: ChangeLog quantlib-1.2.ebuild
@ 2012-03-17  8:48 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 2+ messages in thread
From: Samuli Suominen (ssuominen) @ 2012-03-17  8:48 UTC (permalink / raw
  To: gentoo-commits

ssuominen    12/03/17 08:48:25

  Modified:             ChangeLog
  Added:                quantlib-1.2.ebuild
  Log:
  Version bump wrt #394763 by Michael Cordingley. This will fix building with GCC >= 4.6.0 wrt #364779 by Diego Elio Pettenò.
  
  (Portage version: 2.2.0_alpha90/cvs/Linux x86_64)

Revision  Changes    Path
1.35                 dev-libs/quantlib/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/quantlib/ChangeLog?rev=1.35&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/quantlib/ChangeLog?rev=1.35&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/quantlib/ChangeLog?r1=1.34&r2=1.35

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/quantlib/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog	22 Nov 2011 17:51:14 -0000	1.34
+++ ChangeLog	17 Mar 2012 08:48:25 -0000	1.35
@@ -1,6 +1,12 @@
 # ChangeLog for dev-libs/quantlib
-# Copyright 2002-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/quantlib/ChangeLog,v 1.34 2011/11/22 17:51:14 pacho Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/quantlib/ChangeLog,v 1.35 2012/03/17 08:48:25 ssuominen Exp $
+
+*quantlib-1.2 (17 Mar 2012)
+
+  17 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> +quantlib-1.2.ebuild:
+  Version bump wrt #394763 by Michael Cordingley. This will fix building with
+  GCC >= 4.6.0 wrt #364779 by Diego Elio Pettenò.
 
   22 Nov 2011; Pacho Ramos <pacho@gentoo.org> metadata.xml:
   Drop maintainer due retirement, bug #82110



1.1                  dev-libs/quantlib/quantlib-1.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/quantlib/quantlib-1.2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/quantlib/quantlib-1.2.ebuild?rev=1.1&content-type=text/plain

Index: quantlib-1.2.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/quantlib/quantlib-1.2.ebuild,v 1.1 2012/03/17 08:48:25 ssuominen Exp $

EAPI=4
inherit elisp-common

MY_P=QuantLib-${PV}

DESCRIPTION="A comprehensive software framework for quantitative finance"
HOMEPAGE="http://quantlib.org/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
IUSE="doc emacs examples static-libs"

RDEPEND="dev-libs/boost"
DEPEND="${RDEPEND}
	doc? ( app-doc/doxygen )
	emacs? ( virtual/emacs )"

DOCS="*.txt"

SITEFILE=50${PN}-gentoo.el

S=${WORKDIR}/${MY_P}

src_configure() {
	# NOTE: Too fragile for single .pdf or .ps document
	local prog
	for prog in DVIPS LATEX MAKEINDEX PDFLATEX; do
		export ac_cv_path_${prog}=no
	done

	use doc || export ac_cv_path_DOXYGEN=no
	use emacs || export ac_cv_prog_EMACS=no

	# NOTE: --enable-examples will only change noinst_PROGRAMS to bin_PROGRAMS
	econf \
		$(use_enable static-libs static) \
		--enable-examples \
		--with-lispdir="${SITELISP}"/${PN}
}

src_compile() {
	emake

	if use doc; then
		pushd Docs >/dev/null
		nonfatal emake docs-html
		popd >/dev/null
	fi
}

src_install(){
	default

	rm -f "${ED}"/usr/lib*/*.la

	if use doc; then
		find Docs \( -name '.time-stamp*' -o -name '*.doxy' -o -name 'Makefile*' \) -delete
		insinto /usr/share/doc/${PF}
		nonfatal doins -r Docs
	fi

	if use examples; then
		find Examples \( -name '*vc*proj*' -o -name '*.dev' -o -name 'Makefile*' -o -name '.libs' -o -name '*.o' \) -delete
		insinto /usr/share/doc/${PF}
		nonfatal doins -r Examples
	fi

	use emacs && elisp-site-file-install "${FILESDIR}"/${SITEFILE}
}

pkg_postinst() {
	use emacs && elisp-site-regen
}

pkg_postrm() {
	use emacs && elisp-site-regen
}






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/quantlib: ChangeLog quantlib-1.2.ebuild
@ 2012-03-17  8:54 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 2+ messages in thread
From: Samuli Suominen (ssuominen) @ 2012-03-17  8:54 UTC (permalink / raw
  To: gentoo-commits

ssuominen    12/03/17 08:54:35

  Modified:             ChangeLog quantlib-1.2.ebuild
  Log:
  Revert all keywording back to ~arch only and for amd64/x86. This package has no maintainer or reverse dependencies.
  
  (Portage version: 2.2.0_alpha90/cvs/Linux x86_64)

Revision  Changes    Path
1.37                 dev-libs/quantlib/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/quantlib/ChangeLog?rev=1.37&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/quantlib/ChangeLog?rev=1.37&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/quantlib/ChangeLog?r1=1.36&r2=1.37

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/quantlib/ChangeLog,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- ChangeLog	17 Mar 2012 08:52:54 -0000	1.36
+++ ChangeLog	17 Mar 2012 08:54:35 -0000	1.37
@@ -1,6 +1,10 @@
 # ChangeLog for dev-libs/quantlib
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/quantlib/ChangeLog,v 1.36 2012/03/17 08:52:54 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/quantlib/ChangeLog,v 1.37 2012/03/17 08:54:35 ssuominen Exp $
+
+  17 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> quantlib-1.2.ebuild:
+  Revert all keywording back to ~arch only and for amd64/x86. This package has
+  no maintainer or reverse dependencies.
 
   17 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> -quantlib-0.3.10.ebuild,
   -quantlib-0.3.12.ebuild, -quantlib-0.3.14.ebuild, -quantlib-0.3.14-r1.ebuild,



1.2                  dev-libs/quantlib/quantlib-1.2.ebuild

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

Index: quantlib-1.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/quantlib/quantlib-1.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- quantlib-1.2.ebuild	17 Mar 2012 08:48:25 -0000	1.1
+++ quantlib-1.2.ebuild	17 Mar 2012 08:54:35 -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/dev-libs/quantlib/quantlib-1.2.ebuild,v 1.1 2012/03/17 08:48:25 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/quantlib/quantlib-1.2.ebuild,v 1.2 2012/03/17 08:54:35 ssuominen Exp $
 
 EAPI=4
 inherit elisp-common
@@ -13,7 +13,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
+KEYWORDS="~amd64 ~x86"
 IUSE="doc emacs examples static-libs"
 
 RDEPEND="dev-libs/boost"






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

end of thread, other threads:[~2012-03-17  8:54 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-17  8:54 [gentoo-commits] gentoo-x86 commit in dev-libs/quantlib: ChangeLog quantlib-1.2.ebuild Samuli Suominen (ssuominen)
  -- strict thread matches above, loose matches on Subject: below --
2012-03-17  8:48 Samuli Suominen (ssuominen)

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