Gentoo Archives: gentoo-commits

From: Andrew Savchenko <bircoph@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/xrootd/
Date: Tue, 03 Jan 2017 21:22:52
Message-Id: 1483478564.4bf3f043874334b08dc1e549dbb85214d4e07eb8.bircoph@gentoo
1 commit: 4bf3f043874334b08dc1e549dbb85214d4e07eb8
2 Author: Andrew Savchenko <bircoph <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 3 20:46:45 2017 +0000
4 Commit: Andrew Savchenko <bircoph <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 3 21:22:44 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bf3f043
7
8 net-libs/xrootd: remove old
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11 Signed-off-by: Andrew Savchenko <bircoph <AT> gentoo.org>
12
13 net-libs/xrootd/Manifest | 1 -
14 net-libs/xrootd/xrootd-3.3.6.ebuild | 78 -------------------------------------
15 2 files changed, 79 deletions(-)
16
17 diff --git a/net-libs/xrootd/Manifest b/net-libs/xrootd/Manifest
18 index 7597c28..2a01268 100644
19 --- a/net-libs/xrootd/Manifest
20 +++ b/net-libs/xrootd/Manifest
21 @@ -1,3 +1,2 @@
22 -DIST xrootd-3.3.6.tar.gz 1836866 SHA256 06656d919f5296bcf49953e97b1f3d1cf601c9a1d676945529032fa0046d7217 SHA512 87682fbc49ac13e0c98ee72f506c7c23902f983cfdb672f52a041bcd8de3f723d0ce26638d366a74cffbb3e251e69335454da4b9f8dd8e00ae80bb3bfc432572 WHIRLPOOL 9da9140743b3679ac49f6ae42e9ae4fd430ababd1bf3a021331b804fbe6c56140c6b36fe7d10113a0efc14283ab934240e3d7dac6b4e94c794e8dc47c9896559
23 DIST xrootd-4.4.0.tar.gz 2146909 SHA256 f066e7488390c0bc50938d23f6582fb154466204209ca92681f0aa06340e77c8 SHA512 3e81285b97b928830538f358daf358538609d1678d5beb23b8c0f8fdda7ad22895cc96ba0aaadf55892b7cba08a60182fee19e27af3225b638cb209a4146bbfa WHIRLPOOL febb09eb0a18660807e05bf1ae3645bb5969eba7dbe7a764d4efec4883b1c8558dcc6f5577881bc2b37feeb99b77f2dd9d087b22d933a1be186959e8b79f837e
24 DIST xrootd-4.5.0.tar.gz 2172752 SHA256 27a8e4ef1e6bb6bfe076fef50afe474870edd198699d43359ef01de2f446c670 SHA512 0ffa982b872ac94eae1e26d1ebbb94db46f607fb4b0f1d4a2261a7d34dc7715b67cb7c7beecea300f82578bf4773d18e9b86c55b32dfd65ab2e48f3cbb03f173 WHIRLPOOL 0263647475007500b5df1590c6707f2c8025bb8e0970247a8a5674a96bc0fa1c88ed77c3478296df10ef178fe6b233abfebbb2539e0abfa9643f1d5b24c59c75
25
26 diff --git a/net-libs/xrootd/xrootd-3.3.6.ebuild b/net-libs/xrootd/xrootd-3.3.6.ebuild
27 deleted file mode 100644
28 index 5ca003f..00000000
29 --- a/net-libs/xrootd/xrootd-3.3.6.ebuild
30 +++ /dev/null
31 @@ -1,78 +0,0 @@
32 -# Copyright 1999-2015 Gentoo Foundation
33 -# Distributed under the terms of the GNU General Public License v2
34 -# $Id$
35 -
36 -EAPI=5
37 -
38 -inherit cmake-utils eutils user multilib
39 -
40 -DURI="http://xrootd.slac.stanford.edu/doc/prod"
41 -
42 -DESCRIPTION="Extended ROOT remote file server"
43 -HOMEPAGE="http://xrootd.org/"
44 -SRC_URI="${HOMEPAGE}/download/v${PV}/${P}.tar.gz"
45 -
46 -LICENSE="LGPL-3"
47 -SLOT="0"
48 -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
49 -IUSE="doc fuse kerberos perl readline ssl test"
50 -
51 -RDEPEND="
52 - !<sci-physics/root-5.32[xrootd]
53 - sys-libs/zlib:0=
54 - fuse? ( sys-fs/fuse )
55 - kerberos? ( virtual/krb5 )
56 - perl? (
57 - dev-lang/perl
58 - readline? ( dev-perl/Term-ReadLine-Perl )
59 - )
60 - readline? ( sys-libs/readline:0= )
61 - ssl? ( dev-libs/openssl:= )"
62 -DEPEND="${RDEPEND}
63 - doc? ( app-doc/doxygen[dot] )
64 - perl? ( dev-lang/swig )
65 - test? ( dev-util/cppunit )"
66 -
67 -pkg_setup() {
68 - enewgroup xrootd
69 - enewuser xrootd -1 -1 "${EPREFIX}"/var/spool/xrootd xrootd
70 -}
71 -
72 -src_configure() {
73 - local mycmakeargs=(
74 - $(cmake-utils_use_enable fuse)
75 - $(cmake-utils_use_enable kerberos KRB5)
76 - $(cmake-utils_use_enable perl)
77 - $(cmake-utils_use_enable readline)
78 - $(cmake-utils_use_enable ssl CRYPTO)
79 - $(cmake-utils_use_enable test TESTS)
80 - )
81 - cmake-utils_src_configure
82 -}
83 -
84 -src_compile() {
85 - cmake-utils_src_compile
86 - use doc && doxygen Doxyfile
87 -}
88 -
89 -src_install() {
90 - cmake-utils_src_install
91 -
92 - # base configs
93 - insinto /etc/xrootd
94 - doins packaging/common/*.cfg
95 -
96 - fowners root:xrootd /etc/xrootd
97 - keepdir /var/log/xrootd
98 - fowners xrootd:xrootd /var/log/xrootd
99 -
100 - local i
101 - for i in cmsd frm_purged frm_xfrd xrootd; do
102 - newinitd "${FILESDIR}"/${i}.initd ${i}
103 - done
104 - # all daemons MUST use single master config file
105 - newconfd "${FILESDIR}"/xrootd.confd xrootd
106 -
107 - dodoc docs/ReleaseNotes.txt
108 - use doc && dohtml -r doxydoc/html/*
109 -}