Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/miller/
Date: Fri, 29 Apr 2022 10:21:59
Message-Id: 1651227662.84387c87659d5e7d38f88e577d7fb73e0193f815.sam@gentoo
1 commit: 84387c87659d5e7d38f88e577d7fb73e0193f815
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 29 09:36:05 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 29 10:21:02 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84387c87
7
8 sys-apps/miller: drop 5.10.0, 5.10.1
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 sys-apps/miller/Manifest | 2 --
13 sys-apps/miller/miller-5.10.0.ebuild | 48 ------------------------------------
14 sys-apps/miller/miller-5.10.1.ebuild | 48 ------------------------------------
15 3 files changed, 98 deletions(-)
16
17 diff --git a/sys-apps/miller/Manifest b/sys-apps/miller/Manifest
18 index 8cf7fa7dc025..fc55dd8aca9d 100644
19 --- a/sys-apps/miller/Manifest
20 +++ b/sys-apps/miller/Manifest
21 @@ -1,3 +1 @@
22 -DIST miller-5.10.0.tar.gz 6793426 BLAKE2B 25ec96e29ee8d913feffd6e9a54cd2d494c9050e180556ed462a6d94a6adaaea88dbdbc09b4753f8888673bdc33a1f0aa43f9dac37bdc3c25191b2a565fe8847 SHA512 a7cbaee9ad4075d27e74ab3a60297164c535ea2bc1e38128174f4f226ad061850d37108e7d7547821b7e6667cb9a024639795d7678b1897fedf6ee15d6064538
23 -DIST miller-5.10.1.tar.gz 6158587 BLAKE2B f22db3ccd29e0ff99e3f287e7e4382d679bba2c4d8e0fef3f3c086fa11ffbb287c22fc69c23f3baf647c2e5ac020d73f55ee613b0bb71273d7f94a5fe9561ea5 SHA512 32ec8216ea9c73c20b5c22fa047535c37f52a0d3c3c1100b090c57011cd555cae57a56425dfb0eaf0d09d41d82dbea3ad78a182ec8b538e194599b754f562961
24 DIST miller-5.10.2.tar.gz 6192382 BLAKE2B 73daf0ca8a5417890e060b04103c4542f1122c13a9a13271dc53e94c4fdf0610dcad5ab04729326fd4ab72b47673db9fdf5aacc5a4ca5330c3220046e4d8a38b SHA512 be40611b055d94f3b0ef75b35dfd242dd4942dce3292bb01b48a6a12f9e4c09fc43bb9d0650902c7aa13328d9a2bbcea4da2964af58d07f39ae63b34712a45f5
25
26 diff --git a/sys-apps/miller/miller-5.10.0.ebuild b/sys-apps/miller/miller-5.10.0.ebuild
27 deleted file mode 100644
28 index e7b6e45d36af..000000000000
29 --- a/sys-apps/miller/miller-5.10.0.ebuild
30 +++ /dev/null
31 @@ -1,48 +0,0 @@
32 -# Copyright 1999-2021 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=7
36 -
37 -inherit autotools
38 -
39 -DESCRIPTION="A tool like sed, awk, cut, join, and sort for name-indexed data (CSV, JSON, ..)"
40 -HOMEPAGE="https://johnkerl.org/miller/doc/index.html"
41 -SRC_URI="https://github.com/johnkerl/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 -
43 -LICENSE="BSD-2"
44 -SLOT="0"
45 -KEYWORDS="amd64 arm x86"
46 -IUSE="doc test"
47 -RESTRICT="!test? ( test )"
48 -
49 -DEPEND="sys-devel/flex"
50 -
51 -src_prepare() {
52 - default
53 -
54 - # respect flags
55 - find -type f -name "Makefile.am" -exec sed -i -r -e '/.*FLAGS[^=]*=/ s:(-g|-pg|-O[0-9]) ::g' -- {} \; || die
56 -
57 - # disable docs rebuilding as they're shipped prebuilt
58 - sed -e '/SUBDIRS[^=]*=/ s:doc::g' -i -- Makefile.am || die
59 -
60 - # disable building tests automagically
61 - if ! use test; then
62 - sed -e '/SUBDIRS[^=]*=/ s:[^ ]*_test::g' -i -- c/Makefile.am || die
63 - fi
64 -
65 - eautoreconf
66 -}
67 -
68 -src_test() {
69 - emake -C c/reg_test
70 - emake -C c/unit_test
71 -}
72 -
73 -src_install() {
74 - local HTML_DOCS=( $(usev doc) )
75 -
76 - default
77 -
78 - doman 'docs/mlr.1'
79 -}
80
81 diff --git a/sys-apps/miller/miller-5.10.1.ebuild b/sys-apps/miller/miller-5.10.1.ebuild
82 deleted file mode 100644
83 index 4f24e895c456..000000000000
84 --- a/sys-apps/miller/miller-5.10.1.ebuild
85 +++ /dev/null
86 @@ -1,48 +0,0 @@
87 -# Copyright 1999-2021 Gentoo Authors
88 -# Distributed under the terms of the GNU General Public License v2
89 -
90 -EAPI=7
91 -
92 -inherit autotools
93 -
94 -DESCRIPTION="A tool like sed, awk, cut, join, and sort for name-indexed data (CSV, JSON, ..)"
95 -HOMEPAGE="https://johnkerl.org/miller/doc/index.html"
96 -SRC_URI="https://github.com/johnkerl/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
97 -
98 -LICENSE="BSD-2"
99 -SLOT="0"
100 -KEYWORDS="~amd64 ~arm ~x86"
101 -IUSE="doc test"
102 -RESTRICT="!test? ( test )"
103 -
104 -DEPEND="sys-devel/flex"
105 -
106 -src_prepare() {
107 - default
108 -
109 - # Respect flags
110 - find -type f -name "Makefile.am" -exec sed -i -r -e '/.*FLAGS[^=]*=/ s:(-g|-pg|-O[0-9]) ::g' -- {} \; || die
111 -
112 - # Disable docs rebuilding as they're shipped prebuilt
113 - sed -e '/SUBDIRS[^=]*=/ s:doc::g' -i -- Makefile.am || die
114 -
115 - # Disable building tests automagically
116 - if ! use test; then
117 - sed -e '/SUBDIRS[^=]*=/ s:[^ ]*_test::g' -i -- c/Makefile.am || die
118 - fi
119 -
120 - eautoreconf
121 -}
122 -
123 -src_test() {
124 - emake -C c/reg_test
125 - emake -C c/unit_test
126 -}
127 -
128 -src_install() {
129 - local HTML_DOCS=( $(usev doc) )
130 -
131 - default
132 -
133 - doman docs/mlr.1
134 -}