From: "Haelwenn Monnier" <contact@hacktivis.me>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:master commit in: sys-fs/dwarfs/
Date: Thu, 7 Jul 2022 07:33:21 +0000 (UTC) [thread overview]
Message-ID: <1657154443.7b45f3cc1ae5feb743807615dfd4900d47795de2.lanodan@gentoo> (raw)
commit: 7b45f3cc1ae5feb743807615dfd4900d47795de2
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Wed Jul 6 23:44:02 2022 +0000
Commit: Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Thu Jul 7 00:40:43 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7b45f3cc
sys-fs/dwarfs: drop 0.5.6-r1, 0.5.6-r2
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
sys-fs/dwarfs/dwarfs-0.5.6-r1.ebuild | 93 --------------------------------
sys-fs/dwarfs/dwarfs-0.5.6-r2.ebuild | 100 -----------------------------------
2 files changed, 193 deletions(-)
diff --git a/sys-fs/dwarfs/dwarfs-0.5.6-r1.ebuild b/sys-fs/dwarfs/dwarfs-0.5.6-r1.ebuild
deleted file mode 100644
index 33a8917d2..000000000
--- a/sys-fs/dwarfs/dwarfs-0.5.6-r1.ebuild
+++ /dev/null
@@ -1,93 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8,9} )
-
-inherit cmake check-reqs python-single-r1
-
-DESCRIPTION="A fast very high compression read-only FUSE file system"
-HOMEPAGE="https://github.com/mhx/dwarfs"
-
-SRC_URI="https://github.com/mhx/dwarfs/releases/download/v${PV}/${P}.tar.bz2"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-
-IUSE="python +jemalloc test"
-RESTRICT="!test? ( test )"
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-DEPEND="sys-devel/flex"
-RDEPEND="${PYTHON_DEPS}
- dev-libs/boost[context,python?]
- dev-libs/double-conversion
- dev-libs/libfmt
- dev-libs/libevent
- dev-libs/xxhash
- jemalloc? ( >=dev-libs/jemalloc-5.2.1 )
- app-arch/libarchive
- app-arch/zstd
- app-arch/lz4
- app-arch/xz-utils
- app-arch/snappy
- dev-cpp/sparsehash
- dev-cpp/gflags
- dev-cpp/glog[gflags]
- sys-fs/fuse:3
- sys-libs/binutils-libs
- sys-libs/zlib
- sys-libs/libunwind
- !dev-cpp/folly"
-BDEPEND="app-text/ronn
- test? ( dev-cpp/gtest )
- dev-util/cmake
- sys-apps/sed
- sys-devel/bison
- virtual/pkgconfig"
-
-CHECKREQS_DISK_BUILD="1300M"
-
-DOCS=( "README.md" "CHANGES.md" "TODO" )
-
-CMAKE_IN_SOURCE_BUILD=1
-CMAKE_WARN_UNUSED_CLI=0
-
-src_prepare(){
- cmake_src_prepare
- einfo "setting library path to $(get_libdir)"
- sed "s/DESTINATION lib/DESTINATION $(get_libdir)/" -i CMakeLists.txt || die
-}
-
-src_configure(){
- einfo "setting configuration flags to:"
- mycmakeargs=(
- -DUSE_JEMALLOC=$(usex jemalloc ON OFF)
- -DWITH_PYTHON=$(usex python ON OFF)
- -DWITH_TESTS=$(usex test ON OFF)
- -DPREFER_SYSTEM_ZSTD=1
- -DPREFER_SYSTEM_XXHASH=1
- -DPREFER_SYSTEM_GTEST=1
- -DWITH_LEGACY_FUSE=0
- )
- if use python; then mycmakeargs+=( -DWITH_PYTHON_VERSION=${EPYTHON#python} ); fi
- einfo ${mycmakeargs}
- cmake_src_configure
-}
-
-src_install(){
- cmake_src_install
- dolib.so libmetadata_thrift.so libthrift_light.so libdwarfs.so libfsst.so
- dolib.so folly/libfolly.so.0.58.0-dev folly/libfolly.so
-}
-
-pkg_postinst(){
- elog "Suggest to enable USE 'threads' globally if you have multicore machine"
- elog "Since version 0.4.1 GGC builds has been fixed. Now both Clang and GCC are working very well"
- elog "You may find more information in the"
- elog "${HOMEPAGE}"
- elog "About creating: ${HOMEPAGE}/blob/main/doc/mkdwarfs.md"
- elog "About mounting: ${HOMEPAGE}/blob/main/doc/dwarfs.md"
-}
diff --git a/sys-fs/dwarfs/dwarfs-0.5.6-r2.ebuild b/sys-fs/dwarfs/dwarfs-0.5.6-r2.ebuild
deleted file mode 100644
index 0aa97f7eb..000000000
--- a/sys-fs/dwarfs/dwarfs-0.5.6-r2.ebuild
+++ /dev/null
@@ -1,100 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8,9} )
-
-inherit check-reqs cmake flag-o-matic python-single-r1
-
-DESCRIPTION="A fast very high compression read-only FUSE file system"
-HOMEPAGE="https://github.com/mhx/dwarfs"
-SRC_URI="https://github.com/mhx/dwarfs/releases/download/v${PV}/${P}.tar.bz2"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="python +jemalloc test"
-
-RDEPEND="
- ${PYTHON_DEPS}
- app-arch/libarchive
- app-arch/lz4
- app-arch/snappy
- app-arch/xz-utils
- app-arch/zstd
- dev-cpp/fbthrift:=
- >=dev-cpp/folly-2021.04.19.00-r1:=
- dev-cpp/gflags
- dev-cpp/glog[gflags]
- dev-cpp/parallel-hashmap:=
- dev-cpp/sparsehash
- dev-libs/boost[context,threads(+),python?]
- dev-libs/double-conversion
- dev-libs/fsst:=
- dev-libs/libevent
- dev-libs/libfmt
- dev-libs/xxhash
- sys-fs/fuse:3
- sys-libs/binutils-libs
- sys-libs/libunwind
- sys-libs/zlib
-
- jemalloc? ( >=dev-libs/jemalloc-5.2.1 )
-"
-DEPEND="
- ${RDEPEND}
- sys-devel/flex
-"
-BDEPEND="
- app-text/ronn
- sys-devel/bison
- virtual/pkgconfig
-
- test? ( dev-cpp/gtest )
-"
-
-DOCS=( "README.md" "CHANGES.md" "TODO" )
-RESTRICT="!test? ( test )"
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-PATCHES=( "${FILESDIR}/${P}-unbundle.patch" )
-
-CHECKREQS_DISK_BUILD="1300M"
-CMAKE_IN_SOURCE_BUILD=1
-CMAKE_WARN_UNUSED_CLI=0
-
-src_prepare(){
- rm -r fsst zstd fbthrift/* folly xxHash parallel-hashmap || die
- cmake_src_prepare
- sed "s/DESTINATION lib/DESTINATION $(get_libdir)/" -i CMakeLists.txt || die
-}
-
-src_configure(){
- append-cxxflags "-I/usr/include"
-
- mycmakeargs=(
- -DUSE_JEMALLOC=$(usex jemalloc ON OFF)
- -DWITH_PYTHON=$(usex python ON OFF)
- -DWITH_TESTS=$(usex test ON OFF)
- -DPREFER_SYSTEM_ZSTD=1
- -DPREFER_SYSTEM_XXHASH=1
- -DPREFER_SYSTEM_GTEST=1
- -DWITH_LEGACY_FUSE=0
- )
- use python && mycmakeargs+=( "-DWITH_PYTHON_VERSION=${EPYTHON#python}" )
- cmake_src_configure
-}
-
-src_install(){
- cmake_src_install
- dolib.so libdwarfs.so
-}
-
-pkg_postinst(){
- elog "Suggest to enable USE 'threads' globally if you have multicore machine"
- elog "Since version 0.4.1 GGC builds has been fixed. Now both Clang and GCC are working very well"
- elog "You may find more information in the"
- elog "${HOMEPAGE}"
- elog "About creating: ${HOMEPAGE}/blob/main/doc/mkdwarfs.md"
- elog "About mounting: ${HOMEPAGE}/blob/main/doc/dwarfs.md"
-}
next reply other threads:[~2022-07-07 7:33 UTC|newest]
Thread overview: 55+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-07-07 7:33 Haelwenn Monnier [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-12-28 20:08 [gentoo-commits] repo/proj/guru:master commit in: sys-fs/dwarfs/ Florian Schmaus
2024-12-05 12:00 [gentoo-commits] repo/proj/guru:master commit in: "sys-fs/dwarfs/ Florian Schmaus
2024-11-04 18:27 [gentoo-commits] repo/proj/guru:master commit in: sys-fs/dwarfs/ David Roman
2024-11-02 20:52 David Roman
2024-11-02 20:52 David Roman
2024-10-29 14:07 [gentoo-commits] repo/proj/guru:dev " David Roman
2024-10-29 22:14 ` [gentoo-commits] repo/proj/guru:master " David Roman
2024-06-05 12:48 Florian Schmaus
2024-05-16 16:27 Julien Roy
2024-02-24 12:14 Haelwenn Monnier
2024-02-15 14:58 David Roman
2024-02-14 16:01 Andrew Ammerlaan
2024-02-13 16:32 David Roman
2024-02-13 16:32 David Roman
2024-02-13 16:32 David Roman
2024-02-13 16:32 David Roman
2024-02-13 16:32 David Roman
2024-02-09 0:30 David Roman
2024-01-19 10:31 Arthur Zamarin
2024-01-09 12:03 David Roman
2024-01-07 23:46 David Roman
2024-01-03 16:54 David Roman
2023-08-17 5:15 Viorel Munteanu
2023-07-25 15:02 David Roman
2023-07-13 9:42 David Roman
2021-10-28 20:56 Haelwenn Monnier
2021-09-16 17:57 Arthur Zamarin
2021-07-07 14:02 Florian Schmaus
2021-07-07 14:02 Florian Schmaus
2021-05-05 8:33 Andrew Ammerlaan
2021-05-03 16:57 Andrew Ammerlaan
2021-05-02 9:27 Theo Anderson
2021-05-02 9:27 Theo Anderson
2021-04-29 8:23 Michał Górny
2021-04-29 8:23 Michał Górny
2021-04-28 8:08 Andrew Ammerlaan
2021-04-28 8:08 Andrew Ammerlaan
2021-04-27 23:24 Theo Anderson
2021-04-12 9:27 [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2021-04-12 9:30 ` [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2021-04-12 5:38 Theo Anderson
2021-04-12 5:38 Theo Anderson
2021-04-12 5:38 Theo Anderson
2021-04-10 10:07 Andrew Ammerlaan
2021-03-28 11:14 [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2021-03-28 11:43 ` [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2021-03-12 9:51 Andrew Ammerlaan
2021-03-12 9:51 Andrew Ammerlaan
2021-02-07 8:24 Andrew Ammerlaan
2021-01-10 11:31 Andrew Ammerlaan
2021-01-08 8:59 Andrew Ammerlaan
2020-12-13 18:37 Andrew Ammerlaan
2020-12-11 8:36 Andrew Ammerlaan
2020-12-10 8:46 Andrew Ammerlaan
2020-12-08 14:25 Andrew Ammerlaan
2020-12-04 15:00 Andrew Ammerlaan
2020-12-03 11:36 Andrew Ammerlaan
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=1657154443.7b45f3cc1ae5feb743807615dfd4900d47795de2.lanodan@gentoo \
--to=contact@hacktivis.me \
--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