Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/compsize/
Date: Sat, 31 Oct 2020 15:59:05
Message-Id: 1604159924.0ab856f3acb9a26e451ab48022c82d8f8dfe5356.juippis@gentoo
1 commit: 0ab856f3acb9a26e451ab48022c82d8f8dfe5356
2 Author: Theo Anderson <telans <AT> posteo <DOT> de>
3 AuthorDate: Wed Oct 28 23:21:47 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 31 15:58:44 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ab856f3
7
8 sys-fs/compsize: drop old
9
10 Package-Manager: Portage-3.0.8, Repoman-3.0.2
11 Signed-off-by: Theo Anderson <telans <AT> posteo.de>
12 Closes: https://github.com/gentoo/gentoo/pull/18063
13 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
14
15 sys-fs/compsize/Manifest | 1 -
16 sys-fs/compsize/compsize-1.1.ebuild | 41 -------------------------------------
17 2 files changed, 42 deletions(-)
18
19 diff --git a/sys-fs/compsize/Manifest b/sys-fs/compsize/Manifest
20 index 2592ff9be8b..79e2201e8b0 100644
21 --- a/sys-fs/compsize/Manifest
22 +++ b/sys-fs/compsize/Manifest
23 @@ -1,2 +1 @@
24 -DIST compsize-1.1.tar.gz 14345 BLAKE2B 8b35e6f3526b8b2395972ea1a595011b867fbc076d79c90c66a19853f1b101dbe3decedab8244d893b20d6cc9ff3ecfa2b3320fc12c583415b2d446a9298fcb1 SHA512 1c7de5156b695ffa4be9b634fd6224214d3de1653eb23e5d85b250e27146fe655883bed17ed458bae1b448ed9ae8a254d2a673fdb3860e69c99f8676daea0d8b
25 DIST compsize-1.3.tar.gz 14782 BLAKE2B 738ff0e2b936f5974064759914284e495c895d22d95b705e1b8fac4b3189891771b0e5be7e0eeac0883dd92f9cef276400bb7ee79840fd7db14a5269e7f78f11 SHA512 411b92651fdc3d03deccbf38f72936fee95cf80c67d6368efbc0dafacfe9793815a23ef0d02f7feadf31391e415df3d90cd19fb3acc8cce94f37cb3e4eed623d
26
27 diff --git a/sys-fs/compsize/compsize-1.1.ebuild b/sys-fs/compsize/compsize-1.1.ebuild
28 deleted file mode 100644
29 index ad73046823b..00000000000
30 --- a/sys-fs/compsize/compsize-1.1.ebuild
31 +++ /dev/null
32 @@ -1,41 +0,0 @@
33 -# Copyright 1999-2018 Gentoo Foundation
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=6
37 -inherit flag-o-matic
38 -
39 -DESCRIPTION="Utility to find btrfs compression ratio"
40 -HOMEPAGE="https://github.com/kilobyte/compsize"
41 -
42 -if [[ ${PV} = 9999 ]] ; then
43 - inherit git-r3
44 - EGIT_REPO_URI="https://github.com/kilobyte/compsize"
45 -else
46 - KEYWORDS="~amd64 ~x86"
47 - SRC_URI="https://github.com/kilobyte/compsize/archive/v${PV}.tar.gz -> ${P}.tar.gz"
48 -fi
49 -
50 -LICENSE="GPL-2+"
51 -SLOT=0
52 -
53 -RDEPEND=""
54 -DEPEND="sys-fs/btrfs-progs"
55 -
56 -src_prepare() {
57 - eapply_user
58 - # Don't try to install a gzipped manfile during make install, instead
59 - # use doman in src_install to ensure that PORTAGE_COMPRESS is used
60 - sed -i $'/^\tgzip /d' Makefile || die
61 -}
62 -
63 -src_configure() {
64 - # Used in upstream Makefile, but clobbered by portage's CFLAGS
65 - append-cflags -Wall -std=gnu90
66 - default
67 -}
68 -
69 -src_install() {
70 - emake PREFIX="${ED%/}" install
71 - doman compsize.8
72 - einstalldocs
73 -}