From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C54E315846A for ; Sun, 7 Jan 2024 23:46:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A03CB2BC102; Sun, 7 Jan 2024 23:46:50 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3AC002BC07C for ; Sun, 7 Jan 2024 23:46:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 46BB9343300 for ; Sun, 7 Jan 2024 23:46:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 81FED14C8 for ; Sun, 7 Jan 2024 23:46:46 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1704652920.c8cbf3c832a006385702d69c6d63e73ae7be14f1.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: app-backup/blocksync-fast/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-backup/blocksync-fast/Manifest app-backup/blocksync-fast/blocksync-fast-1.0.3.ebuild app-backup/blocksync-fast/metadata.xml X-VCS-Directories: app-backup/blocksync-fast/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: c8cbf3c832a006385702d69c6d63e73ae7be14f1 X-VCS-Branch: master Date: Sun, 7 Jan 2024 23:46:46 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a3d0d4fd-5d1b-4cec-b3b0-52b268549f14 X-Archives-Hash: 76342db8e328558e2bdfe8b0b5f41c40 commit: c8cbf3c832a006385702d69c6d63e73ae7be14f1 Author: Marcin Koczwara nethappen pl> AuthorDate: Sun Jan 7 18:42:00 2024 +0000 Commit: David Roman gmail 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 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 @@ + + + + + mk@nethappen.pl + Marcin Koczwara + + + + mk@nethappen.pl + Marcin Koczwara + + https://nethappen.github.io/blocksync-fast/ + https://raw.githubusercontent.com/nethappen/blocksync-fast/main/CHANGELOG.md + nethappen/blocksync-fast + + + 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 + + + Enable dev-libs/xxhash support for very high speed hashing + +