Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/armadillo/
Date: Sun, 26 Feb 2017 09:15:37
Message-Id: 1488100518.09d0e4ebb03c585b0839d9e455576f62c75f15b4.kensington@gentoo
1 commit: 09d0e4ebb03c585b0839d9e455576f62c75f15b4
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 26 09:14:59 2017 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 26 09:15:18 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09d0e4eb
7
8 sci-libs/armadillo: remove old
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 sci-libs/armadillo/Manifest | 2 --
13 sci-libs/armadillo/armadillo-3.4.4.ebuild | 58 -------------------------------
14 sci-libs/armadillo/armadillo-3.6.2.ebuild | 57 ------------------------------
15 3 files changed, 117 deletions(-)
16
17 diff --git a/sci-libs/armadillo/Manifest b/sci-libs/armadillo/Manifest
18 index 97e8fb0b0b..522d865379 100644
19 --- a/sci-libs/armadillo/Manifest
20 +++ b/sci-libs/armadillo/Manifest
21 @@ -1,4 +1,2 @@
22 -DIST armadillo-3.4.4.tar.gz 3006964 SHA256 ef94e12556421fa62ba7734f8b18bb12c188f43dd6192d3648a28e8d154e6ba7 SHA512 78fbb107b220d283a2404483ee38720fd8259bbf675d8753d706cc3c3ba9678d47412d156f24a4b3cc95e20ce3c935167e2f7657806b5b8e8b7c95938c4b3f3f WHIRLPOOL 2a1b6426b695569c10b13d3df1183c615fdb4261497eea405e61316a838a5744477db7bfd8344f25d741e69899f64a19c801bd068d366175a2c9898369090093
23 -DIST armadillo-3.6.2.tar.gz 3016818 SHA256 04f64c632e619989616c7f219310a06cb1618b16274bdac05b4798d49eb4f149 SHA512 0c769caad012f7893cc8ebb46969179f1175edac638f98fd2a0898aed062f7456536eecd12c9720f77caf4859cd0049e00dd71c9f096458b5fd5ce9cea517c66 WHIRLPOOL 898c29f7d0a7b02658f8d95a528be7d321a7d15f95ada6a4296d9822ee873556a49ccaafcaca16cb25e4a05321fa91b9711d7790b0910464b653398fb6ce4738
24 DIST armadillo-6.200.3.tar.gz 5442342 SHA256 4e436704a3b0824be6286ffa7c71c91ef783699889fa0992897d446b7ed82b28 SHA512 598ba8be19971fc0e44703b17be922568e697c592ed85d0148c31f8476ecd7b5a0e6185918763bc063ba68244330b17594333c1453e9c1cfd39b9fefe85be222 WHIRLPOOL b774fd736a55c6bad44f26ed839ef7539784be494e9379b2c9fd7ff47363cfe304c23baedd24fa0c990fb94f73ce10db77a32dab77b2d6cc549e61ec83a6e33e
25 DIST armadillo-7.500.2.tar.xz 3994336 SHA256 bdde22b47cc9718a05762300828ba4e086aa0527970e4ce08eb08677fb2623ea SHA512 1f73944fa26eec93973630a7f101ca875de8decf9cbd6d7f87431a43e855479d5e79775823ba2e97e8d2615902deebd98af65808a529af16d6f8d88de60703d3 WHIRLPOOL d7942fd945ad30263b1da2ba5818852c32ac0e42d78c520fd7ab13cc73bfd0f07c6505c85fb570bf74ae5a1c3ebe2a122ab3c72d8109cebd8d37493843f010df
26
27 diff --git a/sci-libs/armadillo/armadillo-3.4.4.ebuild b/sci-libs/armadillo/armadillo-3.4.4.ebuild
28 deleted file mode 100644
29 index 050faed7d4..0000000000
30 --- a/sci-libs/armadillo/armadillo-3.4.4.ebuild
31 +++ /dev/null
32 @@ -1,58 +0,0 @@
33 -# Copyright 1999-2016 Gentoo Foundation
34 -# Distributed under the terms of the GNU General Public License v2
35 -# $Id$
36 -
37 -EAPI=4
38 -
39 -CMAKE_IN_SOURCE_BUILD=1
40 -
41 -inherit cmake-utils toolchain-funcs
42 -
43 -DESCRIPTION="Streamlined C++ linear algebra library"
44 -HOMEPAGE="http://arma.sourceforge.net/"
45 -SRC_URI="mirror://sourceforge/arma/${P}.tar.gz"
46 -
47 -LICENSE="LGPL-3"
48 -SLOT="0"
49 -KEYWORDS="amd64 ppc64 x86 ~amd64-linux ~x86-linux"
50 -IUSE="blas doc examples lapack"
51 -
52 -RDEPEND="
53 - dev-libs/boost
54 - blas? ( virtual/blas )
55 - lapack? ( virtual/lapack )"
56 -
57 -DEPEND="${DEPEND}
58 - virtual/pkgconfig"
59 -
60 -src_prepare() {
61 - # avoid the automagic cmake macros
62 - sed -i -e '/ARMA_Find/d' CMakeLists.txt || die
63 -}
64 -
65 -src_configure() {
66 - local mycmakeargs=()
67 - if use blas; then
68 - mycmakeargs+=(
69 - -DBLAS_FOUND=ON
70 - -DBLAS_LIBRARIES="$($(tc-getPKG_CONFIG) --libs blas)"
71 - )
72 - fi
73 - if use lapack; then
74 - mycmakeargs+=(
75 - -DLAPACK_FOUND=ON
76 - -DLAPACK_LIBRARIES="$($(tc-getPKG_CONFIG) --libs lapack)"
77 - )
78 - fi
79 - cmake-utils_src_configure
80 -}
81 -
82 -src_install() {
83 - cmake-utils_src_install
84 - dodoc README.txt
85 - use doc && dodoc *pdf && dohtml *html
86 - if use examples; then
87 - insinto /usr/share/doc/${PF}
88 - doins -r examples
89 - fi
90 -}
91
92 diff --git a/sci-libs/armadillo/armadillo-3.6.2.ebuild b/sci-libs/armadillo/armadillo-3.6.2.ebuild
93 deleted file mode 100644
94 index aa84d72505..0000000000
95 --- a/sci-libs/armadillo/armadillo-3.6.2.ebuild
96 +++ /dev/null
97 @@ -1,57 +0,0 @@
98 -# Copyright 1999-2016 Gentoo Foundation
99 -# Distributed under the terms of the GNU General Public License v2
100 -# $Id$
101 -
102 -EAPI=5
103 -
104 -CMAKE_IN_SOURCE_BUILD=1
105 -
106 -inherit cmake-utils toolchain-funcs
107 -
108 -DESCRIPTION="Streamlined C++ linear algebra library"
109 -HOMEPAGE="http://arma.sourceforge.net/"
110 -SRC_URI="mirror://sourceforge/arma/${P}.tar.gz"
111 -
112 -LICENSE="LGPL-3"
113 -SLOT="0"
114 -KEYWORDS="~amd64 ~arm ~ppc64 ~x86 ~amd64-linux ~x86-linux"
115 -IUSE="blas doc examples lapack"
116 -
117 -RDEPEND="
118 - dev-libs/boost
119 - blas? ( virtual/blas )
120 - lapack? ( virtual/lapack )"
121 -DEPEND="${DEPEND}
122 - virtual/pkgconfig"
123 -
124 -src_prepare() {
125 - # avoid the automagic cmake macros
126 - sed -i -e '/ARMA_Find/d' CMakeLists.txt || die
127 -}
128 -
129 -src_configure() {
130 - local mycmakeargs=()
131 - if use blas; then
132 - mycmakeargs+=(
133 - -DBLAS_FOUND=ON
134 - -DBLAS_LIBRARIES="$($(tc-getPKG_CONFIG) --libs blas)"
135 - )
136 - fi
137 - if use lapack; then
138 - mycmakeargs+=(
139 - -DLAPACK_FOUND=ON
140 - -DLAPACK_LIBRARIES="$($(tc-getPKG_CONFIG) --libs lapack)"
141 - )
142 - fi
143 - cmake-utils_src_configure
144 -}
145 -
146 -src_install() {
147 - cmake-utils_src_install
148 - dodoc README.txt
149 - use doc && dodoc *pdf && dohtml *html
150 - if use examples; then
151 - insinto /usr/share/doc/${PF}
152 - doins -r examples
153 - fi
154 -}