public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Conrad Kostecki" <conikost@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/avfs/
Date: Sun, 14 Jul 2024 14:12:48 +0000 (UTC)	[thread overview]
Message-ID: <1720966045.2f77249d4062f966efcde68299ebe211a2117d2c.conikost@gentoo> (raw)

commit:     2f77249d4062f966efcde68299ebe211a2117d2c
Author:     Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Sat Jul 13 13:13:22 2024 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Jul 14 14:07:25 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f77249d

sys-fs/avfs: add 1.1.5

Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/37541
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 sys-fs/avfs/Manifest          |  1 +
 sys-fs/avfs/avfs-1.1.5.ebuild | 75 +++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 76 insertions(+)

diff --git a/sys-fs/avfs/Manifest b/sys-fs/avfs/Manifest
index ea3522142b38..d81d86f29597 100644
--- a/sys-fs/avfs/Manifest
+++ b/sys-fs/avfs/Manifest
@@ -1,2 +1,3 @@
 DIST avfs-1.1.3.tar.bz2 609901 BLAKE2B 2eea31365533372fc5ea252d57da97a8e0d362b6db5f0a6e10af9255105ccdcadbd7f5157aafd63244da2c7a53dcbc6781d0c4ba5ca231ce2937855d400ea4e5 SHA512 8e87655cbdb64f0cbbcc399142957ea9e04a998953cc64def9c8bb338b46abffc85a35e09b5fa52bb9ddcf56e27c4f62503050d32c8201eaad61c54e22bdd005
 DIST avfs-1.1.4.tar.bz2 614657 BLAKE2B a742f2e7fd4f97f2a3207cfe95d9358cfd895e4c047c39bbbf3ac0a35e1702542339f46199ba5f92868ceb48f009736a513431c0467ba49d9aacf73a667956ec SHA512 5caa7050e6b9cdce0b5ccd515af8233dc1e9226a97cdf3a3284ced5edd44fbde426049b4ce500ce1daf020d085f9f0a9f81eff339657e92ff2d09b1dec6e4267
+DIST avfs-1.1.5.tar.bz2 623927 BLAKE2B 3b4c3f1d510019c82c5c0f954f9ed35e6aebd0cd108ac33f5b89b3dc6e5ffb1ef88102c11351eea84f57922e377257e2e256f4e0fbe436efde669259f5b6c0d5 SHA512 03e9abbda17d7976f9c6e4f8a426ff0b85f626ba2942cb2ec17aff3239476d6de385d7d709d7f0b23e31fbde5bcf131e512d38354f78f7fdc04d4b6d0d593e1b

diff --git a/sys-fs/avfs/avfs-1.1.5.ebuild b/sys-fs/avfs/avfs-1.1.5.ebuild
new file mode 100644
index 000000000000..acd4104c3756
--- /dev/null
+++ b/sys-fs/avfs/avfs-1.1.5.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Virtual filesystem that allows browsing of compressed files"
+HOMEPAGE="https://sourceforge.net/projects/avf/"
+SRC_URI="https://downloads.sourceforge.net/avf/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
+IUSE="lzip +lzma webdav +zstd"
+
+RDEPEND="
+	app-arch/bzip2:=
+	>=sys-fs/fuse-2.4:0
+	sys-libs/zlib
+	lzip? ( app-arch/lzlib )
+	lzma? ( app-arch/xz-utils )
+	webdav? ( net-libs/neon:= )
+	zstd? ( app-arch/zstd:= )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+	dev-build/libtool
+	virtual/pkgconfig
+"
+
+src_configure() {
+	myeconfargs=(
+		--enable-fuse
+		--enable-library
+		--enable-shared
+		--with-system-zlib
+		--with-system-bzlib
+		--disable-static
+		$(use_enable webdav dav)
+		$(use_with lzip)
+		$(use_with lzma xz)
+		$(use_with zstd)
+	)
+
+	econf "${myeconfargs[@]}"
+}
+
+src_install() {
+	default
+
+	# remove cruft
+	rm "${ED}"/usr/bin/{davpass,ftppass} || die
+
+	# install docs
+	dodoc doc/{api-overview,background,FORMAT,INSTALL.*,README.avfs-fuse}
+	dosym ../../../$(get_libdir)/avfs/extfs/README /usr/share/doc/${PF}/README.extfs
+
+	docinto scripts
+	dodoc scripts/*pass
+
+	find "${ED}" -name "*.la" -delete || die
+}
+
+pkg_postinst() {
+	if [[ -z "${REPLACING_VERSIONS}" ]]; then
+		einfo "This version of AVFS includes FUSE support. It is user-based."
+		einfo "To execute:"
+		einfo "1) as user, mkdir ~/.avfs"
+		einfo "2) make sure fuse is either compiled into the kernel OR"
+		einfo "   modprobe fuse or add to startup."
+		einfo "3) run mountavfs"
+		einfo "To unload daemon, type umountavfs"
+		einfo
+		einfo "READ the documentation! Enjoy :)"
+	fi
+}


             reply	other threads:[~2024-07-14 14:12 UTC|newest]

Thread overview: 44+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-07-14 14:12 Conrad Kostecki [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-03-24  6:58 [gentoo-commits] repo/gentoo:master commit in: sys-fs/avfs/ Petr Vaněk
2025-03-23 11:25 Arthur Zamarin
2024-09-24  7:53 Petr Vaněk
2024-09-18 18:13 Sam James
2024-09-18 18:13 Sam James
2024-09-18 17:39 Arthur Zamarin
2023-10-27 15:20 Michał Górny
2022-05-05 14:01 Jakov Smolić
2022-05-03  6:23 Agostino Sarubbo
2022-05-02  6:53 Agostino Sarubbo
2022-05-01 18:21 Agostino Sarubbo
2022-04-17 19:17 Sam James
2021-09-15  2:32 Sam James
2021-08-17  1:42 Sam James
2021-08-11 23:07 Sam James
2021-08-10  2:59 Sam James
2021-02-16 12:30 Sam James
2021-02-11  8:12 Sam James
2021-02-09 22:52 Sam James
2021-02-09 22:51 Sam James
2021-01-10 18:30 Sam James
2021-01-10 18:30 Sam James
2019-10-08 14:40 Tim Harder
2019-10-02 19:08 Agostino Sarubbo
2019-10-02 18:53 Agostino Sarubbo
2019-09-29 21:00 Sergei Trofimovich
2019-09-29 20:54 Sergei Trofimovich
2019-09-28  3:50 Tim Harder
2019-08-24  5:57 Tim Harder
2019-08-24  5:57 Tim Harder
2019-07-18 11:33 Agostino Sarubbo
2019-07-18 11:31 Agostino Sarubbo
2019-07-17 15:24 Agostino Sarubbo
2019-07-10 11:47 Agostino Sarubbo
2019-07-10  7:54 Tim Harder
2018-12-25 19:29 Tim Harder
2017-10-12 17:01 Tim Harder
2017-10-11 20:49 Tim Harder
2017-10-11 20:49 Tim Harder
2017-10-11 20:49 Tim Harder
2017-10-11 20:49 Tim Harder
2017-10-08 15:40 Jonas Stein
2016-11-27 23:57 Tim Harder

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=1720966045.2f77249d4062f966efcde68299ebe211a2117d2c.conikost@gentoo \
    --to=conikost@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