summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetr Vaněk <arkamar@gentoo.org>2024-09-18 18:47:05 +0200
committerPetr Vaněk <arkamar@gentoo.org>2024-09-18 19:37:23 +0200
commit607410bcbb5f0b776d54b32c23650950fad42e2d (patch)
tree549a51a6a5a50ced49da871a381043189b23492c /sys-fs/compsize/compsize-1.3.ebuild
parentsys-block/f3: drop 8.0 (diff)
downloadgentoo-607410bcbb5f0b776d54b32c23650950fad42e2d.tar.gz
gentoo-607410bcbb5f0b776d54b32c23650950fad42e2d.tar.bz2
gentoo-607410bcbb5f0b776d54b32c23650950fad42e2d.zip
sys-fs/compsize: drop 1.3, 1.4
Signed-off-by: Petr Vaněk <arkamar@gentoo.org>
Diffstat (limited to 'sys-fs/compsize/compsize-1.3.ebuild')
-rw-r--r--sys-fs/compsize/compsize-1.3.ebuild41
1 files changed, 0 insertions, 41 deletions
diff --git a/sys-fs/compsize/compsize-1.3.ebuild b/sys-fs/compsize/compsize-1.3.ebuild
deleted file mode 100644
index fc78e5b437fd..000000000000
--- a/sys-fs/compsize/compsize-1.3.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit flag-o-matic
-
-DESCRIPTION="Utility to find btrfs compression type/ratio on a file or set of files"
-HOMEPAGE="https://github.com/kilobyte/compsize"
-
-if [[ ${PV} = 9999 ]] ; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/kilobyte/compsize.git"
-else
- SRC_URI="https://github.com/kilobyte/compsize/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="amd64 x86"
-fi
-
-LICENSE="GPL-2+ GPL-2"
-IUSE="debug"
-SLOT="0"
-
-DEPEND="sys-fs/btrfs-progs"
-
-src_prepare() {
- default
- # Don't try to install a gzipped manfile during emake install
- sed -i -e $'s/\.gz//' -e $'s/gzip.*/install \-Dm755 \$\< \$\@/' Makefile || die
-}
-
-src_configure() {
- # Used in upstream Makefile, but clobbered by portage's CFLAGS
- append-cflags -Wall -std=gnu90
- use debug && append-cflags -DDEBUG -g
- default
-}
-
-src_install() {
- emake PREFIX="${D}" install
- dodoc "README.md"
-}