public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Denis Reva" <denis7774@gmail.com>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: sys-fs/dwarfs/
Date: Fri,  9 Apr 2021 14:29:40 +0000 (UTC)	[thread overview]
Message-ID: <1617978574.38ee3703cd42b3ea89ff339b01970e1cd5079a13.RarogCmex@gentoo> (raw)

commit:     38ee3703cd42b3ea89ff339b01970e1cd5079a13
Author:     Denis Reva <denis7774 <AT> gmail <DOT> com>
AuthorDate: Fri Apr  9 14:29:34 2021 +0000
Commit:     Denis Reva <denis7774 <AT> gmail <DOT> com>
CommitDate: Fri Apr  9 14:29:34 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=38ee3703

sys-fs/dwarfs: new version 0.5.2

See https://github.com/mhx/dwarfs/releases
for changes.

That release looks pretty good.

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Denis Reva <denis7774 <AT> gmail.com>

 sys-fs/dwarfs/Manifest            |  1 +
 sys-fs/dwarfs/dwarfs-0.5.2.ebuild | 94 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 95 insertions(+)

diff --git a/sys-fs/dwarfs/Manifest b/sys-fs/dwarfs/Manifest
index 0ddfe0d6a..e6a430ea4 100644
--- a/sys-fs/dwarfs/Manifest
+++ b/sys-fs/dwarfs/Manifest
@@ -1 +1,2 @@
 DIST dwarfs-0.4.1.tar.bz2 11640169 BLAKE2B 3490d625fd718be4451d5a551b6931b0c9316d88cdda91b90a724f3ab732a3916431a13e343bcb79a2e0415ffc0a990d2546eeb1738c55282e9fb9c85d3ba1ae SHA512 ed7bfe13a9ed2450921a2caf47b4ee1f527fcd7ad154cee93d8674a2dd08c9110d62cfaff22f318bdb799eeea35b8bc4b7374d685537c82e70a0498d97a53307
+DIST dwarfs-0.5.2.tar.bz2 12153397 BLAKE2B b83b7df085afb39df3aa9b139ce7cfeee71287ad8ce83433a2c3cf17a096e479da95e76057379be81ec79a819dfe9754a8df44492044fc49fbd1e2d4371af878 SHA512 6ff8a8b9037740bc4a28f8069226db35ac0dad946059f9d42163f64e40e299efa0e79da08f44e45ac8dd2e8b9c43ed2a9d05fd54e51de8885f71137f877d456b

diff --git a/sys-fs/dwarfs/dwarfs-0.5.2.ebuild b/sys-fs/dwarfs/dwarfs-0.5.2.ebuild
new file mode 100644
index 000000000..8c7493f14
--- /dev/null
+++ b/sys-fs/dwarfs/dwarfs-0.5.2.ebuild
@@ -0,0 +1,94 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,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"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+#test IUSE disabled because there is no googletest in portage tree at this moment
+#-DWITH_TESTS=$(usex test ON OFF)
+
+PYTHON_REQ_USE="python"
+
+DEPEND="sys-devel/flex
+		sys-devel/binutils:*"
+RDEPEND="${PYTHON_DEPS}
+		dev-libs/boost[context,threads,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
+		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)
+		-DPREFER_SYSTEM_ZSTD=1
+		-DPREFER_SYSTEM_XXHASH=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
+	dolib.so folly/libfolly.so.0.58.0-dev folly/libfolly.so
+}
+
+pkg_postinst(){
+	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"
+}


             reply	other threads:[~2021-04-09 14:29 UTC|newest]

Thread overview: 64+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-09 14:29 Denis Reva [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-07-02 18:12 [gentoo-commits] repo/proj/guru:dev commit in: sys-fs/dwarfs/ Denis Reva
2024-06-05  5:11 Denis Reva
2024-06-03 12:41 Denis Reva
2024-06-03 12:41 Denis Reva
2024-05-16 15:06 Denis Reva
2024-02-24  9:07 Denis Reva
2024-02-15  8:43 Denis Reva
2024-02-14 15:00 Denis Reva
2024-02-13 15:46 Denis Reva
2024-02-13 15:46 Denis Reva
2024-02-13 15:45 Denis Reva
2024-02-12  9:18 Denis Reva
2024-02-12  8:06 Denis Reva
2024-02-08 19:13 YiFei Zhu
2024-01-23 11:08 YiFei Zhu
2024-01-19  6:43 YiFei Zhu
2024-01-10  6:31 YiFei Zhu
2024-01-10  6:31 YiFei Zhu
2024-01-08 14:03 Denis Reva
2024-01-08  9:43 YiFei Zhu
2024-01-08  8:50 YiFei Zhu
2024-01-07 11:05 Denis Reva
2024-01-02 16:02 Denis Reva
2023-08-16 13:08 Denis Reva
2023-07-25 14:16 Denis Reva
2023-07-12 16:46 Denis Reva
2023-07-10  5:39 Denis Reva
2023-05-16 10:04 Denis Reva
2023-05-07 13:26 Denis Reva
2023-03-30 13:06 Anna Vyalkova
2023-02-28 14:51 Denis Reva
2023-02-28 13:02 Denis Reva
2022-07-07  0:41 Anna Vyalkova
2021-11-26 11:39 Denis Reva
2021-10-28 15:18 Alessandro Barbieri
2021-09-16  6:34 Denis Reva
2021-07-07  3:41 Denis Reva
2021-07-07  3:41 Denis Reva
2021-05-05  7:32 Alessandro Barbieri
2021-05-03 10:11 Denis Reva
2021-05-02  2:27 Alessandro Barbieri
2021-05-02  1:51 Alessandro Barbieri
2021-04-29  3:24 Alessandro Barbieri
2021-04-28 11:43 Denis Reva
2021-04-28  5:20 Denis Reva
2021-04-28  5:17 Denis Reva
2021-04-27  8:34 Denis Reva
2021-04-12  9:27 Andrew Ammerlaan
2021-04-12  4:05 Denis Reva
2021-04-11 15:00 Denis Reva
2021-04-11 12:24 Denis Reva
2021-03-28 11:14 Andrew Ammerlaan
2021-03-12  4:52 Denis Reva
2021-03-11 17:16 Denis Reva
2021-02-06  5:54 Denis Reva
2021-01-10  5:56 Denis Reva
2021-01-07 19:41 Denis Reva
2020-12-13 13:30 Denis Reva
2020-12-10 15:11 Denis Reva
2020-12-10  7:52 Denis Reva
2020-12-08  7:28 Denis Reva
2020-12-04  4:17 Denis Reva
2020-12-02  7:34 Denis Reva

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=1617978574.38ee3703cd42b3ea89ff339b01970e1cd5079a13.RarogCmex@gentoo \
    --to=denis7774@gmail.com \
    --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