public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:master commit in: app-backup/blocksync-fast/
@ 2024-01-07 23:46 David Roman
  0 siblings, 0 replies; 3+ messages in thread
From: David Roman @ 2024-01-07 23:46 UTC (permalink / raw
  To: gentoo-commits

commit:     c8cbf3c832a006385702d69c6d63e73ae7be14f1
Author:     Marcin Koczwara <mk <AT> nethappen <DOT> pl>
AuthorDate: Sun Jan  7 18:42:00 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Sun Jan  7 18:42:00 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c8cbf3c8

app-backup/blocksync-fast: new package, add 1.0.3

Signed-off-by: Marcin Koczwara <mk <AT> nethappen.pl>

 app-backup/blocksync-fast/Manifest                 |  1 +
 .../blocksync-fast/blocksync-fast-1.0.3.ebuild     | 30 ++++++++++++++++++++++
 app-backup/blocksync-fast/metadata.xml             | 26 +++++++++++++++++++
 3 files changed, 57 insertions(+)

diff --git a/app-backup/blocksync-fast/Manifest b/app-backup/blocksync-fast/Manifest
new file mode 100644
index 0000000000..f84cd1ba22
--- /dev/null
+++ b/app-backup/blocksync-fast/Manifest
@@ -0,0 +1 @@
+DIST blocksync-fast-1.0.3.tar.gz 159994 BLAKE2B 228d44a07f825ede0236ece06d0b8dd98285f3f74b5a7e32f05f444bba1d1eb53deaf19124ce20f1ae8d0057c551465d3d3cbe51f3d0e6d5977b2651745535a8 SHA512 83a086aeabb7b31eb274a682f40e0b2970b5d5ca786baca615ca5353ee2d5e10043f9020d4740bb88660bae3bde54e2d5821b082386e24da41c3ce014e9571bd

diff --git a/app-backup/blocksync-fast/blocksync-fast-1.0.3.ebuild b/app-backup/blocksync-fast/blocksync-fast-1.0.3.ebuild
new file mode 100644
index 0000000000..ba98c77215
--- /dev/null
+++ b/app-backup/blocksync-fast/blocksync-fast-1.0.3.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="Fast block device sync with digest, designed to improve block-based backups."
+HOMEPAGE="https://github.com/nethappen/blocksync-fast/"
+SRC_URI="https://github.com/nethappen/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+xxhash"
+
+RDEPEND="
+	>=dev-libs/libgcrypt-1.9.0:0=
+	xxhash? ( >=dev-libs/xxhash-0.8 )"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+	eautoreconf
+	econf $(use_with xxhash)
+}
+
+src_install() {
+	DOCS=(README.md CHANGELOG.md LICENSE scripts)
+	default_src_install
+}

diff --git a/app-backup/blocksync-fast/metadata.xml b/app-backup/blocksync-fast/metadata.xml
new file mode 100644
index 0000000000..196d653e11
--- /dev/null
+++ b/app-backup/blocksync-fast/metadata.xml
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>mk@nethappen.pl</email>
+		<name>Marcin Koczwara</name>
+	</maintainer>
+	<upstream>
+		<maintainer>
+			<email>mk@nethappen.pl</email>
+			<name>Marcin Koczwara</name>
+		</maintainer>
+		<doc>https://nethappen.github.io/blocksync-fast/</doc>
+		<changelog>https://raw.githubusercontent.com/nethappen/blocksync-fast/main/CHANGELOG.md</changelog>
+		<remote-id type="github">nethappen/blocksync-fast</remote-id>
+	</upstream>
+	<longdescription lang="en">
+		This program compares and synchronizes block devices using fast and efficient methods.
+		Digest can be used to store checksums of data blocks from previous synchronization
+		to speed up synchronize process and avoid read operations from target block device.
+		Program can also create delta files that contains differences between block devices
+	</longdescription>
+	<use>
+		<flag name="xxhash">Enable dev-libs/xxhash support for very high speed hashing</flag>
+	</use>
+</pkgmetadata>


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

* [gentoo-commits] repo/proj/guru:master commit in: app-backup/blocksync-fast/
@ 2024-08-07 10:33 Lucio Sauer
  0 siblings, 0 replies; 3+ messages in thread
From: Lucio Sauer @ 2024-08-07 10:33 UTC (permalink / raw
  To: gentoo-commits

commit:     c6a52f88d4d4b55103514bfae73f2469a7e3885f
Author:     Marcin Koczwara <mk <AT> nethappen <DOT> pl>
AuthorDate: Tue Aug  6 16:07:43 2024 +0000
Commit:     Lucio Sauer <watermanpaint <AT> posteo <DOT> net>
CommitDate: Tue Aug  6 16:07:43 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c6a52f88

app-backup/blocksync-fast: add 1.0.4

Signed-off-by: Marcin Koczwara <mk <AT> nethappen.pl>

 app-backup/blocksync-fast/Manifest                 |  1 +
 .../blocksync-fast/blocksync-fast-1.0.4.ebuild     | 30 ++++++++++++++++++++++
 2 files changed, 31 insertions(+)

diff --git a/app-backup/blocksync-fast/Manifest b/app-backup/blocksync-fast/Manifest
index f84cd1ba2..0c379b0ef 100644
--- a/app-backup/blocksync-fast/Manifest
+++ b/app-backup/blocksync-fast/Manifest
@@ -1 +1,2 @@
 DIST blocksync-fast-1.0.3.tar.gz 159994 BLAKE2B 228d44a07f825ede0236ece06d0b8dd98285f3f74b5a7e32f05f444bba1d1eb53deaf19124ce20f1ae8d0057c551465d3d3cbe51f3d0e6d5977b2651745535a8 SHA512 83a086aeabb7b31eb274a682f40e0b2970b5d5ca786baca615ca5353ee2d5e10043f9020d4740bb88660bae3bde54e2d5821b082386e24da41c3ce014e9571bd
+DIST blocksync-fast-1.0.4.tar.gz 175598 BLAKE2B e4c398b3645377f8ccc79dcf0f779ef6eb1d2e5b2c6f3282e5bef8ddf04a601e87627835e119e2d9ed687aa2968286b61411a84740678823d2117a595cd3794a SHA512 acd2dfc9864d075bdf1b3291b90a1b24ead72b00284efcf9810d762565b00ecd1f76151edfbe136333746a2f9759bb6bc399f3fd5e233f72b504a1b2d891f415

diff --git a/app-backup/blocksync-fast/blocksync-fast-1.0.4.ebuild b/app-backup/blocksync-fast/blocksync-fast-1.0.4.ebuild
new file mode 100644
index 000000000..ba98c7721
--- /dev/null
+++ b/app-backup/blocksync-fast/blocksync-fast-1.0.4.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="Fast block device sync with digest, designed to improve block-based backups."
+HOMEPAGE="https://github.com/nethappen/blocksync-fast/"
+SRC_URI="https://github.com/nethappen/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+xxhash"
+
+RDEPEND="
+	>=dev-libs/libgcrypt-1.9.0:0=
+	xxhash? ( >=dev-libs/xxhash-0.8 )"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+	eautoreconf
+	econf $(use_with xxhash)
+}
+
+src_install() {
+	DOCS=(README.md CHANGELOG.md LICENSE scripts)
+	default_src_install
+}


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

* [gentoo-commits] repo/proj/guru:master commit in: app-backup/blocksync-fast/
@ 2024-09-06  8:52 David Roman
  0 siblings, 0 replies; 3+ messages in thread
From: David Roman @ 2024-09-06  8:52 UTC (permalink / raw
  To: gentoo-commits

commit:     a3f19e0e1eb8560873cc2d45648c03180533e92c
Author:     Marcin Koczwara <mk <AT> nethappen <DOT> pl>
AuthorDate: Thu Sep  5 13:13:50 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Thu Sep  5 13:13:50 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a3f19e0e

app-backup/blocksync-fast: add 1.0.6

Signed-off-by: Marcin Koczwara <mk <AT> nethappen.pl>

 app-backup/blocksync-fast/Manifest                 |  1 +
 .../blocksync-fast/blocksync-fast-1.0.6.ebuild     | 30 ++++++++++++++++++++++
 2 files changed, 31 insertions(+)

diff --git a/app-backup/blocksync-fast/Manifest b/app-backup/blocksync-fast/Manifest
index 0c379b0ef..c25e350a4 100644
--- a/app-backup/blocksync-fast/Manifest
+++ b/app-backup/blocksync-fast/Manifest
@@ -1,2 +1,3 @@
 DIST blocksync-fast-1.0.3.tar.gz 159994 BLAKE2B 228d44a07f825ede0236ece06d0b8dd98285f3f74b5a7e32f05f444bba1d1eb53deaf19124ce20f1ae8d0057c551465d3d3cbe51f3d0e6d5977b2651745535a8 SHA512 83a086aeabb7b31eb274a682f40e0b2970b5d5ca786baca615ca5353ee2d5e10043f9020d4740bb88660bae3bde54e2d5821b082386e24da41c3ce014e9571bd
 DIST blocksync-fast-1.0.4.tar.gz 175598 BLAKE2B e4c398b3645377f8ccc79dcf0f779ef6eb1d2e5b2c6f3282e5bef8ddf04a601e87627835e119e2d9ed687aa2968286b61411a84740678823d2117a595cd3794a SHA512 acd2dfc9864d075bdf1b3291b90a1b24ead72b00284efcf9810d762565b00ecd1f76151edfbe136333746a2f9759bb6bc399f3fd5e233f72b504a1b2d891f415
+DIST blocksync-fast-1.0.6.tar.gz 182014 BLAKE2B 5f135dce3d0ce9e4d86f91537bf8f7f2c69098dce14cc955f63ee9d4e49a0e59c3898ee0ee6aa85cbd9f4a1ff5e222bfa9b5237ffbffaf2efe38478718f2b7c0 SHA512 f8a13130e14be94bf809fb1b439a26883ceff17d88ac66aafc76e50d4337486bd574db956c3c714272d0fa638d500672446a08d42ca2411a49e2a3a416c8e4e2

diff --git a/app-backup/blocksync-fast/blocksync-fast-1.0.6.ebuild b/app-backup/blocksync-fast/blocksync-fast-1.0.6.ebuild
new file mode 100644
index 000000000..ba98c7721
--- /dev/null
+++ b/app-backup/blocksync-fast/blocksync-fast-1.0.6.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="Fast block device sync with digest, designed to improve block-based backups."
+HOMEPAGE="https://github.com/nethappen/blocksync-fast/"
+SRC_URI="https://github.com/nethappen/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+xxhash"
+
+RDEPEND="
+	>=dev-libs/libgcrypt-1.9.0:0=
+	xxhash? ( >=dev-libs/xxhash-0.8 )"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+	eautoreconf
+	econf $(use_with xxhash)
+}
+
+src_install() {
+	DOCS=(README.md CHANGELOG.md LICENSE scripts)
+	default_src_install
+}


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

end of thread, other threads:[~2024-09-06  8:52 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-07 23:46 [gentoo-commits] repo/proj/guru:master commit in: app-backup/blocksync-fast/ David Roman
  -- strict thread matches above, loose matches on Subject: below --
2024-08-07 10:33 Lucio Sauer
2024-09-06  8:52 David Roman

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