public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Lucio Sauer" <watermanpaint@posteo.net>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:master commit in: sys-block/partclone/
Date: Thu, 05 Jun 2025 14:31:07 +0000 (UTC)	[thread overview]
Message-ID: <1749116820.5e3716975e0f3f2bc3e19adf79b909fe779b9321.watermanpaint@gentoo> (raw)

commit:     5e3716975e0f3f2bc3e19adf79b909fe779b9321
Author:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
AuthorDate: Thu Jun  5 09:46:52 2025 +0000
Commit:     Lucio Sauer <watermanpaint <AT> posteo <DOT> net>
CommitDate: Thu Jun  5 09:47:00 2025 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5e371697

sys-block/partclone: add 0.3.37

Signed-off-by: Viorel Munteanu <ceamac <AT> gentoo.org>

 sys-block/partclone/Manifest                |  1 +
 sys-block/partclone/partclone-0.3.37.ebuild | 98 +++++++++++++++++++++++++++++
 2 files changed, 99 insertions(+)

diff --git a/sys-block/partclone/Manifest b/sys-block/partclone/Manifest
index 017d5b4c56..b0fff7c72a 100644
--- a/sys-block/partclone/Manifest
+++ b/sys-block/partclone/Manifest
@@ -1,2 +1,3 @@
 DIST partclone-0.3.33.tar.gz 1613900 BLAKE2B ac72310950b3f9e894470e206e00e1e540b8e800c6ffba94f19f6e8a460630ba1caceab0c6646d0af1409ef64ab60565879d66006cf989b73906b8f9ef8ab888 SHA512 21b783e50dca290acc70a2afb305f886c9032d3cc04636fa0e678efeac787398a5a2f8e260f9969be51500ee14d005fdf2dd33b9198ad96ef55311a8a9954c62
 DIST partclone-0.3.36.tar.gz 1617711 BLAKE2B 2f04fd6730e4ab958e0492462912ed20f7744a09a1497eb2073953b149d4898cf4e0122932ac8223de617f20e5be39fb8bee4794208a696f7ee4feb9e03e203a SHA512 22c5ee876536d9da71a93d238ef18a6b4b26f2b2c98f4c16f2d04f14ecab1d9b7374c92e7da0f7694797123a840a97e80f246eb99b47a38304f753d8313b5d8d
+DIST partclone-0.3.37.tar.gz 1618078 BLAKE2B a90e233602e96c372d113d4407a1cd5bd42a77d34cf9a0f8ca3d0c93da94b5c7094adebe1f7beebe11bffe15b27408bb65f7d47dfd9fac3696833db5e938dc3c SHA512 e3bdc2d4de45375f19cc5d42c84c22c46fb6f9b88b961b8f3622e5666caad0222be2c96bc62c5f4c0ac28d7a8e080697b19feefe3fe6d73a40e6683d61d98ce1

diff --git a/sys-block/partclone/partclone-0.3.37.ebuild b/sys-block/partclone/partclone-0.3.37.ebuild
new file mode 100644
index 0000000000..ba06ea0251
--- /dev/null
+++ b/sys-block/partclone/partclone-0.3.37.ebuild
@@ -0,0 +1,98 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+if [[ -z ${PV%%*9999} ]]; then
+	EGIT_REPO_URI="https://github.com/Thomas-Tsai/${PN}.git"
+	inherit git-r3
+else
+	[[ -n ${PV%%*_p*} ]] && MY_PV="${PV}"
+	SRC_URI="
+		https://github.com/Thomas-Tsai/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz
+	"
+	KEYWORDS="~amd64 ~x86"
+fi
+DESCRIPTION="Partition cloning tool"
+HOMEPAGE="https://partclone.org"
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="
+apfs btrfs +e2fs exfat f2fs fat fuse hfs minix ncurses nilfs2 ntfs
+reiserfs static test ufs vmfs xfs
+"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+	dev-libs/openssl:0=
+	e2fs? ( sys-fs/e2fsprogs )
+	btrfs? ( sys-apps/util-linux )
+	fuse? ( sys-fs/fuse:3 )
+	ncurses? ( sys-libs/ncurses:0= )
+	nilfs2? ( sys-fs/nilfs-utils )
+	ntfs? ( sys-fs/ntfs3g )
+	reiserfs? ( sys-fs/progsreiserfs )
+	xfs? ( sys-apps/util-linux )
+	static? (
+		dev-libs/openssl:0[static-libs]
+		e2fs? ( sys-fs/e2fsprogs[static-libs] )
+		btrfs? ( sys-apps/util-linux[static-libs] )
+		fuse? ( sys-fs/fuse:0[static-libs] )
+		ncurses? ( sys-libs/ncurses:0[static-libs] )
+		nilfs2? ( sys-fs/nilfs-utils[static-libs] )
+		ntfs? ( sys-fs/ntfs3g[static-libs] )
+		reiserfs? ( sys-fs/progsreiserfs[static-libs] )
+	)
+"
+DEPEND="
+	${RDEPEND}
+"
+BDEPEND="
+	virtual/pkgconfig
+"
+
+PATCHES=(
+	"${FILESDIR}"/${PN}-fix-ncurses-linking.patch
+)
+
+DOCS=(
+	AUTHORS
+	ChangeLog
+	HACKING
+	NEWS
+	README.md
+)
+
+src_prepare() {
+	default
+	eautoreconf
+}
+
+src_configure() {
+	local myconf=(
+		$(use_enable e2fs extfs)
+		$(use_enable apfs)
+		$(use_enable btrfs)
+		$(use_enable exfat)
+		$(use_enable f2fs)
+		$(use_enable fat)
+		$(use_enable fuse)
+		$(use_enable hfs hfsp)
+		$(use_enable minix)
+		$(use_enable ncurses ncursesw)
+		$(use_enable nilfs2)
+		$(use_enable ntfs)
+		$(use_enable reiserfs)
+		$(use_enable test fs-test)
+		$(use_enable static)
+		$(use_enable vmfs)
+		$(use_enable ufs)
+		$(use_enable xfs)
+		--disable-jfs
+		--disable-reiser4
+	)
+	econf "${myconf[@]}"
+}


             reply	other threads:[~2025-06-05 14:31 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-06-05 14:31 Lucio Sauer [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-09-05 23:31 [gentoo-commits] repo/proj/guru:master commit in: sys-block/partclone/ David Roman
2025-04-22  8:46 David Roman
2025-01-27  9:57 David Roman
2025-01-27  9:57 David Roman
2024-08-27  9:57 David Roman

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=1749116820.5e3716975e0f3f2bc3e19adf79b909fe779b9321.watermanpaint@gentoo \
    --to=watermanpaint@posteo.net \
    --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