Gentoo Archives: gentoo-commits

From: Yixun Lan <dlan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-backup/snapper/
Date: Tue, 12 Feb 2019 02:16:09
Message-Id: 1549937759.c3130f56d1a579d28d9d268e6224c1128a9155c4.dlan@gentoo
1 commit: c3130f56d1a579d28d9d268e6224c1128a9155c4
2 Author: Yixun Lan <dlan <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 12 02:06:11 2019 +0000
4 Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 12 02:15:59 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3130f56
7
8 app-backup/snapper: version bump 0.8.2
9
10 Package-Manager: Portage-2.3.52, Repoman-2.3.12
11 Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>
12
13 app-backup/snapper/Manifest | 1 +
14 app-backup/snapper/snapper-0.8.2.ebuild | 77 +++++++++++++++++++++++++++++++++
15 2 files changed, 78 insertions(+)
16
17 diff --git a/app-backup/snapper/Manifest b/app-backup/snapper/Manifest
18 index d1c2368a868..4941aad11da 100644
19 --- a/app-backup/snapper/Manifest
20 +++ b/app-backup/snapper/Manifest
21 @@ -1,2 +1,3 @@
22 DIST snapper-0.5.6.tar.bz2 580047 BLAKE2B 3b945acbf734db1925dad5515323a64a2c08ee8226a593025f9160e0d1b1140734b2b498d036256946159900b50fec8567147dc0a974c281be747e977bcbd05b SHA512 392427d097cbe221bf7ca0ae20bc065dffaa4d0017ed750c41748d71128fc7ce054bb4425d6dbed7308a530df71815f80f56e60d72aab17ef3e0a16f3b3ba47e
23 DIST snapper-0.8.1.tar.bz2 591061 BLAKE2B 5f9ae50469f43e930de4c4479428c94b24441832bd713847c6792ff583fb79badfa341b53cc63abfedb787367b22b715de9f83f9172dec945f7b3071c06137ba SHA512 9fa20311f346de54c4f5d1cabb42dce5c677eaac03b3fac2a6049f408553911f5a968b1920fd014f3318ebb6911f2e6bce06463e976b468927e250e16fe783a0
24 +DIST snapper-0.8.2.tar.bz2 591558 BLAKE2B 552c07d1d83e6a8db1e1661b523aeb7164335bb6ebbeb07489325b6d23d8a5def730ac1cf0da06ab65b7a9fc1284d0d05ca0f875bc897504c1bbb45698b40294 SHA512 d968490782a47112f7ba2474555cafe450833cf055734186c79991dd836f9c5d8d669a6c65dd29b05da298e46f65e0ac5c4a1dae3b548a01dbf1b11d7e00c462
25
26 diff --git a/app-backup/snapper/snapper-0.8.2.ebuild b/app-backup/snapper/snapper-0.8.2.ebuild
27 new file mode 100644
28 index 00000000000..1ce8e5e1234
29 --- /dev/null
30 +++ b/app-backup/snapper/snapper-0.8.2.ebuild
31 @@ -0,0 +1,77 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +inherit systemd
38 +
39 +DESCRIPTION="Command-line program for btrfs and lvm snapshot management"
40 +HOMEPAGE="http://snapper.io/"
41 +SRC_URI="ftp://ftp.suse.com/pub/projects/snapper/${P}.tar.bz2"
42 +
43 +LICENSE="GPL-2"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +IUSE="lvm pam xattr"
47 +
48 +RDEPEND="dev-libs/boost:=[threads]
49 + dev-libs/libxml2
50 + dev-libs/icu:=
51 + sys-apps/acl
52 + sys-apps/dbus
53 + sys-apps/util-linux
54 + >=sys-fs/btrfs-progs-3.17.1
55 + sys-libs/zlib
56 + virtual/libintl
57 + lvm? ( sys-fs/lvm2 )
58 + pam? ( sys-libs/pam )
59 + xattr? ( sys-apps/attr )"
60 +
61 +DEPEND="${RDEPEND}
62 + sys-devel/gettext
63 + virtual/pkgconfig"
64 +
65 +PATCHES=(
66 + "${FILESDIR}"/cron-confd.patch
67 +)
68 +
69 +src_prepare() {
70 + default
71 +
72 + sed -e "s,/usr/lib/systemd/system,$(systemd_get_systemunitdir),g" \
73 + -i data/Makefile.* \
74 + || die "Failed to fix systemd services and timers installation path"
75 +}
76 +
77 +src_configure() {
78 + # ext4 code does not work anymore
79 + # snapper does not build without btrfs
80 + local myeconfargs=(
81 + --with-conf="/etc/conf.d"
82 + --docdir="/usr/share/doc/${PF}"
83 + --disable-zypp
84 + --enable-rollback
85 + --disable-ext4
86 + --enable-btrfs
87 + $(use_enable lvm)
88 + $(use_enable pam)
89 + $(use_enable xattr xattrs)
90 + )
91 +
92 + econf "${myeconfargs[@]}"
93 +}
94 +
95 +src_install() {
96 + default
97 + # Existing configuration file required to function
98 + newconfd data/sysconfig.snapper snapper
99 + find "${D}" -name '*.la' -delete || die
100 +}
101 +
102 +pkg_postinst() {
103 + elog "In order to use Snapper, you need to set up"
104 + elog "at least one config first. To do this, run:"
105 + elog "snapper create-config <subvolume>"
106 + elog "For more information, see man (8) snapper or"
107 + elog "http://snapper.io/documentation.html"
108 +}