Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/capnproto/
Date: Sat, 05 Feb 2022 20:46:48
Message-Id: 1644093643.d99150824b9cd8e4604655a60d69567acd90c417.asturm@gentoo
1 commit: d99150824b9cd8e4604655a60d69567acd90c417
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 3 21:06:46 2022 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 5 20:40:43 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9915082
7
8 dev-libs/capnproto: Drop 0.7.0 and 0.8.0
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 dev-libs/capnproto/Manifest | 2 --
14 dev-libs/capnproto/capnproto-0.7.0.ebuild | 39 ---------------------------
15 dev-libs/capnproto/capnproto-0.8.0.ebuild | 45 -------------------------------
16 3 files changed, 86 deletions(-)
17
18 diff --git a/dev-libs/capnproto/Manifest b/dev-libs/capnproto/Manifest
19 index d4db69afc68d..fa59d90435d7 100644
20 --- a/dev-libs/capnproto/Manifest
21 +++ b/dev-libs/capnproto/Manifest
22 @@ -1,3 +1 @@
23 -DIST capnproto-0.7.0.tar.gz 1983172 BLAKE2B d88b5f8e3278f8e3aceccdc459001b99328b0440812352dcb6b54bd11e18aa7fee6d337252841c86e9c3eb1afcdbd99884c965156d6cec37e3c0996c9ec1241f SHA512 a3ea278ded6a866759c0517d16b99bd38ffea1c163ce63a3604b752d8bdaafbc38a600de94afe12db35e7f7f06e29cc94c911dc2e0ecec6fe1185452df2a2bd3
24 -DIST capnproto-0.8.0.tar.gz 2121249 BLAKE2B 6d4ef9adb026a8ea8bc558bed1f8ce910e9c3b050ad0ac7ebd4be323cc1709a6b08956d4d2f39daee5c6485438f64695a028ea198aaae8a6c366316f10b1a64f SHA512 a3b87d47f4c160c3c72304539c3d2a6836488a50d1014c9f0eb95c112dc1e0f85b3158d26c248eff464205388ea61733c45ba10dc5441e5dd04064ba2c7970e6
25 DIST capnproto-0.9.1.tar.gz 2238849 BLAKE2B f8de56c7f79b0ddad35f3e8fec7740510ca2328e4ddc633a71420901d3fc44df44d807c3965213dfc2535bbe03832c5164242d33cd0bff901d6f288fb62bab21 SHA512 bdc5960f26214139744d768ca4558b085e2d359c375a8849ca532a4c458a2daf0ee1a1f4d00745de5abf353aa1e4084a2d85e5523006f23f591f21fac2d847fd
26
27 diff --git a/dev-libs/capnproto/capnproto-0.7.0.ebuild b/dev-libs/capnproto/capnproto-0.7.0.ebuild
28 deleted file mode 100644
29 index 9279dffeaef8..000000000000
30 --- a/dev-libs/capnproto/capnproto-0.7.0.ebuild
31 +++ /dev/null
32 @@ -1,39 +0,0 @@
33 -# Copyright 1999-2021 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=7
37 -
38 -inherit autotools
39 -
40 -DESCRIPTION="RPC/Serialization system with capabilities support"
41 -HOMEPAGE="https://capnproto.org"
42 -SRC_URI="https://github.com/sandstorm-io/capnproto/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 -
44 -LICENSE="MIT"
45 -SLOT="0/070"
46 -KEYWORDS="amd64 ~arm arm64 x86"
47 -IUSE="+ssl static-libs test"
48 -RESTRICT="!test? ( test )"
49 -
50 -RDEPEND="ssl? ( dev-libs/openssl:0= )"
51 -DEPEND="${RDEPEND} test? ( dev-cpp/gtest )"
52 -
53 -S=${WORKDIR}/${P}/c++
54 -
55 -src_prepare() {
56 - sed -e 's/ldconfig/true/' -i Makefile.am || die
57 - sed -e 's#gtest/lib/libgtest.la gtest/lib/libgtest_main.la#-lgtest -lgtest_main#' -i Makefile.am || die
58 - default
59 - eautoreconf
60 -}
61 -
62 -src_configure() {
63 - econf \
64 - $(use_enable static-libs static) \
65 - $(use_with ssl openssl)
66 -}
67 -
68 -src_install() {
69 - default
70 - find "${ED}" -name '*.la' -delete
71 -}
72
73 diff --git a/dev-libs/capnproto/capnproto-0.8.0.ebuild b/dev-libs/capnproto/capnproto-0.8.0.ebuild
74 deleted file mode 100644
75 index 396f01c7ef9a..000000000000
76 --- a/dev-libs/capnproto/capnproto-0.8.0.ebuild
77 +++ /dev/null
78 @@ -1,45 +0,0 @@
79 -# Copyright 1999-2021 Gentoo Authors
80 -# Distributed under the terms of the GNU General Public License v2
81 -
82 -EAPI=7
83 -
84 -inherit autotools
85 -
86 -DESCRIPTION="RPC/Serialization system with capabilities support"
87 -HOMEPAGE="https://capnproto.org"
88 -SRC_URI="https://github.com/sandstorm-io/capnproto/archive/v${PV}.tar.gz -> ${P}.tar.gz"
89 -
90 -LICENSE="MIT"
91 -SLOT="0/080"
92 -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
93 -IUSE="+ssl static-libs test zlib"
94 -RESTRICT="!test? ( test )"
95 -
96 -RDEPEND="
97 - ssl? (
98 - dev-libs/openssl:0=
99 - )
100 - zlib? ( sys-libs/zlib:0= )
101 -"
102 -DEPEND="${RDEPEND} test? ( dev-cpp/gtest )"
103 -
104 -S=${WORKDIR}/${P}/c++
105 -
106 -src_prepare() {
107 - sed -e 's/ldconfig/true/' -i Makefile.am || die
108 - sed -e 's#gtest/lib/libgtest.la gtest/lib/libgtest_main.la#-lgtest -lgtest_main#' -i Makefile.am || die
109 - default
110 - eautoreconf
111 -}
112 -
113 -src_configure() {
114 - econf \
115 - $(use_enable static-libs static) \
116 - $(use_with ssl openssl) \
117 - $(use_with zlib)
118 -}
119 -
120 -src_install() {
121 - default
122 - find "${ED}" -name '*.la' -delete
123 -}