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-dip/
Date: Sat, 27 Feb 2021 03:08:19
Message-Id: 1614395189.61d7b70da4ad9abdcbcb545807fba769a122f491.sam@gentoo
1 commit: 61d7b70da4ad9abdcbcb545807fba769a122f491
2 Author: Ionen Wolkens <sudinave <AT> gmail <DOT> com>
3 AuthorDate: Fri Feb 26 09:35:09 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 27 03:06:29 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61d7b70d
7
8 sci-libs/coinor-dip: 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-dip/Manifest | 1 -
15 sci-libs/coinor-dip/coinor-dip-0.9.8.ebuild | 58 -----------------------------
16 2 files changed, 59 deletions(-)
17
18 diff --git a/sci-libs/coinor-dip/Manifest b/sci-libs/coinor-dip/Manifest
19 index 311cd87df33..e6972011d45 100644
20 --- a/sci-libs/coinor-dip/Manifest
21 +++ b/sci-libs/coinor-dip/Manifest
22 @@ -1,2 +1 @@
23 -DIST Dip-0.9.8.tgz 10557241 BLAKE2B 1fcddbe4b7e8ae0450fcf97473428c0a36b751bbf5b91ab45c362ca0590d390d8c0b5b4b273ed41f7e9432423c59b9a4f8536ff34b0c9c0f1c11ced779ddb38c SHA512 7dfb51f63aab36fe7e894be5f17f8b614bfdf9be1a14b8f8b2ee555dcb8392f82b13d20481d60423d3d375a2e52eebe0439e696e3b3a7dfdd18223829835d361
24 DIST coinor-dip-0.95.0.tar.gz 5213061 BLAKE2B 6f40e5d20832b0463e302519da168a30bdeea011a45047acb9dbe904763fc94ccaffbee3599b6f959e0eea5e40a0456771012707b9daafc50875194a1ff9967e SHA512 a9ea2bc23d625fa19e11943f46b3bf2db49aa894fe336c8de4a9a0c735e1569bd8bef015fd671eb856ee39a334adf06c95e2708bd69c4735d5f6bf994c9e41a2
25
26 diff --git a/sci-libs/coinor-dip/coinor-dip-0.9.8.ebuild b/sci-libs/coinor-dip/coinor-dip-0.9.8.ebuild
27 deleted file mode 100644
28 index c67282ce4ec..00000000000
29 --- a/sci-libs/coinor-dip/coinor-dip-0.9.8.ebuild
30 +++ /dev/null
31 @@ -1,58 +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=Dip
40 -
41 -DESCRIPTION="COIN-OR Decomposition in Integer Programming library"
42 -HOMEPAGE="https://projects.coin-or.org/Dip/"
43 -SRC_URI="http://www.coin-or.org/download/source/${MYPN}/${MYPN}-${PV}.tgz"
44 -
45 -LICENSE="EPL-1.0"
46 -SLOT="0"
47 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
48 -IUSE="examples static-libs test"
49 -RESTRICT="!test? ( test )"
50 -
51 -RDEPEND="
52 - sci-libs/coinor-alps:=
53 - sci-libs/coinor-cbc:=
54 - sci-libs/coinor-cgl:=
55 - sci-libs/coinor-clp:="
56 -DEPEND="${RDEPEND}
57 - virtual/pkgconfig
58 - test? ( sci-libs/coinor-sample )"
59 -
60 -S="${WORKDIR}/${MYPN}-${PV}/${MYPN}"
61 -
62 -src_prepare() {
63 - # needed for the --with-coin-instdir
64 - dodir /usr
65 - sed -i \
66 - -e "s:lib/pkgconfig:$(get_libdir)/pkgconfig:g" \
67 - configure || die
68 - autotools-utils_src_prepare
69 -}
70 -
71 -src_configure() {
72 - local myeconfargs=(
73 - --enable-dependency-linking
74 - --with-coin-instdir="${ED}"/usr
75 - )
76 - autotools-utils_src_configure
77 -}
78 -
79 -src_test() {
80 - autotools-utils_src_test test
81 -}
82 -
83 -src_install() {
84 - autotools-utils_src_install
85 - if use examples; then
86 - insinto /usr/share/doc/${PF}
87 - doins -r examples
88 - fi
89 -}