From: "Tim Harder" <radhermit@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/avfs/
Date: Wed, 10 Jul 2019 07:54:39 +0000 (UTC) [thread overview]
Message-ID: <1562744300.7598fbf56b161ddacc8071ed9bf7daa9a5e9ed6e.radhermit@gentoo> (raw)
commit: 7598fbf56b161ddacc8071ed9bf7daa9a5e9ed6e
Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 10 07:32:48 2019 +0000
Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
CommitDate: Wed Jul 10 07:38:20 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7598fbf5
sys-fs/avfs: version bump to 1.1.0
Signed-off-by: Tim Harder <radhermit <AT> gentoo.org>
sys-fs/avfs/Manifest | 1 +
sys-fs/avfs/avfs-1.1.0.ebuild | 61 +++++++++++++++++++++++++++++++++++++++++++
2 files changed, 62 insertions(+)
diff --git a/sys-fs/avfs/Manifest b/sys-fs/avfs/Manifest
index 92e322d8d1d..55fbce9ca65 100644
--- a/sys-fs/avfs/Manifest
+++ b/sys-fs/avfs/Manifest
@@ -1,3 +1,4 @@
DIST avfs-1.0.4.tar.bz2 719761 BLAKE2B 6bbe47136a6aedd399800ea3ee16f82c367e11f723785ebacf4ef7bd12319ad2f8fe528580e20f368934423ee41afc75b9a73ce7389a100f70e42180e2fb2dcc SHA512 3cfda7a471b5e696984acf9101312e898bc68fe16196bfee8e6a255bd182c279a6ad53fee09c0d6554a968f837e97652e95d794fa46f0d384dd41ae426d49516
DIST avfs-1.0.5.tar.bz2 723937 BLAKE2B 49a7ba0f88e126804c8ae12d1ad9a2924311198baee85f56a17c1e9dd810bdac8d519f0fc8a8cf23b5e4d7319460108e3e27cb28a1dc7320760c42f7257460d0 SHA512 d50d8fc31a56a0dac17a14c19de3f1bae2519feb965768810d19192eba6dbe24ab181c4574ff8982883d9b76f77241a1e27f3ef12d05ab8112f3caf14e59bd3c
DIST avfs-1.0.6.tar.bz2 729592 BLAKE2B 41c703e92921ba9393d95455f7d3dd18587b2d7f2ff46de02d290515cf6c8182d19ff117a7ce040ccaab491240b4f27a3ebd58026045ae9b0d69f47a8beeabc7 SHA512 6b9c070896c5d5abbb6a8c14a7dfd39d9b58d13a6db122b5bf1756b2da7435dfbc00a1fd04bedf99b94b76d9ec7f8c05fccc21de6b9e713fc60cfe0ec88064b4
+DIST avfs-1.1.0.tar.bz2 605637 BLAKE2B c9c64d1fdcda84ede92e0a8896e0b6508f6f2b2f086acd1edeacc87d01ba431d052d51535abd483a0652cf999df842432d02a8e90049ddeb7c5d9a269e2e5885 SHA512 415a52bfecb58cc67818a7e247e0cc40892c81431cdf13a607b4a233aa312ac900f1d33c060aa7495df50c3dda553115ab0b159950811318ca6850847ddbd4fa
diff --git a/sys-fs/avfs/avfs-1.1.0.ebuild b/sys-fs/avfs/avfs-1.1.0.ebuild
new file mode 100644
index 00000000000..4f16b08dfec
--- /dev/null
+++ b/sys-fs/avfs/avfs-1.1.0.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="AVFS is a virtual filesystem that allows browsing of compressed files"
+HOMEPAGE="https://sourceforge.net/projects/avf"
+SRC_URI="mirror://sourceforge/avf/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
+IUSE="static-libs +lzma"
+
+RDEPEND=">=sys-fs/fuse-2.4:0
+ sys-libs/zlib
+ app-arch/bzip2
+ lzma? ( app-arch/xz-utils )"
+DEPEND="${RDEPEND}
+ virtual/pkgconfig"
+
+src_configure() {
+ econf \
+ --enable-fuse \
+ --enable-library \
+ --enable-shared \
+ --with-system-zlib \
+ --with-system-bzlib \
+ $(use_enable static-libs static) \
+ $(use_with lzma xz)
+}
+
+src_install() {
+ default
+
+ # remove cruft
+ rm "${D}"/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
+}
next reply other threads:[~2019-07-10 7:54 UTC|newest]
Thread overview: 44+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-07-10 7:54 Tim Harder [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
2024-07-14 14:12 Conrad Kostecki
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
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=1562744300.7598fbf56b161ddacc8071ed9bf7daa9a5e9ed6e.radhermit@gentoo \
--to=radhermit@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