public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Ben Kohler" <bkohler@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-backup/fsarchiver/
Date: Wed, 24 Mar 2021 16:06:51 +0000 (UTC)	[thread overview]
Message-ID: <1616601998.088d52de2c94d96c89758d0145eac7e6e2d1f8d9.bkohler@gentoo> (raw)

commit:     088d52de2c94d96c89758d0145eac7e6e2d1f8d9
Author:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 24 15:58:19 2021 +0000
Commit:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Wed Mar 24 16:06:38 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=088d52de

app-backup/fsarchiver: bump to 0.8.6

Closes: https://bugs.gentoo.org/777861

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>

 app-backup/fsarchiver/Manifest                |  1 +
 app-backup/fsarchiver/fsarchiver-0.8.6.ebuild | 50 +++++++++++++++++++++++++++
 app-backup/fsarchiver/metadata.xml            |  5 ++-
 3 files changed, 55 insertions(+), 1 deletion(-)

diff --git a/app-backup/fsarchiver/Manifest b/app-backup/fsarchiver/Manifest
index 996e63a9f82..4266c34809c 100644
--- a/app-backup/fsarchiver/Manifest
+++ b/app-backup/fsarchiver/Manifest
@@ -1 +1,2 @@
 DIST fsarchiver-0.8.5.tar.gz 298502 BLAKE2B 434fbc945bb4999243fe2b6a212c6b04118ae37749b4b14b590cf8269e541a5b09954e75a898126c8a55b5b516f458a1cf1842b4a9f4ead2185c7b5e8c99343c SHA512 bf427dfcc5a73fc799710766dc1c1392ed379565ec68d7cef49e9391da749e08fb655f2b86b4ab4db7cacaf323286b4673a7c3fbebba81ac50d0b66c1f0b91ff
+DIST fsarchiver-0.8.6.tar.gz 273652 BLAKE2B 2f8d11bb721c4e5452f0bc62661bd254226d3d62b5d7bee0a8ccfd227bdc39dd0dd544e831888bbf39010341aaa0d74b2805ab580c79cc90e96a43be1676d86c SHA512 26a2d7a68d162aabb778b14f29c52cf8fbadb8147cf5eae592352a36fbf93cc45c08c241253bd8dfe8cd0b77d0f156afcc8d89e8d24a238fd4427cb479827f14

diff --git a/app-backup/fsarchiver/fsarchiver-0.8.6.ebuild b/app-backup/fsarchiver/fsarchiver-0.8.6.ebuild
new file mode 100644
index 00000000000..cd68ca9e66d
--- /dev/null
+++ b/app-backup/fsarchiver/fsarchiver-0.8.6.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+DESCRIPTION="Flexible filesystem archiver for backup and deployment tool"
+HOMEPAGE="https://www.fsarchiver.org"
+SRC_URI="https://github.com/fdupoux/${PN}/releases/download/${PV}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug lz4 lzma lzo static zstd"
+
+CDEPEND="dev-libs/libgcrypt:0=
+	>=sys-fs/e2fsprogs-1.41.4
+	lz4? ( app-arch/lz4 )
+	lzma? ( >=app-arch/xz-utils-4.999.9_beta )
+	lzo? ( >=dev-libs/lzo-2.02 )
+	zstd? ( app-arch/zstd )
+"
+DEPEND="${CDEPEND}
+	static? (
+		lz4? ( app-arch/lz4[static-libs] )
+		lzma? ( app-arch/xz-utils[static-libs] )
+		lzo? ( dev-libs/lzo[static-libs] )
+		zstd? ( app-arch/zstd[static-libs] )
+	)"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+	default
+	sed -i -e 's/^\([a-z]*_CFLAGS.*\)-ggdb/\1/' src/Makefile.am \
+		|| die "seding failed"
+	eautoreconf
+}
+
+src_configure() {
+	local myeconfargs=(
+		$(use_enable debug devel)
+		$(use_enable lz4)
+		$(use_enable lzma)
+		$(use_enable lzo)
+		$(use_enable static)
+		$(use_enable zstd)
+	)
+	econf "${myeconfargs[@]}"
+}

diff --git a/app-backup/fsarchiver/metadata.xml b/app-backup/fsarchiver/metadata.xml
index aa5f1ad3b52..07abe5954b5 100644
--- a/app-backup/fsarchiver/metadata.xml
+++ b/app-backup/fsarchiver/metadata.xml
@@ -1,7 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<!-- maintainer-needed -->
+	 <maintainer type="person">
+		<email>bkohler@gentoo.org</email>
+		<name>Ben Kohler</name>
+	</maintainer>
 	<upstream>
 		<remote-id type="sourceforge">fsarchiver</remote-id>
 		<remote-id type="github">fdupoux/fsarchiver</remote-id>


             reply	other threads:[~2021-03-24 16:06 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-24 16:06 Ben Kohler [this message]
  -- strict thread matches above, loose matches on Subject: below --
2023-11-03 12:23 [gentoo-commits] repo/gentoo:master commit in: app-backup/fsarchiver/ Ben Kohler
2023-04-25  3:55 Sam James
2023-04-25  3:55 Sam James
2023-03-23 13:01 Ben Kohler
2021-09-13 20:30 David Seifert
2021-05-18 14:15 Ben Kohler
2021-04-26 19:11 Sam James
2021-04-26 19:11 Sam James
2021-03-24 16:41 Ben Kohler
2021-03-24 16:06 Ben Kohler
2021-03-24 16:06 Ben Kohler
2021-02-06 23:38 Sam James
2020-06-15  2:35 Aaron Bauman
2019-02-16  9:28 Pacho Ramos
2018-07-11 13:19 Lars Wendler
2018-07-11 13:19 Lars Wendler
2018-05-14  0:08 Aaron Bauman
2018-05-13 22:06 Thomas Deutschmann
2017-08-24 11:07 Lars Wendler
2017-08-24 11:07 Lars Wendler
2017-06-25 16:32 Agostino Sarubbo
2017-02-20  9:33 Lars Wendler
2017-01-02 10:53 Lars Wendler
2017-01-02 10:53 Lars Wendler
2016-12-25 11:39 Lars Wendler
2016-03-06 11:18 Markos Chandras

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=1616601998.088d52de2c94d96c89758d0145eac7e6e2d1f8d9.bkohler@gentoo \
    --to=bkohler@gentoo.org \
    --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