public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/duperemove/
Date: Tue, 13 Oct 2015 19:05:26 +0000 (UTC)	[thread overview]
Message-ID: <1444763121.d3ddb8dddaef9312a02f7229057a98e7d7512cc2.mgorny@gentoo> (raw)

commit:     d3ddb8dddaef9312a02f7229057a98e7d7512cc2
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 13 19:05:05 2015 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Oct 13 19:05:21 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3ddb8dd

sys-fs/duperemove: Bump to v0.10

Update to v0.10. Major changes include:

- support for offloading memory and storing hashes on disk
  during deduplication (requires sqlite3);
- libgcrypt hashing has been replaced by three bundled hashes
  to choose from: murmur3, sha256 and xxhash;
- support for reusing fdupes output;
- multi-threading support.

Package-Manager: portage-2.2.23

 sys-fs/duperemove/Manifest               |  1 +
 sys-fs/duperemove/duperemove-0.10.ebuild | 34 ++++++++++++++++++++++++++++++++
 2 files changed, 35 insertions(+)

diff --git a/sys-fs/duperemove/Manifest b/sys-fs/duperemove/Manifest
index c1911b8..a2f7e94 100644
--- a/sys-fs/duperemove/Manifest
+++ b/sys-fs/duperemove/Manifest
@@ -3,3 +3,4 @@ DIST duperemove-0.09.2.tar.gz 55715 SHA256 2f7155bb916f4827a940c7ceb16c785b52932
 DIST duperemove-0.09.3.tar.gz 55722 SHA256 349b047cfb388f2d616695b4ecbfa091243f84024bd75fbbbd7b88fb498794a0 SHA512 fe2a19088ec9ac3dda35da8b9580ddcc1c3b49e60824f2c1bbf8c013756c060b4c9663d1977bb6622c4de19754fd4a1011cc09ef3c785c2b4b218e0c9fb15b87 WHIRLPOOL 022eba5fb6ad1a4c74a4843762e7ccc7f6ba8187adbd6eb1bbe0168482cdd57664d7f6d9b4715d36866a8d026786abcf1e77ec87530f46fbea59b1357d4c90a4
 DIST duperemove-0.09.4.tar.gz 55725 SHA256 9d4c7fe0fd7ae3acb8c144e5fa8648749366c1e67a97ecbb28f07df0bb72fb29 SHA512 dff728a34bdf8df71aa13b7f9c8ffae8ce643337f4dafacb3ceeb778d326b1885f63ae03215c6d714c4fcd7b2f26b03e47d7ad3a42eca3f2d5de5b596b653bf1 WHIRLPOOL 806e5469ac7fbd6b9a1e3803f153a6a2e5eecc14fa05b9f08b3d5b1f16609fb5bc2c576c45133ac6c6a76e5d63fce4a98d44ab4e8b180b5cbccf06355d3967bc
 DIST duperemove-0.09.5.tar.gz 56175 SHA256 8c8c781ab53435dfcc114d2a500525c72428fdbafc14ead10de115d77b447b69 SHA512 111127d9ab7d5567de8393197cf5bc977db1f64b7405fd848e1ca5aaa5ca7a3057fa06b61b161d0dfc45e0c5ebcc2406218d9a834db519c7ca348cdc7a0fe2f2 WHIRLPOOL aff0d6cbab8f6f76cc528316dd17656e3b190809e3955bf83f59745b5dfd085e17b832dc09b4aa3ca6312bbfb199bea0f3ecb4f59d1bcc11c1743d97da93213c
+DIST duperemove-0.10.tar.gz 95656 SHA256 1ef855c4d0a85efc8757edcac5ea7189d896d2f2abad0e572c47f6568cf050aa SHA512 11bb1a9937b9ca7969b9176bb4cfc8fff91c257a8645baa0ca0ec6b634ae3c464712414f856d5a75ed16c6d13f0ae85ac3584df1f474575a975cb20ae0d7a9f1 WHIRLPOOL f31164803447b6ba917fa214eac35037e67ab090215b97e4610f46b3276d0a3c2f3c9ee024ea813e63cbacbe2c7778d35188131c85ffc08fc47b2abd4e312d38

diff --git a/sys-fs/duperemove/duperemove-0.10.ebuild b/sys-fs/duperemove/duperemove-0.10.ebuild
new file mode 100644
index 0000000..a39e6e6
--- /dev/null
+++ b/sys-fs/duperemove/duperemove-0.10.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils toolchain-funcs
+
+DESCRIPTION="Btrfs deduplication utility"
+HOMEPAGE="https://github.com/markfasheh/duperemove"
+SRC_URI="https://github.com/markfasheh/duperemove/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+# includes code from libbloom, xxhash (BSD-2)
+# includes code from polarssl (GPL-2+)
+LICENSE="GPL-2 GPL-2+ BSD-2"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+RDEPEND="
+	dev-db/sqlite:3=
+	dev-libs/glib:2="
+DEPEND="${RDEPEND}"
+
+src_compile() {
+	# CC & CFLAGS are set via = so need to override them
+	# LIBRARY_FLAGS are set via += so need to pass them via env
+	local -x LIBRARY_FLAGS="${LDFLAGS}"
+	emake CC="$(tc-getCC)" CFLAGS="${CFLAGS} -Wall"
+}
+
+src_install() {
+	emake DESTDIR="${D}" PREFIX="/usr" install
+}


             reply	other threads:[~2015-10-13 19:05 UTC|newest]

Thread overview: 39+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-10-13 19:05 Michał Górny [this message]
  -- strict thread matches above, loose matches on Subject: below --
2017-01-26 20:14 [gentoo-commits] repo/gentoo:master commit in: sys-fs/duperemove/ Michał Górny
2017-09-08  7:32 Michał Górny
2018-01-02  6:19 Michał Górny
2018-05-16  7:26 Michał Górny
2018-12-02 15:57 Michał Górny
2019-03-10  8:08 Michał Górny
2020-03-07 19:47 Piotr Karbowski
2020-03-07 19:50 Piotr Karbowski
2020-03-08 10:37 Agostino Sarubbo
2020-03-08 19:07 Richard Freeman
2020-11-03  8:24 Michał Górny
2020-12-20 19:07 Thomas Deutschmann
2020-12-20 20:34 Michał Górny
2021-08-10  5:57 Michał Górny
2021-08-10  8:20 Michał Górny
2021-09-27  6:55 Agostino Sarubbo
2021-09-27  6:57 Agostino Sarubbo
2021-09-27  7:58 Michał Górny
2022-01-22 21:23 Georgy Yakovlev
2023-07-16  3:06 Michał Górny
2023-08-20 13:11 Sam James
2023-08-20 17:37 Arthur Zamarin
2023-08-20 17:57 Michał Górny
2023-09-30  4:56 Michał Górny
2023-11-19  7:47 Michał Górny
2023-11-22  9:50 Michał Górny
2023-11-26  4:14 Michał Górny
2023-12-21  6:52 Sam James
2023-12-21  7:27 Arthur Zamarin
2025-02-03  5:26 Michał Górny
2025-02-22  8:47 Arthur Zamarin
2025-02-22 20:47 Michał Górny
2025-02-23 16:57 Sam James
2025-03-02  3:07 Michał Górny
2025-03-03  9:35 David Seifert
2025-03-09 22:58 Sam James
2025-03-09 22:58 Sam James
2025-03-10  5:57 Michał Górny

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=1444763121.d3ddb8dddaef9312a02f7229057a98e7d7512cc2.mgorny@gentoo \
    --to=mgorny@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