summaryrefslogtreecommitdiff
path: root/sys-fs
diff options
context:
space:
mode:
authorTheo Anderson <telans@posteo.de>2020-10-29 12:21:47 +1300
committerJoonas Niilola <juippis@gentoo.org>2020-10-31 17:58:44 +0200
commit0ab856f3acb9a26e451ab48022c82d8f8dfe5356 (patch)
tree490c98b0c0b3812bb918181c36f11c9550bf8ecd /sys-fs
parentgui-wm/hikari: drop old version (diff)
downloadgentoo-0ab856f3acb9a26e451ab48022c82d8f8dfe5356.tar.gz
gentoo-0ab856f3acb9a26e451ab48022c82d8f8dfe5356.tar.bz2
gentoo-0ab856f3acb9a26e451ab48022c82d8f8dfe5356.zip
sys-fs/compsize: drop old
Package-Manager: Portage-3.0.8, Repoman-3.0.2 Signed-off-by: Theo Anderson <telans@posteo.de> Closes: https://github.com/gentoo/gentoo/pull/18063 Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'sys-fs')
-rw-r--r--sys-fs/compsize/Manifest1
-rw-r--r--sys-fs/compsize/compsize-1.1.ebuild41
2 files changed, 0 insertions, 42 deletions
diff --git a/sys-fs/compsize/Manifest b/sys-fs/compsize/Manifest
index 2592ff9be8b7..79e2201e8b0f 100644
--- a/sys-fs/compsize/Manifest
+++ b/sys-fs/compsize/Manifest
@@ -1,2 +1 @@
-DIST compsize-1.1.tar.gz 14345 BLAKE2B 8b35e6f3526b8b2395972ea1a595011b867fbc076d79c90c66a19853f1b101dbe3decedab8244d893b20d6cc9ff3ecfa2b3320fc12c583415b2d446a9298fcb1 SHA512 1c7de5156b695ffa4be9b634fd6224214d3de1653eb23e5d85b250e27146fe655883bed17ed458bae1b448ed9ae8a254d2a673fdb3860e69c99f8676daea0d8b
DIST compsize-1.3.tar.gz 14782 BLAKE2B 738ff0e2b936f5974064759914284e495c895d22d95b705e1b8fac4b3189891771b0e5be7e0eeac0883dd92f9cef276400bb7ee79840fd7db14a5269e7f78f11 SHA512 411b92651fdc3d03deccbf38f72936fee95cf80c67d6368efbc0dafacfe9793815a23ef0d02f7feadf31391e415df3d90cd19fb3acc8cce94f37cb3e4eed623d
diff --git a/sys-fs/compsize/compsize-1.1.ebuild b/sys-fs/compsize/compsize-1.1.ebuild
deleted file mode 100644
index ad73046823bd..000000000000
--- a/sys-fs/compsize/compsize-1.1.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit flag-o-matic
-
-DESCRIPTION="Utility to find btrfs compression ratio"
-HOMEPAGE="https://github.com/kilobyte/compsize"
-
-if [[ ${PV} = 9999 ]] ; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/kilobyte/compsize"
-else
- KEYWORDS="~amd64 ~x86"
- SRC_URI="https://github.com/kilobyte/compsize/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-fi
-
-LICENSE="GPL-2+"
-SLOT=0
-
-RDEPEND=""
-DEPEND="sys-fs/btrfs-progs"
-
-src_prepare() {
- eapply_user
- # Don't try to install a gzipped manfile during make install, instead
- # use doman in src_install to ensure that PORTAGE_COMPRESS is used
- sed -i $'/^\tgzip /d' Makefile || die
-}
-
-src_configure() {
- # Used in upstream Makefile, but clobbered by portage's CFLAGS
- append-cflags -Wall -std=gnu90
- default
-}
-
-src_install() {
- emake PREFIX="${ED%/}" install
- doman compsize.8
- einstalldocs
-}