Gentoo Archives: gentoo-commits

From: Craig Andrews <candrews@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/spdlog/
Date: Mon, 14 Jan 2019 18:51:31
Message-Id: 1547491877.7c9456b2f82b9ebdfd82aa33ef5fea6a5e69a220.candrews@gentoo
1 commit: 7c9456b2f82b9ebdfd82aa33ef5fea6a5e69a220
2 Author: David Roman <davidroman96 <AT> gmail <DOT> com>
3 AuthorDate: Mon Jan 14 18:39:34 2019 +0000
4 Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 14 18:51:17 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c9456b2
7
8 dev-libs/spdlog: drop old ebuilds
9
10 Package-Manager: Portage-2.3.55, Repoman-2.3.12
11 Signed-off-by: David Roman <davidroman96 <AT> gmail.com>
12 Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>
13
14 dev-libs/spdlog/Manifest | 2 --
15 dev-libs/spdlog/spdlog-1.0.0.ebuild | 39 -------------------------------------
16 dev-libs/spdlog/spdlog-1.1.0.ebuild | 39 -------------------------------------
17 3 files changed, 80 deletions(-)
18
19 diff --git a/dev-libs/spdlog/Manifest b/dev-libs/spdlog/Manifest
20 index f506ef1a56b..253b0728966 100644
21 --- a/dev-libs/spdlog/Manifest
22 +++ b/dev-libs/spdlog/Manifest
23 @@ -1,4 +1,2 @@
24 -DIST spdlog-1.0.0.tar.gz 183855 BLAKE2B 30d54fef03a83f968cfebacf95a484ff397126771a7ea022556aebd07e2f7694af35b278f75ee24372283ff1428e21247fd4329794d64a65bd6220a93f21db3c SHA512 4d3cbc1926be513256b5837a53fce425f6d352bb4ab262074f205450cd4eadc09feea9dc8d8c03b3f1e9792bcfbcff414be79e51d58234f540946428bbd88cd1
25 -DIST spdlog-1.1.0.tar.gz 183937 BLAKE2B 51af49f641df69e78835bd6b9545da53c0e111bab60a5f0dbf4a1d0e70101309394ffea195176ea371f08b772c2be1c22c2da16006fc9699f47593cf82a6c0fd SHA512 65fbe6e9dffb25e814f72f2ef7982eed213fc16edfabb1377f865c94fd0488190e160dfea83ac06979a41f2fb2fa47a454989ebee0a2c5012bd404b977648439
26 DIST spdlog-1.2.1.tar.gz 188284 BLAKE2B c3491a9c44d8a94c51d50c9ef36a2105f77e8fb61bb7b2b81a341609f433abbe3a74e7b4a467dd715a5d906f976740716488d07b4510f366556ab59d160ceefe SHA512 418f91efc207fa227558212d82c41639c0bb59e84ea47447e0b6276c4842e97f1f8aaf5802c071ef15d80ec525e317e70b6a39661a6c96ab39d33d9bd1570da1
27 DIST spdlog-1.3.0.tar.gz 202637 BLAKE2B 97027a3672b826e294dbdc202afa913a42ddae5a02a569ac28c41d79b96128de045ac5df30a76d888d6b3bea5093fb75b006365d7b1b296842750a39f43835d6 SHA512 019a52d4b6c66287ee2a6e8177457ecbbb78e1cb894f4a0a90b83a84d66cd37b397cdf77892d9116e4c34113bd3277d606d578bc96ec6521ae7745f08b1aa54f
28
29 diff --git a/dev-libs/spdlog/spdlog-1.0.0.ebuild b/dev-libs/spdlog/spdlog-1.0.0.ebuild
30 deleted file mode 100644
31 index 03aaec9bd60..00000000000
32 --- a/dev-libs/spdlog/spdlog-1.0.0.ebuild
33 +++ /dev/null
34 @@ -1,39 +0,0 @@
35 -# Copyright 1999-2018 Gentoo Foundation
36 -# Distributed under the terms of the GNU General Public License v2
37 -
38 -EAPI=6
39 -
40 -inherit cmake-utils
41 -
42 -DESCRIPTION="Very fast, header only, C++ logging library"
43 -HOMEPAGE="https://github.com/gabime/spdlog"
44 -
45 -if [[ ${PV} == *9999 ]]; then
46 - inherit git-r3
47 - EGIT_REPO_URI="https://github.com/gabime/spdlog"
48 -else
49 - SRC_URI="https://github.com/gabime/spdlog/archive/v${PV}.tar.gz -> ${P}.tar.gz"
50 - KEYWORDS="~amd64"
51 -fi
52 -
53 -LICENSE="MIT"
54 -SLOT="0/1"
55 -IUSE="test"
56 -
57 -DEPEND="
58 - >=dev-libs/libfmt-5.0.0
59 -"
60 -RDEPEND="${DEPEND}"
61 -
62 -PATCHES=( "${FILESDIR}/${PN}-1.0.0-unbundle-fmt.patch" )
63 -
64 -src_configure() {
65 - rm -r include/spdlog/fmt/bundled || die
66 -
67 - local mycmakeargs=(
68 - -DSPDLOG_BUILD_EXAMPLES=no
69 - -DSPDLOG_BUILD_TESTING=$(usex test)
70 - )
71 -
72 - cmake-utils_src_configure
73 -}
74
75 diff --git a/dev-libs/spdlog/spdlog-1.1.0.ebuild b/dev-libs/spdlog/spdlog-1.1.0.ebuild
76 deleted file mode 100644
77 index 03aaec9bd60..00000000000
78 --- a/dev-libs/spdlog/spdlog-1.1.0.ebuild
79 +++ /dev/null
80 @@ -1,39 +0,0 @@
81 -# Copyright 1999-2018 Gentoo Foundation
82 -# Distributed under the terms of the GNU General Public License v2
83 -
84 -EAPI=6
85 -
86 -inherit cmake-utils
87 -
88 -DESCRIPTION="Very fast, header only, C++ logging library"
89 -HOMEPAGE="https://github.com/gabime/spdlog"
90 -
91 -if [[ ${PV} == *9999 ]]; then
92 - inherit git-r3
93 - EGIT_REPO_URI="https://github.com/gabime/spdlog"
94 -else
95 - SRC_URI="https://github.com/gabime/spdlog/archive/v${PV}.tar.gz -> ${P}.tar.gz"
96 - KEYWORDS="~amd64"
97 -fi
98 -
99 -LICENSE="MIT"
100 -SLOT="0/1"
101 -IUSE="test"
102 -
103 -DEPEND="
104 - >=dev-libs/libfmt-5.0.0
105 -"
106 -RDEPEND="${DEPEND}"
107 -
108 -PATCHES=( "${FILESDIR}/${PN}-1.0.0-unbundle-fmt.patch" )
109 -
110 -src_configure() {
111 - rm -r include/spdlog/fmt/bundled || die
112 -
113 - local mycmakeargs=(
114 - -DSPDLOG_BUILD_EXAMPLES=no
115 - -DSPDLOG_BUILD_TESTING=$(usex test)
116 - )
117 -
118 - cmake-utils_src_configure
119 -}