Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/rabbitmq-c/
Date: Sat, 23 Feb 2019 09:43:56
Message-Id: 1550914528.c4816ed2b639167a37483999d3b529e54ef9d6f7.pacho@gentoo
1 commit: c4816ed2b639167a37483999d3b529e54ef9d6f7
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 23 09:35:28 2019 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 23 09:35:28 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4816ed2
7
8 net-libs/rabbitmq-c: Drop old
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
12
13 net-libs/rabbitmq-c/Manifest | 1 -
14 net-libs/rabbitmq-c/rabbitmq-c-0.8.0.ebuild | 46 -----------------------------
15 2 files changed, 47 deletions(-)
16
17 diff --git a/net-libs/rabbitmq-c/Manifest b/net-libs/rabbitmq-c/Manifest
18 index bb290b35e7c..f5f89bb83a0 100644
19 --- a/net-libs/rabbitmq-c/Manifest
20 +++ b/net-libs/rabbitmq-c/Manifest
21 @@ -1,2 +1 @@
22 -DIST rabbitmq-c-v0.8.0.zip 249220 BLAKE2B 171ae0ffc093851089f4dc11cc1e8ef25ae90cbb0cce75ffb93c04a765b7d195e5bde8bbdaa4ce0c598c7f4bb291ed204d157443ed927db373a89f8ab9e7ebc0 SHA512 e386979ce1bc05c02cda06e8582981e0df25f9b31ca950f8a921bd2b249020f751ba65a6f38b8f5ba0be1b3e89492b29b72c6cd1d5ed3d6f19440799d6419ba6
23 DIST rabbitmq-c-v0.9.0.zip 227245 BLAKE2B ea37e0a9734bc7a8923cab880a9e150f055bab83bb79eb793882a1d435e6e435fbf4610034235f858d0e4d20978287b9432b312c8c3eea5e588655dc2f831554 SHA512 0cac0e26b4caca3de22b468200a20c38c8ace1a824442faa0855d93922b0c3a649fc2067366f6694eca0be635187ca9a9cfe47643472f4abb3d67028768f49fb
24
25 diff --git a/net-libs/rabbitmq-c/rabbitmq-c-0.8.0.ebuild b/net-libs/rabbitmq-c/rabbitmq-c-0.8.0.ebuild
26 deleted file mode 100644
27 index b8a050a0a6f..00000000000
28 --- a/net-libs/rabbitmq-c/rabbitmq-c-0.8.0.ebuild
29 +++ /dev/null
30 @@ -1,46 +0,0 @@
31 -# Copyright 1999-2018 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI="6"
35 -
36 -inherit cmake-utils
37 -
38 -DESCRIPTION="RabbitMQ C client"
39 -HOMEPAGE="https://github.com/alanxz/rabbitmq-c"
40 -
41 -if [[ ${PV} == *9999* ]]; then
42 - inherit git-r3
43 - EGIT_REPO_URI="https://github.com/alanxz/${PN}.git"
44 -else
45 - SRC_URI="https://github.com/alanxz/${PN}/archive/v${PV}.zip -> ${PN}-v${PV}.zip"
46 - KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ppc ppc64 sparc x86"
47 -fi
48 -
49 -LICENSE="MIT"
50 -SLOT="0/4"
51 -IUSE="doc libressl test +ssl static-libs tools"
52 -
53 -REQUIRED_USE="test? ( static-libs )"
54 -
55 -RDEPEND="ssl? (
56 - libressl? ( dev-libs/libressl:= )
57 - !libressl? ( dev-libs/openssl:0= )
58 - )
59 - tools? ( dev-libs/popt )"
60 -DEPEND="${DEPEND}
61 - doc? ( app-doc/doxygen )
62 - tools? ( app-text/xmlto )"
63 -DOCS=( AUTHORS README.md THANKS TODO )
64 -
65 -src_configure() {
66 - mycmakeargs=(
67 - -DCMAKE_SKIP_RPATH=ON
68 - -DBUILD_API_DOCS=$(usex doc)
69 - -DBUILD_STATIC_LIBS=$(usex static-libs)
70 - -DBUILD_TESTS=$(usex test)
71 - -DBUILD_TOOLS=$(usex tools)
72 - -DBUILD_TOOLS_DOCS=$(usex tools)
73 - -DENABLE_SSL_SUPPORT=$(usex ssl)
74 - )
75 - cmake-utils_src_configure
76 -}