From: "Guilherme Amadio" <amadio@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/davix/
Date: Fri, 7 Jun 2019 06:42:35 +0000 (UTC) [thread overview]
Message-ID: <1559889673.e087af1417e8bffc61a0224cfa484276fa79922c.amadio@gentoo> (raw)
commit: e087af1417e8bffc61a0224cfa484276fa79922c
Author: Guilherme Amadio <amadio <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 7 06:40:40 2019 +0000
Commit: Guilherme Amadio <amadio <AT> gentoo <DOT> org>
CommitDate: Fri Jun 7 06:41:13 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e087af14
net-libs/davix: version bump to 0.7.3
Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Guilherme Amadio <amadio <AT> gentoo.org>
net-libs/davix/Manifest | 1 +
net-libs/davix/davix-0.7.3.ebuild | 78 +++++++++++++++++++++++++++++++++++++++
2 files changed, 79 insertions(+)
diff --git a/net-libs/davix/Manifest b/net-libs/davix/Manifest
index 0fd510eea0d..2602c648841 100644
--- a/net-libs/davix/Manifest
+++ b/net-libs/davix/Manifest
@@ -1,3 +1,4 @@
DIST davix-0.6.7.tar 3346429 BLAKE2B 7510c628cd1d346ed5f4dca6100207e5e2efa3a98d0caf63dbe3ba39f58a9b11c330c95cd2d40d60d8f2497355d4cb2f2d7537babfef287a5905f32322363d90 SHA512 5cb830e415a4ab87b7b046fbd8ba615379766f4fa4b886a271b0c248c05968b9a3cb144751b44d5fd62f5e07bdb7610c0505e44f2702147f6f006b49a4b3d8ce
DIST davix-0.7.1.tar 4336124 BLAKE2B 5db4f8f03fef38feedb0f0a9dfce763ff53ba9b1aa19d09f0af979e111d9f52226222e7b00e48aa3589070e9bf857e000f297d1a162aac83fe877ce3cd2984e1 SHA512 a4408960c4e16011de5e6cea1470d7fa487fd0b9c462082d8fb800bcaa812cab10a92643c9eeb66dda506d177903917176e6310c2a10042a848a52b858f4eb4e
DIST davix-0.7.2.tar 4338425 BLAKE2B 9a09d2d702b8d9767ac6b0a5e04170d3f7e930b4c9c0cd8127bee2eae99978f5fdbed7be09875c1bbdcd38c29aede1b8f74a56cc15d31ab5ffa3e1f92fb26990 SHA512 207cf290aa4dedfa8c37cf7e7d8fd2162ecd04421abef55f7ade23193e6ca18942d1fb0d611a63fbeed45d9ba5eab8f9957efcdad7f6296b9ac9a69b07c9c339
+DIST davix-0.7.3.tar 4341865 BLAKE2B 8ba2855f7170ca24f4a15edc32562e47711304f48eaeb1e2870e1325396ae2b664f8af7a482986da6883ab5c92ab6e61034e8840baf3f59c3bd691e7e483fc7e SHA512 b7e7814066ca53c44c2aa0a0d1d6a2d995ea44d3d122da1d19f12849d8c2d4e91eafb40c18d4d18d1736a7c5c5099972519c08a6c7ab5b32300fc8a1fcdc5bfd
diff --git a/net-libs/davix/davix-0.7.3.ebuild b/net-libs/davix/davix-0.7.3.ebuild
new file mode 100644
index 00000000000..b80ff8a2e7e
--- /dev/null
+++ b/net-libs/davix/davix-0.7.3.ebuild
@@ -0,0 +1,78 @@
+# Copyright 1999-2019 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"
+
+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=(
+ -DCMAKE_INSTALL_PREFIX="${EPREFIX}/usr"
+ -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
+}
next reply other threads:[~2019-06-07 6:42 UTC|newest]
Thread overview: 38+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-06-07 6:42 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:41 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-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=1559889673.e087af1417e8bffc61a0224cfa484276fa79922c.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