public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Guilherme Amadio" <amadio@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-fs/cvmfs/
Date: Tue, 21 Sep 2021 15:43:23 +0000 (UTC)	[thread overview]
Message-ID: <1632238962.caa575bca56cfcbc8e77472a80c7a58a09bf9bba.amadio@gentoo> (raw)

commit:     caa575bca56cfcbc8e77472a80c7a58a09bf9bba
Author:     Guilherme Amadio <amadio <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 21 15:38:59 2021 +0000
Commit:     Guilherme Amadio <amadio <AT> gentoo <DOT> org>
CommitDate: Tue Sep 21 15:42:42 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=caa575bc

net-fs/cvmfs: version bump to 2.8.2

Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Guilherme Amadio <amadio <AT> gentoo.org>

 net-fs/cvmfs/Manifest           |   1 +
 net-fs/cvmfs/cvmfs-2.8.2.ebuild | 104 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 105 insertions(+)

diff --git a/net-fs/cvmfs/Manifest b/net-fs/cvmfs/Manifest
index cd99aef7d34..62cd684257d 100644
--- a/net-fs/cvmfs/Manifest
+++ b/net-fs/cvmfs/Manifest
@@ -1,2 +1,3 @@
 DIST cvmfs-2.7.3.tar.gz 43123803 BLAKE2B 39d11f9dd69e36897c501bd4b24c01a13fc351d1251cd9a7965fe46ddf0c8128c3c976bb747d477d5d5231aeef09cad38337bb28c343c1d7bfbd915af02119cb SHA512 94940a09a713c14f776914b74bbec8794637b98b42ffcbab36e3455c0ea83219ae6f0eebaf41a62d1abf05134aada0abfd521dec793b2fec015458b80f387bfd
 DIST cvmfs-2.8.1.tar.gz 44117247 BLAKE2B 3505747833779463df79e40c03359c8458d51d2e4635ce6bc7ac080112ca4e81ca914dc6866afc28094e656acf8e3051749ec278e00b8357a50dd530fc2b65be SHA512 3ca4a45e24e06e4ea46a708b3e47fafc4c6eae172c296b091c8d0fb6b2d21c64d4b8975baf7f055101a9d68ada1e3082e7ec808da3fdaf68b5a3a3b5c4ed7731
+DIST cvmfs-2.8.2.tar.gz 44130007 BLAKE2B 3c15c3549971deb418ee142bbec0db8ae272d0fe5371e618460e31bd2c083ff1d1c00e5bc3520b199fdf3297cad278185617f51a217f75120dd71ea792a7a8a8 SHA512 a3a1a6d4eb36248744145393d6ebe5015f8f1d4506bb9adca13b19f68a2e57cdf77fc0e7202ff4e8a927bff3a6e1808f9c740755145b860f2915a31ec9dd5fa3

diff --git a/net-fs/cvmfs/cvmfs-2.8.2.ebuild b/net-fs/cvmfs/cvmfs-2.8.2.ebuild
new file mode 100644
index 00000000000..294027c7e2b
--- /dev/null
+++ b/net-fs/cvmfs/cvmfs-2.8.2.ebuild
@@ -0,0 +1,104 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake linux-info bash-completion-r1
+
+DESCRIPTION="HTTP read-only file system for distributing software"
+HOMEPAGE="https://cernvm.cern.ch/fs/"
+SRC_URI="https://ecsft.cern.ch/dist/cvmfs/${P}/source.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+
+KEYWORDS="~amd64 ~x86"
+IUSE="server"
+
+CDEPEND="
+	acct-group/cvmfs
+	acct-user/cvmfs
+	app-arch/libarchive
+	dev-cpp/gtest
+	dev-cpp/sparsehash
+	dev-db/sqlite:3=
+	<dev-libs/leveldb-1.23:0=
+	dev-libs/openssl:0=
+	dev-libs/protobuf:0=
+	net-dns/c-ares:0=
+	net-libs/pacparser:0=
+	net-misc/curl:0[adns]
+	sys-apps/attr
+	sys-fs/fuse:0=
+	sys-fs/fuse:3=
+	sys-libs/libcap:0=
+	sys-libs/zlib:0=
+"
+
+RDEPEND="${CDEPEND}
+	app-admin/sudo
+	net-fs/autofs
+"
+
+DEPEND="${CDEPEND}
+	virtual/pkgconfig
+"
+
+PATCHES=(
+		"${FILESDIR}"/${PN}-2.7.2-builtins.patch
+		"${FILESDIR}"/${PN}-2.7.2-find-package.patch
+		"${FILESDIR}"/${PN}-2.7.2-xattr.patch
+)
+
+pkg_setup() {
+	if use server; then
+		CONFIG_CHECK="~OVERLAY_FS"
+		ERROR_AUFS_FS="CONFIG_OVERLAY_FS: is required to be set"
+		linux-info_pkg_setup
+	fi
+}
+
+src_prepare() {
+	cmake_src_prepare
+	# gentoo stuff
+	rm bootstrap.sh || die
+	sed -i -e "s:/usr/bin/systemctl:/bin/systemctl:g" cvmfs/cvmfs_config || die
+	sed -i -e 's/COPYING//' -e "s:cvmfs-\${CernVM-FS_VERSION_STRING}:${PF}:" \
+		CMakeLists.txt || die
+	eapply_user
+}
+
+src_configure() {
+	local mycmakeargs=(
+		-DBUILTIN_EXTERNALS=OFF
+		-DBUILD_CVMFS=ON
+		-DBUILD_LIBCVMFS=OFF # static library used only for development
+		-DBUILD_DOCUMENTATION=OFF
+		-DBUILD_GEOAPI=OFF # only used for stratum 1 servers
+		-DBUILD_LIBCVMFS_CACHE=OFF # for exotic cache configs
+		-DBUILD_PRELOADER=OFF # special purpose utility for HPCs
+		-DBUILD_RECEIVER=OFF # for distributed publishers only
+		-DBUILD_SERVER=$(usex server)
+		-DINSTALL_BASH_COMPLETION=OFF
+		-DINSTALL_MOUNT_SCRIPTS=ON
+		-DINSTALL_PUBLIC_KEYS=ON
+	)
+
+	cmake_src_configure
+}
+
+src_install() {
+	cmake_src_install
+	newbashcomp cvmfs/bash_completion/cvmfs.bash_completion cvmfs_config
+	bashcomp_alias cvmfs_config cvmfs_server
+	dodoc doc/*.md
+	keepdir /var/lib/cvmfs
+	use server && keepdir /var/lib/cvmfs-server
+}
+
+pkg_config() {
+	einfo "Setting up CernVM-FS client"
+	cvmfs_config setup
+	einfo "Now edit ${EROOT}/etc/cvmfs/default.local"
+	einfo "and restart the autofs service"
+}


             reply	other threads:[~2021-09-21 15:43 UTC|newest]

Thread overview: 56+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-21 15:43 Guilherme Amadio [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-02-28 17:01 [gentoo-commits] repo/gentoo:master commit in: net-fs/cvmfs/ Guilherme Amadio
2025-02-02 10:25 Guilherme Amadio
2024-12-18  9:17 Guilherme Amadio
2024-12-06  9:27 Guilherme Amadio
2024-12-06  9:27 Guilherme Amadio
2024-11-23  8:55 Arthur Zamarin
2024-11-23  8:06 Arthur Zamarin
2024-09-30 14:19 Guilherme Amadio
2024-08-06 12:31 Guilherme Amadio
2024-08-06 12:31 Guilherme Amadio
2024-08-06 12:31 Guilherme Amadio
2024-07-03 11:53 Guilherme Amadio
2024-03-10 17:15 Guilherme Amadio
2024-03-10 16:55 Guilherme Amadio
2024-03-10 16:55 Guilherme Amadio
2024-03-10 16:55 Guilherme Amadio
2023-11-02 10:45 Guilherme Amadio
2023-10-27  6:56 Guilherme Amadio
2023-05-14  8:48 Sam James
2023-05-14  8:48 Sam James
2023-03-02  9:40 Guilherme Amadio
2023-01-26 21:06 Andreas Sturmlechner
2023-01-03 18:28 Sam James
2023-01-03 18:28 Sam James
2022-09-19 12:11 Guilherme Amadio
2022-09-19 12:11 Guilherme Amadio
2022-09-19 12:11 Guilherme Amadio
2022-03-28 14:52 Guilherme Amadio
2022-03-16 15:13 Guilherme Amadio
2022-02-11  7:56 Guilherme Amadio
2022-02-11  7:56 Guilherme Amadio
2021-12-14 10:03 Guilherme Amadio
2021-09-21 15:43 Guilherme Amadio
2021-09-21 15:43 Guilherme Amadio
2021-08-25 13:06 Guilherme Amadio
2021-06-28 19:20 Guilherme Amadio
2021-06-16  8:35 Guilherme Amadio
2021-06-16  8:35 Guilherme Amadio
2021-06-16  8:35 Guilherme Amadio
2020-08-30 14:55 Mikle Kolyada
2020-06-26 13:16 Guilherme Amadio
2020-06-20  6:09 Guilherme Amadio
2020-06-20  5:53 Guilherme Amadio
2020-06-19  8:23 Guilherme Amadio
2020-06-19  7:52 Guilherme Amadio
2020-06-19  7:20 Guilherme Amadio
2020-06-19  7:20 Guilherme Amadio
2019-12-03  8:20 Guilherme Amadio
2019-11-10 14:14 Mikle Kolyada
2019-06-14  6:43 Guilherme Amadio
2019-06-11 10:12 Guilherme Amadio
2018-08-26 17:08 Michał Górny
2017-08-17 16:20 Sebastien Fabbro
2017-07-18 16:12 Sebastien Fabbro
2017-07-18 16:12 Sebastien Fabbro

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=1632238962.caa575bca56cfcbc8e77472a80c7a58a09bf9bba.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