Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/duperemove/, sys-fs/duperemove/files/
Date: Thu, 06 Sep 2018 21:23:05
Message-Id: 1536268945.ac89044fb97344578813ecda30e493c770a6e9e0.mgorny@gentoo
1 commit: ac89044fb97344578813ecda30e493c770a6e9e0
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 6 20:54:41 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 6 21:22:25 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac89044f
7
8 sys-fs/duperemove: Clean old up
9
10 sys-fs/duperemove/Manifest | 2 --
11 sys-fs/duperemove/duperemove-0.10.ebuild | 33 ---------------------
12 sys-fs/duperemove/duperemove-0.11_beta4.ebuild | 34 ----------------------
13 .../files/duperemove-0.11_beta4-sysmacros.patch | 10 -------
14 4 files changed, 79 deletions(-)
15
16 diff --git a/sys-fs/duperemove/Manifest b/sys-fs/duperemove/Manifest
17 index e1eda63cf72..b6a7f81bb59 100644
18 --- a/sys-fs/duperemove/Manifest
19 +++ b/sys-fs/duperemove/Manifest
20 @@ -1,3 +1 @@
21 -DIST duperemove-0.10.tar.gz 95656 BLAKE2B d52916f21f48a929db98a4cb132b41030b4f8b884851242690aad8b0b4faef12bb176aee51bb16cab940495d033b2467e0572e0b54d9533c920b8da4d3a1f719 SHA512 11bb1a9937b9ca7969b9176bb4cfc8fff91c257a8645baa0ca0ec6b634ae3c464712414f856d5a75ed16c6d13f0ae85ac3584df1f474575a975cb20ae0d7a9f1
22 -DIST duperemove-0.11.beta4.tar.gz 114532 BLAKE2B 76301204c87c0978421ede7652dbb9cbc273f5ef4a99c709517b1421ec7bb94bafed9465a744c9a42c74c6ee936de1a1e5510a58ed36c7ec783436cefeacec69 SHA512 e3879f558026a11d34c996243eeeab267bebec508a0bafa76ad563fe81c3bf911650745f27bd449c4d788c302b08324bb780e4d86dc5996678e06a1df233a286
23 DIST duperemove-0.11.tar.gz 115307 BLAKE2B 39fa9f80c017583c8943a5cddd1c69f38216adad26548c248e1877548717995d7b80f03f0e1c1515648aaad90996c80c224bb36fa27f13fe14fb22a123facf48 SHA512 b1bc2beb92223f9b46f8838e2f983ec763a9dff302f4202a34cc5e10591b985519f0464b6eba566c56872e671ba80583c7fdf4a232325086141d011384a286cf
24
25 diff --git a/sys-fs/duperemove/duperemove-0.10.ebuild b/sys-fs/duperemove/duperemove-0.10.ebuild
26 deleted file mode 100644
27 index fc9db47deae..00000000000
28 --- a/sys-fs/duperemove/duperemove-0.10.ebuild
29 +++ /dev/null
30 @@ -1,33 +0,0 @@
31 -# Copyright 1999-2015 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=5
35 -
36 -inherit eutils toolchain-funcs
37 -
38 -DESCRIPTION="Btrfs deduplication utility"
39 -HOMEPAGE="https://github.com/markfasheh/duperemove"
40 -SRC_URI="https://github.com/markfasheh/duperemove/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41 -
42 -# includes code from libbloom, xxhash (BSD-2)
43 -# includes code from polarssl (GPL-2+)
44 -LICENSE="GPL-2 GPL-2+ BSD-2"
45 -SLOT="0"
46 -KEYWORDS="~amd64"
47 -IUSE=""
48 -
49 -RDEPEND="
50 - dev-db/sqlite:3=
51 - dev-libs/glib:2="
52 -DEPEND="${RDEPEND}"
53 -
54 -src_compile() {
55 - # CC & CFLAGS are set via = so need to override them
56 - # LIBRARY_FLAGS are set via += so need to pass them via env
57 - local -x LIBRARY_FLAGS="${LDFLAGS}"
58 - emake CC="$(tc-getCC)" CFLAGS="${CFLAGS} -Wall"
59 -}
60 -
61 -src_install() {
62 - emake DESTDIR="${D}" PREFIX="/usr" install
63 -}
64
65 diff --git a/sys-fs/duperemove/duperemove-0.11_beta4.ebuild b/sys-fs/duperemove/duperemove-0.11_beta4.ebuild
66 deleted file mode 100644
67 index 281d0698988..00000000000
68 --- a/sys-fs/duperemove/duperemove-0.11_beta4.ebuild
69 +++ /dev/null
70 @@ -1,34 +0,0 @@
71 -# Copyright 1999-2017 Gentoo Foundation
72 -# Distributed under the terms of the GNU General Public License v2
73 -
74 -EAPI=6
75 -
76 -inherit toolchain-funcs
77 -
78 -DESCRIPTION="Btrfs deduplication utility"
79 -HOMEPAGE="https://github.com/markfasheh/duperemove"
80 -SRC_URI="https://github.com/markfasheh/duperemove/archive/v${PV/_/.}.tar.gz -> ${P/_/.}.tar.gz"
81 -
82 -# includes code from libbloom, xxhash (BSD-2)
83 -# includes code from polarssl (GPL-2+)
84 -LICENSE="GPL-2 GPL-2+ BSD-2"
85 -SLOT="0"
86 -KEYWORDS="~amd64 ~x86"
87 -IUSE=""
88 -
89 -RDEPEND="
90 - dev-db/sqlite:3=
91 - dev-libs/glib:2="
92 -DEPEND="${RDEPEND}"
93 -
94 -S=${WORKDIR}/${P/_/.}
95 -
96 -PATCHES=( "${FILESDIR}/${P}-sysmacros.patch" )
97 -
98 -src_compile() {
99 - emake CC="$(tc-getCC)" CFLAGS="${CFLAGS} -Wall"
100 -}
101 -
102 -src_install() {
103 - emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
104 -}
105
106 diff --git a/sys-fs/duperemove/files/duperemove-0.11_beta4-sysmacros.patch b/sys-fs/duperemove/files/duperemove-0.11_beta4-sysmacros.patch
107 deleted file mode 100644
108 index 6355f5e9146..00000000000
109 --- a/sys-fs/duperemove/files/duperemove-0.11_beta4-sysmacros.patch
110 +++ /dev/null
111 @@ -1,10 +0,0 @@
112 ---- a/dbfile.c 2016-09-27 22:28:49.000000000 +0200
113 -+++ b/dbfile.c 2017-08-17 18:23:30.768591897 +0200
114 -@@ -8,6 +8,7 @@
115 - #include <inttypes.h>
116 - #include <stddef.h>
117 - #include <sys/types.h>
118 -+#include <sys/sysmacros.h>
119 -
120 - #include "csum.h"
121 - #include "filerec.h"