Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/miller/
Date: Sun, 16 Apr 2017 22:00:50
Message-Id: 1492380016.661eef92a12a3eedf2289240fdcbe9049f7cdf9e.monsieurp@gentoo
1 commit: 661eef92a12a3eedf2289240fdcbe9049f7cdf9e
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 16 22:00:16 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 16 22:00:16 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=661eef92
7
8 sys-apps/miller: clean up old.
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 sys-apps/miller/Manifest | 1 -
13 sys-apps/miller/miller-4.0.0.ebuild | 58 -------------------------------------
14 2 files changed, 59 deletions(-)
15
16 diff --git a/sys-apps/miller/Manifest b/sys-apps/miller/Manifest
17 index b6205c2fad1..6aba52941f4 100644
18 --- a/sys-apps/miller/Manifest
19 +++ b/sys-apps/miller/Manifest
20 @@ -1,2 +1 @@
21 -DIST miller-4.0.0.tar.gz 3320261 SHA256 c702eb3423e96fb2f39d6339117fd7678ac1b63258d0bd9b8c76859993ec1a0c SHA512 13612c18ad1d995797a760618fe4ca44c845c03f35df79cc5e981fd9d224ba60b0f3dc57ae454d32877711d216b32de5c22520cd9906f9866a5b59a3f488edb2 WHIRLPOOL d6b7851436572ba1dfb83fac362408195d242065d5547e85363a809514bafab2d5085da1813048fa34616ecf879bf9b026630567e672b152dcfa26e427d99f1a
22 DIST miller-4.2.0.tar.gz 3373505 SHA256 2758a2364daad8672c4da85698b328f20178539d5f5d5866b19518cce1c83487 SHA512 f176dc2ce4e733ac1e4e331f17554d4ed089344a5f571bcc9d4b3b227f6c950fa0355f1a5b934e4f9467d9a22448e2842c586a4e6c424a98ec89170cd70b1714 WHIRLPOOL 8514bc6bde3cd3598caeb6e123ff7cec26a464818f6be43ddb51e43c8cee25f42403b3355ad5cfd11355788b8824ee497a12fb1172620935a17b28979f62fad2
23
24 diff --git a/sys-apps/miller/miller-4.0.0.ebuild b/sys-apps/miller/miller-4.0.0.ebuild
25 deleted file mode 100644
26 index 213ada480f4..00000000000
27 --- a/sys-apps/miller/miller-4.0.0.ebuild
28 +++ /dev/null
29 @@ -1,58 +0,0 @@
30 -# Copyright 1999-2016 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -inherit autotools
36 -
37 -DESCRIPTION="A tool like sed, awk, cut, join, and sort for name-indexed data (CSV, JSON, ..)"
38 -HOMEPAGE="http://johnkerl.org/miller"
39 -LICENSE="BSD-2"
40 -
41 -SLOT="0"
42 -SRC_URI="https://github.com/johnkerl/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 -
44 -KEYWORDS="~amd64 ~arm ~x86"
45 -IUSE="doc test"
46 -
47 -DEPEND="sys-devel/flex"
48 -
49 -my_for_each_test_dir() {
50 - local test_dirs=( c/{reg,unit}_test )
51 - if use test ; then
52 - for d in "${test_dirs[@]}" ; do
53 - pushd "${d}" >/dev/null || die
54 - "${@}" || die
55 - popd >/dev/null || die
56 - done
57 - fi
58 -}
59 -
60 -src_prepare() {
61 - default
62 -
63 - local sed_args=(
64 - # respect FLAGS
65 - -e '/.*FLAGS[^=]*=/ s:(-g|-pg|-O[0-9]) ::g'
66 - )
67 - find -type f -name "Makefile.am" | xargs sed -r "${sed_args[@]}" -i --
68 - assert
69 -
70 - # disable docs rebuilding as they're shipped prebuilt
71 - sed -e '/SUBDIRS[^=]*=/ s:doc::g' -i -- Makefile.am || die
72 -
73 - # disable building tests automagically
74 - use test || sed -e '/SUBDIRS[^=]*=/ s:[^ ]*_test::g' -i -- c/Makefile.am || die
75 -
76 - eautoreconf
77 -}
78 -
79 -src_test() {
80 - my_for_each_test_dir emake check
81 -}
82 -
83 -src_install() {
84 - local HTML_DOCS=( $(usev doc) )
85 -
86 - default
87 -}