* [gentoo-commits] repo/gentoo:master commit in: sys-apps/miller/
@ 2016-05-19 1:37 Ian Delaney
0 siblings, 0 replies; 24+ messages in thread
From: Ian Delaney @ 2016-05-19 1:37 UTC (permalink / raw
To: gentoo-commits
commit: 0b6c7701bc3aa2884adf4c5507fd80bccd69c967
Author: Jan Chren <dev.rindeal <AT> gmail <DOT> com>
AuthorDate: Wed May 18 12:48:27 2016 +0000
Commit: Ian Delaney <idella4 <AT> gentoo <DOT> org>
CommitDate: Thu May 19 01:36:19 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b6c7701
sys-apps/miller: new package, initial vn. 4.0.0
To be maintained under the Proxy Maintainers Project
Initial ebuild / git patch submitted via the pull request
Closes: https://github.com/gentoo/gentoo/pull/1484
Signed-off-by: Ian Delaney <idella4 <AT> gentoo.org>
sys-apps/miller/Manifest | 1 +
sys-apps/miller/metadata.xml | 12 ++++++++
sys-apps/miller/miller-4.0.0.ebuild | 59 +++++++++++++++++++++++++++++++++++++
3 files changed, 72 insertions(+)
diff --git a/sys-apps/miller/Manifest b/sys-apps/miller/Manifest
new file mode 100644
index 0000000..945c2fb
--- /dev/null
+++ b/sys-apps/miller/Manifest
@@ -0,0 +1 @@
+DIST miller-4.0.0.tar.gz 3320261 SHA256 c702eb3423e96fb2f39d6339117fd7678ac1b63258d0bd9b8c76859993ec1a0c SHA512 13612c18ad1d995797a760618fe4ca44c845c03f35df79cc5e981fd9d224ba60b0f3dc57ae454d32877711d216b32de5c22520cd9906f9866a5b59a3f488edb2 WHIRLPOOL d6b7851436572ba1dfb83fac362408195d242065d5547e85363a809514bafab2d5085da1813048fa34616ecf879bf9b026630567e672b152dcfa26e427d99f1a
diff --git a/sys-apps/miller/metadata.xml b/sys-apps/miller/metadata.xml
new file mode 100644
index 0000000..ce15c23
--- /dev/null
+++ b/sys-apps/miller/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<maintainer type="person">
+ <email>dev.rindeal+gentoo@gmail.com</email>
+ <name>Jan Chren (rindeal)</name>
+</maintainer>
+<maintainer type="project">
+ <email>proxy-maint@gentoo.org</email>
+ <name>Proxy Maintainers</name>
+</maintainer>
+</pkgmetadata>
diff --git a/sys-apps/miller/miller-4.0.0.ebuild b/sys-apps/miller/miller-4.0.0.ebuild
new file mode 100644
index 0000000..add619a
--- /dev/null
+++ b/sys-apps/miller/miller-4.0.0.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit autotools
+
+DESCRIPTION="A tool like sed, awk, cut, join, and sort for name-indexed data (CSV, JSON, ..)"
+HOMEPAGE="http://johnkerl.org/miller"
+LICENSE="BSD-2"
+
+SLOT="0"
+SRC_URI="https://github.com/johnkerl/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="doc test"
+
+DEPEND="sys-devel/flex"
+
+my_for_each_test_dir() {
+ local test_dirs=( c/{reg,unit}_test )
+ if use test ; then
+ for d in "${test_dirs[@]}" ; do
+ pushd "${d}" >/dev/null || die
+ "${@}" || die
+ popd >/dev/null || die
+ done
+ fi
+}
+
+src_prepare() {
+ default
+
+ local sed_args=(
+ # respect FLAGS
+ -e '/.*FLAGS[^=]*=/ s:(-g|-pg|-O[0-9]) ::g'
+ )
+ find -type f -name "Makefile.am" | xargs sed -r "${sed_args[@]}" -i --
+ assert
+
+ # disable docs rebuilding as they're shipped prebuilt
+ sed -e '/SUBDIRS[^=]*=/ s:doc::g' -i -- Makefile.am || die
+
+ # disable building tests automagically
+ use test || sed -e '/SUBDIRS[^=]*=/ s:[^ ]*_test::g' -i -- c/Makefile.am || die
+
+ eautoreconf
+}
+
+src_test() {
+ my_for_each_test_dir emake check
+}
+
+src_install() {
+ local HTML_DOCS=( $(usev doc) )
+
+ default
+}
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/miller/
@ 2016-05-29 15:30 Kristian Fiskerstrand
0 siblings, 0 replies; 24+ messages in thread
From: Kristian Fiskerstrand @ 2016-05-29 15:30 UTC (permalink / raw
To: gentoo-commits
commit: c596a9f3b0852b73c8378b00d8286647050ba498
Author: Kristian Fiskerstrand <k_f <AT> gentoo <DOT> org>
AuthorDate: Sun May 29 15:26:14 2016 +0000
Commit: Kristian Fiskerstrand <k_f <AT> gentoo <DOT> org>
CommitDate: Sun May 29 15:29:59 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c596a9f3
sys-apps/miller: Dropping to maintainer-needed
Gentoo-Bug: 584246
Package-Manager: portage-2.3.0_rc1
sys-apps/miller/metadata.xml | 8 --------
1 file changed, 8 deletions(-)
diff --git a/sys-apps/miller/metadata.xml b/sys-apps/miller/metadata.xml
index ce15c23..097975e 100644
--- a/sys-apps/miller/metadata.xml
+++ b/sys-apps/miller/metadata.xml
@@ -1,12 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
-<maintainer type="person">
- <email>dev.rindeal+gentoo@gmail.com</email>
- <name>Jan Chren (rindeal)</name>
-</maintainer>
-<maintainer type="project">
- <email>proxy-maint@gentoo.org</email>
- <name>Proxy Maintainers</name>
-</maintainer>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/miller/
@ 2016-06-26 11:45 Patrice Clement
0 siblings, 0 replies; 24+ messages in thread
From: Patrice Clement @ 2016-06-26 11:45 UTC (permalink / raw
To: gentoo-commits
commit: a7402a02d208c581684fc9b1a041ee4225aa921f
Author: Jan Chren <dev.rindeal <AT> gmail <DOT> com>
AuthorDate: Thu Jun 23 20:49:14 2016 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Sun Jun 26 11:17:22 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7402a02
sys-apps/miller: bump to v4.2.0.
Also add manpage.
Closes: https://github.com/gentoo/gentoo/pull/1733
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
sys-apps/miller/Manifest | 1 +
sys-apps/miller/miller-4.2.0.ebuild | 61 +++++++++++++++++++++++++++++++++++++
2 files changed, 62 insertions(+)
diff --git a/sys-apps/miller/Manifest b/sys-apps/miller/Manifest
index 945c2fb..b6205c2 100644
--- a/sys-apps/miller/Manifest
+++ b/sys-apps/miller/Manifest
@@ -1 +1,2 @@
DIST miller-4.0.0.tar.gz 3320261 SHA256 c702eb3423e96fb2f39d6339117fd7678ac1b63258d0bd9b8c76859993ec1a0c SHA512 13612c18ad1d995797a760618fe4ca44c845c03f35df79cc5e981fd9d224ba60b0f3dc57ae454d32877711d216b32de5c22520cd9906f9866a5b59a3f488edb2 WHIRLPOOL d6b7851436572ba1dfb83fac362408195d242065d5547e85363a809514bafab2d5085da1813048fa34616ecf879bf9b026630567e672b152dcfa26e427d99f1a
+DIST miller-4.2.0.tar.gz 3373505 SHA256 2758a2364daad8672c4da85698b328f20178539d5f5d5866b19518cce1c83487 SHA512 f176dc2ce4e733ac1e4e331f17554d4ed089344a5f571bcc9d4b3b227f6c950fa0355f1a5b934e4f9467d9a22448e2842c586a4e6c424a98ec89170cd70b1714 WHIRLPOOL 8514bc6bde3cd3598caeb6e123ff7cec26a464818f6be43ddb51e43c8cee25f42403b3355ad5cfd11355788b8824ee497a12fb1172620935a17b28979f62fad2
diff --git a/sys-apps/miller/miller-4.2.0.ebuild b/sys-apps/miller/miller-4.2.0.ebuild
new file mode 100644
index 0000000..8b6e03c
--- /dev/null
+++ b/sys-apps/miller/miller-4.2.0.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit autotools
+
+DESCRIPTION="A tool like sed, awk, cut, join, and sort for name-indexed data (CSV, JSON, ..)"
+HOMEPAGE="http://johnkerl.org/miller"
+LICENSE="BSD-2"
+
+SLOT="0"
+SRC_URI="https://github.com/johnkerl/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="doc test"
+
+DEPEND="sys-devel/flex"
+
+my_for_each_test_dir() {
+ local test_dirs=( c/{reg,unit}_test )
+ if use test ; then
+ for d in "${test_dirs[@]}" ; do
+ pushd "${d}" >/dev/null || die
+ "${@}" || die
+ popd >/dev/null || die
+ done
+ fi
+}
+
+src_prepare() {
+ default
+
+ local sed_args=(
+ # respect FLAGS
+ -e '/.*FLAGS[^=]*=/ s:(-g|-pg|-O[0-9]) ::g'
+ )
+ find -type f -name "Makefile.am" | xargs sed -r "${sed_args[@]}" -i --
+ assert
+
+ # disable docs rebuilding as they're shipped prebuilt
+ sed -e '/SUBDIRS[^=]*=/ s:doc::g' -i -- Makefile.am || die
+
+ # disable building tests automagically
+ use test || sed -e '/SUBDIRS[^=]*=/ s:[^ ]*_test::g' -i -- c/Makefile.am || die
+
+ eautoreconf
+}
+
+src_test() {
+ my_for_each_test_dir emake check
+}
+
+src_install() {
+ local HTML_DOCS=( $(usev doc) )
+
+ default
+
+ doman 'doc/mlr.1'
+}
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/miller/
@ 2016-07-07 19:48 Austin English
0 siblings, 0 replies; 24+ messages in thread
From: Austin English @ 2016-07-07 19:48 UTC (permalink / raw
To: gentoo-commits
commit: b45d22d3617df9057642c90e9d58eb4518167f5e
Author: Austin English <wizardedit <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 7 19:28:55 2016 +0000
Commit: Austin English <wizardedit <AT> gentoo <DOT> org>
CommitDate: Thu Jul 7 19:47:00 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b45d22d3
sys-apps/miller: add maintainer-needed
Package-Manager: portage-2.2.28
sys-apps/miller/metadata.xml | 1 +
1 file changed, 1 insertion(+)
diff --git a/sys-apps/miller/metadata.xml b/sys-apps/miller/metadata.xml
index 097975e..6f49eba 100644
--- a/sys-apps/miller/metadata.xml
+++ b/sys-apps/miller/metadata.xml
@@ -1,4 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
+<!-- maintainer-needed -->
</pkgmetadata>
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/miller/
@ 2017-04-16 22:00 Patrice Clement
0 siblings, 0 replies; 24+ messages in thread
From: Patrice Clement @ 2017-04-16 22:00 UTC (permalink / raw
To: gentoo-commits
commit: ede61883e09eac0baa877caadd3aa4de6c93020e
Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 16 21:59:22 2017 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Sun Apr 16 21:59:22 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ede61883
sys-apps/miller: stable for amd64. mark stable for the remaining arches using the ALLARCHES policy.
Package-Manager: Portage-2.3.3, Repoman-2.3.1
sys-apps/miller/miller-4.2.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-apps/miller/miller-4.2.0.ebuild b/sys-apps/miller/miller-4.2.0.ebuild
index 855e44ee8fc..df616602dab 100644
--- a/sys-apps/miller/miller-4.2.0.ebuild
+++ b/sys-apps/miller/miller-4.2.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -12,7 +12,7 @@ LICENSE="BSD-2"
SLOT="0"
SRC_URI="https://github.com/johnkerl/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="amd64 arm x86"
IUSE="doc test"
DEPEND="sys-devel/flex"
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/miller/
@ 2017-04-16 22:00 Patrice Clement
0 siblings, 0 replies; 24+ messages in thread
From: Patrice Clement @ 2017-04-16 22:00 UTC (permalink / raw
To: gentoo-commits
commit: 661eef92a12a3eedf2289240fdcbe9049f7cdf9e
Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 16 22:00:16 2017 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Sun Apr 16 22:00:16 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=661eef92
sys-apps/miller: clean up old.
Package-Manager: Portage-2.3.3, Repoman-2.3.1
sys-apps/miller/Manifest | 1 -
sys-apps/miller/miller-4.0.0.ebuild | 58 -------------------------------------
2 files changed, 59 deletions(-)
diff --git a/sys-apps/miller/Manifest b/sys-apps/miller/Manifest
index b6205c2fad1..6aba52941f4 100644
--- a/sys-apps/miller/Manifest
+++ b/sys-apps/miller/Manifest
@@ -1,2 +1 @@
-DIST miller-4.0.0.tar.gz 3320261 SHA256 c702eb3423e96fb2f39d6339117fd7678ac1b63258d0bd9b8c76859993ec1a0c SHA512 13612c18ad1d995797a760618fe4ca44c845c03f35df79cc5e981fd9d224ba60b0f3dc57ae454d32877711d216b32de5c22520cd9906f9866a5b59a3f488edb2 WHIRLPOOL d6b7851436572ba1dfb83fac362408195d242065d5547e85363a809514bafab2d5085da1813048fa34616ecf879bf9b026630567e672b152dcfa26e427d99f1a
DIST miller-4.2.0.tar.gz 3373505 SHA256 2758a2364daad8672c4da85698b328f20178539d5f5d5866b19518cce1c83487 SHA512 f176dc2ce4e733ac1e4e331f17554d4ed089344a5f571bcc9d4b3b227f6c950fa0355f1a5b934e4f9467d9a22448e2842c586a4e6c424a98ec89170cd70b1714 WHIRLPOOL 8514bc6bde3cd3598caeb6e123ff7cec26a464818f6be43ddb51e43c8cee25f42403b3355ad5cfd11355788b8824ee497a12fb1172620935a17b28979f62fad2
diff --git a/sys-apps/miller/miller-4.0.0.ebuild b/sys-apps/miller/miller-4.0.0.ebuild
deleted file mode 100644
index 213ada480f4..00000000000
--- a/sys-apps/miller/miller-4.0.0.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools
-
-DESCRIPTION="A tool like sed, awk, cut, join, and sort for name-indexed data (CSV, JSON, ..)"
-HOMEPAGE="http://johnkerl.org/miller"
-LICENSE="BSD-2"
-
-SLOT="0"
-SRC_URI="https://github.com/johnkerl/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE="doc test"
-
-DEPEND="sys-devel/flex"
-
-my_for_each_test_dir() {
- local test_dirs=( c/{reg,unit}_test )
- if use test ; then
- for d in "${test_dirs[@]}" ; do
- pushd "${d}" >/dev/null || die
- "${@}" || die
- popd >/dev/null || die
- done
- fi
-}
-
-src_prepare() {
- default
-
- local sed_args=(
- # respect FLAGS
- -e '/.*FLAGS[^=]*=/ s:(-g|-pg|-O[0-9]) ::g'
- )
- find -type f -name "Makefile.am" | xargs sed -r "${sed_args[@]}" -i --
- assert
-
- # disable docs rebuilding as they're shipped prebuilt
- sed -e '/SUBDIRS[^=]*=/ s:doc::g' -i -- Makefile.am || die
-
- # disable building tests automagically
- use test || sed -e '/SUBDIRS[^=]*=/ s:[^ ]*_test::g' -i -- c/Makefile.am || die
-
- eautoreconf
-}
-
-src_test() {
- my_for_each_test_dir emake check
-}
-
-src_install() {
- local HTML_DOCS=( $(usev doc) )
-
- default
-}
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/miller/
@ 2018-01-06 8:56 Michał Górny
0 siblings, 0 replies; 24+ messages in thread
From: Michał Górny @ 2018-01-06 8:56 UTC (permalink / raw
To: gentoo-commits
commit: 8c402341cf47392ad8fc77d6e97f2780e1ce20ad
Author: Herb Miller Jr <herb <AT> hlmjr <DOT> com>
AuthorDate: Wed Aug 16 16:40:47 2017 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Jan 6 08:56:32 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c402341
sys-apps/miller: bump to version 5.2.2
Adding myself and proxy maintainer project as maintainers to signal
proxy maintainers project leads. Cleanup per guidance from mgorny.
Closes: https://github.com/gentoo/gentoo/pull/5446
Package-Manager: Portage-2.3.6, Repoman-2.3.1
sys-apps/miller/Manifest | 1 +
sys-apps/miller/metadata.xml | 9 ++++++-
sys-apps/miller/miller-5.2.2.ebuild | 47 +++++++++++++++++++++++++++++++++++++
3 files changed, 56 insertions(+), 1 deletion(-)
diff --git a/sys-apps/miller/Manifest b/sys-apps/miller/Manifest
index 01ff07e893e..9f489d900d0 100644
--- a/sys-apps/miller/Manifest
+++ b/sys-apps/miller/Manifest
@@ -1 +1,2 @@
DIST miller-4.2.0.tar.gz 3373505 BLAKE2B 5051f310a70ad151aa8fd80dd4b885e78561dfb1fd14fa3a49ffb9928ce55acb59220b2b122b798256a0d258fbe4216470cdf8aec37be2fd26ac5ecb1f80e982 SHA512 f176dc2ce4e733ac1e4e331f17554d4ed089344a5f571bcc9d4b3b227f6c950fa0355f1a5b934e4f9467d9a22448e2842c586a4e6c424a98ec89170cd70b1714
+DIST miller-5.2.2.tar.gz 5024653 BLAKE2B c13b6fb03404ae93f436997510aaaced2e11616b42fe132b9a267b1e71c2b7ada5bd310a20bd0bbd50ca6edaac915ebd68885ef4de1558aea63d9753b9f69125 SHA512 64ab35db6382cd9bf819249a57b88a142fccf7d6facdc6b9fdf3005b82bb2567f57b64d52a29b5f9d44c941974803339eb4a34c6648fdde2c82cc7c2f98e727c
diff --git a/sys-apps/miller/metadata.xml b/sys-apps/miller/metadata.xml
index b514bd71d71..bea67532f6a 100644
--- a/sys-apps/miller/metadata.xml
+++ b/sys-apps/miller/metadata.xml
@@ -1,7 +1,14 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <!-- maintainer-needed -->
+ <maintainer type="person">
+ <email>herb@hlmjr.com</email>
+ <name>Herb Miller Jr. (herbmillerjr)</name>
+ </maintainer>
+ <maintainer type="project">
+ <email>proxy-maint@gentoo.org</email>
+ <name>Proxy Maintainers</name>
+ </maintainer>
<upstream>
<remote-id type="github">johnkerl/miller</remote-id>
</upstream>
diff --git a/sys-apps/miller/miller-5.2.2.ebuild b/sys-apps/miller/miller-5.2.2.ebuild
new file mode 100644
index 00000000000..7d27a1bf9b8
--- /dev/null
+++ b/sys-apps/miller/miller-5.2.2.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools
+
+DESCRIPTION="A tool like sed, awk, cut, join, and sort for name-indexed data (CSV, JSON, ..)"
+HOMEPAGE="http://johnkerl.org/miller"
+SRC_URI="https://github.com/johnkerl/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="doc test"
+
+DEPEND="sys-devel/flex"
+
+src_prepare() {
+ default
+
+ # respect flags
+ find -type f -name "Makefile.am" -exec sed -i -r -e '/.*FLAGS[^=]*=/ s:(-g|-pg|-O[0-9]) ::g' -- {} \; || die
+
+ # disable docs rebuilding as they're shipped prebuilt
+ sed -e '/SUBDIRS[^=]*=/ s:doc::g' -i -- Makefile.am || die
+
+ # disable building tests automagically
+ if ! use test; then
+ sed -e '/SUBDIRS[^=]*=/ s:[^ ]*_test::g' -i -- c/Makefile.am || die
+ fi
+
+ eautoreconf
+}
+
+src_test() {
+ emake -C c/reg_test
+ emake -C c/unit_test
+}
+
+src_install() {
+ local HTML_DOCS=( $(usev doc) )
+
+ default
+
+ doman 'doc/mlr.1'
+}
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/miller/
@ 2018-03-03 21:47 Michał Górny
0 siblings, 0 replies; 24+ messages in thread
From: Michał Górny @ 2018-03-03 21:47 UTC (permalink / raw
To: gentoo-commits
commit: 051d4c7a76f6c431b9610b54cf8a73e593ef8ccc
Author: Herb Miller Jr <herb <AT> hlmjr <DOT> com>
AuthorDate: Sat Mar 3 20:40:31 2018 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Mar 3 21:47:37 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=051d4c7a
sys-apps/miller: Bump to version 5.3.0.
Closes: https://github.com/gentoo/gentoo/pull/7344
Package-Manager: Portage-2.3.19, Repoman-2.3.6
sys-apps/miller/Manifest | 1 +
sys-apps/miller/miller-5.3.0.ebuild | 47 +++++++++++++++++++++++++++++++++++++
2 files changed, 48 insertions(+)
diff --git a/sys-apps/miller/Manifest b/sys-apps/miller/Manifest
index 9f489d900d0..45a1a89c325 100644
--- a/sys-apps/miller/Manifest
+++ b/sys-apps/miller/Manifest
@@ -1,2 +1,3 @@
DIST miller-4.2.0.tar.gz 3373505 BLAKE2B 5051f310a70ad151aa8fd80dd4b885e78561dfb1fd14fa3a49ffb9928ce55acb59220b2b122b798256a0d258fbe4216470cdf8aec37be2fd26ac5ecb1f80e982 SHA512 f176dc2ce4e733ac1e4e331f17554d4ed089344a5f571bcc9d4b3b227f6c950fa0355f1a5b934e4f9467d9a22448e2842c586a4e6c424a98ec89170cd70b1714
DIST miller-5.2.2.tar.gz 5024653 BLAKE2B c13b6fb03404ae93f436997510aaaced2e11616b42fe132b9a267b1e71c2b7ada5bd310a20bd0bbd50ca6edaac915ebd68885ef4de1558aea63d9753b9f69125 SHA512 64ab35db6382cd9bf819249a57b88a142fccf7d6facdc6b9fdf3005b82bb2567f57b64d52a29b5f9d44c941974803339eb4a34c6648fdde2c82cc7c2f98e727c
+DIST miller-5.3.0.tar.gz 4940072 BLAKE2B 2e34ae010d409877040a60b08dd615f32e6945ca3bf97c078c89b9d2811067fa4bca2403f8ad239f8245e050acb10305d351b1db4177541a4fa9ed9a4bc1396c SHA512 4c557d97eb1cda2e52093fa097677602491895dea3093776a03af56114022b8c0917df9fbf26071d4d1a3c1360f520c82e33b32635c7b4207fa62869ab564712
diff --git a/sys-apps/miller/miller-5.3.0.ebuild b/sys-apps/miller/miller-5.3.0.ebuild
new file mode 100644
index 00000000000..97912f6bbd6
--- /dev/null
+++ b/sys-apps/miller/miller-5.3.0.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools
+
+DESCRIPTION="A tool like sed, awk, cut, join, and sort for name-indexed data (CSV, JSON, ..)"
+HOMEPAGE="http://johnkerl.org/miller"
+SRC_URI="https://github.com/johnkerl/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="doc test"
+
+DEPEND="sys-devel/flex"
+
+src_prepare() {
+ default
+
+ # respect flags
+ find -type f -name "Makefile.am" -exec sed -i -r -e '/.*FLAGS[^=]*=/ s:(-g|-pg|-O[0-9]) ::g' -- {} \; || die
+
+ # disable docs rebuilding as they're shipped prebuilt
+ sed -e '/SUBDIRS[^=]*=/ s:doc::g' -i -- Makefile.am || die
+
+ # disable building tests automagically
+ if ! use test; then
+ sed -e '/SUBDIRS[^=]*=/ s:[^ ]*_test::g' -i -- c/Makefile.am || die
+ fi
+
+ eautoreconf
+}
+
+src_test() {
+ emake -C c/reg_test
+ emake -C c/unit_test
+}
+
+src_install() {
+ local HTML_DOCS=( $(usev doc) )
+
+ default
+
+ doman 'doc/mlr.1'
+}
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/miller/
@ 2018-05-20 0:16 Aaron Bauman
0 siblings, 0 replies; 24+ messages in thread
From: Aaron Bauman @ 2018-05-20 0:16 UTC (permalink / raw
To: gentoo-commits
commit: b1cb43d8f1200f11318d408a259b893fec71c980
Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Sat May 19 07:53:15 2018 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Sun May 20 00:13:18 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1cb43d8
sys-apps/miller: use HTTPS
Closes: https://github.com/gentoo/gentoo/pull/8481
sys-apps/miller/miller-4.2.0.ebuild | 4 ++--
sys-apps/miller/miller-5.2.2.ebuild | 4 ++--
sys-apps/miller/miller-5.3.0.ebuild | 2 +-
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/sys-apps/miller/miller-4.2.0.ebuild b/sys-apps/miller/miller-4.2.0.ebuild
index df616602dab..f0f66106e3d 100644
--- a/sys-apps/miller/miller-4.2.0.ebuild
+++ b/sys-apps/miller/miller-4.2.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -6,7 +6,7 @@ EAPI=6
inherit autotools
DESCRIPTION="A tool like sed, awk, cut, join, and sort for name-indexed data (CSV, JSON, ..)"
-HOMEPAGE="http://johnkerl.org/miller"
+HOMEPAGE="https://johnkerl.org/miller/doc/index.html"
LICENSE="BSD-2"
SLOT="0"
diff --git a/sys-apps/miller/miller-5.2.2.ebuild b/sys-apps/miller/miller-5.2.2.ebuild
index 7d27a1bf9b8..fc4af1f1087 100644
--- a/sys-apps/miller/miller-5.2.2.ebuild
+++ b/sys-apps/miller/miller-5.2.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -6,7 +6,7 @@ EAPI=6
inherit autotools
DESCRIPTION="A tool like sed, awk, cut, join, and sort for name-indexed data (CSV, JSON, ..)"
-HOMEPAGE="http://johnkerl.org/miller"
+HOMEPAGE="https://johnkerl.org/miller/doc/index.html"
SRC_URI="https://github.com/johnkerl/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD-2"
diff --git a/sys-apps/miller/miller-5.3.0.ebuild b/sys-apps/miller/miller-5.3.0.ebuild
index 97912f6bbd6..fc4af1f1087 100644
--- a/sys-apps/miller/miller-5.3.0.ebuild
+++ b/sys-apps/miller/miller-5.3.0.ebuild
@@ -6,7 +6,7 @@ EAPI=6
inherit autotools
DESCRIPTION="A tool like sed, awk, cut, join, and sort for name-indexed data (CSV, JSON, ..)"
-HOMEPAGE="http://johnkerl.org/miller"
+HOMEPAGE="https://johnkerl.org/miller/doc/index.html"
SRC_URI="https://github.com/johnkerl/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD-2"
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/miller/
@ 2019-02-15 0:39 Thomas Deutschmann
0 siblings, 0 replies; 24+ messages in thread
From: Thomas Deutschmann @ 2019-02-15 0:39 UTC (permalink / raw
To: gentoo-commits
commit: 69ccd8618738125ac5efa9d9a4f434e3a6b3b726
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 15 00:35:12 2019 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Fri Feb 15 00:35:12 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69ccd861
sys-apps/miller: x86 stable (bug #676782)
Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
sys-apps/miller/miller-5.3.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-apps/miller/miller-5.3.0.ebuild b/sys-apps/miller/miller-5.3.0.ebuild
index fc4af1f1087..7011aaf2ba5 100644
--- a/sys-apps/miller/miller-5.3.0.ebuild
+++ b/sys-apps/miller/miller-5.3.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/johnkerl/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="~amd64 ~arm x86"
IUSE="doc test"
DEPEND="sys-devel/flex"
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/miller/
@ 2019-02-15 17:48 Mikle Kolyada
0 siblings, 0 replies; 24+ messages in thread
From: Mikle Kolyada @ 2019-02-15 17:48 UTC (permalink / raw
To: gentoo-commits
commit: 442c7a844d9dd79e924ba223f28f4d38f2603930
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 15 17:48:18 2019 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Fri Feb 15 17:48:18 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=442c7a84
sys-apps/miller: amd64 arm stable wrt bug #676782
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64 arm"
sys-apps/miller/miller-5.3.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-apps/miller/miller-5.3.0.ebuild b/sys-apps/miller/miller-5.3.0.ebuild
index 7011aaf2ba5..863789ce5ce 100644
--- a/sys-apps/miller/miller-5.3.0.ebuild
+++ b/sys-apps/miller/miller-5.3.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/johnkerl/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
-KEYWORDS="~amd64 ~arm x86"
+KEYWORDS="amd64 arm x86"
IUSE="doc test"
DEPEND="sys-devel/flex"
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/miller/
@ 2019-02-16 9:45 Pacho Ramos
0 siblings, 0 replies; 24+ messages in thread
From: Pacho Ramos @ 2019-02-16 9:45 UTC (permalink / raw
To: gentoo-commits
commit: 352a52a8bfe536eb08f7456aa34ba3b9ccc9ddce
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 16 09:39:46 2019 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sat Feb 16 09:45:41 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=352a52a8
sys-apps/miller: Drop old
Package-Manager: Portage-2.3.58, Repoman-2.3.12
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
sys-apps/miller/Manifest | 2 --
sys-apps/miller/miller-4.2.0.ebuild | 60 -------------------------------------
sys-apps/miller/miller-5.2.2.ebuild | 47 -----------------------------
3 files changed, 109 deletions(-)
diff --git a/sys-apps/miller/Manifest b/sys-apps/miller/Manifest
index 45a1a89c325..25409959940 100644
--- a/sys-apps/miller/Manifest
+++ b/sys-apps/miller/Manifest
@@ -1,3 +1 @@
-DIST miller-4.2.0.tar.gz 3373505 BLAKE2B 5051f310a70ad151aa8fd80dd4b885e78561dfb1fd14fa3a49ffb9928ce55acb59220b2b122b798256a0d258fbe4216470cdf8aec37be2fd26ac5ecb1f80e982 SHA512 f176dc2ce4e733ac1e4e331f17554d4ed089344a5f571bcc9d4b3b227f6c950fa0355f1a5b934e4f9467d9a22448e2842c586a4e6c424a98ec89170cd70b1714
-DIST miller-5.2.2.tar.gz 5024653 BLAKE2B c13b6fb03404ae93f436997510aaaced2e11616b42fe132b9a267b1e71c2b7ada5bd310a20bd0bbd50ca6edaac915ebd68885ef4de1558aea63d9753b9f69125 SHA512 64ab35db6382cd9bf819249a57b88a142fccf7d6facdc6b9fdf3005b82bb2567f57b64d52a29b5f9d44c941974803339eb4a34c6648fdde2c82cc7c2f98e727c
DIST miller-5.3.0.tar.gz 4940072 BLAKE2B 2e34ae010d409877040a60b08dd615f32e6945ca3bf97c078c89b9d2811067fa4bca2403f8ad239f8245e050acb10305d351b1db4177541a4fa9ed9a4bc1396c SHA512 4c557d97eb1cda2e52093fa097677602491895dea3093776a03af56114022b8c0917df9fbf26071d4d1a3c1360f520c82e33b32635c7b4207fa62869ab564712
diff --git a/sys-apps/miller/miller-4.2.0.ebuild b/sys-apps/miller/miller-4.2.0.ebuild
deleted file mode 100644
index f0f66106e3d..00000000000
--- a/sys-apps/miller/miller-4.2.0.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools
-
-DESCRIPTION="A tool like sed, awk, cut, join, and sort for name-indexed data (CSV, JSON, ..)"
-HOMEPAGE="https://johnkerl.org/miller/doc/index.html"
-LICENSE="BSD-2"
-
-SLOT="0"
-SRC_URI="https://github.com/johnkerl/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-KEYWORDS="amd64 arm x86"
-IUSE="doc test"
-
-DEPEND="sys-devel/flex"
-
-my_for_each_test_dir() {
- local test_dirs=( c/{reg,unit}_test )
- if use test ; then
- for d in "${test_dirs[@]}" ; do
- pushd "${d}" >/dev/null || die
- "${@}" || die
- popd >/dev/null || die
- done
- fi
-}
-
-src_prepare() {
- default
-
- local sed_args=(
- # respect FLAGS
- -e '/.*FLAGS[^=]*=/ s:(-g|-pg|-O[0-9]) ::g'
- )
- find -type f -name "Makefile.am" | xargs sed -r "${sed_args[@]}" -i --
- assert
-
- # disable docs rebuilding as they're shipped prebuilt
- sed -e '/SUBDIRS[^=]*=/ s:doc::g' -i -- Makefile.am || die
-
- # disable building tests automagically
- use test || sed -e '/SUBDIRS[^=]*=/ s:[^ ]*_test::g' -i -- c/Makefile.am || die
-
- eautoreconf
-}
-
-src_test() {
- my_for_each_test_dir emake check
-}
-
-src_install() {
- local HTML_DOCS=( $(usev doc) )
-
- default
-
- doman 'doc/mlr.1'
-}
diff --git a/sys-apps/miller/miller-5.2.2.ebuild b/sys-apps/miller/miller-5.2.2.ebuild
deleted file mode 100644
index fc4af1f1087..00000000000
--- a/sys-apps/miller/miller-5.2.2.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools
-
-DESCRIPTION="A tool like sed, awk, cut, join, and sort for name-indexed data (CSV, JSON, ..)"
-HOMEPAGE="https://johnkerl.org/miller/doc/index.html"
-SRC_URI="https://github.com/johnkerl/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE="doc test"
-
-DEPEND="sys-devel/flex"
-
-src_prepare() {
- default
-
- # respect flags
- find -type f -name "Makefile.am" -exec sed -i -r -e '/.*FLAGS[^=]*=/ s:(-g|-pg|-O[0-9]) ::g' -- {} \; || die
-
- # disable docs rebuilding as they're shipped prebuilt
- sed -e '/SUBDIRS[^=]*=/ s:doc::g' -i -- Makefile.am || die
-
- # disable building tests automagically
- if ! use test; then
- sed -e '/SUBDIRS[^=]*=/ s:[^ ]*_test::g' -i -- c/Makefile.am || die
- fi
-
- eautoreconf
-}
-
-src_test() {
- emake -C c/reg_test
- emake -C c/unit_test
-}
-
-src_install() {
- local HTML_DOCS=( $(usev doc) )
-
- default
-
- doman 'doc/mlr.1'
-}
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/miller/
@ 2021-01-02 6:47 Sam James
0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2021-01-02 6:47 UTC (permalink / raw
To: gentoo-commits
commit: 9fac09e4bd372a2682be828060c5d7752e631f03
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 2 06:44:21 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jan 2 06:44:21 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fac09e4
sys-apps/miller: bump to 5.10.0
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-apps/miller/Manifest | 1 +
sys-apps/miller/miller-5.10.0.ebuild | 48 ++++++++++++++++++++++++++++++++++++
2 files changed, 49 insertions(+)
diff --git a/sys-apps/miller/Manifest b/sys-apps/miller/Manifest
index 25409959940..5967ca148fc 100644
--- a/sys-apps/miller/Manifest
+++ b/sys-apps/miller/Manifest
@@ -1 +1,2 @@
+DIST miller-5.10.0.tar.gz 6793426 BLAKE2B 25ec96e29ee8d913feffd6e9a54cd2d494c9050e180556ed462a6d94a6adaaea88dbdbc09b4753f8888673bdc33a1f0aa43f9dac37bdc3c25191b2a565fe8847 SHA512 a7cbaee9ad4075d27e74ab3a60297164c535ea2bc1e38128174f4f226ad061850d37108e7d7547821b7e6667cb9a024639795d7678b1897fedf6ee15d6064538
DIST miller-5.3.0.tar.gz 4940072 BLAKE2B 2e34ae010d409877040a60b08dd615f32e6945ca3bf97c078c89b9d2811067fa4bca2403f8ad239f8245e050acb10305d351b1db4177541a4fa9ed9a4bc1396c SHA512 4c557d97eb1cda2e52093fa097677602491895dea3093776a03af56114022b8c0917df9fbf26071d4d1a3c1360f520c82e33b32635c7b4207fa62869ab564712
diff --git a/sys-apps/miller/miller-5.10.0.ebuild b/sys-apps/miller/miller-5.10.0.ebuild
new file mode 100644
index 00000000000..e0e1b73a7b1
--- /dev/null
+++ b/sys-apps/miller/miller-5.10.0.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+DESCRIPTION="A tool like sed, awk, cut, join, and sort for name-indexed data (CSV, JSON, ..)"
+HOMEPAGE="https://johnkerl.org/miller/doc/index.html"
+SRC_URI="https://github.com/johnkerl/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="doc test"
+RESTRICT="!test? ( test )"
+
+DEPEND="sys-devel/flex"
+
+src_prepare() {
+ default
+
+ # respect flags
+ find -type f -name "Makefile.am" -exec sed -i -r -e '/.*FLAGS[^=]*=/ s:(-g|-pg|-O[0-9]) ::g' -- {} \; || die
+
+ # disable docs rebuilding as they're shipped prebuilt
+ sed -e '/SUBDIRS[^=]*=/ s:doc::g' -i -- Makefile.am || die
+
+ # disable building tests automagically
+ if ! use test; then
+ sed -e '/SUBDIRS[^=]*=/ s:[^ ]*_test::g' -i -- c/Makefile.am || die
+ fi
+
+ eautoreconf
+}
+
+src_test() {
+ emake -C c/reg_test
+ emake -C c/unit_test
+}
+
+src_install() {
+ local HTML_DOCS=( $(usev doc) )
+
+ default
+
+ doman 'docs/mlr.1'
+}
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/miller/
@ 2021-02-01 13:33 Sam James
0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2021-02-01 13:33 UTC (permalink / raw
To: gentoo-commits
commit: 44f284600b4881066ec056c6ed72818595afe7d2
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 1 13:33:37 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Feb 1 13:33:37 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44f28460
sys-apps/miller: Stabilize 5.10.0 amd64, #768171
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-apps/miller/miller-5.10.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-apps/miller/miller-5.10.0.ebuild b/sys-apps/miller/miller-5.10.0.ebuild
index e0e1b73a7b1..9bdc7c43483 100644
--- a/sys-apps/miller/miller-5.10.0.ebuild
+++ b/sys-apps/miller/miller-5.10.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/johnkerl/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm ~x86"
IUSE="doc test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/miller/
@ 2021-02-03 14:30 Agostino Sarubbo
0 siblings, 0 replies; 24+ messages in thread
From: Agostino Sarubbo @ 2021-02-03 14:30 UTC (permalink / raw
To: gentoo-commits
commit: 9974b1b14e549226f7492a8e0350ea5abe74cbb7
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 3 14:29:52 2021 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed Feb 3 14:29:52 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9974b1b1
sys-apps/miller: x86 stable wrt bug #768171
Package-Manager: Portage-3.0.13, Repoman-3.0.2
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
sys-apps/miller/miller-5.10.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-apps/miller/miller-5.10.0.ebuild b/sys-apps/miller/miller-5.10.0.ebuild
index 9bdc7c43483..0e24db79784 100644
--- a/sys-apps/miller/miller-5.10.0.ebuild
+++ b/sys-apps/miller/miller-5.10.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/johnkerl/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
-KEYWORDS="amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm x86"
IUSE="doc test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/miller/
@ 2021-02-16 12:34 Sam James
0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2021-02-16 12:34 UTC (permalink / raw
To: gentoo-commits
commit: 62180357afb1cba8daaaa620ef40a3461afc5ed3
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 16 12:33:33 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Feb 16 12:33:33 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62180357
sys-apps/miller: Stabilize 5.10.0 arm, #768171
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-apps/miller/miller-5.10.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-apps/miller/miller-5.10.0.ebuild b/sys-apps/miller/miller-5.10.0.ebuild
index 0e24db79784..e7b6e45d36a 100644
--- a/sys-apps/miller/miller-5.10.0.ebuild
+++ b/sys-apps/miller/miller-5.10.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/johnkerl/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
-KEYWORDS="amd64 ~arm x86"
+KEYWORDS="amd64 arm x86"
IUSE="doc test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/miller/
@ 2021-03-16 19:57 Sam James
0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2021-03-16 19:57 UTC (permalink / raw
To: gentoo-commits
commit: 2b51305a6db97c31a9970072058daf72db9e6d08
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 16 19:37:36 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Mar 16 19:56:06 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b51305a
sys-apps/miller: drop 5.3.0
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-apps/miller/Manifest | 1 -
sys-apps/miller/miller-5.3.0.ebuild | 48 -------------------------------------
2 files changed, 49 deletions(-)
diff --git a/sys-apps/miller/Manifest b/sys-apps/miller/Manifest
index 5967ca148fc..a91a7d449c5 100644
--- a/sys-apps/miller/Manifest
+++ b/sys-apps/miller/Manifest
@@ -1,2 +1 @@
DIST miller-5.10.0.tar.gz 6793426 BLAKE2B 25ec96e29ee8d913feffd6e9a54cd2d494c9050e180556ed462a6d94a6adaaea88dbdbc09b4753f8888673bdc33a1f0aa43f9dac37bdc3c25191b2a565fe8847 SHA512 a7cbaee9ad4075d27e74ab3a60297164c535ea2bc1e38128174f4f226ad061850d37108e7d7547821b7e6667cb9a024639795d7678b1897fedf6ee15d6064538
-DIST miller-5.3.0.tar.gz 4940072 BLAKE2B 2e34ae010d409877040a60b08dd615f32e6945ca3bf97c078c89b9d2811067fa4bca2403f8ad239f8245e050acb10305d351b1db4177541a4fa9ed9a4bc1396c SHA512 4c557d97eb1cda2e52093fa097677602491895dea3093776a03af56114022b8c0917df9fbf26071d4d1a3c1360f520c82e33b32635c7b4207fa62869ab564712
diff --git a/sys-apps/miller/miller-5.3.0.ebuild b/sys-apps/miller/miller-5.3.0.ebuild
deleted file mode 100644
index 1412928d080..00000000000
--- a/sys-apps/miller/miller-5.3.0.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools
-
-DESCRIPTION="A tool like sed, awk, cut, join, and sort for name-indexed data (CSV, JSON, ..)"
-HOMEPAGE="https://johnkerl.org/miller/doc/index.html"
-SRC_URI="https://github.com/johnkerl/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="amd64 arm x86"
-IUSE="doc test"
-RESTRICT="!test? ( test )"
-
-DEPEND="sys-devel/flex"
-
-src_prepare() {
- default
-
- # respect flags
- find -type f -name "Makefile.am" -exec sed -i -r -e '/.*FLAGS[^=]*=/ s:(-g|-pg|-O[0-9]) ::g' -- {} \; || die
-
- # disable docs rebuilding as they're shipped prebuilt
- sed -e '/SUBDIRS[^=]*=/ s:doc::g' -i -- Makefile.am || die
-
- # disable building tests automagically
- if ! use test; then
- sed -e '/SUBDIRS[^=]*=/ s:[^ ]*_test::g' -i -- c/Makefile.am || die
- fi
-
- eautoreconf
-}
-
-src_test() {
- emake -C c/reg_test
- emake -C c/unit_test
-}
-
-src_install() {
- local HTML_DOCS=( $(usev doc) )
-
- default
-
- doman 'doc/mlr.1'
-}
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/miller/
@ 2021-03-22 3:30 Sam James
0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2021-03-22 3:30 UTC (permalink / raw
To: gentoo-commits
commit: 8a683b69050b5455a5ecb412ccece854cbced257
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 22 03:26:45 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Mar 22 03:29:55 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a683b69
sys-apps/miller: add 5.10.1
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-apps/miller/Manifest | 1 +
sys-apps/miller/miller-5.10.1.ebuild | 48 ++++++++++++++++++++++++++++++++++++
2 files changed, 49 insertions(+)
diff --git a/sys-apps/miller/Manifest b/sys-apps/miller/Manifest
index a91a7d449c5..59a024e51dc 100644
--- a/sys-apps/miller/Manifest
+++ b/sys-apps/miller/Manifest
@@ -1 +1,2 @@
DIST miller-5.10.0.tar.gz 6793426 BLAKE2B 25ec96e29ee8d913feffd6e9a54cd2d494c9050e180556ed462a6d94a6adaaea88dbdbc09b4753f8888673bdc33a1f0aa43f9dac37bdc3c25191b2a565fe8847 SHA512 a7cbaee9ad4075d27e74ab3a60297164c535ea2bc1e38128174f4f226ad061850d37108e7d7547821b7e6667cb9a024639795d7678b1897fedf6ee15d6064538
+DIST miller-5.10.1.tar.gz 6158587 BLAKE2B f22db3ccd29e0ff99e3f287e7e4382d679bba2c4d8e0fef3f3c086fa11ffbb287c22fc69c23f3baf647c2e5ac020d73f55ee613b0bb71273d7f94a5fe9561ea5 SHA512 32ec8216ea9c73c20b5c22fa047535c37f52a0d3c3c1100b090c57011cd555cae57a56425dfb0eaf0d09d41d82dbea3ad78a182ec8b538e194599b754f562961
diff --git a/sys-apps/miller/miller-5.10.1.ebuild b/sys-apps/miller/miller-5.10.1.ebuild
new file mode 100644
index 00000000000..4f24e895c45
--- /dev/null
+++ b/sys-apps/miller/miller-5.10.1.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+DESCRIPTION="A tool like sed, awk, cut, join, and sort for name-indexed data (CSV, JSON, ..)"
+HOMEPAGE="https://johnkerl.org/miller/doc/index.html"
+SRC_URI="https://github.com/johnkerl/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="doc test"
+RESTRICT="!test? ( test )"
+
+DEPEND="sys-devel/flex"
+
+src_prepare() {
+ default
+
+ # Respect flags
+ find -type f -name "Makefile.am" -exec sed -i -r -e '/.*FLAGS[^=]*=/ s:(-g|-pg|-O[0-9]) ::g' -- {} \; || die
+
+ # Disable docs rebuilding as they're shipped prebuilt
+ sed -e '/SUBDIRS[^=]*=/ s:doc::g' -i -- Makefile.am || die
+
+ # Disable building tests automagically
+ if ! use test; then
+ sed -e '/SUBDIRS[^=]*=/ s:[^ ]*_test::g' -i -- c/Makefile.am || die
+ fi
+
+ eautoreconf
+}
+
+src_test() {
+ emake -C c/reg_test
+ emake -C c/unit_test
+}
+
+src_install() {
+ local HTML_DOCS=( $(usev doc) )
+
+ default
+
+ doman docs/mlr.1
+}
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/miller/
@ 2021-04-25 20:07 Sam James
0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2021-04-25 20:07 UTC (permalink / raw
To: gentoo-commits
commit: 1502e7cb49d8f09c4ca60c357545500884e24860
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 25 20:06:02 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Apr 25 20:07:39 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1502e7cb
sys-apps/miller: add 5.10.2
Closes: https://bugs.gentoo.org/777708
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-apps/miller/Manifest | 1 +
sys-apps/miller/miller-5.10.2.ebuild | 48 ++++++++++++++++++++++++++++++++++++
2 files changed, 49 insertions(+)
diff --git a/sys-apps/miller/Manifest b/sys-apps/miller/Manifest
index 59a024e51dc..8cf7fa7dc02 100644
--- a/sys-apps/miller/Manifest
+++ b/sys-apps/miller/Manifest
@@ -1,2 +1,3 @@
DIST miller-5.10.0.tar.gz 6793426 BLAKE2B 25ec96e29ee8d913feffd6e9a54cd2d494c9050e180556ed462a6d94a6adaaea88dbdbc09b4753f8888673bdc33a1f0aa43f9dac37bdc3c25191b2a565fe8847 SHA512 a7cbaee9ad4075d27e74ab3a60297164c535ea2bc1e38128174f4f226ad061850d37108e7d7547821b7e6667cb9a024639795d7678b1897fedf6ee15d6064538
DIST miller-5.10.1.tar.gz 6158587 BLAKE2B f22db3ccd29e0ff99e3f287e7e4382d679bba2c4d8e0fef3f3c086fa11ffbb287c22fc69c23f3baf647c2e5ac020d73f55ee613b0bb71273d7f94a5fe9561ea5 SHA512 32ec8216ea9c73c20b5c22fa047535c37f52a0d3c3c1100b090c57011cd555cae57a56425dfb0eaf0d09d41d82dbea3ad78a182ec8b538e194599b754f562961
+DIST miller-5.10.2.tar.gz 6192382 BLAKE2B 73daf0ca8a5417890e060b04103c4542f1122c13a9a13271dc53e94c4fdf0610dcad5ab04729326fd4ab72b47673db9fdf5aacc5a4ca5330c3220046e4d8a38b SHA512 be40611b055d94f3b0ef75b35dfd242dd4942dce3292bb01b48a6a12f9e4c09fc43bb9d0650902c7aa13328d9a2bbcea4da2964af58d07f39ae63b34712a45f5
diff --git a/sys-apps/miller/miller-5.10.2.ebuild b/sys-apps/miller/miller-5.10.2.ebuild
new file mode 100644
index 00000000000..b164bf5ed1e
--- /dev/null
+++ b/sys-apps/miller/miller-5.10.2.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+DESCRIPTION="A tool like sed, awk, cut, join, and sort for name-indexed data (CSV, JSON, ..)"
+HOMEPAGE="https://johnkerl.org/miller/doc/index.html"
+SRC_URI="https://github.com/johnkerl/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="doc test"
+RESTRICT="!test? ( test )"
+
+DEPEND="sys-devel/flex"
+
+src_prepare() {
+ default
+
+ # Respect flags
+ find -type f -name "Makefile.am" -exec sed -i -r -e '/.*FLAGS[^=]*=/ s:(-g|-pg|-O[0-9]) ::g' -- {} \; || die
+
+ # Disable docs rebuilding as they're shipped prebuilt
+ sed -e '/SUBDIRS[^=]*=/ s:doc::g' -i -- Makefile.am || die
+
+ # Disable building tests automagically
+ if ! use test; then
+ sed -e '/SUBDIRS[^=]*=/ s:[^ ]*_test::g' -i -- c/Makefile.am || die
+ fi
+
+ eautoreconf
+}
+
+src_test() {
+ emake -C c/reg_test
+ emake -C c/unit_test
+}
+
+src_install() {
+ local HTML_DOCS=( $(usex doc docs) )
+
+ default
+
+ doman docs/mlr.1
+}
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/miller/
@ 2021-04-25 21:01 Sam James
0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2021-04-25 21:01 UTC (permalink / raw
To: gentoo-commits
commit: ae847eb8fa6577fc3a9bc78742268e1d107486a6
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 25 20:56:49 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Apr 25 21:01:05 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae847eb8
sys-apps/miller: fix HTML_DOCS
Closes: https://bugs.gentoo.org/785721
Bug: https://bugs.gentoo.org/777708
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-apps/miller/miller-5.10.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-apps/miller/miller-5.10.2.ebuild b/sys-apps/miller/miller-5.10.2.ebuild
index b164bf5ed1e..f51e05c8091 100644
--- a/sys-apps/miller/miller-5.10.2.ebuild
+++ b/sys-apps/miller/miller-5.10.2.ebuild
@@ -40,7 +40,7 @@ src_test() {
}
src_install() {
- local HTML_DOCS=( $(usex doc docs) )
+ local HTML_DOCS=( $(usex doc docs '') )
default
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/miller/
@ 2021-12-05 4:49 Sam James
0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2021-12-05 4:49 UTC (permalink / raw
To: gentoo-commits
commit: e427d4042aa196c604a4a5efaeb832756103a97a
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 5 04:49:28 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Dec 5 04:49:28 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e427d404
sys-apps/miller: Stabilize 5.10.2 amd64, #828310
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-apps/miller/miller-5.10.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-apps/miller/miller-5.10.2.ebuild b/sys-apps/miller/miller-5.10.2.ebuild
index f51e05c8091f..b04d5bda5379 100644
--- a/sys-apps/miller/miller-5.10.2.ebuild
+++ b/sys-apps/miller/miller-5.10.2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/johnkerl/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm ~x86"
IUSE="doc test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/miller/
@ 2021-12-06 15:23 Sam James
0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2021-12-06 15:23 UTC (permalink / raw
To: gentoo-commits
commit: 95c0e5c77834dd6da8fe0ce1e422e92e8f8d29b0
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 6 15:21:15 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Dec 6 15:21:15 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95c0e5c7
sys-apps/miller: Stabilize 5.10.2 arm, #828310
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-apps/miller/miller-5.10.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-apps/miller/miller-5.10.2.ebuild b/sys-apps/miller/miller-5.10.2.ebuild
index b04d5bda5379..a06dbb961712 100644
--- a/sys-apps/miller/miller-5.10.2.ebuild
+++ b/sys-apps/miller/miller-5.10.2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/johnkerl/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
-KEYWORDS="amd64 ~arm ~x86"
+KEYWORDS="amd64 arm ~x86"
IUSE="doc test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/miller/
@ 2021-12-07 6:26 Agostino Sarubbo
0 siblings, 0 replies; 24+ messages in thread
From: Agostino Sarubbo @ 2021-12-07 6:26 UTC (permalink / raw
To: gentoo-commits
commit: ecc8dbbe39ccf71f95aaddf81d733c7b4359ef11
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 7 06:23:23 2021 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Tue Dec 7 06:23:23 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ecc8dbbe
sys-apps/miller: x86 stable wrt bug #828310
Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
sys-apps/miller/miller-5.10.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-apps/miller/miller-5.10.2.ebuild b/sys-apps/miller/miller-5.10.2.ebuild
index a06dbb961712..4daa197af23e 100644
--- a/sys-apps/miller/miller-5.10.2.ebuild
+++ b/sys-apps/miller/miller-5.10.2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/johnkerl/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
-KEYWORDS="amd64 arm ~x86"
+KEYWORDS="amd64 arm x86"
IUSE="doc test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/miller/
@ 2022-04-29 10:21 Sam James
0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2022-04-29 10:21 UTC (permalink / raw
To: gentoo-commits
commit: 84387c87659d5e7d38f88e577d7fb73e0193f815
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 29 09:36:05 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Apr 29 10:21:02 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84387c87
sys-apps/miller: drop 5.10.0, 5.10.1
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-apps/miller/Manifest | 2 --
sys-apps/miller/miller-5.10.0.ebuild | 48 ------------------------------------
sys-apps/miller/miller-5.10.1.ebuild | 48 ------------------------------------
3 files changed, 98 deletions(-)
diff --git a/sys-apps/miller/Manifest b/sys-apps/miller/Manifest
index 8cf7fa7dc025..fc55dd8aca9d 100644
--- a/sys-apps/miller/Manifest
+++ b/sys-apps/miller/Manifest
@@ -1,3 +1 @@
-DIST miller-5.10.0.tar.gz 6793426 BLAKE2B 25ec96e29ee8d913feffd6e9a54cd2d494c9050e180556ed462a6d94a6adaaea88dbdbc09b4753f8888673bdc33a1f0aa43f9dac37bdc3c25191b2a565fe8847 SHA512 a7cbaee9ad4075d27e74ab3a60297164c535ea2bc1e38128174f4f226ad061850d37108e7d7547821b7e6667cb9a024639795d7678b1897fedf6ee15d6064538
-DIST miller-5.10.1.tar.gz 6158587 BLAKE2B f22db3ccd29e0ff99e3f287e7e4382d679bba2c4d8e0fef3f3c086fa11ffbb287c22fc69c23f3baf647c2e5ac020d73f55ee613b0bb71273d7f94a5fe9561ea5 SHA512 32ec8216ea9c73c20b5c22fa047535c37f52a0d3c3c1100b090c57011cd555cae57a56425dfb0eaf0d09d41d82dbea3ad78a182ec8b538e194599b754f562961
DIST miller-5.10.2.tar.gz 6192382 BLAKE2B 73daf0ca8a5417890e060b04103c4542f1122c13a9a13271dc53e94c4fdf0610dcad5ab04729326fd4ab72b47673db9fdf5aacc5a4ca5330c3220046e4d8a38b SHA512 be40611b055d94f3b0ef75b35dfd242dd4942dce3292bb01b48a6a12f9e4c09fc43bb9d0650902c7aa13328d9a2bbcea4da2964af58d07f39ae63b34712a45f5
diff --git a/sys-apps/miller/miller-5.10.0.ebuild b/sys-apps/miller/miller-5.10.0.ebuild
deleted file mode 100644
index e7b6e45d36af..000000000000
--- a/sys-apps/miller/miller-5.10.0.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools
-
-DESCRIPTION="A tool like sed, awk, cut, join, and sort for name-indexed data (CSV, JSON, ..)"
-HOMEPAGE="https://johnkerl.org/miller/doc/index.html"
-SRC_URI="https://github.com/johnkerl/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="amd64 arm x86"
-IUSE="doc test"
-RESTRICT="!test? ( test )"
-
-DEPEND="sys-devel/flex"
-
-src_prepare() {
- default
-
- # respect flags
- find -type f -name "Makefile.am" -exec sed -i -r -e '/.*FLAGS[^=]*=/ s:(-g|-pg|-O[0-9]) ::g' -- {} \; || die
-
- # disable docs rebuilding as they're shipped prebuilt
- sed -e '/SUBDIRS[^=]*=/ s:doc::g' -i -- Makefile.am || die
-
- # disable building tests automagically
- if ! use test; then
- sed -e '/SUBDIRS[^=]*=/ s:[^ ]*_test::g' -i -- c/Makefile.am || die
- fi
-
- eautoreconf
-}
-
-src_test() {
- emake -C c/reg_test
- emake -C c/unit_test
-}
-
-src_install() {
- local HTML_DOCS=( $(usev doc) )
-
- default
-
- doman 'docs/mlr.1'
-}
diff --git a/sys-apps/miller/miller-5.10.1.ebuild b/sys-apps/miller/miller-5.10.1.ebuild
deleted file mode 100644
index 4f24e895c456..000000000000
--- a/sys-apps/miller/miller-5.10.1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools
-
-DESCRIPTION="A tool like sed, awk, cut, join, and sort for name-indexed data (CSV, JSON, ..)"
-HOMEPAGE="https://johnkerl.org/miller/doc/index.html"
-SRC_URI="https://github.com/johnkerl/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE="doc test"
-RESTRICT="!test? ( test )"
-
-DEPEND="sys-devel/flex"
-
-src_prepare() {
- default
-
- # Respect flags
- find -type f -name "Makefile.am" -exec sed -i -r -e '/.*FLAGS[^=]*=/ s:(-g|-pg|-O[0-9]) ::g' -- {} \; || die
-
- # Disable docs rebuilding as they're shipped prebuilt
- sed -e '/SUBDIRS[^=]*=/ s:doc::g' -i -- Makefile.am || die
-
- # Disable building tests automagically
- if ! use test; then
- sed -e '/SUBDIRS[^=]*=/ s:[^ ]*_test::g' -i -- c/Makefile.am || die
- fi
-
- eautoreconf
-}
-
-src_test() {
- emake -C c/reg_test
- emake -C c/unit_test
-}
-
-src_install() {
- local HTML_DOCS=( $(usev doc) )
-
- default
-
- doman docs/mlr.1
-}
^ permalink raw reply related [flat|nested] 24+ messages in thread
end of thread, other threads:[~2022-04-29 10:21 UTC | newest]
Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-03-03 21:47 [gentoo-commits] repo/gentoo:master commit in: sys-apps/miller/ Michał Górny
-- strict thread matches above, loose matches on Subject: below --
2022-04-29 10:21 Sam James
2021-12-07 6:26 Agostino Sarubbo
2021-12-06 15:23 Sam James
2021-12-05 4:49 Sam James
2021-04-25 21:01 Sam James
2021-04-25 20:07 Sam James
2021-03-22 3:30 Sam James
2021-03-16 19:57 Sam James
2021-02-16 12:34 Sam James
2021-02-03 14:30 Agostino Sarubbo
2021-02-01 13:33 Sam James
2021-01-02 6:47 Sam James
2019-02-16 9:45 Pacho Ramos
2019-02-15 17:48 Mikle Kolyada
2019-02-15 0:39 Thomas Deutschmann
2018-05-20 0:16 Aaron Bauman
2018-01-06 8:56 Michał Górny
2017-04-16 22:00 Patrice Clement
2017-04-16 22:00 Patrice Clement
2016-07-07 19:48 Austin English
2016-06-26 11:45 Patrice Clement
2016-05-29 15:30 Kristian Fiskerstrand
2016-05-19 1:37 Ian Delaney
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox