* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/http-parser/
@ 2020-12-25 7:13 Hans de Graaff
0 siblings, 0 replies; 13+ messages in thread
From: Hans de Graaff @ 2020-12-25 7:13 UTC (permalink / raw
To: gentoo-commits
commit: 0edb73a350e33ef234f8fa4bbabe9b9b8176ac60
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 25 06:22:43 2020 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Fri Dec 25 07:12:56 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0edb73a3
dev-ruby/http-parser: initial import of 1.2.2
New dependency for dev-ruby/http.
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
dev-ruby/http-parser/Manifest | 1 +
dev-ruby/http-parser/http-parser-1.2.2.ebuild | 29 +++++++++++++++++++++++++++
dev-ruby/http-parser/metadata.xml | 11 ++++++++++
3 files changed, 41 insertions(+)
diff --git a/dev-ruby/http-parser/Manifest b/dev-ruby/http-parser/Manifest
new file mode 100644
index 00000000000..90d32e89697
--- /dev/null
+++ b/dev-ruby/http-parser/Manifest
@@ -0,0 +1 @@
+DIST http-parser-1.2.2.gem 32256 BLAKE2B bc1600497db7c0ae9ee9311a6eae6494090b190b49d37809671d0c2fbb3b56ab4709dd16b68c7bfe8fc75609fc6f01d31c21c92681b9adbb4c83e521991d9172 SHA512 cffc1561657b7cb50c446e54da20176870ffe5f1acfe5e9fadfeacbea421fcc89243dd8f4a04d7933e19c155662fcd47db950c3743968d7981c52aa6c0a43ab5
diff --git a/dev-ruby/http-parser/http-parser-1.2.2.ebuild b/dev-ruby/http-parser/http-parser-1.2.2.ebuild
new file mode 100644
index 00000000000..796554e1831
--- /dev/null
+++ b/dev-ruby/http-parser/http-parser-1.2.2.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+USE_RUBY="ruby24 ruby25 ruby26 ruby27"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A super fast http parser for ruby"
+HOMEPAGE="https://github.com/cotag/http-parser"
+
+LICENSE="MIT"
+SLOT="$(ver_cut 1)"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND+=" >=net-libs/http-parser-2.8.1"
+RDEPEND+=" >=net-libs/http-parser-2.8.1"
+
+ruby_add_bdepend "dev-ruby/ffi-compiler"
+
+each_ruby_compile() {
+ ${RUBY} -C ext -S rake || die
+ mv ext/x86_64-linux/libhttp-parser-ext.so lib/http-parser/ || die
+}
diff --git a/dev-ruby/http-parser/metadata.xml b/dev-ruby/http-parser/metadata.xml
new file mode 100644
index 00000000000..6934c42f882
--- /dev/null
+++ b/dev-ruby/http-parser/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="project">
+ <email>ruby@gentoo.org</email>
+ <name>Gentoo Ruby Project</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">cotag/http-parser</remote-id>
+ </upstream>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/http-parser/
@ 2021-01-10 8:08 Hans de Graaff
0 siblings, 0 replies; 13+ messages in thread
From: Hans de Graaff @ 2021-01-10 8:08 UTC (permalink / raw
To: gentoo-commits
commit: 01df953bffa5d4b40ed18d497351ee0bd081dde1
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 10 08:08:36 2021 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sun Jan 10 08:08:36 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01df953b
dev-ruby/http-parser: don't hardcode build platform
Closes: https://bugs.gentoo.org/763978
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
dev-ruby/http-parser/http-parser-1.2.2.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dev-ruby/http-parser/http-parser-1.2.2.ebuild b/dev-ruby/http-parser/http-parser-1.2.2.ebuild
index 796554e1831..e3227ecbebf 100644
--- a/dev-ruby/http-parser/http-parser-1.2.2.ebuild
+++ b/dev-ruby/http-parser/http-parser-1.2.2.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-USE_RUBY="ruby24 ruby25 ruby26 ruby27"
+USE_RUBY="ruby25 ruby26 ruby27"
RUBY_FAKEGEM_RECIPE_TEST="rspec3"
@@ -25,5 +25,5 @@ ruby_add_bdepend "dev-ruby/ffi-compiler"
each_ruby_compile() {
${RUBY} -C ext -S rake || die
- mv ext/x86_64-linux/libhttp-parser-ext.so lib/http-parser/ || die
+ mv ext/*/libhttp-parser-ext.so lib/http-parser/ || die
}
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/http-parser/
@ 2021-01-16 7:03 Hans de Graaff
0 siblings, 0 replies; 13+ messages in thread
From: Hans de Graaff @ 2021-01-16 7:03 UTC (permalink / raw
To: gentoo-commits
commit: 00381dff14149ef3760b22c737b80a33d6569e00
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 16 07:01:24 2021 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sat Jan 16 07:01:24 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00381dff
dev-ruby/http-parser: add 1.2.3
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
dev-ruby/http-parser/Manifest | 1 +
dev-ruby/http-parser/http-parser-1.2.3.ebuild | 29 +++++++++++++++++++++++++++
2 files changed, 30 insertions(+)
diff --git a/dev-ruby/http-parser/Manifest b/dev-ruby/http-parser/Manifest
index 90d32e89697..11f8cc4b2a2 100644
--- a/dev-ruby/http-parser/Manifest
+++ b/dev-ruby/http-parser/Manifest
@@ -1 +1,2 @@
DIST http-parser-1.2.2.gem 32256 BLAKE2B bc1600497db7c0ae9ee9311a6eae6494090b190b49d37809671d0c2fbb3b56ab4709dd16b68c7bfe8fc75609fc6f01d31c21c92681b9adbb4c83e521991d9172 SHA512 cffc1561657b7cb50c446e54da20176870ffe5f1acfe5e9fadfeacbea421fcc89243dd8f4a04d7933e19c155662fcd47db950c3743968d7981c52aa6c0a43ab5
+DIST http-parser-1.2.3.gem 31232 BLAKE2B 055ab9ccb42bb85f87b65eeaa59f645ec390f0751eb379b22b1a2c83920ef1c482a3bed8f5105843c341fe92ba0c8d44272688b929bca13c690945f7e37b282f SHA512 03c34c3e8174d9010440483af34800b74a7bbddd5daa63607e6aa2254d9c91cf36d90854ea65827b32680432de278aeeb7b8878f788f124c150f163409fa5107
diff --git a/dev-ruby/http-parser/http-parser-1.2.3.ebuild b/dev-ruby/http-parser/http-parser-1.2.3.ebuild
new file mode 100644
index 00000000000..e3227ecbebf
--- /dev/null
+++ b/dev-ruby/http-parser/http-parser-1.2.3.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+USE_RUBY="ruby25 ruby26 ruby27"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A super fast http parser for ruby"
+HOMEPAGE="https://github.com/cotag/http-parser"
+
+LICENSE="MIT"
+SLOT="$(ver_cut 1)"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND+=" >=net-libs/http-parser-2.8.1"
+RDEPEND+=" >=net-libs/http-parser-2.8.1"
+
+ruby_add_bdepend "dev-ruby/ffi-compiler"
+
+each_ruby_compile() {
+ ${RUBY} -C ext -S rake || die
+ mv ext/*/libhttp-parser-ext.so lib/http-parser/ || die
+}
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/http-parser/
@ 2021-01-19 14:25 Sam James
0 siblings, 0 replies; 13+ messages in thread
From: Sam James @ 2021-01-19 14:25 UTC (permalink / raw
To: gentoo-commits
commit: b5af1f874de2918dc702616e6d0820cdab04a70c
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 19 14:25:31 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jan 19 14:25:31 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5af1f87
dev-ruby/http-parser: Keyword 1.2.3 arm, #761550
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-ruby/http-parser/http-parser-1.2.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-ruby/http-parser/http-parser-1.2.3.ebuild b/dev-ruby/http-parser/http-parser-1.2.3.ebuild
index e3227ecbebf..24bab3203d7 100644
--- a/dev-ruby/http-parser/http-parser-1.2.3.ebuild
+++ b/dev-ruby/http-parser/http-parser-1.2.3.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://github.com/cotag/http-parser"
LICENSE="MIT"
SLOT="$(ver_cut 1)"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~arm"
IUSE=""
DEPEND+=" >=net-libs/http-parser-2.8.1"
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/http-parser/
@ 2021-01-20 0:38 Sam James
0 siblings, 0 replies; 13+ messages in thread
From: Sam James @ 2021-01-20 0:38 UTC (permalink / raw
To: gentoo-commits
commit: 7a1f7602af52b9c71868a57613135e5b200e9b19
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 20 00:37:34 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jan 20 00:37:34 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a1f7602
dev-ruby/http-parser: Keyword 1.2.3 arm64, #761550
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-ruby/http-parser/http-parser-1.2.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-ruby/http-parser/http-parser-1.2.3.ebuild b/dev-ruby/http-parser/http-parser-1.2.3.ebuild
index 24bab3203d7..61c84cda710 100644
--- a/dev-ruby/http-parser/http-parser-1.2.3.ebuild
+++ b/dev-ruby/http-parser/http-parser-1.2.3.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://github.com/cotag/http-parser"
LICENSE="MIT"
SLOT="$(ver_cut 1)"
-KEYWORDS="~amd64 ~arm"
+KEYWORDS="~amd64 ~arm ~arm64"
IUSE=""
DEPEND+=" >=net-libs/http-parser-2.8.1"
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/http-parser/
@ 2021-02-09 21:29 Sam James
0 siblings, 0 replies; 13+ messages in thread
From: Sam James @ 2021-02-09 21:29 UTC (permalink / raw
To: gentoo-commits
commit: 8e842c5099be4b112a5d5fd7cbc99996ee36272a
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 9 21:29:37 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Feb 9 21:29:37 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e842c50
dev-ruby/http-parser: Keyword 1.2.3 x86, #761550
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-ruby/http-parser/http-parser-1.2.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-ruby/http-parser/http-parser-1.2.3.ebuild b/dev-ruby/http-parser/http-parser-1.2.3.ebuild
index 61c84cda710..83f26952a83 100644
--- a/dev-ruby/http-parser/http-parser-1.2.3.ebuild
+++ b/dev-ruby/http-parser/http-parser-1.2.3.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://github.com/cotag/http-parser"
LICENSE="MIT"
SLOT="$(ver_cut 1)"
-KEYWORDS="~amd64 ~arm ~arm64"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
IUSE=""
DEPEND+=" >=net-libs/http-parser-2.8.1"
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/http-parser/
@ 2021-02-14 5:41 Sam James
0 siblings, 0 replies; 13+ messages in thread
From: Sam James @ 2021-02-14 5:41 UTC (permalink / raw
To: gentoo-commits
commit: e3b99fa0c01e925868cdfe5dde80e021ac6561cb
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 14 05:41:30 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Feb 14 05:41:30 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3b99fa0
dev-ruby/http-parser: Keyword 1.2.3 ppc64, #761550
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-ruby/http-parser/http-parser-1.2.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-ruby/http-parser/http-parser-1.2.3.ebuild b/dev-ruby/http-parser/http-parser-1.2.3.ebuild
index 83f26952a83..179dcdf621a 100644
--- a/dev-ruby/http-parser/http-parser-1.2.3.ebuild
+++ b/dev-ruby/http-parser/http-parser-1.2.3.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://github.com/cotag/http-parser"
LICENSE="MIT"
SLOT="$(ver_cut 1)"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
IUSE=""
DEPEND+=" >=net-libs/http-parser-2.8.1"
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/http-parser/
@ 2021-11-25 13:03 Hans de Graaff
0 siblings, 0 replies; 13+ messages in thread
From: Hans de Graaff @ 2021-11-25 13:03 UTC (permalink / raw
To: gentoo-commits
commit: 912fda7be8ba85ffd36c27db8f77bfd012db0d0a
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 25 12:33:45 2021 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Thu Nov 25 13:03:16 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=912fda7b
dev-ruby/http-parser: cleanup
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
dev-ruby/http-parser/Manifest | 1 -
dev-ruby/http-parser/http-parser-1.2.2.ebuild | 29 ---------------------------
2 files changed, 30 deletions(-)
diff --git a/dev-ruby/http-parser/Manifest b/dev-ruby/http-parser/Manifest
index 11f8cc4b2a22..6a1da6e8cd85 100644
--- a/dev-ruby/http-parser/Manifest
+++ b/dev-ruby/http-parser/Manifest
@@ -1,2 +1 @@
-DIST http-parser-1.2.2.gem 32256 BLAKE2B bc1600497db7c0ae9ee9311a6eae6494090b190b49d37809671d0c2fbb3b56ab4709dd16b68c7bfe8fc75609fc6f01d31c21c92681b9adbb4c83e521991d9172 SHA512 cffc1561657b7cb50c446e54da20176870ffe5f1acfe5e9fadfeacbea421fcc89243dd8f4a04d7933e19c155662fcd47db950c3743968d7981c52aa6c0a43ab5
DIST http-parser-1.2.3.gem 31232 BLAKE2B 055ab9ccb42bb85f87b65eeaa59f645ec390f0751eb379b22b1a2c83920ef1c482a3bed8f5105843c341fe92ba0c8d44272688b929bca13c690945f7e37b282f SHA512 03c34c3e8174d9010440483af34800b74a7bbddd5daa63607e6aa2254d9c91cf36d90854ea65827b32680432de278aeeb7b8878f788f124c150f163409fa5107
diff --git a/dev-ruby/http-parser/http-parser-1.2.2.ebuild b/dev-ruby/http-parser/http-parser-1.2.2.ebuild
deleted file mode 100644
index e3227ecbebf8..000000000000
--- a/dev-ruby/http-parser/http-parser-1.2.2.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-USE_RUBY="ruby25 ruby26 ruby27"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-
-RUBY_FAKEGEM_EXTRADOC="README.md"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A super fast http parser for ruby"
-HOMEPAGE="https://github.com/cotag/http-parser"
-
-LICENSE="MIT"
-SLOT="$(ver_cut 1)"
-KEYWORDS="~amd64"
-IUSE=""
-
-DEPEND+=" >=net-libs/http-parser-2.8.1"
-RDEPEND+=" >=net-libs/http-parser-2.8.1"
-
-ruby_add_bdepend "dev-ruby/ffi-compiler"
-
-each_ruby_compile() {
- ${RUBY} -C ext -S rake || die
- mv ext/*/libhttp-parser-ext.so lib/http-parser/ || die
-}
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/http-parser/
@ 2021-11-25 13:03 Hans de Graaff
0 siblings, 0 replies; 13+ messages in thread
From: Hans de Graaff @ 2021-11-25 13:03 UTC (permalink / raw
To: gentoo-commits
commit: 6ac99cf9c0002626fdcec3ba5721e57bf3d41681
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 25 12:46:23 2021 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Thu Nov 25 13:03:16 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ac99cf9
dev-ruby/http-parser: fix extension install
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
dev-ruby/http-parser/http-parser-1.2.3-r1.ebuild | 34 ++++++++++++++++++++++++
1 file changed, 34 insertions(+)
diff --git a/dev-ruby/http-parser/http-parser-1.2.3-r1.ebuild b/dev-ruby/http-parser/http-parser-1.2.3-r1.ebuild
new file mode 100644
index 000000000000..896944c223f9
--- /dev/null
+++ b/dev-ruby/http-parser/http-parser-1.2.3-r1.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+USE_RUBY="ruby26 ruby27 ruby30"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A super fast http parser for ruby"
+HOMEPAGE="https://github.com/cotag/http-parser"
+
+LICENSE="MIT"
+SLOT="$(ver_cut 1)"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+IUSE=""
+
+DEPEND+=" >=net-libs/http-parser-2.8.1"
+RDEPEND+=" >=net-libs/http-parser-2.8.1"
+
+ruby_add_bdepend "dev-ruby/ffi-compiler"
+
+each_ruby_compile() {
+ ${RUBY} -C ext -S rake || die
+ mv ext/*/libhttp-parser-ext.so lib/http-parser/ || die
+}
+
+each_ruby_install() {
+ each_fakegem_install
+ ruby_fakegem_extensions_installed
+}
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/http-parser/
@ 2022-05-06 6:54 Hans de Graaff
0 siblings, 0 replies; 13+ messages in thread
From: Hans de Graaff @ 2022-05-06 6:54 UTC (permalink / raw
To: gentoo-commits
commit: 7bae1bf67ed48a547fbc3209ac680e3bbe40bffb
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Fri May 6 06:53:27 2022 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Fri May 6 06:53:56 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bae1bf6
dev-ruby/http-parser: enable ruby31
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
dev-ruby/http-parser/http-parser-1.2.3-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-ruby/http-parser/http-parser-1.2.3-r1.ebuild b/dev-ruby/http-parser/http-parser-1.2.3-r1.ebuild
index 896944c223f9..8b85b5fe20db 100644
--- a/dev-ruby/http-parser/http-parser-1.2.3-r1.ebuild
+++ b/dev-ruby/http-parser/http-parser-1.2.3-r1.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
-USE_RUBY="ruby26 ruby27 ruby30"
+USE_RUBY="ruby26 ruby27 ruby30 ruby31"
RUBY_FAKEGEM_RECIPE_TEST="rspec3"
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/http-parser/
@ 2022-06-26 7:45 Hans de Graaff
0 siblings, 0 replies; 13+ messages in thread
From: Hans de Graaff @ 2022-06-26 7:45 UTC (permalink / raw
To: gentoo-commits
commit: 590c6c7403d5c5005091fa4dda1029678abc6792
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 26 07:22:49 2022 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sun Jun 26 07:45:37 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=590c6c74
dev-ruby/http-parser: drop 1.2.3
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
dev-ruby/http-parser/http-parser-1.2.3.ebuild | 29 ---------------------------
1 file changed, 29 deletions(-)
diff --git a/dev-ruby/http-parser/http-parser-1.2.3.ebuild b/dev-ruby/http-parser/http-parser-1.2.3.ebuild
deleted file mode 100644
index 179dcdf621ab..000000000000
--- a/dev-ruby/http-parser/http-parser-1.2.3.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-USE_RUBY="ruby25 ruby26 ruby27"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-
-RUBY_FAKEGEM_EXTRADOC="README.md"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A super fast http parser for ruby"
-HOMEPAGE="https://github.com/cotag/http-parser"
-
-LICENSE="MIT"
-SLOT="$(ver_cut 1)"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
-IUSE=""
-
-DEPEND+=" >=net-libs/http-parser-2.8.1"
-RDEPEND+=" >=net-libs/http-parser-2.8.1"
-
-ruby_add_bdepend "dev-ruby/ffi-compiler"
-
-each_ruby_compile() {
- ${RUBY} -C ext -S rake || die
- mv ext/*/libhttp-parser-ext.so lib/http-parser/ || die
-}
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/http-parser/
@ 2023-08-27 6:44 Hans de Graaff
0 siblings, 0 replies; 13+ messages in thread
From: Hans de Graaff @ 2023-08-27 6:44 UTC (permalink / raw
To: gentoo-commits
commit: de19240122ad9661915fcf3ca54c02b539e0c2d1
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 27 06:41:08 2023 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sun Aug 27 06:44:50 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de192401
dev-ruby/http-parser: enable ruby32, add missing compile dep
Closes: https://bugs.gentoo.org/912259
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
dev-ruby/http-parser/http-parser-1.2.3-r1.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dev-ruby/http-parser/http-parser-1.2.3-r1.ebuild b/dev-ruby/http-parser/http-parser-1.2.3-r1.ebuild
index 8b85b5fe20db..ffd1acd4c706 100644
--- a/dev-ruby/http-parser/http-parser-1.2.3-r1.ebuild
+++ b/dev-ruby/http-parser/http-parser-1.2.3-r1.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
-USE_RUBY="ruby26 ruby27 ruby30 ruby31"
+USE_RUBY="ruby30 ruby31 ruby32"
RUBY_FAKEGEM_RECIPE_TEST="rspec3"
@@ -21,7 +21,7 @@ IUSE=""
DEPEND+=" >=net-libs/http-parser-2.8.1"
RDEPEND+=" >=net-libs/http-parser-2.8.1"
-ruby_add_bdepend "dev-ruby/ffi-compiler"
+ruby_add_bdepend "dev-ruby/ffi-compiler dev-ruby/rake"
each_ruby_compile() {
${RUBY} -C ext -S rake || die
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/http-parser/
@ 2024-01-02 7:05 Hans de Graaff
0 siblings, 0 replies; 13+ messages in thread
From: Hans de Graaff @ 2024-01-02 7:05 UTC (permalink / raw
To: gentoo-commits
commit: 22d727daeca852a9320e19c364f972ec2b06e4d8
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 2 07:00:45 2024 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Tue Jan 2 07:05:55 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22d727da
dev-ruby/http-parser: enable ruby33
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
dev-ruby/http-parser/http-parser-1.2.3-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-ruby/http-parser/http-parser-1.2.3-r1.ebuild b/dev-ruby/http-parser/http-parser-1.2.3-r1.ebuild
index ffd1acd4c706..057464373f93 100644
--- a/dev-ruby/http-parser/http-parser-1.2.3-r1.ebuild
+++ b/dev-ruby/http-parser/http-parser-1.2.3-r1.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
-USE_RUBY="ruby30 ruby31 ruby32"
+USE_RUBY="ruby31 ruby32 ruby33"
RUBY_FAKEGEM_RECIPE_TEST="rspec3"
^ permalink raw reply related [flat|nested] 13+ messages in thread
end of thread, other threads:[~2024-01-02 7:06 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-06-26 7:45 [gentoo-commits] repo/gentoo:master commit in: dev-ruby/http-parser/ Hans de Graaff
-- strict thread matches above, loose matches on Subject: below --
2024-01-02 7:05 Hans de Graaff
2023-08-27 6:44 Hans de Graaff
2022-05-06 6:54 Hans de Graaff
2021-11-25 13:03 Hans de Graaff
2021-11-25 13:03 Hans de Graaff
2021-02-14 5:41 Sam James
2021-02-09 21:29 Sam James
2021-01-20 0:38 Sam James
2021-01-19 14:25 Sam James
2021-01-16 7:03 Hans de Graaff
2021-01-10 8:08 Hans de Graaff
2020-12-25 7:13 Hans de Graaff
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox