mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
net-libs/davix: drop old
Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Guilherme Amadio <amadio@gentoo.org>
This commit is contained in:
@@ -1,5 +1,2 @@
|
||||
DIST davix-0.6.7.tar 3346429 BLAKE2B 7510c628cd1d346ed5f4dca6100207e5e2efa3a98d0caf63dbe3ba39f58a9b11c330c95cd2d40d60d8f2497355d4cb2f2d7537babfef287a5905f32322363d90 SHA512 5cb830e415a4ab87b7b046fbd8ba615379766f4fa4b886a271b0c248c05968b9a3cb144751b44d5fd62f5e07bdb7610c0505e44f2702147f6f006b49a4b3d8ce
|
||||
DIST davix-0.7.3.tar 4341865 BLAKE2B 8ba2855f7170ca24f4a15edc32562e47711304f48eaeb1e2870e1325396ae2b664f8af7a482986da6883ab5c92ab6e61034e8840baf3f59c3bd691e7e483fc7e SHA512 b7e7814066ca53c44c2aa0a0d1d6a2d995ea44d3d122da1d19f12849d8c2d4e91eafb40c18d4d18d1736a7c5c5099972519c08a6c7ab5b32300fc8a1fcdc5bfd
|
||||
DIST davix-0.7.4.tar 4343614 BLAKE2B 0fd618a4575cfdcbb0142b26ed8bd5ea0b8d880706ec6ebcc8e9a8755a8f392c715e2bc3cb25dd316fa90f06e7223ecd3e8272a0e5867eb2f5d74eec3053ddf2 SHA512 835d49f1729be95b88c1c422723a2ac6fa9fa0c4a85089e67d68a365c482bf648471fea000b90e7797add0809a9262b5c7275a965fde437bb8206154266fd970
|
||||
DIST davix-0.7.5.tar 4343329 BLAKE2B dfb71e0524e47a2378cd8a49fa4c7d209b8b658e8515f4f0750c9c98cb03073e2ff82a5fbdb2f7fb563f31671789cd7e9cb1656a16dfd0811934730961695db4 SHA512 4be448d6d28f315c0d098d9cf2ddf95bbd818659821935571d83dad1b2724b8f90b87be298ca8a7984cb57a88b18b0253e23f6e8cb192cd1792472993da36bcc
|
||||
DIST davix-0.7.6.tar 4338692 BLAKE2B 72a918f52993ea358f243df671823a4624ac5650753e06c8f70f75a800f10adfe7f6c63d9c8fdcefb94874e3c60c3909e7aa96969af1210347ea941a42f4b9df SHA512 3e379acc763e72e2e1684121e2688da6c617b2c1f52ffd7a2a2559998a64aba957f09f7b138c57f8f4d7a26caff4fef09952cca48585bb4f6aea1f071aa9a7b7
|
||||
|
||||
@@ -1,70 +0,0 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
inherit cmake-utils
|
||||
|
||||
DESCRIPTION="High-performance file management over WebDAV/HTTP"
|
||||
HOMEPAGE="https://dmc.web.cern.ch/projects/davix"
|
||||
SRC_URI="http://grid-deployment.web.cern.ch/grid-deployment/dms/lcgutil/tar/${PN}/${PV}/${P}.tar.gz -> ${P}.tar"
|
||||
|
||||
LICENSE="LGPL-2.1"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 x86"
|
||||
IUSE="doc ipv6 kernel_linux test tools"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
CDEPEND="
|
||||
dev-libs/libxml2:2=
|
||||
dev-libs/openssl:0=
|
||||
kernel_linux? ( sys-apps/util-linux )
|
||||
"
|
||||
|
||||
DEPEND="${CDEPEND}
|
||||
doc? (
|
||||
app-doc/doxygen[dot]
|
||||
dev-python/sphinx
|
||||
)
|
||||
virtual/pkgconfig
|
||||
"
|
||||
|
||||
RDEPEND="${CDEPEND}"
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}"/${P}-uio.patch
|
||||
"${FILESDIR}"/${P}-uuid.patch
|
||||
)
|
||||
|
||||
REQUIRED_USE="test? ( tools )"
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
-DDOC_INSTALL_DIR="${EPREFIX}/usr/share/doc/${P}"
|
||||
-DENABLE_HTML_DOCS=$(usex doc)
|
||||
-DENABLE_IPV6=$(usex ipv6)
|
||||
-DENABLE_TOOLS=$(usex tools)
|
||||
-DHTML_INSTALL_DIR="${EPREFIX}/usr/share/doc/${P}/html"
|
||||
-DSOUND_INSTALL_DIR="${EPREFIX}/usr/share/${PN}/sounds"
|
||||
-DSTATIC_LIBRARY=OFF
|
||||
-DSYSCONF_INSTALL_DIR="${EPREFIX}/etc"
|
||||
-DBUILD_TESTING=$(usex test)
|
||||
-DUNIT_TESTS=$(usex test)
|
||||
)
|
||||
cmake-utils_src_configure
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
cmake-utils_src_compile
|
||||
if use doc; then
|
||||
cmake-utils_src_compile doc
|
||||
fi
|
||||
}
|
||||
|
||||
src_install() {
|
||||
cmake-utils_src_install
|
||||
|
||||
if ! use tools; then
|
||||
rm -rf "${ED}/usr/share/man/man1"
|
||||
fi
|
||||
}
|
||||
@@ -1,78 +0,0 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
inherit cmake-utils
|
||||
|
||||
DESCRIPTION="High-performance file management over WebDAV/HTTP"
|
||||
HOMEPAGE="https://dmc.web.cern.ch/projects/davix"
|
||||
SRC_URI="http://grid-deployment.web.cern.ch/grid-deployment/dms/lcgutil/tar/${PN}/${PV}/${P}.tar.gz -> ${P}.tar"
|
||||
|
||||
LICENSE="LGPL-2.1"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 x86"
|
||||
IUSE="doc ipv6 kernel_linux test tools"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
CDEPEND="
|
||||
dev-libs/libxml2:2=
|
||||
dev-libs/openssl:0=
|
||||
kernel_linux? ( sys-apps/util-linux )
|
||||
"
|
||||
|
||||
DEPEND="${CDEPEND}
|
||||
doc? (
|
||||
app-doc/doxygen[dot]
|
||||
dev-python/sphinx
|
||||
)
|
||||
virtual/pkgconfig
|
||||
"
|
||||
|
||||
RDEPEND="${CDEPEND}"
|
||||
|
||||
REQUIRED_USE="test? ( tools )"
|
||||
|
||||
src_prepare() {
|
||||
cmake-utils_src_prepare
|
||||
|
||||
for x in doc test; do
|
||||
if ! use $x; then
|
||||
sed -i -e "/add_subdirectory ($x)/d" CMakeLists.txt
|
||||
fi
|
||||
done
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
-DDOC_INSTALL_DIR="${EPREFIX}/usr/share/doc/${P}"
|
||||
-DENABLE_HTML_DOCS=$(usex doc)
|
||||
-DENABLE_IPV6=$(usex ipv6)
|
||||
-DENABLE_TOOLS=$(usex tools)
|
||||
-DHTML_INSTALL_DIR="${EPREFIX}/usr/share/doc/${P}/html"
|
||||
-DSOUND_INSTALL_DIR="${EPREFIX}/usr/share/${PN}/sounds"
|
||||
-DSTATIC_LIBRARY=OFF
|
||||
-DSYSCONF_INSTALL_DIR="${EPREFIX}/etc"
|
||||
-DBUILD_TESTING=$(usex test)
|
||||
)
|
||||
cmake-utils_src_configure
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
cmake-utils_src_compile
|
||||
if use doc; then
|
||||
cmake-utils_src_compile doc
|
||||
fi
|
||||
}
|
||||
|
||||
src_install() {
|
||||
cmake-utils_src_install
|
||||
|
||||
if ! use tools; then
|
||||
rm -rf "${ED}/usr/share/man/man1"
|
||||
fi
|
||||
|
||||
if use test; then
|
||||
rm -rf "${ED}/usr/bin/davix-unit-tests"
|
||||
fi
|
||||
}
|
||||
@@ -1,78 +0,0 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit cmake-utils
|
||||
|
||||
DESCRIPTION="High-performance file management over WebDAV/HTTP"
|
||||
HOMEPAGE="https://dmc.web.cern.ch/projects/davix"
|
||||
SRC_URI="http://grid-deployment.web.cern.ch/grid-deployment/dms/lcgutil/tar/${PN}/${PV}/${P}.tar.gz -> ${P}.tar"
|
||||
|
||||
LICENSE="LGPL-2.1"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="doc ipv6 kernel_linux test tools"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
CDEPEND="
|
||||
dev-libs/libxml2:2=
|
||||
dev-libs/openssl:0=
|
||||
kernel_linux? ( sys-apps/util-linux )
|
||||
"
|
||||
|
||||
DEPEND="${CDEPEND}
|
||||
doc? (
|
||||
app-doc/doxygen[dot]
|
||||
dev-python/sphinx
|
||||
)
|
||||
virtual/pkgconfig
|
||||
"
|
||||
|
||||
RDEPEND="${CDEPEND}"
|
||||
|
||||
REQUIRED_USE="test? ( tools )"
|
||||
|
||||
src_prepare() {
|
||||
cmake-utils_src_prepare
|
||||
|
||||
for x in doc test; do
|
||||
if ! use $x; then
|
||||
sed -i -e "/add_subdirectory ($x)/d" CMakeLists.txt
|
||||
fi
|
||||
done
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
-DDOC_INSTALL_DIR="${EPREFIX}/usr/share/doc/${P}"
|
||||
-DENABLE_HTML_DOCS=$(usex doc)
|
||||
-DENABLE_IPV6=$(usex ipv6)
|
||||
-DENABLE_TOOLS=$(usex tools)
|
||||
-DHTML_INSTALL_DIR="${EPREFIX}/usr/share/doc/${P}/html"
|
||||
-DSOUND_INSTALL_DIR="${EPREFIX}/usr/share/${PN}/sounds"
|
||||
-DSTATIC_LIBRARY=OFF
|
||||
-DSYSCONF_INSTALL_DIR="${EPREFIX}/etc"
|
||||
-DBUILD_TESTING=$(usex test)
|
||||
)
|
||||
cmake-utils_src_configure
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
cmake-utils_src_compile
|
||||
if use doc; then
|
||||
cmake-utils_src_compile doc
|
||||
fi
|
||||
}
|
||||
|
||||
src_install() {
|
||||
cmake-utils_src_install
|
||||
|
||||
if ! use tools; then
|
||||
rm -rf "${ED}/usr/share/man/man1"
|
||||
fi
|
||||
|
||||
if use test; then
|
||||
rm -rf "${ED}/usr/bin/davix-unit-tests"
|
||||
fi
|
||||
}
|
||||
@@ -1,12 +0,0 @@
|
||||
diff --git a/deps/libneon/src/ne_socket.c b/deps/libneon/src/ne_socket.c
|
||||
index affc8d7..b4f8ea1 100644
|
||||
--- a/deps/libneon/src/ne_socket.c
|
||||
+++ b/deps/libneon/src/ne_socket.c
|
||||
@@ -34,6 +34,7 @@
|
||||
#ifdef HAVE_SYS_SOCKET_H
|
||||
#include <sys/socket.h>
|
||||
#endif
|
||||
+#include <sys/uio.h>
|
||||
|
||||
#ifdef __linux__
|
||||
#include <sys/ioctl.h>
|
||||
@@ -1,66 +0,0 @@
|
||||
---
|
||||
cmake/modules/Finduuid.cmake | 48 +++++++++++++++++-------------------
|
||||
1 file changed, 22 insertions(+), 26 deletions(-)
|
||||
|
||||
diff --git a/cmake/modules/Finduuid.cmake b/cmake/modules/Finduuid.cmake
|
||||
index 2f97a1f..e2c7d13 100644
|
||||
--- a/cmake/modules/Finduuid.cmake
|
||||
+++ b/cmake/modules/Finduuid.cmake
|
||||
@@ -1,32 +1,28 @@
|
||||
-# Try to find uuid
|
||||
-# Once done, this will define
|
||||
-#
|
||||
-# UUID_FOUND - system has uuid
|
||||
-# UUID_INCLUDE_DIRS - uuid include directories
|
||||
-# UUID_LIBRARIES - libraries needed to use uuid
|
||||
-
|
||||
+include(CheckCXXSymbolExists)
|
||||
+include(CheckLibraryExists)
|
||||
include(FindPackageHandleStandardArgs)
|
||||
|
||||
-if(UUID_INCLUDE_DIRS AND UUID_LIBRARIES)
|
||||
- set(UUID_FIND_QUIETLY TRUE)
|
||||
-else()
|
||||
- find_path(
|
||||
- UUID_INCLUDE_DIR
|
||||
- NAMES uuid.h
|
||||
- HINTS ${UUID_ROOT_DIR}
|
||||
- PATH_SUFFIXES include uuid)
|
||||
-
|
||||
- find_library(
|
||||
- UUID_LIBRARY
|
||||
- NAMES uuid
|
||||
- HINTS ${UUID_ROOT_DIR}
|
||||
- PATH_SUFFIXES ${LIBRARY_PATH_PREFIX})
|
||||
+if(NOT UUID_INCLUDE_DIR)
|
||||
+ find_path(UUID_INCLUDE_DIR uuid/uuid.h)
|
||||
+endif()
|
||||
|
||||
+if(EXISTS UUID_INCLUDE_DIR)
|
||||
set(UUID_INCLUDE_DIRS ${UUID_INCLUDE_DIR})
|
||||
- set(UUID_LIBRARIES ${UUID_LIBRARY})
|
||||
-
|
||||
- find_package_handle_standard_args(
|
||||
- uuid DEFAULT_MSG UUID_LIBRARY UUID_INCLUDE_DIR)
|
||||
+ set(CMAKE_REQUIRED_INCLUDES ${UUID_INCLUDE_DIRS})
|
||||
+ check_cxx_symbol_exists("uuid_generate_random" "uuid/uuid.h" _uuid_header_only)
|
||||
+endif()
|
||||
|
||||
- mark_as_advanced(UUID_INCLUDE_DIR UUID_LIBRARY)
|
||||
+if(NOT _uuid_header_only AND NOT UUID_LIBRARY)
|
||||
+ check_library_exists("uuid" "uuid_generate_random" "" _have_libuuid)
|
||||
+ if(_have_libuuid)
|
||||
+ set(UUID_LIBRARY "uuid")
|
||||
+ set(UUID_LIBRARIES ${UUID_LIBRARY})
|
||||
+ endif()
|
||||
endif()
|
||||
+
|
||||
+unset(CMAKE_REQUIRED_INCLUDES)
|
||||
+unset(_uuid_header_only)
|
||||
+unset(_have_libuuid)
|
||||
+
|
||||
+find_package_handle_standard_args(uuid DEFAULT_MSG UUID_INCLUDE_DIR)
|
||||
+mark_as_advanced(UUID_INCLUDE_DIR UUID_LIBRARY)
|
||||
--
|
||||
2.17.0
|
||||
|
||||
Reference in New Issue
Block a user