public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/quantlib/
@ 2016-04-02 20:32 David Seifert
  0 siblings, 0 replies; 3+ messages in thread
From: David Seifert @ 2016-04-02 20:32 UTC (permalink / raw
  To: gentoo-commits

commit:     bf7e0b61fb57d26ba3e15f1e7db76c48125d6d60
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat Apr  2 20:31:43 2016 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Apr  2 20:31:58 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf7e0b61

dev-libs/quantlib: Version bump to 1.7.1

Gentoo-Bug: 578872
* EAPI=6

Package-Manager: portage-2.2.28

 dev-libs/quantlib/Manifest              |  1 +
 dev-libs/quantlib/quantlib-1.7.1.ebuild | 93 +++++++++++++++++++++++++++++++++
 2 files changed, 94 insertions(+)

diff --git a/dev-libs/quantlib/Manifest b/dev-libs/quantlib/Manifest
index e9b05d5..ca0d4de 100644
--- a/dev-libs/quantlib/Manifest
+++ b/dev-libs/quantlib/Manifest
@@ -1 +1,2 @@
 DIST QuantLib-1.6.tar.gz 8714267 SHA256 a135d424a59cbb00a75d7f7ac3a181d49e804abae1776b555ec0183e309f81ce SHA512 c38cc894873a36942c022c1d70eb7b0c5f2e9208ee9e949a656aef02fb9fe95436955b560b61188ea5a374f4b7674b46629178779e066135396f291788d772c4 WHIRLPOOL 5d94afd8f608ef81c207921f5b7b8237ea2eaca71844fe27206d4b0e7ed77e99d4c9e5c2e6c74649e82a95ca5d3fb8528e6c8ee929a849a7254cbee41ab9607e
+DIST QuantLib-1.7.1.tar.gz 8715844 SHA256 b5dc38ae51ad7396ccf7358147753902838ce2870dd6e6a4d829c806db3e0a81 SHA512 8ba4fdb219b2886b448dbc6370ce6acec9f919a6baf7e8275a76ba13e0bf2d08cbb88cd5a3e450bcf379c17bd0492a9259483089de65e24b95d708f259bc30a7 WHIRLPOOL 3a32d47d81716f3a8fd1214f3be6554c00da2c828412feb46382b809a1f7a8046be9c790eaf8435451e0f503ef9771a5ce0e14effbe8d48c4f599dbc64bb1409

diff --git a/dev-libs/quantlib/quantlib-1.7.1.ebuild b/dev-libs/quantlib/quantlib-1.7.1.ebuild
new file mode 100644
index 0000000..59f84b4
--- /dev/null
+++ b/dev-libs/quantlib/quantlib-1.7.1.ebuild
@@ -0,0 +1,93 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit elisp-common eutils toolchain-funcs
+
+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="~amd64 ~x86"
+IUSE="debug doc emacs examples openmp static-libs"
+
+RDEPEND="dev-libs/boost:="
+DEPEND="${RDEPEND}
+	doc? ( app-doc/doxygen[dot] )
+	emacs? ( virtual/emacs )"
+
+DOCS="*.txt"
+
+S="${WORKDIR}/${MY_P}"
+
+SITEFILE="50${PN}-gentoo.el"
+
+pkg_setup() {
+	if use openmp ; then
+		tc-has-openmp || die "Please switch to an openmp compatible compiler"
+	fi
+}
+
+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 debug error-functions) \
+		$(use_enable debug error-lines) \
+		$(use_enable debug tracing) \
+		$(use_enable openmp) \
+		$(use_enable static-libs static) \
+		--enable-examples \
+		--with-lispdir="${SITELISP}/${PN}"
+}
+
+src_compile() {
+	default
+
+	if use doc; then
+		pushd Docs >/dev/null
+		emake docs-html
+		popd >/dev/null
+	fi
+}
+
+src_install(){
+	default
+	prune_libtool_files
+
+	if use doc; then
+		find Docs \( -name '.time-stamp*' -o -name '*.doxy' -o -name 'Makefile*' \) -delete || die
+		dodoc -r Docs
+	fi
+
+	if use examples; then
+		find Examples -name '.libs' -exec rm -rf {} + || die
+		find Examples \( -name '*vc*proj*' -o -name '*.dev' -o -name 'Makefile*' -o -name '*.o' \) -delete || die
+		insinto "/usr/share/doc/${PF}"
+		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 related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/quantlib/
@ 2018-04-13 23:22 Aaron Bauman
  0 siblings, 0 replies; 3+ messages in thread
From: Aaron Bauman @ 2018-04-13 23:22 UTC (permalink / raw
  To: gentoo-commits

commit:     a1be4d50219988aba5215e4689b46c771009d8fb
Author:     Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Tue Apr 10 11:33:44 2018 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Fri Apr 13 23:21:40 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1be4d50

dev-libs/quantlib: use HTTPS

 dev-libs/quantlib/quantlib-1.6.ebuild   | 4 ++--
 dev-libs/quantlib/quantlib-1.7.1.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-libs/quantlib/quantlib-1.6.ebuild b/dev-libs/quantlib/quantlib-1.6.ebuild
index 39d1b0acfe2..193731dc5a9 100644
--- a/dev-libs/quantlib/quantlib-1.6.ebuild
+++ b/dev-libs/quantlib/quantlib-1.6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -8,7 +8,7 @@ inherit elisp-common eutils toolchain-funcs
 MY_P="QuantLib-${PV}"
 
 DESCRIPTION="A comprehensive software framework for quantitative finance"
-HOMEPAGE="http://quantlib.org/"
+HOMEPAGE="https://quantlib.org/"
 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
 
 LICENSE="BSD"

diff --git a/dev-libs/quantlib/quantlib-1.7.1.ebuild b/dev-libs/quantlib/quantlib-1.7.1.ebuild
index d1725e7d5ca..763269d2f60 100644
--- a/dev-libs/quantlib/quantlib-1.7.1.ebuild
+++ b/dev-libs/quantlib/quantlib-1.7.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -8,7 +8,7 @@ inherit elisp-common eutils toolchain-funcs
 MY_P="QuantLib-${PV}"
 
 DESCRIPTION="A comprehensive software framework for quantitative finance"
-HOMEPAGE="http://quantlib.org/"
+HOMEPAGE="https://quantlib.org/"
 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
 
 LICENSE="BSD"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/quantlib/
@ 2019-04-18 14:03 Michał Górny
  0 siblings, 0 replies; 3+ messages in thread
From: Michał Górny @ 2019-04-18 14:03 UTC (permalink / raw
  To: gentoo-commits

commit:     86c99d6837b46807577c940c66ce4ed99ba341ae
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 18 14:01:10 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Apr 18 14:01:10 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86c99d68

dev-libs/quantlib: Drop old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-libs/quantlib/Manifest            |  1 -
 dev-libs/quantlib/quantlib-1.6.ebuild | 97 -----------------------------------
 2 files changed, 98 deletions(-)

diff --git a/dev-libs/quantlib/Manifest b/dev-libs/quantlib/Manifest
index ebd1215d8db..306c2ca499a 100644
--- a/dev-libs/quantlib/Manifest
+++ b/dev-libs/quantlib/Manifest
@@ -1,2 +1 @@
-DIST QuantLib-1.6.tar.gz 8714267 BLAKE2B f59b1250ea653d6b999945a3f19632fb071656eb6f7f90c6483db2f0f2104169ab0c8155c1205b16c002a78da73ff7a7b25f948a0adeca679e9e5cf127e09212 SHA512 c38cc894873a36942c022c1d70eb7b0c5f2e9208ee9e949a656aef02fb9fe95436955b560b61188ea5a374f4b7674b46629178779e066135396f291788d772c4
 DIST QuantLib-1.7.1.tar.gz 8715844 BLAKE2B 0193f1b6d73d66b148840671b7321e926a81a3eec2d1ded3a3398e9531c71cdb12454e059960b7707c9383bedddd136ab92e2550bdda265c54b0cf26d904b972 SHA512 8ba4fdb219b2886b448dbc6370ce6acec9f919a6baf7e8275a76ba13e0bf2d08cbb88cd5a3e450bcf379c17bd0492a9259483089de65e24b95d708f259bc30a7

diff --git a/dev-libs/quantlib/quantlib-1.6.ebuild b/dev-libs/quantlib/quantlib-1.6.ebuild
deleted file mode 100644
index 193731dc5a9..00000000000
--- a/dev-libs/quantlib/quantlib-1.6.ebuild
+++ /dev/null
@@ -1,97 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit elisp-common eutils toolchain-funcs
-
-MY_P="QuantLib-${PV}"
-
-DESCRIPTION="A comprehensive software framework for quantitative finance"
-HOMEPAGE="https://quantlib.org/"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug doc emacs examples openmp static-libs"
-
-RDEPEND="dev-libs/boost:="
-DEPEND="${RDEPEND}
-	doc? ( app-doc/doxygen[dot] )
-	emacs? ( virtual/emacs )"
-
-DOCS="*.txt"
-
-S="${WORKDIR}/${MY_P}"
-
-SITEFILE="50${PN}-gentoo.el"
-
-pkg_setup() {
-	if use openmp ; then
-		tc-has-openmp || die "Please switch to an openmp compatible compiler"
-	fi
-}
-
-src_prepare() {
-	epatch_user
-}
-
-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 debug error-functions) \
-		$(use_enable debug error-lines) \
-		$(use_enable debug tracing) \
-		$(use_enable openmp) \
-		$(use_enable static-libs static) \
-		--enable-examples \
-		--with-lispdir="${SITELISP}/${PN}"
-}
-
-src_compile() {
-	default
-
-	if use doc; then
-		pushd Docs >/dev/null
-		emake docs-html
-		popd >/dev/null
-	fi
-}
-
-src_install(){
-	default
-	prune_libtool_files
-
-	if use doc; then
-		find Docs \( -name '.time-stamp*' -o -name '*.doxy' -o -name 'Makefile*' \) -delete || die
-		insinto "/usr/share/doc/${PF}"
-		doins -r Docs
-	fi
-
-	if use examples; then
-		find Examples -name '.libs' -exec rm -rf {} + || die
-		find Examples \( -name '*vc*proj*' -o -name '*.dev' -o -name 'Makefile*' -o -name '*.o' \) -delete || die
-		insinto "/usr/share/doc/${PF}"
-		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 related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-04-18 14:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-02 20:32 [gentoo-commits] repo/gentoo:master commit in: dev-libs/quantlib/ David Seifert
  -- strict thread matches above, loose matches on Subject: below --
2018-04-13 23:22 Aaron Bauman
2019-04-18 14:03 Michał Górny

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