From: "Guilherme Amadio" <amadio@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/davix/
Date: Wed, 3 Jul 2024 09:41:28 +0000 (UTC) [thread overview]
Message-ID: <1719999660.60baa40d496d69c432ca6002b131da0b529ff8af.amadio@gentoo> (raw)
commit: 60baa40d496d69c432ca6002b131da0b529ff8af
Author: Guilherme Amadio <amadio <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 3 09:41:00 2024 +0000
Commit: Guilherme Amadio <amadio <AT> gentoo <DOT> org>
CommitDate: Wed Jul 3 09:41:00 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60baa40d
net-libs/davix: drop 0.8.4, 0.8.5
Signed-off-by: Guilherme Amadio <amadio <AT> gentoo.org>
net-libs/davix/Manifest | 2 -
net-libs/davix/davix-0.8.4.ebuild | 85 -------------------------------------
net-libs/davix/davix-0.8.5.ebuild | 89 ---------------------------------------
3 files changed, 176 deletions(-)
diff --git a/net-libs/davix/Manifest b/net-libs/davix/Manifest
index 1e3788ac75a8..ad43a6f0dca2 100644
--- a/net-libs/davix/Manifest
+++ b/net-libs/davix/Manifest
@@ -1,4 +1,2 @@
-DIST davix-0.8.4.tar.gz 7616367 BLAKE2B 0048d066b5ebae0639ea511dfb9147a5c76b73e5f273e0912abd7a10c40228bbbc60fea56f1b91a1c64b396b5ab67a291b42743e037e1e61a14aee2fbb783e09 SHA512 09a0389788b525e3c29639091c11ab4dacf1668efec42a93f3e995663793467b7aaf43daf66351e8a140f760711e96391c1cce0759a7f198110ebe511c0c7a4d
-DIST davix-0.8.5.tar.gz 7371985 BLAKE2B 134c4bd35627edcb46bfa5be3ea56b5a6373ea2bfee0261ede722fb4419808e6050b1846a40acf92da75626289e54a6b83f11dd2145b9d647f7cb370d652b696 SHA512 cddd0d7c08566853bb09efbe83041c9261086f972fd207f1ae2b0099dcf6f5ab51ec3889556ad34e28c0be28afcf86fa8adcdc1806a02a884ec3e76573164fe4
DIST davix-0.8.6.tar.gz 7372108 BLAKE2B 01405cab344d62facc494f2f70f52dc616775830e0ecdd02195fe21c67eea90803eb73138ea0cec91d47f2eb46379d2d2431bbeea74b9487e4c201d3261cac10 SHA512 de9aebb35dc81009fe2f82e5db80f102569d4c6c400e8f99bbead6cc10b1519c598b204ff93606a6d7f824717e8feda4b367234c4a893b7e83705f390a2c9d21
DIST davix-0.8.7.tar.gz 7376826 BLAKE2B 3f1c3f8ece934df9a989bd89257e351c5be154a550108278d815451534f41fdfdda21136312a01d393fe52755e13b76bf401da13cbe276911d61d5fb26eb8383 SHA512 652914fefd51f42277a56668466f2182be8100473ffd281fbed2f57980b93f6560840f6f4a87531faf54f66d98b9d3e291dd5f8c1fceab1e6c19d83ae9f05828
diff --git a/net-libs/davix/davix-0.8.4.ebuild b/net-libs/davix/davix-0.8.4.ebuild
deleted file mode 100644
index 07d1660f6f24..000000000000
--- a/net-libs/davix/davix-0.8.4.ebuild
+++ /dev/null
@@ -1,85 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit cmake python-any-r1
-
-DESCRIPTION="High-performance file management over WebDAV/HTTP"
-HOMEPAGE="https://github.com/cern-fts/davix"
-SRC_URI="https://github.com/cern-fts/${PN}/releases/download/R_${PV//./_}/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="doc test tools"
-RESTRICT="!test? ( test )"
-
-CDEPEND="
- dev-libs/libxml2:2=
- dev-libs/openssl:0=
- net-libs/gsoap[ssl,-gnutls]
- net-misc/curl:0=
- kernel_linux? ( sys-apps/util-linux )
-"
-
-DEPEND="${CDEPEND}"
-BDEPEND="
- doc? (
- app-text/doxygen[dot]
- dev-python/sphinx
- )
- virtual/pkgconfig
- ${PYTHON_DEPS}
-"
-
-RDEPEND="${CDEPEND}"
-
-REQUIRED_USE="test? ( tools )"
-
-src_prepare() {
- cmake_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=(
- -DPython_EXECUTABLE="${PYTHON}"
- -DDOC_INSTALL_DIR="${EPREFIX}/usr/share/doc/${P}"
- -DEMBEDDED_LIBCURL=OFF
- -DLIBCURL_BACKEND_BY_DEFAULT=OFF
- -DENABLE_HTML_DOCS=$(usex doc)
- -DENABLE_IPV6=TRUE
- -DENABLE_TCP_NODELAY=TRUE
- -DENABLE_THIRD_PARTY_COPY=TRUE
- -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_src_configure
-}
-
-src_compile() {
- cmake_src_compile
- if use doc; then
- cmake_src_compile doc
- fi
-}
-
-src_install() {
- cmake_src_install
- if use test; then
- rm "${ED}/usr/bin/davix-unit-tests" || die
- rm "${ED}/usr/bin/davix-tester" || die
- fi
-}
diff --git a/net-libs/davix/davix-0.8.5.ebuild b/net-libs/davix/davix-0.8.5.ebuild
deleted file mode 100644
index 61e8ecd0f6ec..000000000000
--- a/net-libs/davix/davix-0.8.5.ebuild
+++ /dev/null
@@ -1,89 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9..12} )
-
-inherit cmake python-any-r1
-
-DESCRIPTION="High-performance file management over WebDAV/HTTP"
-HOMEPAGE="https://github.com/cern-fts/davix"
-SRC_URI="https://github.com/cern-fts/${PN}/releases/download/R_${PV//./_}/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc test tools"
-RESTRICT="!test? ( test )"
-
-CDEPEND="
- dev-libs/libxml2:2=
- dev-libs/openssl:0=
- net-libs/gsoap[ssl,-gnutls]
- net-misc/curl:0=
- kernel_linux? ( sys-apps/util-linux )
-"
-
-DEPEND="${CDEPEND}"
-BDEPEND="
- doc? (
- app-text/doxygen[dot]
- dev-python/sphinx
- )
- virtual/pkgconfig
- ${PYTHON_DEPS}
-"
-
-RDEPEND="${CDEPEND}"
-
-REQUIRED_USE="test? ( tools )"
-
-PATCHES=(
- "${FILESDIR}/${P}-gcc14.patch"
-)
-
-src_prepare() {
- cmake_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=(
- -DPython_EXECUTABLE="${PYTHON}"
- -DDOC_INSTALL_DIR="${EPREFIX}/usr/share/doc/${P}"
- -DEMBEDDED_LIBCURL=OFF
- -DLIBCURL_BACKEND_BY_DEFAULT=OFF
- -DENABLE_HTML_DOCS=$(usex doc)
- -DENABLE_IPV6=TRUE
- -DENABLE_TCP_NODELAY=TRUE
- -DENABLE_THIRD_PARTY_COPY=TRUE
- -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_src_configure
-}
-
-src_compile() {
- cmake_src_compile
- if use doc; then
- cmake_src_compile doc
- fi
-}
-
-src_install() {
- cmake_src_install
- if use test; then
- rm "${ED}/usr/bin/davix-unit-tests" || die
- rm "${ED}/usr/bin/davix-tester" || die
- fi
-}
next reply other threads:[~2024-07-03 9:41 UTC|newest]
Thread overview: 38+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-07-03 9:41 Guilherme Amadio [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-06-03 20:14 [gentoo-commits] repo/gentoo:master commit in: net-libs/davix/ Sam James
2025-02-13 9:52 Guilherme Amadio
2025-02-13 9:52 Guilherme Amadio
2025-02-02 13:32 Guilherme Amadio
2025-02-02 13:32 Guilherme Amadio
2025-02-02 10:46 Guilherme Amadio
2024-07-03 9:36 Guilherme Amadio
2024-07-03 9:20 Guilherme Amadio
2024-05-29 6:26 Jakov Smolić
2024-05-28 20:49 Sam James
2024-04-09 16:07 Guilherme Amadio
2023-10-27 6:56 Guilherme Amadio
2023-10-27 6:56 Guilherme Amadio
2023-10-27 6:56 Guilherme Amadio
2023-02-08 10:57 Guilherme Amadio
2023-02-08 10:57 Guilherme Amadio
2023-02-08 10:57 Guilherme Amadio
2023-02-08 10:57 Guilherme Amadio
2023-01-21 19:26 Arthur Zamarin
2021-05-01 18:07 Sam James
2020-11-19 16:16 Guilherme Amadio
2020-11-19 16:16 Guilherme Amadio
2020-11-19 16:16 Guilherme Amadio
2020-06-07 12:22 Guilherme Amadio
2020-06-07 12:22 Guilherme Amadio
2020-02-08 17:06 David Seifert
2019-09-09 6:13 Guilherme Amadio
2019-07-09 14:30 Guilherme Amadio
2019-07-09 14:30 Guilherme Amadio
2019-07-09 14:30 Guilherme Amadio
2019-06-07 6:42 Guilherme Amadio
2019-03-13 16:31 Guilherme Amadio
2018-11-15 13:42 Guilherme Amadio
2018-11-15 13:42 Guilherme Amadio
2018-09-24 16:05 Guilherme Amadio
2018-04-17 9:05 Guilherme Amadio
2018-03-22 14:24 Guilherme Amadio
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1719999660.60baa40d496d69c432ca6002b131da0b529ff8af.amadio@gentoo \
--to=amadio@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox