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-smi/
Date: Sat, 27 Feb 2021 03:08:25
Message-Id: 1614395200.ecf560c0612be8b2fc270f7897b4f04d818f8b71.sam@gentoo
1 commit: ecf560c0612be8b2fc270f7897b4f04d818f8b71
2 Author: Ionen Wolkens <sudinave <AT> gmail <DOT> com>
3 AuthorDate: Fri Feb 26 13:43:31 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 27 03:06:40 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ecf560c0
7
8 sci-libs/coinor-smi: 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-smi/Manifest | 1 -
15 sci-libs/coinor-smi/coinor-smi-0.93.4.ebuild | 71 ----------------------------
16 2 files changed, 72 deletions(-)
17
18 diff --git a/sci-libs/coinor-smi/Manifest b/sci-libs/coinor-smi/Manifest
19 index 07030ca08ff..f5432192a27 100644
20 --- a/sci-libs/coinor-smi/Manifest
21 +++ b/sci-libs/coinor-smi/Manifest
22 @@ -1,2 +1 @@
23 -DIST Smi-0.93.4.tgz 4907130 BLAKE2B 329cd05ee42cf2fe0928a9fd9049c0a296632bf6c30bc6ca86f62066ee425982a853223581110b4e3e4d7a6a049e06bbb366802b1a18d175e1dc2a1a38772e9b SHA512 9439b7421475cf5d0c85f529305657e04d1ebb3eca28399b0df0352b52df315e9dceb3f1410ada0b7a6f9447b0e383116fb208d6447994ce1611f019fcace007
24 DIST coinor-smi-0.96.1.tar.gz 653402 BLAKE2B 7a81d0c67168ecd7059a814af7ba8fea57c8bc0316db95ea6a8a8a1717d7584ecfafe623b7de6b66908b5f85bc02cd0b1d1781fb7145c901efe6a8ddeb92afe6 SHA512 cadb4c89c0a385b762fab985a6a8880dd659feb4496e39826f337a9a323ea5de1fbed51f4b414b1f6eb36fbd02292ed42a1d216bf54d27f2d5bb242012b571c9
25
26 diff --git a/sci-libs/coinor-smi/coinor-smi-0.93.4.ebuild b/sci-libs/coinor-smi/coinor-smi-0.93.4.ebuild
27 deleted file mode 100644
28 index 903528f7972..00000000000
29 --- a/sci-libs/coinor-smi/coinor-smi-0.93.4.ebuild
30 +++ /dev/null
31 @@ -1,71 +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 -AUTOTOOLS_IN_SOURCE_BUILD=yes
38 -inherit autotools-utils multilib
39 -
40 -MYPN=Smi
41 -
42 -DESCRIPTION="COIN-OR Stochastic modelling interface"
43 -HOMEPAGE="https://projects.coin-or.org/Smi/"
44 -SRC_URI="http://www.coin-or.org/download/source/${MYPN}/${MYPN}-${PV}.tgz"
45 -
46 -LICENSE="CPL-1.0"
47 -SLOT="0/2"
48 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
49 -IUSE="doc examples static-libs test"
50 -RESTRICT="!test? ( test )"
51 -
52 -RDEPEND="
53 - sci-libs/coinor-cbc:=
54 - sci-libs/coinor-cgl:=
55 - sci-libs/coinor-clp:=
56 - sci-libs/coinor-flopcpp:=
57 - sci-libs/coinor-osi:=
58 - sci-libs/coinor-utils:="
59 -DEPEND="${RDEPEND}
60 - virtual/pkgconfig
61 - doc? ( app-doc/doxygen[dot] )
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 - autotools-utils_src_configure
81 -}
82 -
83 -src_compile() {
84 - autotools-utils_src_compile
85 - if use doc; then
86 - cd "${WORKDIR}/${MYPN}-${PV}/doxydoc" || die
87 - doxygen doxygen.conf || die
88 - fi
89 -}
90 -
91 -src_test() {
92 - autotools-utils_src_test test
93 -}
94 -
95 -src_install() {
96 - use doc && HTML_DOC=("${WORKDIR}/${MYPN}-${PV}/doxydoc/html/")
97 - autotools-utils_src_install
98 - if use examples; then
99 - insinto /usr/share/doc/${PF}
100 - doins -r examples flopcpp_examples
101 - fi
102 -}