Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/coinor-symphony/
Date: Sat, 27 Feb 2021 03:08:22
Message-Id: 1614395196.b4575298f030368bb164a28fbc1e8919613e7335.sam@gentoo
1 commit: b4575298f030368bb164a28fbc1e8919613e7335
2 Author: Ionen Wolkens <sudinave <AT> gmail <DOT> com>
3 AuthorDate: Fri Feb 26 12:20:34 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 27 03:06:36 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4575298
7
8 sci-libs/coinor-symphony: remove old
9
10 Package-Manager: Portage-3.0.15, Repoman-3.0.2
11 Signed-off-by: Ionen Wolkens <sudinave <AT> gmail.com>
12 Signed-off-by: Sam James <sam <AT> gentoo.org>
13
14 sci-libs/coinor-symphony/Manifest | 1 -
15 .../coinor-symphony/coinor-symphony-5.5.7.ebuild | 87 ----------------------
16 2 files changed, 88 deletions(-)
17
18 diff --git a/sci-libs/coinor-symphony/Manifest b/sci-libs/coinor-symphony/Manifest
19 index 0dbf8ac5248..b26b3b1a663 100644
20 --- a/sci-libs/coinor-symphony/Manifest
21 +++ b/sci-libs/coinor-symphony/Manifest
22 @@ -1,2 +1 @@
23 -DIST SYMPHONY-5.5.7.tgz 7628863 BLAKE2B 8578cc341a2114642911bff68cf260dd6c5974b70ef3deebf9f7ea51f580be809dd1224a18dbd0744e9acf3b1ce9d5bdf90a1e97b53bcd01529978a816e26c6c SHA512 a3ce66b0b1373c58024ce6840277423a1a3684af8e3179a777fbb33a8d266849ae1cde694a527c3776ff67ce0a5ae3c2bfe0dc29f4e0b3ca51ddc2b299eefb24
24 DIST coinor-symphony-5.6.17.tar.gz 1848015 BLAKE2B 0e1222f51809fb836530000348351d0e2a0928ec898a11ec21d2b0cad88a2ee4a635bc91a6d92607af67cf7d44a7187683528dd2a37b288fee1b2d947058d7b1 SHA512 eb0022184b1d0325729bb8f5390093ff1cfdfc87edf1dfdf20e62f07830c69604ec373b69c6de13755611a8e96f79ee8d1009efde0a35c9e7c0fab6652375ff7
25
26 diff --git a/sci-libs/coinor-symphony/coinor-symphony-5.5.7.ebuild b/sci-libs/coinor-symphony/coinor-symphony-5.5.7.ebuild
27 deleted file mode 100644
28 index 02a341b4b79..00000000000
29 --- a/sci-libs/coinor-symphony/coinor-symphony-5.5.7.ebuild
30 +++ /dev/null
31 @@ -1,87 +0,0 @@
32 -# Copyright 1999-2019 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=5
36 -
37 -inherit autotools-utils multilib
38 -
39 -MYPN=SYMPHONY
40 -
41 -DESCRIPTION="COIN-OR solver for mixed-integer linear programs"
42 -HOMEPAGE="https://projects.coin-or.org/SYMPHONY/"
43 -SRC_URI="http://www.coin-or.org/download/source/${MYPN}/${MYPN}-${PV}.tgz"
44 -
45 -LICENSE="EPL-1.0"
46 -SLOT="0/3"
47 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
48 -IUSE="doc examples glpk static-libs test"
49 -RESTRICT="!test? ( test )"
50 -
51 -RDEPEND="
52 - sci-libs/coinor-cgl:=
53 - sci-libs/coinor-clp:=
54 - sci-libs/coinor-dylp:=
55 - sci-libs/coinor-osi:=
56 - sci-libs/coinor-utils:=
57 - sci-libs/coinor-vol:=
58 - glpk? ( sci-mathematics/glpk:= )"
59 -DEPEND="${RDEPEND}
60 - virtual/pkgconfig
61 - doc? ( virtual/latex-base )
62 - test? ( sci-libs/coinor-sample )"
63 -
64 -S="${WORKDIR}/${MYPN}-${PV}/${MYPN}"
65 -
66 -src_prepare() {
67 - # needed for the --with-coin-instdir
68 - dodir /usr
69 - sed -i \
70 - -e "s:lib/pkgconfig:$(get_libdir)/pkgconfig:g" \
71 - configure || die
72 - autotools-utils_src_prepare
73 -}
74 -
75 -src_configure() {
76 - local myeconfargs=(
77 - --enable-dependency-linking
78 - --with-coin-instdir="${ED}"/usr
79 - )
80 - if use glpk; then
81 - myeconfargs+=(
82 - --with-glpk-incdir="${EPREFIX}"/usr/include
83 - --with-glpk-lib=-lglpk )
84 - else
85 - myeconfargs+=( --without-glpk )
86 - fi
87 - autotools-utils_src_configure
88 -}
89 -
90 -src_compile() {
91 - # hack for parallel build, to overcome not patching Makefile.am above
92 - autotools-utils_src_compile -C src libSym.la
93 - autotools-utils_src_compile
94 - if use doc; then
95 - pushd Doc /dev/null
96 - pdflatex Walkthrough && pdflatex Walkthrough
97 - # does not compile and doc is online
98 - #pdflatex man && pdflatex man
99 - popd > /dev/null
100 - fi
101 -}
102 -
103 -src_test() {
104 - autotools-utils_src_test test
105 -}
106 -
107 -src_install() {
108 - # hack for parallel install, to overcome not patching Makefile.am above
109 - autotools-utils_src_install -C src install-am
110 - autotools-utils_src_install
111 - use doc && dodoc Doc/Walkthrough.pdf
112 - # already installed
113 - rm "${ED}"/usr/share/coin/doc/${MYPN}/{README,AUTHORS,LICENSE} || die
114 - if use examples; then
115 - insinto /usr/share/doc/${PF}/examples
116 - doins -r Examples/*
117 - fi
118 -}