Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/dfc/
Date: Mon, 31 Dec 2018 21:14:54
Message-Id: 1546290825.2d344b93bc543db87899e1f3eaf5fa560c619de0.asturm@gentoo
1 commit: 2d344b93bc543db87899e1f3eaf5fa560c619de0
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Mon Dec 31 19:40:21 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 31 21:13:45 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d344b93
7
8 sys-fs/dfc: Drop 3.0.5-r1
9
10 3.1.1 is stable, EAPI5--.
11
12 Package-Manager: Portage-2.3.52, Repoman-2.3.12
13 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
14
15 sys-fs/dfc/Manifest | 1 -
16 sys-fs/dfc/dfc-3.0.5-r1.ebuild | 35 -----------------------------------
17 2 files changed, 36 deletions(-)
18
19 diff --git a/sys-fs/dfc/Manifest b/sys-fs/dfc/Manifest
20 index ffa0c242023..f9e4f873c30 100644
21 --- a/sys-fs/dfc/Manifest
22 +++ b/sys-fs/dfc/Manifest
23 @@ -1,2 +1 @@
24 -DIST dfc-3.0.5.tar.gz 43310 BLAKE2B 4698c5f5caf249695598b01dab471c978e9a5b83b2c1610af466588bbac182ea7f51a7017d6be0b0f753f1abf41b7aa054e67049ff74344271c2dc5c01a8ef02 SHA512 f828ede8aee0a496518d1ee9583ba71495cdd01ee0d22833e3b46aeb5f5f870ce7de629923d129a7bf795b458feec10f9a16882134dae34dd2ace7ea9eebb134
25 DIST dfc-3.1.1.tar.gz 52709 BLAKE2B 543795af9c0f3309ee497bc0bdfe144bec3cac69b4772803204d794acb9513e7f7b2726ea16640492a6c477f5c3c7fa872284efd5b7c690bf1bfde4608f7281d SHA512 eac2c8d464d57626efe939f515889cf91510f7e6eb50382d045204d4f1d6b9b9f0af4b1d8974c9cbcff1eb5b8802157e421ec06e5a1e38dac74eba72f43f9701
26
27 diff --git a/sys-fs/dfc/dfc-3.0.5-r1.ebuild b/sys-fs/dfc/dfc-3.0.5-r1.ebuild
28 deleted file mode 100644
29 index 83460b87e30..00000000000
30 --- a/sys-fs/dfc/dfc-3.0.5-r1.ebuild
31 +++ /dev/null
32 @@ -1,35 +0,0 @@
33 -# Copyright 1999-2018 Gentoo Foundation
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=5
37 -inherit cmake-utils
38 -
39 -DESCRIPTION="A simple CLI tool that display file system usage, with colors"
40 -HOMEPAGE="http://projects.gw-computing.net/projects/dfc"
41 -SRC_URI="http://projects.gw-computing.net/attachments/download/467/${P}.tar.gz"
42 -
43 -LICENSE="BSD"
44 -SLOT="0"
45 -KEYWORDS="amd64 ~arm x86"
46 -IUSE="nls"
47 -
48 -DEPEND="nls? (
49 - virtual/libintl
50 - sys-devel/gettext
51 -)"
52 -RDEPEND="nls? ( virtual/libintl )"
53 -
54 -src_configure() {
55 - mycmakeargs=(
56 - # avoid installing xdg config in /usr
57 - -DXDG_CONFIG_DIR="${EPREFIX}"/etc/xdg
58 - # use the standard Gentoo doc path
59 - -DDFC_DOC_PATH="${EPREFIX}"/usr/share/doc/${PF}
60 - # disable automagic dependency
61 - $(cmake-utils_use nls NLS_ENABLED)
62 - -DLFS_ENABLED=ON
63 - -DGRIM=OFF
64 - )
65 -
66 - cmake-utils_src_configure
67 -}