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-mp/
Date: Sat, 27 Feb 2021 03:08:20
Message-Id: 1614395192.34e20a3becdb0dd30f434c8bf6f1c6050ef3b261.sam@gentoo
1 commit: 34e20a3becdb0dd30f434c8bf6f1c6050ef3b261
2 Author: Ionen Wolkens <sudinave <AT> gmail <DOT> com>
3 AuthorDate: Fri Feb 26 10:16:59 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 27 03:06:32 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34e20a3b
7
8 sci-libs/coinor-mp: 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-mp/Manifest | 1 -
15 sci-libs/coinor-mp/coinor-mp-1.7.6.ebuild | 60 -------------------------------
16 2 files changed, 61 deletions(-)
17
18 diff --git a/sci-libs/coinor-mp/Manifest b/sci-libs/coinor-mp/Manifest
19 index a3fb4b16708..a1adbe1fa88 100644
20 --- a/sci-libs/coinor-mp/Manifest
21 +++ b/sci-libs/coinor-mp/Manifest
22 @@ -1,2 +1 @@
23 -DIST CoinMP-1.7.6.tgz 10343849 BLAKE2B a99fe1f5413bc458b0cfde53606041ecdec45c6ba9b866f083b85dafa04ef9aa2a52aec6ce2f5d6463e2cf9d609567d3079c10490412dcc5bd9c69942982f261 SHA512 1612d43d52d0ee29b4e6ca328e1535c59722dfd5c7a7e0811a4180ad6033ef27111ced6497f9d5cea816c047a4e11c2aed6d1936feac8ded797eeec55d9539ce
24 DIST coinor-mp-1.8.4.tar.gz 4142865 BLAKE2B 4f3f37378a13236ccab60ed0d9ec0e6716d7df8c264ec26f69e3117aaccf87cbdff42415cd4d86b936ba0fea87681592a66fef610f95ade68f5ea6cd185f4999 SHA512 ecb7761407df0a8d40ac2416fdbdfe62bb5e78f3cc4859e45c0912e6d06ca9b2d4bdf5fda2204bb1813d45289db9e8dbc48cce171950e8c3881d4a3fb3402fab
25
26 diff --git a/sci-libs/coinor-mp/coinor-mp-1.7.6.ebuild b/sci-libs/coinor-mp/coinor-mp-1.7.6.ebuild
27 deleted file mode 100644
28 index f8d827e01c6..00000000000
29 --- a/sci-libs/coinor-mp/coinor-mp-1.7.6.ebuild
30 +++ /dev/null
31 @@ -1,60 +0,0 @@
32 -# Copyright 1999-2014 Gentoo Foundation
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=CoinMP
40 -
41 -DESCRIPTION="COIN-OR lightweight API for COIN-OR libraries CLP, CBC, and CGL"
42 -HOMEPAGE="https://projects.coin-or.org/CoinMP/"
43 -SRC_URI="http://www.coin-or.org/download/source/${MYPN}/${MYPN}-${PV}.tgz"
44 -
45 -LICENSE="EPL-1.0"
46 -SLOT="0/1"
47 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
48 -IUSE="examples static-libs"
49 -
50 -RDEPEND="sci-libs/coinor-cbc:="
51 -DEPEND="${RDEPEND}
52 - virtual/pkgconfig"
53 -
54 -S="${WORKDIR}/${MYPN}-${PV}/${MYPN}"
55 -
56 -src_prepare() {
57 - # needed for the --with-coin-instdir
58 - dodir /usr
59 - sed -i \
60 - -e "s:lib/pkgconfig:$(get_libdir)/pkgconfig:g" \
61 - configure || die
62 - sed -i \
63 - -e '/^addlibsdir/s/$(DESTDIR)//' \
64 - -e 's/$(addlibsdir)/$(DESTDIR)\/$(addlibsdir)/g' \
65 - -e 's/$(DESTDIR)$(DESTDIR)/$(DESTDIR)/g' \
66 - Makefile.in || die
67 - autotools-utils_src_prepare
68 -}
69 -
70 -src_configure() {
71 - local myeconfargs=(
72 - --enable-dependency-linking
73 - --with-coin-instdir="${ED}"/usr
74 - --datadir=/usr/share
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 - # already installed
86 - rm "${ED}"/usr/share/coin/doc/${MYPN}/{README,AUTHORS,LICENSE} || die
87 - if use examples; then
88 - insinto /usr/share/doc/${PF}
89 - doins -r examples
90 - fi
91 -}