From 518dbf0b81b27225e09bc939ba6af14a15830922 Mon Sep 17 00:00:00 2001 From: Guilherme Amadio Date: Fri, 18 May 2018 14:04:34 +0200 Subject: net-libs/xrootd: version bump to 4.8.3 Package-Manager: Portage-2.3.38, Repoman-2.3.9 --- net-libs/xrootd/Manifest | 1 + net-libs/xrootd/files/xrootd-4.8.3-crc32.patch | 58 +++++++++++++ net-libs/xrootd/xrootd-4.8.3.ebuild | 115 +++++++++++++++++++++++++ 3 files changed, 174 insertions(+) create mode 100644 net-libs/xrootd/files/xrootd-4.8.3-crc32.patch create mode 100644 net-libs/xrootd/xrootd-4.8.3.ebuild (limited to 'net-libs') diff --git a/net-libs/xrootd/Manifest b/net-libs/xrootd/Manifest index 0447ad254a13..5c5e8ae90a00 100644 --- a/net-libs/xrootd/Manifest +++ b/net-libs/xrootd/Manifest @@ -1,2 +1,3 @@ DIST xrootd-4.4.0.tar.gz 2146909 BLAKE2B 4ea84a0c395984cf3ca0f072d3dab080a128e8554f20f7347f9622430b1adc8bda279fa3c8cd587260affe432700332ce7cbb6f512bc29d7d7921b2c6a349bdc SHA512 3e81285b97b928830538f358daf358538609d1678d5beb23b8c0f8fdda7ad22895cc96ba0aaadf55892b7cba08a60182fee19e27af3225b638cb209a4146bbfa DIST xrootd-4.5.0.tar.gz 2172752 BLAKE2B 0e1251f9b064e5bf5e0bf9df0575a9605c4437eddecca312bbfad5ce91b9e3e83ff14a00b7ba1b3e3305f1bd00b5dce151241293441852da95f439788671c4f7 SHA512 0ffa982b872ac94eae1e26d1ebbb94db46f607fb4b0f1d4a2261a7d34dc7715b67cb7c7beecea300f82578bf4773d18e9b86c55b32dfd65ab2e48f3cbb03f173 +DIST xrootd-4.8.3.tar.gz 2390520 BLAKE2B 1b97225c41f6a3a751f55a4d357f53fac2e4cc24f2456962a6d6282b78faaeb844db5d69bff34437acd2c015dbff4a2a5047d6295770abd200d3e5bedd89d4fe SHA512 6f605131be18f35115bf7cf5d829dfd5a36e004ac69aa77dd0cb34ab70f2b89ff07e7b3e3259fe672d81b6241596c78a537de02e5abad4537dc92ae745ae8911 diff --git a/net-libs/xrootd/files/xrootd-4.8.3-crc32.patch b/net-libs/xrootd/files/xrootd-4.8.3-crc32.patch new file mode 100644 index 000000000000..9f27c4369880 --- /dev/null +++ b/net-libs/xrootd/files/xrootd-4.8.3-crc32.patch @@ -0,0 +1,58 @@ +From 64f81b7fad227097f5e135d25a5574cfecf4d50d Mon Sep 17 00:00:00 2001 +From: Guilherme Amadio +Date: Fri, 18 May 2018 11:30:58 +0200 +Subject: [PATCH] Remove declarations of crc32 and adler32 +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +These break compilation with the error below: + +xrootd-4.8.3/tests/XrdSsiTests/XrdShMap.cc: + In function ‘int DoA32(const char*)’: +xrootd-4.8.3/tests/XrdSsiTests/XrdShMap.cc:418:34: + error: expected initializer before ‘OF’ +ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len)); + ^^ +--- + src/XrdSsi/XrdSsiShMam.cc | 2 +- + tests/XrdSsiTests/XrdShMap.cc | 3 --- + 2 files changed, 1 insertion(+), 4 deletions(-) + +diff --git a/src/XrdSsi/XrdSsiShMam.cc b/src/XrdSsi/XrdSsiShMam.cc +index 013dc855..a4803d71 100644 +--- a/src/XrdSsi/XrdSsiShMam.cc ++++ b/src/XrdSsi/XrdSsiShMam.cc +@@ -882,7 +882,7 @@ bool XrdSsiShMam::GetItem(void *data, const char *key, int hash) + /******************************************************************************/ + + int XrdSsiShMam::HashVal(const char *key) +-{ ZEXTERN uLong ZEXPORT crc32 OF((uLong crc, const Bytef *buf, uInt len)); ++{ + uLong crc; + int hval, klen = strlen(key); + +diff --git a/tests/XrdSsiTests/XrdShMap.cc b/tests/XrdSsiTests/XrdShMap.cc +index bb642ac3..860fa7ad 100644 +--- a/tests/XrdSsiTests/XrdShMap.cc ++++ b/tests/XrdSsiTests/XrdShMap.cc +@@ -415,7 +415,6 @@ void Explain(const char *what) + + int DoA32(const char *buff) + { +- ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len)); + uLong adler = adler32(0L, Z_NULL, 0); + + // Check for ID request now +@@ -438,8 +437,6 @@ int DoA32(const char *buff) + + int DoC32(const char *buff) + { +- ZEXTERN uLong ZEXPORT crc32 OF((uLong crc, const Bytef *buf, uInt len)); +- + // Check for ID request now + // + if (!buff) {int myID; memcpy(&myID, "c32 ", sizeof(int)); return myID;} +-- +2.17.0 + diff --git a/net-libs/xrootd/xrootd-4.8.3.ebuild b/net-libs/xrootd/xrootd-4.8.3.ebuild new file mode 100644 index 000000000000..e43d7d367bd6 --- /dev/null +++ b/net-libs/xrootd/xrootd-4.8.3.ebuild @@ -0,0 +1,115 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python2_7 ) + +inherit cmake-utils python-single-r1 user + +DESCRIPTION="Extended ROOT remote file server" +HOMEPAGE="http://xrootd.org/" +SRC_URI="http://xrootd.org/download/v${PV}/${P}.tar.gz" + +LICENSE="LGPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="doc examples fuse http kerberos python readline rbd ssl test" + +CDEPEND=" + !