public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/onigmo/
@ 2017-10-26 13:22 Manuel Rüger
  0 siblings, 0 replies; 13+ messages in thread
From: Manuel Rüger @ 2017-10-26 13:22 UTC (permalink / raw
  To: gentoo-commits

commit:     b7ff52308ac5c7a2ccae0a75174236d27f5623e6
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 26 13:22:15 2017 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Thu Oct 26 13:22:15 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7ff5230

dev-libs/onigmo: Initial version

Package-Manager: Portage-2.3.12, Repoman-2.3.3

 dev-libs/onigmo/Manifest            |  1 +
 dev-libs/onigmo/metadata.xml        | 22 ++++++++++++++++++++++
 dev-libs/onigmo/onigmo-6.1.3.ebuild | 37 +++++++++++++++++++++++++++++++++++++
 3 files changed, 60 insertions(+)

diff --git a/dev-libs/onigmo/Manifest b/dev-libs/onigmo/Manifest
new file mode 100644
index 00000000000..f8011bba690
--- /dev/null
+++ b/dev-libs/onigmo/Manifest
@@ -0,0 +1 @@
+DIST onigmo-6.1.3.tar.gz 834303 SHA256 3e65b134e415daf71f950b30549cf6bf258425af205c737f64525e3791079495 SHA512 dbae545ca79f8976b5e7f90f08301eb53a2c2f36c1ea62492badfbcfdd61679b68e3197765a2f9753bc033829c15d7fb24db307654b0ddb65774c88d122476fe WHIRLPOOL 1a8775f1b409039f8d6e1c1e520a0a4c2af4f42f60998d91cc704aba9c228181709c2bcedbe3f8e15f0f4fada6fdbf1d6c07026813b6b0e18c4e4e9aa890e004

diff --git a/dev-libs/onigmo/metadata.xml b/dev-libs/onigmo/metadata.xml
new file mode 100644
index 00000000000..13d462e45dc
--- /dev/null
+++ b/dev-libs/onigmo/metadata.xml
@@ -0,0 +1,22 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <maintainer type="person">
+    <email>mrueg@gentoo.org</email>
+    <name>Manuel Rüger</name>
+  </maintainer>
+  <slots>
+    <subslots>Reflect ABI of libonigmo.so.</subslots>
+  </slots>
+  <use>
+    <flag name="combination-explosion-check">
+      enable combination explosion check
+    </flag>
+    <flag name="crnl-as-line-terminator">
+      enable CR+NL as line terminator
+    </flag>
+  </use>
+  <upstream>
+    <remote-id type="github">k-takata/Onigmo</remote-id>
+  </upstream>
+</pkgmetadata>

diff --git a/dev-libs/onigmo/onigmo-6.1.3.ebuild b/dev-libs/onigmo/onigmo-6.1.3.ebuild
new file mode 100644
index 00000000000..559e3395530
--- /dev/null
+++ b/dev-libs/onigmo/onigmo-6.1.3.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools
+
+DESCRIPTION="Onigmo is a regular expressions library forked from Oniguruma"
+HOMEPAGE="https://github.com/k-takata/onigmo"
+SRC_URI="https://github.com/k-takata/${PN}/archive/Onigmo-${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0/6"
+KEYWORDS="~amd64"
+IUSE="combination-explosion-check crnl-as-line-terminator static-libs"
+
+S="${WORKDIR}/Onigmo-Onigmo-${PV}"
+
+DOCS=(AUTHORS HISTORY README{,.ja} doc/{API,FAQ,RE}{,.ja} doc/UnicodeProps.txt)
+
+src_prepare() {
+	default
+	eautoreconf
+}
+
+src_configure() {
+	ECONF_SOURCE="${S}" econf \
+		$(use_enable combination-explosion-check) \
+		$(use_enable crnl-as-line-terminator) \
+		$(use_enable static-libs static)
+}
+
+src_install() {
+	default
+	einstalldocs
+	find "${D}" -name "*.la" -delete || die
+}


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/onigmo/
@ 2018-06-11  9:59 Thomas Deutschmann
  0 siblings, 0 replies; 13+ messages in thread
From: Thomas Deutschmann @ 2018-06-11  9:59 UTC (permalink / raw
  To: gentoo-commits

commit:     b00a7bcd557a90452ec7d8ed2c4e62e587a1fb4a
Author:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 11 09:43:50 2018 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Mon Jun 11 09:43:50 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b00a7bcd

dev-libs/onigmo: x86 keyworded (bug #655514)

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-libs/onigmo/onigmo-6.1.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/onigmo/onigmo-6.1.3.ebuild b/dev-libs/onigmo/onigmo-6.1.3.ebuild
index 559e3395530..ec34f26b6f1 100644
--- a/dev-libs/onigmo/onigmo-6.1.3.ebuild
+++ b/dev-libs/onigmo/onigmo-6.1.3.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
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/k-takata/${PN}/archive/Onigmo-${PV}.tar.gz -> ${P}.t
 
 LICENSE="BSD-2"
 SLOT="0/6"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~x86"
 IUSE="combination-explosion-check crnl-as-line-terminator static-libs"
 
 S="${WORKDIR}/Onigmo-Onigmo-${PV}"


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/onigmo/
@ 2018-07-05 11:43 Manuel Rüger
  0 siblings, 0 replies; 13+ messages in thread
From: Manuel Rüger @ 2018-07-05 11:43 UTC (permalink / raw
  To: gentoo-commits

commit:     92bf5e020d333e9f2336bd456dcc2ea659d5dd7d
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Thu Jul  5 11:42:55 2018 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Thu Jul  5 11:42:55 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92bf5e02

dev-libs/onigmo: Unmaintain

Package-Manager: Portage-2.3.41, Repoman-2.3.9

 dev-libs/onigmo/metadata.xml | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/dev-libs/onigmo/metadata.xml b/dev-libs/onigmo/metadata.xml
index 13d462e45dc..b9924f7d1fe 100644
--- a/dev-libs/onigmo/metadata.xml
+++ b/dev-libs/onigmo/metadata.xml
@@ -1,10 +1,7 @@
 <?xml version='1.0' encoding='UTF-8'?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-  <maintainer type="person">
-    <email>mrueg@gentoo.org</email>
-    <name>Manuel Rüger</name>
-  </maintainer>
+  <!-- maintainer-needed -->
   <slots>
     <subslots>Reflect ABI of libonigmo.so.</subslots>
   </slots>


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/onigmo/
@ 2018-07-17 13:41 Akinori Hattori
  0 siblings, 0 replies; 13+ messages in thread
From: Akinori Hattori @ 2018-07-17 13:41 UTC (permalink / raw
  To: gentoo-commits

commit:     5cbb21e0c17dc558e44bd66475f2af9a56e2b82d
Author:     Akinori Hattori <hattya <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 17 13:33:33 2018 +0000
Commit:     Akinori Hattori <hattya <AT> gentoo <DOT> org>
CommitDate: Tue Jul 17 13:33:33 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cbb21e0

dev-libs/onigmo: take over maintainership

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-libs/onigmo/metadata.xml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/dev-libs/onigmo/metadata.xml b/dev-libs/onigmo/metadata.xml
index b9924f7d1fe..b1cea8c977b 100644
--- a/dev-libs/onigmo/metadata.xml
+++ b/dev-libs/onigmo/metadata.xml
@@ -1,7 +1,10 @@
 <?xml version='1.0' encoding='UTF-8'?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-  <!-- maintainer-needed -->
+  <maintainer type="project">
+    <email>cjk@gentoo.org</email>
+    <name>Cjk</name>
+  </maintainer>
   <slots>
     <subslots>Reflect ABI of libonigmo.so.</subslots>
   </slots>


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/onigmo/
@ 2018-07-17 13:41 Akinori Hattori
  0 siblings, 0 replies; 13+ messages in thread
From: Akinori Hattori @ 2018-07-17 13:41 UTC (permalink / raw
  To: gentoo-commits

commit:     fd119669b35672d0f32b5736dd34153302be1d1d
Author:     Akinori Hattori <hattya <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 17 13:39:39 2018 +0000
Commit:     Akinori Hattori <hattya <AT> gentoo <DOT> org>
CommitDate: Tue Jul 17 13:39:39 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd119669

dev-libs/onigmo: inherit multilib-minimal

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-libs/onigmo/onigmo-6.1.3.ebuild | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/dev-libs/onigmo/onigmo-6.1.3.ebuild b/dev-libs/onigmo/onigmo-6.1.3.ebuild
index f909222f2bb..4c34afcf8ac 100644
--- a/dev-libs/onigmo/onigmo-6.1.3.ebuild
+++ b/dev-libs/onigmo/onigmo-6.1.3.ebuild
@@ -1,9 +1,9 @@
 # Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI="6"
 
-inherit autotools
+inherit autotools multilib-minimal
 
 DESCRIPTION="Onigmo is a regular expressions library forked from Oniguruma"
 HOMEPAGE="https://github.com/k-takata/Onigmo"
@@ -14,22 +14,21 @@ SLOT="0/6"
 KEYWORDS="~amd64 ~x86"
 IUSE="combination-explosion-check crnl-as-line-terminator static-libs"
 
-DOCS=(AUTHORS HISTORY README{,.ja} doc/{API,FAQ,RE}{,.ja} doc/UnicodeProps.txt)
+DOCS=( AUTHORS HISTORY README{,.ja} doc/{API,FAQ,RE}{,.ja} doc/UnicodeProps.txt )
 
 src_prepare() {
 	default
 	eautoreconf
 }
 
-src_configure() {
+multilib_src_configure() {
 	ECONF_SOURCE="${S}" econf \
 		$(use_enable combination-explosion-check) \
 		$(use_enable crnl-as-line-terminator) \
 		$(use_enable static-libs static)
 }
 
-src_install() {
-	default
+multilib_src_install_all() {
 	einstalldocs
 	find "${D}" -name "*.la" -delete || die
 }


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/onigmo/
@ 2018-07-17 13:41 Akinori Hattori
  0 siblings, 0 replies; 13+ messages in thread
From: Akinori Hattori @ 2018-07-17 13:41 UTC (permalink / raw
  To: gentoo-commits

commit:     c557716ae47f6e018d9223557e7dc2b1e2185939
Author:     Akinori Hattori <hattya <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 17 13:36:49 2018 +0000
Commit:     Akinori Hattori <hattya <AT> gentoo <DOT> org>
CommitDate: Tue Jul 17 13:36:49 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c557716a

dev-libs/onigmo: update HOMEPAGE and SRC_URI

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-libs/onigmo/Manifest            | 2 +-
 dev-libs/onigmo/onigmo-6.1.3.ebuild | 6 ++----
 2 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/dev-libs/onigmo/Manifest b/dev-libs/onigmo/Manifest
index 8c7385a6b2c..5ae4efdd1e2 100644
--- a/dev-libs/onigmo/Manifest
+++ b/dev-libs/onigmo/Manifest
@@ -1 +1 @@
-DIST onigmo-6.1.3.tar.gz 834303 BLAKE2B f9b0a49716b817baa71d99bd3aaa6161b96f8073c4b4f87ea5eb70ebc7f7104b4844bb9763924c16a4ed90276bc2a2a18ab2f93dd546892b07fe81235b027f3d SHA512 dbae545ca79f8976b5e7f90f08301eb53a2c2f36c1ea62492badfbcfdd61679b68e3197765a2f9753bc033829c15d7fb24db307654b0ddb65774c88d122476fe
+DIST onigmo-6.1.3.tar.gz 822127 BLAKE2B b2f020ba37c039022ee4ad0840006b7d84bd5c2b24975d3cc34a625379c478cdfacbb7247d5f2315da2e56beaa74fec5390140d4a3f0c29c66906d78d7207b8b SHA512 13ee0e97e5e7ea2a379cdfd8bab121ee116fc07495c6b3131621f6cd9b1748897e5e2c7dcf43845794b2ad4adef3b4076daf06f51aaf965e32cbac5d7bace1e6

diff --git a/dev-libs/onigmo/onigmo-6.1.3.ebuild b/dev-libs/onigmo/onigmo-6.1.3.ebuild
index ec34f26b6f1..f909222f2bb 100644
--- a/dev-libs/onigmo/onigmo-6.1.3.ebuild
+++ b/dev-libs/onigmo/onigmo-6.1.3.ebuild
@@ -6,16 +6,14 @@ EAPI=6
 inherit autotools
 
 DESCRIPTION="Onigmo is a regular expressions library forked from Oniguruma"
-HOMEPAGE="https://github.com/k-takata/onigmo"
-SRC_URI="https://github.com/k-takata/${PN}/archive/Onigmo-${PV}.tar.gz -> ${P}.tar.gz"
+HOMEPAGE="https://github.com/k-takata/Onigmo"
+SRC_URI="https://github.com/k-takata/${PN^o}/releases/download/${P^o}/${P}.tar.gz"
 
 LICENSE="BSD-2"
 SLOT="0/6"
 KEYWORDS="~amd64 ~x86"
 IUSE="combination-explosion-check crnl-as-line-terminator static-libs"
 
-S="${WORKDIR}/Onigmo-Onigmo-${PV}"
-
 DOCS=(AUTHORS HISTORY README{,.ja} doc/{API,FAQ,RE}{,.ja} doc/UnicodeProps.txt)
 
 src_prepare() {


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/onigmo/
@ 2020-09-03 13:39 Akinori Hattori
  0 siblings, 0 replies; 13+ messages in thread
From: Akinori Hattori @ 2020-09-03 13:39 UTC (permalink / raw
  To: gentoo-commits

commit:     b48a28b4d4305ef5554ab6365a7dafa6fd18b9cc
Author:     Akinori Hattori <hattya <AT> gentoo <DOT> org>
AuthorDate: Thu Sep  3 13:37:54 2020 +0000
Commit:     Akinori Hattori <hattya <AT> gentoo <DOT> org>
CommitDate: Thu Sep  3 13:39:14 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b48a28b4

dev-libs/onigmo: new upstream release

Package-Manager: Portage-3.0.4, Repoman-2.3.23
Signed-off-by: Akinori Hattori <hattya <AT> gentoo.org>

 dev-libs/onigmo/Manifest            |  1 +
 dev-libs/onigmo/metadata.xml        | 36 ++++++++++++++++++------------------
 dev-libs/onigmo/onigmo-6.2.0.ebuild | 34 ++++++++++++++++++++++++++++++++++
 3 files changed, 53 insertions(+), 18 deletions(-)

diff --git a/dev-libs/onigmo/Manifest b/dev-libs/onigmo/Manifest
index 5ae4efdd1e2..c0a02fccafc 100644
--- a/dev-libs/onigmo/Manifest
+++ b/dev-libs/onigmo/Manifest
@@ -1 +1,2 @@
 DIST onigmo-6.1.3.tar.gz 822127 BLAKE2B b2f020ba37c039022ee4ad0840006b7d84bd5c2b24975d3cc34a625379c478cdfacbb7247d5f2315da2e56beaa74fec5390140d4a3f0c29c66906d78d7207b8b SHA512 13ee0e97e5e7ea2a379cdfd8bab121ee116fc07495c6b3131621f6cd9b1748897e5e2c7dcf43845794b2ad4adef3b4076daf06f51aaf965e32cbac5d7bace1e6
+DIST onigmo-6.2.0.tar.gz 844935 BLAKE2B 768918af337be0bbe9fd9c9f15a630ce0a74f081832ef84ba13e48f4e6ed692ff1250e20272c039d95bb4d9b847bfaac829addd7de3f50780b7620b1f105406c SHA512 651ab8c64d8b8c0d56e1549809030be79a751b9d1c06af6527f8cf6014fba1bafea593d572e1cf766099a10fb4e6506ca683ef48131f47471348b5cbd35a1a77

diff --git a/dev-libs/onigmo/metadata.xml b/dev-libs/onigmo/metadata.xml
index b1cea8c977b..2914fe8f54b 100644
--- a/dev-libs/onigmo/metadata.xml
+++ b/dev-libs/onigmo/metadata.xml
@@ -1,22 +1,22 @@
 <?xml version='1.0' encoding='UTF-8'?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-  <maintainer type="project">
-    <email>cjk@gentoo.org</email>
-    <name>Cjk</name>
-  </maintainer>
-  <slots>
-    <subslots>Reflect ABI of libonigmo.so.</subslots>
-  </slots>
-  <use>
-    <flag name="combination-explosion-check">
-      enable combination explosion check
-    </flag>
-    <flag name="crnl-as-line-terminator">
-      enable CR+NL as line terminator
-    </flag>
-  </use>
-  <upstream>
-    <remote-id type="github">k-takata/Onigmo</remote-id>
-  </upstream>
+	<maintainer type="project">
+		<email>cjk@gentoo.org</email>
+		<name>Cjk</name>
+	</maintainer>
+	<slots>
+		<subslots>Reflect ABI of libonigmo.so.</subslots>
+	</slots>
+	<use>
+		<flag name="combination-explosion-check">
+			enable combination explosion check
+		</flag>
+		<flag name="crnl-as-line-terminator">
+			enable CR+NL as line terminator
+		</flag>
+	</use>
+	<upstream>
+		<remote-id type="github">k-takata/Onigmo</remote-id>
+	</upstream>
 </pkgmetadata>

diff --git a/dev-libs/onigmo/onigmo-6.2.0.ebuild b/dev-libs/onigmo/onigmo-6.2.0.ebuild
new file mode 100644
index 00000000000..43b020ab66c
--- /dev/null
+++ b/dev-libs/onigmo/onigmo-6.2.0.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit autotools multilib-minimal
+
+DESCRIPTION="Onigmo is a regular expressions library forked from Oniguruma"
+HOMEPAGE="https://github.com/k-takata/Onigmo"
+SRC_URI="https://github.com/k-takata/${PN^o}/releases/download/${P^o}/${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0/6"
+KEYWORDS="~amd64 ~x86"
+IUSE="combination-explosion-check crnl-as-line-terminator static-libs"
+
+DOCS=( AUTHORS HISTORY README{,.ja} doc/{API,FAQ,RE}{,.ja} doc/UnicodeProps.txt )
+
+src_prepare() {
+	default
+	eautoreconf
+}
+
+multilib_src_configure() {
+	ECONF_SOURCE="${S}" econf \
+		$(use_enable combination-explosion-check) \
+		$(use_enable crnl-as-line-terminator) \
+		$(use_enable static-libs static)
+}
+
+multilib_src_install_all() {
+	einstalldocs
+	find "${D}" -name "*.la" -delete || die
+}


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/onigmo/
@ 2020-09-03 13:39 Akinori Hattori
  0 siblings, 0 replies; 13+ messages in thread
From: Akinori Hattori @ 2020-09-03 13:39 UTC (permalink / raw
  To: gentoo-commits

commit:     19045fee0c90ea0dd45cbd5e8e894f0e1ea14631
Author:     Akinori Hattori <hattya <AT> gentoo <DOT> org>
AuthorDate: Thu Sep  3 13:34:47 2020 +0000
Commit:     Akinori Hattori <hattya <AT> gentoo <DOT> org>
CommitDate: Thu Sep  3 13:39:13 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19045fee

dev-libs/onigmo: update to EAPI 7

Package-Manager: Portage-3.0.4, Repoman-2.3.23
Signed-off-by: Akinori Hattori <hattya <AT> gentoo.org>

 dev-libs/onigmo/onigmo-6.1.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/onigmo/onigmo-6.1.3.ebuild b/dev-libs/onigmo/onigmo-6.1.3.ebuild
index 4c34afcf8ac..43b020ab66c 100644
--- a/dev-libs/onigmo/onigmo-6.1.3.ebuild
+++ b/dev-libs/onigmo/onigmo-6.1.3.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="6"
+EAPI="7"
 
 inherit autotools multilib-minimal
 


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/onigmo/
@ 2020-09-03 13:39 Akinori Hattori
  0 siblings, 0 replies; 13+ messages in thread
From: Akinori Hattori @ 2020-09-03 13:39 UTC (permalink / raw
  To: gentoo-commits

commit:     731403e3e10b8e1209c2e72d13bb2ab57655872e
Author:     Akinori Hattori <hattya <AT> gentoo <DOT> org>
AuthorDate: Thu Sep  3 13:38:47 2020 +0000
Commit:     Akinori Hattori <hattya <AT> gentoo <DOT> org>
CommitDate: Thu Sep  3 13:39:15 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=731403e3

dev-libs/onigmo: amd64/x86 stable

Package-Manager: Portage-3.0.4, Repoman-2.3.23
Signed-off-by: Akinori Hattori <hattya <AT> gentoo.org>

 dev-libs/onigmo/onigmo-6.1.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/onigmo/onigmo-6.1.3.ebuild b/dev-libs/onigmo/onigmo-6.1.3.ebuild
index 43b020ab66c..fc5366e7b63 100644
--- a/dev-libs/onigmo/onigmo-6.1.3.ebuild
+++ b/dev-libs/onigmo/onigmo-6.1.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/k-takata/${PN^o}/releases/download/${P^o}/${P}.tar.g
 
 LICENSE="BSD-2"
 SLOT="0/6"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="combination-explosion-check crnl-as-line-terminator static-libs"
 
 DOCS=( AUTHORS HISTORY README{,.ja} doc/{API,FAQ,RE}{,.ja} doc/UnicodeProps.txt )


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/onigmo/
@ 2021-01-12 22:36 Sam James
  0 siblings, 0 replies; 13+ messages in thread
From: Sam James @ 2021-01-12 22:36 UTC (permalink / raw
  To: gentoo-commits

commit:     8837ec62c6aee9204d549351b646ccafa70aadba
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 12 22:36:08 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jan 12 22:36:08 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8837ec62

dev-libs/onigmo: Stabilize 6.2.0 x86, #761966

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-libs/onigmo/onigmo-6.2.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/onigmo/onigmo-6.2.0.ebuild b/dev-libs/onigmo/onigmo-6.2.0.ebuild
index 43b020ab66c..ccb869dfcba 100644
--- a/dev-libs/onigmo/onigmo-6.2.0.ebuild
+++ b/dev-libs/onigmo/onigmo-6.2.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/k-takata/${PN^o}/releases/download/${P^o}/${P}.tar.g
 
 LICENSE="BSD-2"
 SLOT="0/6"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="combination-explosion-check crnl-as-line-terminator static-libs"
 
 DOCS=( AUTHORS HISTORY README{,.ja} doc/{API,FAQ,RE}{,.ja} doc/UnicodeProps.txt )


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/onigmo/
@ 2021-01-12 22:36 Sam James
  0 siblings, 0 replies; 13+ messages in thread
From: Sam James @ 2021-01-12 22:36 UTC (permalink / raw
  To: gentoo-commits

commit:     0b459eb26b1f5b3db340d0fc745b2e313c35e4bf
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 12 22:36:35 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jan 12 22:36:35 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b459eb2

dev-libs/onigmo: Stabilize 6.2.0 amd64, #761966

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-libs/onigmo/onigmo-6.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/onigmo/onigmo-6.2.0.ebuild b/dev-libs/onigmo/onigmo-6.2.0.ebuild
index ccb869dfcba..21ef5b828db 100644
--- a/dev-libs/onigmo/onigmo-6.2.0.ebuild
+++ b/dev-libs/onigmo/onigmo-6.2.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/k-takata/${PN^o}/releases/download/${P^o}/${P}.tar.g
 
 LICENSE="BSD-2"
 SLOT="0/6"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE="combination-explosion-check crnl-as-line-terminator static-libs"
 
 DOCS=( AUTHORS HISTORY README{,.ja} doc/{API,FAQ,RE}{,.ja} doc/UnicodeProps.txt )


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/onigmo/
@ 2022-08-18  2:53 Matt Turner
  0 siblings, 0 replies; 13+ messages in thread
From: Matt Turner @ 2022-08-18  2:53 UTC (permalink / raw
  To: gentoo-commits

commit:     9340ef1e6e8a7f176394cd309f65517b71a89eae
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 18 02:35:40 2022 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Thu Aug 18 02:53:03 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9340ef1e

dev-libs/onigmo: Drop old versions

Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 dev-libs/onigmo/Manifest            |  1 -
 dev-libs/onigmo/onigmo-6.1.3.ebuild | 34 ----------------------------------
 2 files changed, 35 deletions(-)

diff --git a/dev-libs/onigmo/Manifest b/dev-libs/onigmo/Manifest
index c0a02fccafc4..ed9ae2097049 100644
--- a/dev-libs/onigmo/Manifest
+++ b/dev-libs/onigmo/Manifest
@@ -1,2 +1 @@
-DIST onigmo-6.1.3.tar.gz 822127 BLAKE2B b2f020ba37c039022ee4ad0840006b7d84bd5c2b24975d3cc34a625379c478cdfacbb7247d5f2315da2e56beaa74fec5390140d4a3f0c29c66906d78d7207b8b SHA512 13ee0e97e5e7ea2a379cdfd8bab121ee116fc07495c6b3131621f6cd9b1748897e5e2c7dcf43845794b2ad4adef3b4076daf06f51aaf965e32cbac5d7bace1e6
 DIST onigmo-6.2.0.tar.gz 844935 BLAKE2B 768918af337be0bbe9fd9c9f15a630ce0a74f081832ef84ba13e48f4e6ed692ff1250e20272c039d95bb4d9b847bfaac829addd7de3f50780b7620b1f105406c SHA512 651ab8c64d8b8c0d56e1549809030be79a751b9d1c06af6527f8cf6014fba1bafea593d572e1cf766099a10fb4e6506ca683ef48131f47471348b5cbd35a1a77

diff --git a/dev-libs/onigmo/onigmo-6.1.3.ebuild b/dev-libs/onigmo/onigmo-6.1.3.ebuild
deleted file mode 100644
index fc5366e7b632..000000000000
--- a/dev-libs/onigmo/onigmo-6.1.3.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-inherit autotools multilib-minimal
-
-DESCRIPTION="Onigmo is a regular expressions library forked from Oniguruma"
-HOMEPAGE="https://github.com/k-takata/Onigmo"
-SRC_URI="https://github.com/k-takata/${PN^o}/releases/download/${P^o}/${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0/6"
-KEYWORDS="amd64 x86"
-IUSE="combination-explosion-check crnl-as-line-terminator static-libs"
-
-DOCS=( AUTHORS HISTORY README{,.ja} doc/{API,FAQ,RE}{,.ja} doc/UnicodeProps.txt )
-
-src_prepare() {
-	default
-	eautoreconf
-}
-
-multilib_src_configure() {
-	ECONF_SOURCE="${S}" econf \
-		$(use_enable combination-explosion-check) \
-		$(use_enable crnl-as-line-terminator) \
-		$(use_enable static-libs static)
-}
-
-multilib_src_install_all() {
-	einstalldocs
-	find "${D}" -name "*.la" -delete || die
-}


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/onigmo/
@ 2022-09-09  7:59 David Seifert
  0 siblings, 0 replies; 13+ messages in thread
From: David Seifert @ 2022-09-09  7:59 UTC (permalink / raw
  To: gentoo-commits

commit:     607d4633779554b5b8dba6c7db163b3710234556
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Sep  9 07:59:06 2022 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Fri Sep  9 07:59:06 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=607d4633

dev-libs/onigmo: drop multilib, static-libs

No multilib or static-libs reverse dependencies.

Signed-off-by: Sam James <sam <AT> gentoo.org>
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 dev-libs/onigmo/onigmo-6.2.0-r1.ebuild | 35 ++++++++++++++++++++++++++++++++++
 dev-libs/onigmo/onigmo-6.2.0.ebuild    | 34 ---------------------------------
 2 files changed, 35 insertions(+), 34 deletions(-)

diff --git a/dev-libs/onigmo/onigmo-6.2.0-r1.ebuild b/dev-libs/onigmo/onigmo-6.2.0-r1.ebuild
new file mode 100644
index 000000000000..66151a7a8e68
--- /dev/null
+++ b/dev-libs/onigmo/onigmo-6.2.0-r1.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="Onigmo is a regular expressions library forked from Oniguruma"
+HOMEPAGE="https://github.com/k-takata/Onigmo"
+SRC_URI="https://github.com/k-takata/${PN^o}/releases/download/${P^o}/${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0/6"
+KEYWORDS="amd64 x86"
+IUSE="combination-explosion-check crnl-as-line-terminator"
+
+src_prepare() {
+	default
+
+	eautoreconf
+}
+
+src_configure() {
+	econf \
+		$(use_enable combination-explosion-check) \
+		$(use_enable crnl-as-line-terminator)
+}
+
+src_install() {
+	default
+
+	dodoc doc/{API,FAQ,RE}{,.ja} doc/UnicodeProps.txt
+
+	find "${ED}" -name "*.la" -delete || die
+}

diff --git a/dev-libs/onigmo/onigmo-6.2.0.ebuild b/dev-libs/onigmo/onigmo-6.2.0.ebuild
deleted file mode 100644
index 21ef5b828dbc..000000000000
--- a/dev-libs/onigmo/onigmo-6.2.0.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-inherit autotools multilib-minimal
-
-DESCRIPTION="Onigmo is a regular expressions library forked from Oniguruma"
-HOMEPAGE="https://github.com/k-takata/Onigmo"
-SRC_URI="https://github.com/k-takata/${PN^o}/releases/download/${P^o}/${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0/6"
-KEYWORDS="amd64 x86"
-IUSE="combination-explosion-check crnl-as-line-terminator static-libs"
-
-DOCS=( AUTHORS HISTORY README{,.ja} doc/{API,FAQ,RE}{,.ja} doc/UnicodeProps.txt )
-
-src_prepare() {
-	default
-	eautoreconf
-}
-
-multilib_src_configure() {
-	ECONF_SOURCE="${S}" econf \
-		$(use_enable combination-explosion-check) \
-		$(use_enable crnl-as-line-terminator) \
-		$(use_enable static-libs static)
-}
-
-multilib_src_install_all() {
-	einstalldocs
-	find "${D}" -name "*.la" -delete || die
-}


^ permalink raw reply related	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2022-09-09  7:59 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-09-03 13:39 [gentoo-commits] repo/gentoo:master commit in: dev-libs/onigmo/ Akinori Hattori
  -- strict thread matches above, loose matches on Subject: below --
2022-09-09  7:59 David Seifert
2022-08-18  2:53 Matt Turner
2021-01-12 22:36 Sam James
2021-01-12 22:36 Sam James
2020-09-03 13:39 Akinori Hattori
2020-09-03 13:39 Akinori Hattori
2018-07-17 13:41 Akinori Hattori
2018-07-17 13:41 Akinori Hattori
2018-07-17 13:41 Akinori Hattori
2018-07-05 11:43 Manuel Rüger
2018-06-11  9:59 Thomas Deutschmann
2017-10-26 13:22 Manuel Rüger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox