commit: 6d7a2ca58d0bd25cc9c2930bc8e122db8db92507
Author: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 12 05:40:06 2025 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Wed Nov 12 05:40:06 2025 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6d7a2ca5
sys-block/partclone: add 0.3.39
Signed-off-by: Viorel Munteanu <ceamac <AT> gentoo.org>
sys-block/partclone/Manifest | 1 +
sys-block/partclone/partclone-0.3.39.ebuild | 99 +++++++++++++++++++++++++++++
2 files changed, 100 insertions(+)
diff --git a/sys-block/partclone/Manifest b/sys-block/partclone/Manifest
index 38d75b0e50..796114a683 100644
--- a/sys-block/partclone/Manifest
+++ b/sys-block/partclone/Manifest
@@ -1,2 +1,3 @@
DIST partclone-0.3.37.tar.gz 1618078 BLAKE2B
a90e233602e96c372d113d4407a1cd5bd42a77d34cf9a0f8ca3d0c93da94b5c7094adebe1f7beebe11bffe15b27408bb65f7d47dfd9fac3696833db5e938dc3c
SHA512
e3bdc2d4de45375f19cc5d42c84c22c46fb6f9b88b961b8f3622e5666caad0222be2c96bc62c5f4c0ac28d7a8e080697b19feefe3fe6d73a40e6683d61d98ce1
DIST partclone-0.3.38.tar.gz 1619526 BLAKE2B
d57c122622ca571d6020667db70b7e44291aa9a1c02b04ad9d94e471e68e1a620e4ccde24b2edfa9a44678a4b1a9888107050f571683547fe0c7c42c354582d1
SHA512
fd27ebea6f46c5f127db2deef6a9fadd51248ec0dbe6094d438d8e17d8daa4dd0b7985dd2f7c57e4f15f20bc827e33c58bacac48d8c2921d3602d9849aef1cf8
+DIST partclone-0.3.39.tar.gz 1605420 BLAKE2B
ed438030cd68600a77266b584aef3b181768dcc50a5d4efb3e1f46890c100c9e36324d68550928070085ed7dd5bdfe6ba5da675e7f5fb11cbd976c8950b017dd
SHA512
cf2b88fb397f5db0f9b4ad9093aa9a3cb8f49009d597b91d2ebf748d4a4627d4247b96b363e47b707f993308ac71659d99665c2703cb6d8d89d738f834d28618
diff --git a/sys-block/partclone/partclone-0.3.39.ebuild
b/sys-block/partclone/partclone-0.3.39.ebuild
new file mode 100644
index 0000000000..fe8f6a201a
--- /dev/null
+++ b/sys-block/partclone/partclone-0.3.39.ebuild
@@ -0,0 +1,99 @@
+# 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"
+IUSE+=" reiserfs static test ufs vmfs xfs"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ dev-libs/isa-l
+ dev-libs/openssl:0=
+ dev-libs/xxhash
+ sys-apps/util-linux
+ 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[@]}"
+}