Gentoo Archives: gentoo-commits

From: Marek Szuba <marecki@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/xrootd-ceph/
Date: Fri, 02 Sep 2022 10:52:23
Message-Id: 1662115929.6053e1fa66d0d7c8b5debc7c5a8c527b3d8ce9ee.marecki@gentoo
1 commit: 6053e1fa66d0d7c8b5debc7c5a8c527b3d8ce9ee
2 Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 2 10:25:25 2022 +0000
4 Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 2 10:52:09 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6053e1fa
7
8 net-libs/xrootd-ceph: drop 5.0.3
9
10 Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
11
12 net-libs/xrootd-ceph/Manifest | 1 -
13 net-libs/xrootd-ceph/xrootd-ceph-5.0.3.ebuild | 36 ---------------------------
14 2 files changed, 37 deletions(-)
15
16 diff --git a/net-libs/xrootd-ceph/Manifest b/net-libs/xrootd-ceph/Manifest
17 index 630aacfc52f5..5f78eef2dbf7 100644
18 --- a/net-libs/xrootd-ceph/Manifest
19 +++ b/net-libs/xrootd-ceph/Manifest
20 @@ -1,2 +1 @@
21 -DIST xrootd-ceph-5.0.3.tar.gz 81835 BLAKE2B 1be45c78dd0ec4b20451cfa4a8a579e076e718509a47fa04027207c12e433338decefb9f82749cc15cae3cad75d97485fe0a7d6582cdcc0739bd222bc1d97b6b SHA512 3338a0ab0446e4c7ee3d232f5cce8f93c49e040b4792aa52f9dcf6f27f6767e6ffbaff17eb30a87c5b3ff713e1b0c4edb24d8d116c91351c4ed0c13963f80fc9
22 DIST xrootd-ceph-5.4.3.tar.gz 82057 BLAKE2B 3ca2a812e6a55d696c1336b28114e9d4ec46c18d764ab8966533e150bb7e3a040c58a957c73adfd4f79038b82ebafcc3b09eae2d7b06aba41e36ce94c36ac3fe SHA512 b1065cf55d3918eef5083ebd1737139a761a28e4cc41cd2b796e2a0157d7a86850e643cecd89aeef89419485397676ac7040df5a5e2e9f7405d26320dbe1c9e3
23
24 diff --git a/net-libs/xrootd-ceph/xrootd-ceph-5.0.3.ebuild b/net-libs/xrootd-ceph/xrootd-ceph-5.0.3.ebuild
25 deleted file mode 100644
26 index fe49b3f4f5c1..000000000000
27 --- a/net-libs/xrootd-ceph/xrootd-ceph-5.0.3.ebuild
28 +++ /dev/null
29 @@ -1,36 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -inherit cmake
36 -
37 -DESCRIPTION="xrootd OSS plug-in for interfacing with Ceph storage platform"
38 -HOMEPAGE="https://xrootd.slac.stanford.edu/"
39 -SRC_URI="https://github.com/xrootd/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
40 -
41 -LICENSE="LGPL-3+"
42 -SLOT="0"
43 -KEYWORDS="amd64 ~amd64-linux"
44 -IUSE="test"
45 -RESTRICT="!test? ( test )"
46 -
47 -DEPEND=">=net-libs/xrootd-5.0.0
48 - sys-cluster/ceph"
49 -RDEPEND="${DEPEND}"
50 -BDEPEND="test? ( dev-util/cppunit )"
51 -
52 -# xrootd plugins are not intended to be linked with,
53 -# they are to be loaded at runtime by xrootd,
54 -# see https://github.com/xrootd/xrootd/issues/447
55 -QA_SONAME="/usr/lib.*/libXrdCeph.*-$(ver_cut 1)\.so
56 - /usr/lib.*/libXrdCephTests\.so"
57 -
58 -src_configure() {
59 - local mycmakeargs=(
60 - -DENABLE_TESTS=$(usex test)
61 - # As of 5.0.3 the default plug-in version is still 4.
62 - -DPLUGIN_VERSION=$(ver_cut 1)
63 - )
64 - cmake_src_configure
65 -}