Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/casync/
Date: Tue, 09 Apr 2019 22:21:47
Message-Id: 1554848486.b619ce5c89e4d065aa4cfd9935070ed292d86b96.monsieurp@gentoo
1 commit: b619ce5c89e4d065aa4cfd9935070ed292d86b96
2 Author: Kai Krakow <kai <AT> kaishome <DOT> de>
3 AuthorDate: Sun Apr 7 10:06:39 2019 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 9 22:21:26 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b619ce5c
7
8 net-misc/casync: remove old.
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.11
11 Signed-off-by: Kai Krakow <kai <AT> kaishome.de>
12 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
13
14 net-misc/casync/Manifest | 1 -
15 net-misc/casync/casync-2_p20180321-r1.ebuild | 46 ----------------------------
16 2 files changed, 47 deletions(-)
17
18 diff --git a/net-misc/casync/Manifest b/net-misc/casync/Manifest
19 index c0076683014..f33cc5f9da1 100644
20 --- a/net-misc/casync/Manifest
21 +++ b/net-misc/casync/Manifest
22 @@ -1,2 +1 @@
23 -DIST casync-2_p20180321.tar.gz 1306314 BLAKE2B 9fa9238a9677ede6a218c27929f0990fe26ad0afeeb2f736a6a665d301bde6c016e6fc0f3120266707d3c12cd765667f8a8cd231bb49b5cf8bedfc4ab812b481 SHA512 c8fd61e56dc3e0aec02656e28f8cec8d873498635bdaf96c0576ab3867a0e2ef0fb69206f3a476b0515a284ba35a2d746985056e522f5d396e35bc13fd81ae58
24 DIST casync-2_p20190407.tar.gz 1315643 BLAKE2B 2cb52682d14a06844bb6d08d9c20d3e356fc40f464463151adee7c0446b64ba106ed29873d71d757452b3dd81095efb1b5d1014b294d58724e4c70bf404b47c2 SHA512 973b4cec8289e1223eced5794d5f6e7af25c60bd52d3c8932005ad0b55aebbebba78d5514ef7be4b3b92a76915d6e3f56bd53d797c2d72ffde2bba98f926bd3a
25
26 diff --git a/net-misc/casync/casync-2_p20180321-r1.ebuild b/net-misc/casync/casync-2_p20180321-r1.ebuild
27 deleted file mode 100644
28 index 2e1338a68f7..00000000000
29 --- a/net-misc/casync/casync-2_p20180321-r1.ebuild
30 +++ /dev/null
31 @@ -1,46 +0,0 @@
32 -# Copyright 1999-2018 Gentoo Foundation
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=6
36 -inherit vcs-snapshot meson
37 -
38 -COMMIT="a755da21d3ba5d9cbb002dfc86a3ab0d46b82176"
39 -DESCRIPTION=" Content-Addressable Data Synchronization Tool"
40 -HOMEPAGE="https://github.com/systemd/casync"
41 -SRC_URI="https://github.com/systemd/casync/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
42 -
43 -LICENSE="LGPL-2.1"
44 -SLOT="0"
45 -KEYWORDS="~amd64"
46 -IUSE="+fuse +udev man selinux test"
47 -
48 -RDEPEND="
49 - app-arch/xz-utils
50 - app-arch/zstd
51 - dev-libs/openssl:0
52 - net-misc/curl
53 - virtual/acl
54 - fuse? ( sys-fs/fuse:0 )
55 - selinux? ( sys-libs/libselinux )
56 - udev? ( virtual/libudev )
57 -"
58 -DEPEND="${RDEPEND}
59 - virtual/pkgconfig
60 - man? ( dev-python/sphinx )
61 -"
62 -
63 -src_configure() {
64 - local emesonargs=(
65 - -Dfuse="$(usex fuse true false)"
66 - -Dman="$(usex man true false)"
67 - -Dselinux="$(usex selinux true false)"
68 - -Dtests="$(usex test true false)"
69 - -Dudev="$(usex udev true false)"
70 - )
71 - meson_src_configure
72 -}
73 -
74 -src_install() {
75 - meson_src_install
76 - find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
77 -}