public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/dsdp/
@ 2016-09-06 20:25 David Seifert
  0 siblings, 0 replies; 7+ messages in thread
From: David Seifert @ 2016-09-06 20:25 UTC (permalink / raw
  To: gentoo-commits

commit:     02e4852151f782c8b30aa05afb261a3951836e01
Author:     Gerhard Bräunlich <wippbox <AT> gmx <DOT> net>
AuthorDate: Tue Sep  6 10:34:49 2016 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Tue Sep  6 20:22:57 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02e48521

sci-libs/dsdp: Removed EAPI 4 ebuild dsdp-5.8-r2.ebuild

Package-Manager: portage-2.2.28
Closes: https://github.com/gentoo/gentoo/pull/2249

Signed-off-by: David Seifert <soap <AT> gentoo.org>

 sci-libs/dsdp/dsdp-5.8-r2.ebuild | 80 ----------------------------------------
 sci-libs/dsdp/dsdp-5.8-r3.ebuild |  6 +--
 2 files changed, 3 insertions(+), 83 deletions(-)

diff --git a/sci-libs/dsdp/dsdp-5.8-r2.ebuild b/sci-libs/dsdp/dsdp-5.8-r2.ebuild
deleted file mode 100644
index c60090d..00000000
--- a/sci-libs/dsdp/dsdp-5.8-r2.ebuild
+++ /dev/null
@@ -1,80 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-inherit eutils multilib toolchain-funcs versionator
-
-MYP=DSDP${PV}
-
-DESCRIPTION="Software for interior-point for semidefinite programming"
-HOMEPAGE="http://www.mcs.anl.gov/hs/software/DSDP/"
-SRC_URI="http://www.mcs.anl.gov/hs/software/DSDP//${MYP}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~ppc-macos ~x86-linux ~x86-macos ~x64-macos"
-IUSE="doc examples"
-
-RDEPEND="virtual/lapack"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig"
-
-S="${WORKDIR}/${MYP}"
-
-make_shared_lib() {
-	local soname=$(basename "${1%.a}")$(get_libname $(get_major_version))
-	einfo "Making ${soname}"
-	${2:-$(tc-getCC)} ${LDFLAGS}  \
-		-shared -Wl,-soname="${soname}" \
-		$([[ ${CHOST} == *-darwin* ]] && echo "-Wl,-install_name -Wl,${EPREFIX}/usr/$(get_libdir)/${soname}") \
-		-Wl,--whole-archive "${1}" -Wl,--no-whole-archive \
-		-o $(dirname "${1}")/"${soname}" \
-		-lm $($(tc-getPKG_CONFIG) --libs blas lapack) || return 1
-
-}
-
-src_prepare() {
-	epatch \
-		"${FILESDIR}"/${P}-readsdpa.patch \
-		"${FILESDIR}"/${P}-malloc.patch \
-		"${FILESDIR}"/${P}-gold.patch
-	# to do proper parallel compilation
-	find . -name Makefile -exec \
-		sed -i -e 's:make :$(MAKE) :g' '{}' \;
-	sed -i \
-		-e "s|#\(DSDPROOT[[:space:]]*=\).*|\1${S}|" \
-		-e "s|\(CC[[:space:]]*=\).*|\1$(tc-getCC)|" \
-		-e "s|\(OPTFLAGS[[:space:]]*=\).*|\1${CFLAGS}|" \
-		-e "s|\(CLINKER[[:space:]]*=\).*|\1 \${CC} ${LDFLAGS}|" \
-		-e "s|\(LAPACKBLAS[[:space:]]*=\).*|\1 $($(tc-getPKG_CONFIG) --libs blas lapack)|" \
-		-e "s|\(^ARCH[[:space:]]*=\).*|\1$(tc-getAR) cr|" \
-		-e "s|\(^RANLIB[[:space:]]*=\).*|\1$(tc-getRANLIB)|" \
-		make.include || die
-}
-
-src_compile() {
-	emake OPTFLAGS="${CFLAGS} -fPIC" dsdplibrary
-	make_shared_lib lib/lib${PN}.a || die "doing shared lib failed"
-}
-
-src_test() {
-	emake -j1 example test
-}
-
-src_install() {
-	dolib.so lib/lib${PN}$(get_libname $(get_major_version))
-	dosym lib${PN}$(get_libname $(get_major_version)) \
-		/usr/$(get_libdir)/lib${PN}$(get_libname)
-
-	insinto /usr/include
-	doins include/*.h src/sdp/*.h
-
-	use doc && dodoc docs/*.pdf
-
-	if use examples; then
-		insinto /usr/share/doc/${PF}
-		doins -r examples
-	fi
-}

diff --git a/sci-libs/dsdp/dsdp-5.8-r3.ebuild b/sci-libs/dsdp/dsdp-5.8-r3.ebuild
index 625dc23..b9503b7 100644
--- a/sci-libs/dsdp/dsdp-5.8-r3.ebuild
+++ b/sci-libs/dsdp/dsdp-5.8-r3.ebuild
@@ -6,11 +6,11 @@ EAPI=6
 
 inherit multilib toolchain-funcs versionator
 
-MYP=DSDP${PV}
+MY_P="${PN^^}${PV}"
 
 DESCRIPTION="Software for interior-point for semidefinite programming"
 HOMEPAGE="http://www.mcs.anl.gov/hs/software/DSDP/"
-SRC_URI="http://www.mcs.anl.gov/hs/software/DSDP//${MYP}.tar.gz"
+SRC_URI="http://www.mcs.anl.gov/hs/software/DSDP/${MY_P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
@@ -21,7 +21,7 @@ RDEPEND="virtual/lapack"
 DEPEND="${RDEPEND}
 	virtual/pkgconfig"
 
-S="${WORKDIR}/${MYP}"
+S="${WORKDIR}/${MY_P}"
 
 PATCHES=(
 	"${FILESDIR}"/${P}-readsdpa.patch


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

* [gentoo-commits] repo/gentoo:master commit in: sci-libs/dsdp/
@ 2017-12-03 14:20 Fabian Groffen
  0 siblings, 0 replies; 7+ messages in thread
From: Fabian Groffen @ 2017-12-03 14:20 UTC (permalink / raw
  To: gentoo-commits

commit:     eb6d2ed6818bd6fdc06febd825c1daa06c50b616
Author:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Sun Dec  3 14:20:30 2017 +0000
Commit:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Sun Dec  3 14:20:40 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb6d2ed6

sci-libs/dsdp: fix shared lib compilation on Darwin, bug #450388

Based on the patch by MATSUI Tetsushi, ensure we don't spit out GNU ld
options for Darwin.

Closes: https://bugs.gentoo.org/450388
Package-Manager: Portage-2.3.13, Repoman-2.3.3

 sci-libs/dsdp/Manifest           |  2 +-
 sci-libs/dsdp/dsdp-5.8-r3.ebuild | 19 +++++++++++++++----
 2 files changed, 16 insertions(+), 5 deletions(-)

diff --git a/sci-libs/dsdp/Manifest b/sci-libs/dsdp/Manifest
index a8bd51051e2..a7ad6a29eb9 100644
--- a/sci-libs/dsdp/Manifest
+++ b/sci-libs/dsdp/Manifest
@@ -1 +1 @@
-DIST DSDP5.8.tar.gz 2608518 SHA256 26aa624525a636de272c0b329e2dfd01a0d5b7827f1c1c76f393d71e37dead70 SHA512 0a32a34e33dcac151e95ed0f8cee62603bbe2b4ba1e448bba35324fe576376cb33c15908cde61ae5a7c0dcdea945f1ec544f19b3dd36524158573260182e080e WHIRLPOOL 63f5ce91d1c624b3c8f4d6ba61f8f386e739c0a5ad97515b4d36bb6026751ff4ca83b6a466deb5983e15eab3c84879bc3d87d7f2613e8070ab989e2607da9ddf
+DIST DSDP5.8.tar.gz 2608518 BLAKE2B d464db2956080a33c300520ed291e1b45aeedd28378d5aab753977688bfe74d953f1d40a7aa10c2af8b70808d97dc5ece0c98d2795f707a9a3d2128302658286 SHA512 0a32a34e33dcac151e95ed0f8cee62603bbe2b4ba1e448bba35324fe576376cb33c15908cde61ae5a7c0dcdea945f1ec544f19b3dd36524158573260182e080e

diff --git a/sci-libs/dsdp/dsdp-5.8-r3.ebuild b/sci-libs/dsdp/dsdp-5.8-r3.ebuild
index b5304b9065c..4da8972809f 100644
--- a/sci-libs/dsdp/dsdp-5.8-r3.ebuild
+++ b/sci-libs/dsdp/dsdp-5.8-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -30,11 +30,22 @@ PATCHES=(
 
 make_shared_lib() {
 	local soname=$(basename "${1%.a}")$(get_libname $(get_major_version))
+	local cflags=()
+
+	if [[ ${CHOST} == *-darwin* ]] ; then
+		cflags+=(
+			"-Wl,-install_name"
+			"-Wl,${EPREFIX}/usr/$(get_libdir)/${soname}"
+		)
+	else
+		cflags+=(
+			"-shared" "-Wl,-soname=${soname}"
+			"-Wl,--whole-archive" "${1}" "-Wl,--no-whole-archive"
+		)
+	fi
 	einfo "Making ${soname}"
 	${2:-$(tc-getCC)} ${LDFLAGS}  \
-		-shared -Wl,-soname="${soname}" \
-		$([[ ${CHOST} == *-darwin* ]] && echo "-Wl,-install_name -Wl,${EPREFIX}/usr/$(get_libdir)/${soname}") \
-		-Wl,--whole-archive "${1}" -Wl,--no-whole-archive \
+		"${cflags[@]}" \
 		-o $(dirname "${1}")/"${soname}" \
 		-lm $($(tc-getPKG_CONFIG) --libs blas lapack) || return 1
 }


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

* [gentoo-commits] repo/gentoo:master commit in: sci-libs/dsdp/
@ 2019-02-27  4:25 Aaron Bauman
  0 siblings, 0 replies; 7+ messages in thread
From: Aaron Bauman @ 2019-02-27  4:25 UTC (permalink / raw
  To: gentoo-commits

commit:     a7691e01f9a9444d1e03cee4488274d4c392ff57
Author:     Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Sat Feb 23 16:48:48 2019 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Wed Feb 27 04:21:19 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7691e01

sci-libs/dsdp: use HTTPS

Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>

 sci-libs/dsdp/dsdp-5.8-r3.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sci-libs/dsdp/dsdp-5.8-r3.ebuild b/sci-libs/dsdp/dsdp-5.8-r3.ebuild
index 4da8972809f..aa32624cc96 100644
--- a/sci-libs/dsdp/dsdp-5.8-r3.ebuild
+++ b/sci-libs/dsdp/dsdp-5.8-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -8,8 +8,8 @@ inherit multilib toolchain-funcs versionator
 MY_P="${PN^^}${PV}"
 
 DESCRIPTION="Software for interior-point for semidefinite programming"
-HOMEPAGE="http://www.mcs.anl.gov/hs/software/DSDP/"
-SRC_URI="http://www.mcs.anl.gov/hs/software/DSDP/${MY_P}.tar.gz"
+HOMEPAGE="https://www.mcs.anl.gov/hs/software/DSDP/"
+SRC_URI="https://www.mcs.anl.gov/hs/software/DSDP/${MY_P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"


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

* [gentoo-commits] repo/gentoo:master commit in: sci-libs/dsdp/
@ 2021-01-06 15:17 Fabian Groffen
  0 siblings, 0 replies; 7+ messages in thread
From: Fabian Groffen @ 2021-01-06 15:17 UTC (permalink / raw
  To: gentoo-commits

commit:     c6e62fe948fda66050af061051b3fc81335ad864
Author:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Wed Jan  6 15:13:44 2021 +0000
Commit:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Wed Jan  6 15:13:44 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6e62fe9

sci-libs/dsdp: drop x86-macos

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>

 sci-libs/dsdp/dsdp-5.8-r3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-libs/dsdp/dsdp-5.8-r3.ebuild b/sci-libs/dsdp/dsdp-5.8-r3.ebuild
index aa32624cc96..6ddc6b9b364 100644
--- a/sci-libs/dsdp/dsdp-5.8-r3.ebuild
+++ b/sci-libs/dsdp/dsdp-5.8-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -13,7 +13,7 @@ SRC_URI="https://www.mcs.anl.gov/hs/software/DSDP/${MY_P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
 IUSE="doc examples"
 
 RDEPEND="virtual/lapack"


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

* [gentoo-commits] repo/gentoo:master commit in: sci-libs/dsdp/
@ 2024-04-12  9:27 Arthur Zamarin
  0 siblings, 0 replies; 7+ messages in thread
From: Arthur Zamarin @ 2024-04-12  9:27 UTC (permalink / raw
  To: gentoo-commits

commit:     c6076072b2f0378f92e5d4f280a9509041ff2a18
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 12 09:08:19 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Apr 12 09:27:14 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6076072

sci-libs/dsdp: EAPI8

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sci-libs/dsdp/dsdp-5.8-r4.ebuild | 89 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 89 insertions(+)

diff --git a/sci-libs/dsdp/dsdp-5.8-r4.ebuild b/sci-libs/dsdp/dsdp-5.8-r4.ebuild
new file mode 100644
index 000000000000..ac3c51fb830b
--- /dev/null
+++ b/sci-libs/dsdp/dsdp-5.8-r4.ebuild
@@ -0,0 +1,89 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit multilib toolchain-funcs
+
+MY_P="${PN^^}${PV}"
+
+DESCRIPTION="Software for interior-point for semidefinite programming"
+HOMEPAGE="https://www.mcs.anl.gov/hs/software/DSDP/"
+SRC_URI="https://www.mcs.anl.gov/hs/software/DSDP/${MY_P}.tar.gz"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
+IUSE="doc examples"
+
+RDEPEND="virtual/lapack"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+PATCHES=(
+	"${FILESDIR}"/${P}-readsdpa.patch
+	"${FILESDIR}"/${P}-malloc.patch
+	"${FILESDIR}"/${P}-gold.patch
+)
+
+make_shared_lib() {
+	local soname=$(basename "${1%.a}")$(get_libname $(ver_cut 1))
+	local cflags=()
+
+	if [[ ${CHOST} == *-darwin* ]] ; then
+		cflags+=(
+			"-Wl,-install_name"
+			"-Wl,${EPREFIX}/usr/$(get_libdir)/${soname}"
+		)
+	else
+		cflags+=(
+			"-shared" "-Wl,-soname=${soname}"
+			"-Wl,--whole-archive" "${1}" "-Wl,--no-whole-archive"
+		)
+	fi
+	einfo "Making ${soname}"
+	${2:-$(tc-getCC)} ${LDFLAGS}  \
+		"${cflags[@]}" \
+		-o $(dirname "${1}")/"${soname}" \
+		-lm $($(tc-getPKG_CONFIG) --libs blas lapack) || return 1
+}
+
+src_prepare() {
+	default
+	# to do proper parallel compilation
+	while IFS="" read -d $'\0' -r file; do
+		sed -i -e 's:make :$(MAKE) :g' "${file}" || die
+	done < <(find . -name Makefile -print0)
+	sed -i -e 's:make clean:$(MAKE) clean:g' make.include || die
+	sed -i \
+		-e "s|#\(DSDPROOT[[:space:]]*=\).*|\1${S}|" \
+		-e "s|\(CC[[:space:]]*=\).*|\1$(tc-getCC)|" \
+		-e "s|\(OPTFLAGS[[:space:]]*=\).*|\1${CFLAGS}|" \
+		-e "s|\(CLINKER[[:space:]]*=\).*|\1 \${CC} ${LDFLAGS}|" \
+		-e "s|\(LAPACKBLAS[[:space:]]*=\).*|\1 $($(tc-getPKG_CONFIG) --libs blas lapack)|" \
+		-e "s|\(^ARCH[[:space:]]*=\).*|\1$(tc-getAR) cr|" \
+		-e "s|\(^RANLIB[[:space:]]*=\).*|\1$(tc-getRANLIB)|" \
+		make.include || die
+}
+
+src_compile() {
+	emake OPTFLAGS="${CFLAGS} -fPIC" dsdplibrary
+	make_shared_lib lib/lib${PN}.a || die "doing shared lib failed"
+}
+
+src_test() {
+	emake -j1 example test
+}
+
+src_install() {
+	dolib.so lib/lib${PN}$(get_libname $(ver_cut 1))
+	dosym lib${PN}$(get_libname $(ver_cut 1)) \
+		/usr/$(get_libdir)/lib${PN}$(get_libname)
+
+	doheader include/*.h src/sdp/*.h
+
+	use doc && DOCS+=( docs/*.pdf )
+	use examples && DOCS+=( examples/. )
+	einstalldocs
+}


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

* [gentoo-commits] repo/gentoo:master commit in: sci-libs/dsdp/
@ 2024-04-19  6:08 Arthur Zamarin
  0 siblings, 0 replies; 7+ messages in thread
From: Arthur Zamarin @ 2024-04-19  6:08 UTC (permalink / raw
  To: gentoo-commits

commit:     888cbe7283c056dc9bb55966521c974ed6de093d
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 19 05:59:02 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Apr 19 06:07:51 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=888cbe72

sci-libs/dsdp: drop 5.8-r3, EAPI6--

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sci-libs/dsdp/dsdp-5.8-r3.ebuild | 90 ----------------------------------------
 1 file changed, 90 deletions(-)

diff --git a/sci-libs/dsdp/dsdp-5.8-r3.ebuild b/sci-libs/dsdp/dsdp-5.8-r3.ebuild
deleted file mode 100644
index 6ddc6b9b3640..000000000000
--- a/sci-libs/dsdp/dsdp-5.8-r3.ebuild
+++ /dev/null
@@ -1,90 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit multilib toolchain-funcs versionator
-
-MY_P="${PN^^}${PV}"
-
-DESCRIPTION="Software for interior-point for semidefinite programming"
-HOMEPAGE="https://www.mcs.anl.gov/hs/software/DSDP/"
-SRC_URI="https://www.mcs.anl.gov/hs/software/DSDP/${MY_P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
-IUSE="doc examples"
-
-RDEPEND="virtual/lapack"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig"
-
-S="${WORKDIR}/${MY_P}"
-
-PATCHES=(
-	"${FILESDIR}"/${P}-readsdpa.patch
-	"${FILESDIR}"/${P}-malloc.patch
-	"${FILESDIR}"/${P}-gold.patch
-)
-
-make_shared_lib() {
-	local soname=$(basename "${1%.a}")$(get_libname $(get_major_version))
-	local cflags=()
-
-	if [[ ${CHOST} == *-darwin* ]] ; then
-		cflags+=(
-			"-Wl,-install_name"
-			"-Wl,${EPREFIX}/usr/$(get_libdir)/${soname}"
-		)
-	else
-		cflags+=(
-			"-shared" "-Wl,-soname=${soname}"
-			"-Wl,--whole-archive" "${1}" "-Wl,--no-whole-archive"
-		)
-	fi
-	einfo "Making ${soname}"
-	${2:-$(tc-getCC)} ${LDFLAGS}  \
-		"${cflags[@]}" \
-		-o $(dirname "${1}")/"${soname}" \
-		-lm $($(tc-getPKG_CONFIG) --libs blas lapack) || return 1
-}
-
-src_prepare() {
-	default
-	# to do proper parallel compilation
-	while IFS="" read -d $'\0' -r file; do
-		sed -i -e 's:make :$(MAKE) :g' "${file}" || die
-	done < <(find . -name Makefile -print0)
-	sed -i -e 's:make clean:$(MAKE) clean:g' make.include || die
-	sed -i \
-		-e "s|#\(DSDPROOT[[:space:]]*=\).*|\1${S}|" \
-		-e "s|\(CC[[:space:]]*=\).*|\1$(tc-getCC)|" \
-		-e "s|\(OPTFLAGS[[:space:]]*=\).*|\1${CFLAGS}|" \
-		-e "s|\(CLINKER[[:space:]]*=\).*|\1 \${CC} ${LDFLAGS}|" \
-		-e "s|\(LAPACKBLAS[[:space:]]*=\).*|\1 $($(tc-getPKG_CONFIG) --libs blas lapack)|" \
-		-e "s|\(^ARCH[[:space:]]*=\).*|\1$(tc-getAR) cr|" \
-		-e "s|\(^RANLIB[[:space:]]*=\).*|\1$(tc-getRANLIB)|" \
-		make.include || die
-}
-
-src_compile() {
-	emake OPTFLAGS="${CFLAGS} -fPIC" dsdplibrary
-	make_shared_lib lib/lib${PN}.a || die "doing shared lib failed"
-}
-
-src_test() {
-	emake -j1 example test
-}
-
-src_install() {
-	dolib.so lib/lib${PN}$(get_libname $(get_major_version))
-	dosym lib${PN}$(get_libname $(get_major_version)) \
-		/usr/$(get_libdir)/lib${PN}$(get_libname)
-
-	doheader include/*.h src/sdp/*.h
-
-	use doc && DOCS+=( docs/*.pdf )
-	use examples && DOCS+=( examples/. )
-	einstalldocs
-}


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

* [gentoo-commits] repo/gentoo:master commit in: sci-libs/dsdp/
@ 2024-09-15 18:10 Arthur Zamarin
  0 siblings, 0 replies; 7+ messages in thread
From: Arthur Zamarin @ 2024-09-15 18:10 UTC (permalink / raw
  To: gentoo-commits

commit:     d2f60f4854419fd6ed481dcb0bd4c5c452d0beaa
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 15 18:09:56 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Sep 15 18:09:56 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2f60f48

sci-libs/dsdp: Stabilize 5.8-r4 amd64, #937342

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sci-libs/dsdp/dsdp-5.8-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/dsdp/dsdp-5.8-r4.ebuild b/sci-libs/dsdp/dsdp-5.8-r4.ebuild
index ac3c51fb830b..21372fe110e7 100644
--- a/sci-libs/dsdp/dsdp-5.8-r4.ebuild
+++ b/sci-libs/dsdp/dsdp-5.8-r4.ebuild
@@ -14,7 +14,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
+KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
 IUSE="doc examples"
 
 RDEPEND="virtual/lapack"


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

end of thread, other threads:[~2024-09-15 18:10 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-12  9:27 [gentoo-commits] repo/gentoo:master commit in: sci-libs/dsdp/ Arthur Zamarin
  -- strict thread matches above, loose matches on Subject: below --
2024-09-15 18:10 Arthur Zamarin
2024-04-19  6:08 Arthur Zamarin
2021-01-06 15:17 Fabian Groffen
2019-02-27  4:25 Aaron Bauman
2017-12-03 14:20 Fabian Groffen
2016-09-06 20:25 David Seifert

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