public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: sys-fs/ntfs2btrfs/
@ 2023-02-12 23:34 Mark Harmstone
  0 siblings, 0 replies; 3+ messages in thread
From: Mark Harmstone @ 2023-02-12 23:34 UTC (permalink / raw
  To: gentoo-commits

commit:     9058588295c3f785b3860112c7cc67a7bcb386c1
Author:     Mark Harmstone <mark <AT> harmstone <DOT> com>
AuthorDate: Sun Feb 12 23:34:39 2023 +0000
Commit:     Mark Harmstone <mark <AT> harmstone <DOT> com>
CommitDate: Sun Feb 12 23:34:39 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=90585882

sys-fs/ntfs2btrfs: new package, add 20220812

Signed-off-by: Mark Harmstone <mark <AT> harmstone.com>

 sys-fs/ntfs2btrfs/Manifest                   |  1 +
 sys-fs/ntfs2btrfs/metadata.xml               | 11 ++++++++
 sys-fs/ntfs2btrfs/ntfs2btrfs-20220812.ebuild | 42 ++++++++++++++++++++++++++++
 3 files changed, 54 insertions(+)

diff --git a/sys-fs/ntfs2btrfs/Manifest b/sys-fs/ntfs2btrfs/Manifest
new file mode 100644
index 000000000..e141b6d94
--- /dev/null
+++ b/sys-fs/ntfs2btrfs/Manifest
@@ -0,0 +1 @@
+DIST ntfs2btrfs-20220812.tar.gz 98059 BLAKE2B 630992ee5f629cd9a81f7277d48159430ec1ccfcf004e6f6c72ae6bbb96d4aefce79ffd78c900e373c4d6460210db94b223888e5825f1c9280659a8da94c5bce SHA512 3d4ebf0c4b8f5d3e2dd669f74c3600f85baf45fc6c179de1b821fb84c761517d65c0d9e3e9d0c556e0123fde30334c2063bf7114e59b6836b066c31a187842cf

diff --git a/sys-fs/ntfs2btrfs/metadata.xml b/sys-fs/ntfs2btrfs/metadata.xml
new file mode 100644
index 000000000..4c634c3fb
--- /dev/null
+++ b/sys-fs/ntfs2btrfs/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM 'https://www.gentoo.org/dtd/metadata.dtd'>
+<pkgmetadata>
+	<maintainer type="person">
+		<email>mark@harmstone.com</email>
+		<name>Mark Harmstone</name>
+	</maintainer>
+	<upstream>
+		<remote-id type="github">maharmstone/ntfs2btrfs</remote-id>
+	</upstream>
+</pkgmetadata>

diff --git a/sys-fs/ntfs2btrfs/ntfs2btrfs-20220812.ebuild b/sys-fs/ntfs2btrfs/ntfs2btrfs-20220812.ebuild
new file mode 100644
index 000000000..f2b3e08fb
--- /dev/null
+++ b/sys-fs/ntfs2btrfs/ntfs2btrfs-20220812.ebuild
@@ -0,0 +1,42 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Conversion tool from NTFS to Btrfs"
+HOMEPAGE="https://github.com/maharmstone/ntfs2btrfs"
+
+if [[ ${PV} = *9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/maharmstone/ntfs2btrfs.git"
+else
+	SRC_URI="https://codeload.github.com/maharmstone/ntfs2btrfs/tar.gz/refs/tags/${PV} -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="+zlib +lzo +zstd"
+
+DEPEND="dev-libs/libfmt
+	zlib? ( sys-libs/zlib )
+	lzo? ( dev-libs/lzo )
+	zstd? ( app-arch/zstd )"
+RDEPEND="${DEPEND}"
+BDEPEND=""
+
+src_prepare() {
+	cmake_src_prepare
+}
+
+src_configure() {
+	local mycmakeargs=(
+		-DWITH_ZLIB=$(usex zlib)
+		-DWITH_LZO=$(usex lzo)
+		-DWITH_ZSTD=$(usex zstd)
+	)
+
+	cmake_src_configure
+}


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: sys-fs/ntfs2btrfs/
@ 2023-05-01 21:52 Mark Harmstone
  0 siblings, 0 replies; 3+ messages in thread
From: Mark Harmstone @ 2023-05-01 21:52 UTC (permalink / raw
  To: gentoo-commits

commit:     5f6eb2097f10a2b33580c7c1b54988a4b8c52d67
Author:     Mark Harmstone <mark <AT> harmstone <DOT> com>
AuthorDate: Mon May  1 21:47:29 2023 +0000
Commit:     Mark Harmstone <mark <AT> harmstone <DOT> com>
CommitDate: Mon May  1 21:47:29 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5f6eb209

sys-fs/ntfs2btrfs: add 20230501, drop 20220812

Signed-off-by: Mark Harmstone <mark <AT> harmstone.com>

 sys-fs/ntfs2btrfs/Manifest                                              | 2 +-
 .../{ntfs2btrfs-20220812.ebuild => ntfs2btrfs-20230501.ebuild}          | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/ntfs2btrfs/Manifest b/sys-fs/ntfs2btrfs/Manifest
index e141b6d94..0313c405b 100644
--- a/sys-fs/ntfs2btrfs/Manifest
+++ b/sys-fs/ntfs2btrfs/Manifest
@@ -1 +1 @@
-DIST ntfs2btrfs-20220812.tar.gz 98059 BLAKE2B 630992ee5f629cd9a81f7277d48159430ec1ccfcf004e6f6c72ae6bbb96d4aefce79ffd78c900e373c4d6460210db94b223888e5825f1c9280659a8da94c5bce SHA512 3d4ebf0c4b8f5d3e2dd669f74c3600f85baf45fc6c179de1b821fb84c761517d65c0d9e3e9d0c556e0123fde30334c2063bf7114e59b6836b066c31a187842cf
+DIST ntfs2btrfs-20230501.tar.gz 98816 BLAKE2B d814e1d1a80fa25a85ca010b4ec3d0a92eb0ebeba4ad9042af95b7f2cd5fb70941e2dfc4422a609b7b159c9f4ff51598e1acaedb46f3b48fb42235f230dc1423 SHA512 ad10850280f591cbdc169bb8e0b1768f7c4051b3110283c941ab76beb0d2b728d30ac64caecdbe6f90068b2486170ddced0704d741d1469944c58ecf0b168e0a

diff --git a/sys-fs/ntfs2btrfs/ntfs2btrfs-20220812.ebuild b/sys-fs/ntfs2btrfs/ntfs2btrfs-20230501.ebuild
similarity index 100%
rename from sys-fs/ntfs2btrfs/ntfs2btrfs-20220812.ebuild
rename to sys-fs/ntfs2btrfs/ntfs2btrfs-20230501.ebuild


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: sys-fs/ntfs2btrfs/
@ 2024-01-16  2:03 Mark Harmstone
  0 siblings, 0 replies; 3+ messages in thread
From: Mark Harmstone @ 2024-01-16  2:03 UTC (permalink / raw
  To: gentoo-commits

commit:     54f4b064ff273b321090f1465a9efe2744f01909
Author:     Mark Harmstone <mark <AT> harmstone <DOT> com>
AuthorDate: Tue Jan 16 02:02:44 2024 +0000
Commit:     Mark Harmstone <mark <AT> harmstone <DOT> com>
CommitDate: Tue Jan 16 02:02:44 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=54f4b064

sys-fs/ntfs2btrfs: add 20240115, drop 20230501

Signed-off-by: Mark Harmstone <mark <AT> harmstone.com>

 sys-fs/ntfs2btrfs/Manifest                                              | 2 +-
 .../{ntfs2btrfs-20230501.ebuild => ntfs2btrfs-20240115.ebuild}          | 1 -
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/sys-fs/ntfs2btrfs/Manifest b/sys-fs/ntfs2btrfs/Manifest
index 0313c405bb..124d1acf56 100644
--- a/sys-fs/ntfs2btrfs/Manifest
+++ b/sys-fs/ntfs2btrfs/Manifest
@@ -1 +1 @@
-DIST ntfs2btrfs-20230501.tar.gz 98816 BLAKE2B d814e1d1a80fa25a85ca010b4ec3d0a92eb0ebeba4ad9042af95b7f2cd5fb70941e2dfc4422a609b7b159c9f4ff51598e1acaedb46f3b48fb42235f230dc1423 SHA512 ad10850280f591cbdc169bb8e0b1768f7c4051b3110283c941ab76beb0d2b728d30ac64caecdbe6f90068b2486170ddced0704d741d1469944c58ecf0b168e0a
+DIST ntfs2btrfs-20240115.tar.gz 98851 BLAKE2B 99f6a10a785286a093d995efb34fd822d35a28f6232c2dd003c16f30a98dd1a63dd46c7e4ea9e373bf18f453eb6d867c4a73492c0edc54bf1dc3a50c847c239a SHA512 c614e33b83a4dad25b07335f42161223804935bbee19a72a6576fe361a7edf91502773facc14c767e02abff03fd26d902ab2cd0d8f8bcde8ba10c56869d01873

diff --git a/sys-fs/ntfs2btrfs/ntfs2btrfs-20230501.ebuild b/sys-fs/ntfs2btrfs/ntfs2btrfs-20240115.ebuild
similarity index 98%
rename from sys-fs/ntfs2btrfs/ntfs2btrfs-20230501.ebuild
rename to sys-fs/ntfs2btrfs/ntfs2btrfs-20240115.ebuild
index f2b3e08fbb..1d6ac5d74b 100644
--- a/sys-fs/ntfs2btrfs/ntfs2btrfs-20230501.ebuild
+++ b/sys-fs/ntfs2btrfs/ntfs2btrfs-20240115.ebuild
@@ -25,7 +25,6 @@ DEPEND="dev-libs/libfmt
 	lzo? ( dev-libs/lzo )
 	zstd? ( app-arch/zstd )"
 RDEPEND="${DEPEND}"
-BDEPEND=""
 
 src_prepare() {
 	cmake_src_prepare


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-01-16  2:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-16  2:03 [gentoo-commits] repo/proj/guru:dev commit in: sys-fs/ntfs2btrfs/ Mark Harmstone
  -- strict thread matches above, loose matches on Subject: below --
2023-05-01 21:52 Mark Harmstone
2023-02-12 23:34 Mark Harmstone

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox