summaryrefslogtreecommitdiff
path: root/sys-fs
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2018-09-06 22:54:41 +0200
committerMichał Górny <mgorny@gentoo.org>2018-09-06 23:22:25 +0200
commitac89044fb97344578813ecda30e493c770a6e9e0 (patch)
tree8508f505546f54c245e313630e1bd53e2fc9a563 /sys-fs
parentsys-auth/nss-mdns: Clean old up (diff)
downloadgentoo-ac89044fb97344578813ecda30e493c770a6e9e0.tar.gz
gentoo-ac89044fb97344578813ecda30e493c770a6e9e0.tar.bz2
gentoo-ac89044fb97344578813ecda30e493c770a6e9e0.zip
sys-fs/duperemove: Clean old up
Diffstat (limited to 'sys-fs')
-rw-r--r--sys-fs/duperemove/Manifest2
-rw-r--r--sys-fs/duperemove/duperemove-0.10.ebuild33
-rw-r--r--sys-fs/duperemove/duperemove-0.11_beta4.ebuild34
-rw-r--r--sys-fs/duperemove/files/duperemove-0.11_beta4-sysmacros.patch10
4 files changed, 0 insertions, 79 deletions
diff --git a/sys-fs/duperemove/Manifest b/sys-fs/duperemove/Manifest
index e1eda63cf72b..b6a7f81bb59a 100644
--- a/sys-fs/duperemove/Manifest
+++ b/sys-fs/duperemove/Manifest
@@ -1,3 +1 @@
-DIST duperemove-0.10.tar.gz 95656 BLAKE2B d52916f21f48a929db98a4cb132b41030b4f8b884851242690aad8b0b4faef12bb176aee51bb16cab940495d033b2467e0572e0b54d9533c920b8da4d3a1f719 SHA512 11bb1a9937b9ca7969b9176bb4cfc8fff91c257a8645baa0ca0ec6b634ae3c464712414f856d5a75ed16c6d13f0ae85ac3584df1f474575a975cb20ae0d7a9f1
-DIST duperemove-0.11.beta4.tar.gz 114532 BLAKE2B 76301204c87c0978421ede7652dbb9cbc273f5ef4a99c709517b1421ec7bb94bafed9465a744c9a42c74c6ee936de1a1e5510a58ed36c7ec783436cefeacec69 SHA512 e3879f558026a11d34c996243eeeab267bebec508a0bafa76ad563fe81c3bf911650745f27bd449c4d788c302b08324bb780e4d86dc5996678e06a1df233a286
DIST duperemove-0.11.tar.gz 115307 BLAKE2B 39fa9f80c017583c8943a5cddd1c69f38216adad26548c248e1877548717995d7b80f03f0e1c1515648aaad90996c80c224bb36fa27f13fe14fb22a123facf48 SHA512 b1bc2beb92223f9b46f8838e2f983ec763a9dff302f4202a34cc5e10591b985519f0464b6eba566c56872e671ba80583c7fdf4a232325086141d011384a286cf
diff --git a/sys-fs/duperemove/duperemove-0.10.ebuild b/sys-fs/duperemove/duperemove-0.10.ebuild
deleted file mode 100644
index fc9db47deaec..000000000000
--- a/sys-fs/duperemove/duperemove-0.10.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="Btrfs deduplication utility"
-HOMEPAGE="https://github.com/markfasheh/duperemove"
-SRC_URI="https://github.com/markfasheh/duperemove/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-# includes code from libbloom, xxhash (BSD-2)
-# includes code from polarssl (GPL-2+)
-LICENSE="GPL-2 GPL-2+ BSD-2"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-RDEPEND="
- dev-db/sqlite:3=
- dev-libs/glib:2="
-DEPEND="${RDEPEND}"
-
-src_compile() {
- # CC & CFLAGS are set via = so need to override them
- # LIBRARY_FLAGS are set via += so need to pass them via env
- local -x LIBRARY_FLAGS="${LDFLAGS}"
- emake CC="$(tc-getCC)" CFLAGS="${CFLAGS} -Wall"
-}
-
-src_install() {
- emake DESTDIR="${D}" PREFIX="/usr" install
-}
diff --git a/sys-fs/duperemove/duperemove-0.11_beta4.ebuild b/sys-fs/duperemove/duperemove-0.11_beta4.ebuild
deleted file mode 100644
index 281d0698988b..000000000000
--- a/sys-fs/duperemove/duperemove-0.11_beta4.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit toolchain-funcs
-
-DESCRIPTION="Btrfs deduplication utility"
-HOMEPAGE="https://github.com/markfasheh/duperemove"
-SRC_URI="https://github.com/markfasheh/duperemove/archive/v${PV/_/.}.tar.gz -> ${P/_/.}.tar.gz"
-
-# includes code from libbloom, xxhash (BSD-2)
-# includes code from polarssl (GPL-2+)
-LICENSE="GPL-2 GPL-2+ BSD-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="
- dev-db/sqlite:3=
- dev-libs/glib:2="
-DEPEND="${RDEPEND}"
-
-S=${WORKDIR}/${P/_/.}
-
-PATCHES=( "${FILESDIR}/${P}-sysmacros.patch" )
-
-src_compile() {
- emake CC="$(tc-getCC)" CFLAGS="${CFLAGS} -Wall"
-}
-
-src_install() {
- emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
-}
diff --git a/sys-fs/duperemove/files/duperemove-0.11_beta4-sysmacros.patch b/sys-fs/duperemove/files/duperemove-0.11_beta4-sysmacros.patch
deleted file mode 100644
index 6355f5e9146f..000000000000
--- a/sys-fs/duperemove/files/duperemove-0.11_beta4-sysmacros.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- a/dbfile.c 2016-09-27 22:28:49.000000000 +0200
-+++ b/dbfile.c 2017-08-17 18:23:30.768591897 +0200
-@@ -8,6 +8,7 @@
- #include <inttypes.h>
- #include <stddef.h>
- #include <sys/types.h>
-+#include <sys/sysmacros.h>
-
- #include "csum.h"
- #include "filerec.h"