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-flopcpp/
Date: Sat, 27 Feb 2021 03:08:23
Message-Id: 1614395198.197fde4d9693998aa046037a5e282ce3022ab14b.sam@gentoo
1 commit: 197fde4d9693998aa046037a5e282ce3022ab14b
2 Author: Ionen Wolkens <sudinave <AT> gmail <DOT> com>
3 AuthorDate: Fri Feb 26 13:02:20 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 27 03:06:38 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=197fde4d
7
8 sci-libs/coinor-flopcpp: 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-flopcpp/Manifest | 1 -
15 .../coinor-flopcpp/coinor-flopcpp-1.1.7.ebuild | 66 ----------------------
16 2 files changed, 67 deletions(-)
17
18 diff --git a/sci-libs/coinor-flopcpp/Manifest b/sci-libs/coinor-flopcpp/Manifest
19 index 01cedc97e66..3a1b310154e 100644
20 --- a/sci-libs/coinor-flopcpp/Manifest
21 +++ b/sci-libs/coinor-flopcpp/Manifest
22 @@ -1,2 +1 @@
23 -DIST FlopC++-1.1.7.tgz 6631744 BLAKE2B a6666480b800819b2132c6375483c35542bfd177201cd6cdd9b6ab36c42ef5d66308bf049ba0e7d7891cec32656e9fc0e4684c04e4628b5de3758be277d55142 SHA512 40f59cb34f61f6ff1759a90909a81d724a562ee9dbfe91628ad8df1b8049afff254ceeb56f1e68a48d035e6d3a140744b8ebd8815ee39c9f01e17860c904942d
24 DIST coinor-flopcpp-1.2.5.tar.gz 615614 BLAKE2B ff356ca41ed7639c2916c55f04ae561abfaeef041bd04730d0ca774cb6506f023c1c31e3463d93a34f41d534fb189cb794a20daa155dbdf43303c22272a6c986 SHA512 45d9e5b976d2fb26be34d5e201a7aed24ec8717472902f4848c353a12f17488903b00e6675e2a3e90ac0da58581afb6fd48d3869b8fd7ce962cef98622755d7d
25
26 diff --git a/sci-libs/coinor-flopcpp/coinor-flopcpp-1.1.7.ebuild b/sci-libs/coinor-flopcpp/coinor-flopcpp-1.1.7.ebuild
27 deleted file mode 100644
28 index 015c0264ae5..00000000000
29 --- a/sci-libs/coinor-flopcpp/coinor-flopcpp-1.1.7.ebuild
30 +++ /dev/null
31 @@ -1,66 +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=FlopC++
40 -
41 -DESCRIPTION="COIN-OR algebraic modeling language for linear optimization"
42 -HOMEPAGE="https://projects.coin-or.org/FlopC++/"
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="doc examples static-libs"
49 -
50 -RDEPEND="
51 - sci-libs/coinor-cgl:=
52 - sci-libs/coinor-clp:=
53 - sci-libs/coinor-osi:="
54 -DEPEND="${RDEPEND}
55 - virtual/pkgconfig
56 - doc? ( app-doc/doxygen[dot] )"
57 -
58 -S="${WORKDIR}/${MYPN}-${PV}/FlopCpp"
59 -
60 -src_prepare() {
61 - # needed for the --with-coin-instdir
62 - dodir /usr
63 - sed -i \
64 - -e "s:lib/pkgconfig:$(get_libdir)/pkgconfig:g" \
65 - configure || die
66 - autotools-utils_src_prepare
67 -}
68 -
69 -src_configure() {
70 - local myeconfargs=(
71 - --enable-dependency-linking
72 - --with-coin-instdir="${ED}"/usr
73 - $(use_with doc dot)
74 - )
75 - autotools-utils_src_configure
76 -}
77 -
78 -src_compile() {
79 - autotools-utils_src_compile
80 - if use doc; then
81 - cd "${WORKDIR}/${MYPN}-${PV}/doxydoc" || die
82 - doxygen doxygen.conf || die
83 - fi
84 -}
85 -
86 -src_test() {
87 - autotools-utils_src_test test
88 -}
89 -
90 -src_install() {
91 - use doc && HTML_DOC=("${WORKDIR}/${MYPN}-${PV}/doxydoc/html/")
92 - autotools-utils_src_install
93 - if use examples; then
94 - insinto /usr/share/doc/${PF}
95 - doins -r examples
96 - fi
97 -}