Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/alglib/, sci-libs/alglib/files/
Date: Sat, 15 Sep 2018 02:31:30
Message-Id: 1536978629.8c8a721d03d422f634eb0442e92da6a2a9ef58ba.asturm@gentoo
1 commit: 8c8a721d03d422f634eb0442e92da6a2a9ef58ba
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 14 18:30:37 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 15 02:30:29 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c8a721d
7
8 sci-libs/alglib: Drop 3.8.2-r1
9
10 Package-Manager: Portage-2.3.49, Repoman-2.3.10
11
12 sci-libs/alglib/Manifest | 1 -
13 sci-libs/alglib/alglib-3.8.2-r1.ebuild | 27 ---------------------------
14 sci-libs/alglib/files/CMakeLists.txt | 32 --------------------------------
15 3 files changed, 60 deletions(-)
16
17 diff --git a/sci-libs/alglib/Manifest b/sci-libs/alglib/Manifest
18 index 216674af28c..acfb3c58921 100644
19 --- a/sci-libs/alglib/Manifest
20 +++ b/sci-libs/alglib/Manifest
21 @@ -1,2 +1 @@
22 DIST alglib-3.10.0.cpp.gpl.tgz 1991101 BLAKE2B 884b80becce676285b7bc1f26ed8917c4c82f53b41c0350dfc8bff6573e2e6f12183e82fc317b54a8021b1f931eb7d5b55944902d0816f7097fdc05632128bdc SHA512 f02b3db5ab8dee841f27186b6693997c4e6876e75310b0a31a04593dbcb41d300920404e32e7aecb39c8dd15e54cfee05b725caa27397a67b453f6e64cd1ef5e
23 -DIST alglib-3.8.2.cpp.tgz 1674260 BLAKE2B 85379da805abe27b86025bddafab775fbcb132b74db07abb204c6677b4fe75bd392d2bacb01b26510e1a6f1086b062902f598c9f13892b46e3dca938e73d1ea7 SHA512 3d7b6e3b5a29f25aee476bdd69e583d7504a2e06d390822b4aa2792eeb500e08c13477176be348a9dd560bad358e423465c9086f0c7c12f73dc88024364aed50
24
25 diff --git a/sci-libs/alglib/alglib-3.8.2-r1.ebuild b/sci-libs/alglib/alglib-3.8.2-r1.ebuild
26 deleted file mode 100644
27 index 6e725a2cd3d..00000000000
28 --- a/sci-libs/alglib/alglib-3.8.2-r1.ebuild
29 +++ /dev/null
30 @@ -1,27 +0,0 @@
31 -# Copyright 1999-2015 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=5
35 -
36 -inherit cmake-utils
37 -
38 -DESCRIPTION="Numerical analysis and data processing library"
39 -HOMEPAGE="http://www.alglib.net/"
40 -SRC_URI="http://www.alglib.net/translator/re/${P}.cpp.tgz"
41 -
42 -SLOT="0/3.7"
43 -LICENSE="GPL-2+"
44 -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
45 -IUSE="test"
46 -
47 -S="${WORKDIR}"/cpp/
48 -
49 -src_prepare() {
50 - cp "${FILESDIR}"/CMakeLists.txt-${PV} CMakeLists.txt || die
51 - cmake-utils_src_prepare
52 -}
53 -
54 -src_configure() {
55 - local mycmakeargs=( $(cmake-utils_use_build test) )
56 - cmake-utils_src_configure
57 -}
58
59 diff --git a/sci-libs/alglib/files/CMakeLists.txt b/sci-libs/alglib/files/CMakeLists.txt
60 deleted file mode 100644
61 index 6455423b0fe..00000000000
62 --- a/sci-libs/alglib/files/CMakeLists.txt
63 +++ /dev/null
64 @@ -1,32 +0,0 @@
65 -project(alglib CXX)
66 -cmake_minimum_required(VERSION 2.8)
67 -
68 -INCLUDE(GNUInstallDirs)
69 -INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/src)
70 -SET(VERSION 3.7.0)
71 -SET(SOVERSION 3.7)
72 -
73 -FILE(GLOB ALGLIB_SRC_LIB "src/*.cpp")
74 -FILE(GLOB ALGLIB_HDR_LIB "src/*.h")
75 -
76 -ADD_LIBRARY(alglib SHARED ${ALGLIB_SRC_LIB})
77 -SET_TARGET_PROPERTIES(alglib PROPERTIES
78 - VERSION ${VERSION}
79 - SOVERSION ${SOVERSION})
80 -
81 -INSTALL(TARGETS alglib DESTINATION ${CMAKE_INSTALL_LIBDIR}/)
82 -INSTALL(FILES ${ALGLIB_HDR_LIB} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})
83 -
84 -#===========================================================
85 -ADD_EXECUTABLE(test_c tests/test_c.cpp)
86 -TARGET_LINK_LIBRARIES(test_c alglib)
87 -#INSTALL(TARGETS test_c DESTINATION ${CMAKE_INSTALL_BINDIR}/)
88 -#===========================================================
89 -ADD_EXECUTABLE(test_i tests/test_i.cpp)
90 -TARGET_LINK_LIBRARIES(test_i alglib)
91 -#INSTALL(TARGETS test_i DESTINATION ${CMAKE_INSTALL_BINDIR}/)
92 -#===========================================================
93 -
94 -enable_testing()
95 -add_test( test_c ${CMAKE_BUILD_DIR}/test_c)
96 -add_test( test_i ${CMAKE_BUILD_DIR}/test_i)