* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/syslog/
@ 2024-12-28 14:15 Hans de Graaff
0 siblings, 0 replies; 3+ messages in thread
From: Hans de Graaff @ 2024-12-28 14:15 UTC (permalink / raw
To: gentoo-commits
commit: 374e2266bc86395ee2c60e64b33ee5880f80abd0
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 28 14:15:21 2024 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sat Dec 28 14:15:44 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=374e2266
dev-ruby/syslog: new package, add 0.2.0
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
dev-ruby/syslog/Manifest | 1 +
dev-ruby/syslog/metadata.xml | 12 ++++++++++++
dev-ruby/syslog/syslog-0.2.0.ebuild | 35 +++++++++++++++++++++++++++++++++++
3 files changed, 48 insertions(+)
diff --git a/dev-ruby/syslog/Manifest b/dev-ruby/syslog/Manifest
new file mode 100644
index 000000000000..d1d44739dbb6
--- /dev/null
+++ b/dev-ruby/syslog/Manifest
@@ -0,0 +1 @@
+DIST syslog-0.2.0.tar.gz 15018 BLAKE2B 19ed351cb7d1f4a1ddef5ce2bd84b5a63c975998020c12569b16c531dfd5959302a7adf62d9103c05c2fcb000c074d579e2aed13eafd485679669a66d48f2328 SHA512 949cc3cabe6cf78f127e8e06145e83c35dda848ad2409d7fc6a7171aca4cfff89df1e340978a8d80ca4bf8c3337aaa4731948d1a5fea1d165cf728cf0397aead
diff --git a/dev-ruby/syslog/metadata.xml b/dev-ruby/syslog/metadata.xml
new file mode 100644
index 000000000000..b27c3a42d6f2
--- /dev/null
+++ b/dev-ruby/syslog/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://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">ruby/syslog</remote-id>
+ <remote-id type="rubygems">syslog</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/dev-ruby/syslog/syslog-0.2.0.ebuild b/dev-ruby/syslog/syslog-0.2.0.ebuild
new file mode 100644
index 000000000000..574dfdc84624
--- /dev/null
+++ b/dev-ruby/syslog/syslog-0.2.0.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+USE_RUBY="ruby31 ruby32 ruby33"
+
+RUBY_FAKEGEM_BINWRAP=""
+RUBY_FAKEGEM_EXTENSIONS=(ext/syslog/extconf.rb)
+RUBY_FAKEGEM_EXTRADOC="README.md"
+RUBY_FAKEGEM_GEMSPEC="syslog.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Ruby interface for the POSIX system logging facility"
+HOMEPAGE="https://github.com/ruby/syslog"
+SRC_URI="https://github.com/ruby/syslog/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
+
+IUSE="test"
+
+ruby_add_bdepend "test? ( dev-ruby/test-unit )"
+
+all_ruby_prepare() {
+ sed -e 's/__dir__/"."/' \
+ -e 's/__FILE__/"'${RUBY_FAKEGEM_GEMSPEC}'"/' \
+ -e 's/git ls-files -z/find * -print0/' \
+ -i ${RUBY_FAKEGEM_GEMSPEC} || die
+}
+
+each_ruby_test() {
+ ${RUBY} -Ilib:.:test:test/lib -e 'Dir["test/**/test_*.rb"].each{|f| require f}' || die
+}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/syslog/
@ 2024-12-29 9:06 Hans de Graaff
0 siblings, 0 replies; 3+ messages in thread
From: Hans de Graaff @ 2024-12-29 9:06 UTC (permalink / raw
To: gentoo-commits
commit: db1b39c074b118cdf4ff7724f9575b4361b1a134
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 29 07:53:35 2024 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sun Dec 29 09:04:50 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db1b39c0
dev-ruby/syslog: enable ruby34
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
dev-ruby/syslog/syslog-0.2.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-ruby/syslog/syslog-0.2.0.ebuild b/dev-ruby/syslog/syslog-0.2.0.ebuild
index 574dfdc84624..f796d97298a5 100644
--- a/dev-ruby/syslog/syslog-0.2.0.ebuild
+++ b/dev-ruby/syslog/syslog-0.2.0.ebuild
@@ -2,7 +2,7 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=8
-USE_RUBY="ruby31 ruby32 ruby33"
+USE_RUBY="ruby31 ruby32 ruby33 ruby34"
RUBY_FAKEGEM_BINWRAP=""
RUBY_FAKEGEM_EXTENSIONS=(ext/syslog/extconf.rb)
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/syslog/
@ 2025-03-14 7:56 Hans de Graaff
0 siblings, 0 replies; 3+ messages in thread
From: Hans de Graaff @ 2025-03-14 7:56 UTC (permalink / raw
To: gentoo-commits
commit: 2984780cd43c2f6cd4f393e77e73ef274d3264c0
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 14 07:55:12 2025 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Fri Mar 14 07:55:50 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2984780c
dev-ruby/syslog: add 0.3.0
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
dev-ruby/syslog/Manifest | 1 +
dev-ruby/syslog/syslog-0.3.0.ebuild | 37 +++++++++++++++++++++++++++++++++++++
2 files changed, 38 insertions(+)
diff --git a/dev-ruby/syslog/Manifest b/dev-ruby/syslog/Manifest
index d1d44739dbb6..d9a8e14bb418 100644
--- a/dev-ruby/syslog/Manifest
+++ b/dev-ruby/syslog/Manifest
@@ -1 +1,2 @@
DIST syslog-0.2.0.tar.gz 15018 BLAKE2B 19ed351cb7d1f4a1ddef5ce2bd84b5a63c975998020c12569b16c531dfd5959302a7adf62d9103c05c2fcb000c074d579e2aed13eafd485679669a66d48f2328 SHA512 949cc3cabe6cf78f127e8e06145e83c35dda848ad2409d7fc6a7171aca4cfff89df1e340978a8d80ca4bf8c3337aaa4731948d1a5fea1d165cf728cf0397aead
+DIST syslog-0.3.0.tar.gz 15839 BLAKE2B a81d4b2ce9cc66ee8dd42e0738f20284fe956c790deb614750785ed083d02a74283887ac08bad2661bf4c8c61d35db6dadf7d6450316222ecd427676df482a78 SHA512 9fc82609c483246147b09561227be4249e5aed602688910a36ccaf05067215c21a3840ca4a4dcd0078d3d6f799b9f9a2c83437c18e6ff054297f2e004f5393be
diff --git a/dev-ruby/syslog/syslog-0.3.0.ebuild b/dev-ruby/syslog/syslog-0.3.0.ebuild
new file mode 100644
index 000000000000..7ecfc80d1ba0
--- /dev/null
+++ b/dev-ruby/syslog/syslog-0.3.0.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+USE_RUBY="ruby31 ruby32 ruby33 ruby34"
+
+RUBY_FAKEGEM_BINWRAP=""
+RUBY_FAKEGEM_EXTENSIONS=(ext/syslog/extconf.rb)
+RUBY_FAKEGEM_EXTRADOC="README.md"
+RUBY_FAKEGEM_GEMSPEC="syslog.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Ruby interface for the POSIX system logging facility"
+HOMEPAGE="https://github.com/ruby/syslog"
+SRC_URI="https://github.com/ruby/syslog/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
+
+IUSE="test"
+
+ruby_add_rdepend "dev-ruby/logger"
+
+ruby_add_bdepend "test? ( dev-ruby/test-unit )"
+
+all_ruby_prepare() {
+ sed -e 's/__dir__/"."/' \
+ -e 's/__FILE__/"'${RUBY_FAKEGEM_GEMSPEC}'"/' \
+ -e 's/git ls-files -z/find * -print0/' \
+ -i ${RUBY_FAKEGEM_GEMSPEC} || die
+}
+
+each_ruby_test() {
+ ${RUBY} -Ilib:.:test:test/lib -e 'Dir["test/**/test_*.rb"].each{|f| require f}' || die
+}
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-03-14 7:56 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-29 9:06 [gentoo-commits] repo/gentoo:master commit in: dev-ruby/syslog/ Hans de Graaff
-- strict thread matches above, loose matches on Subject: below --
2025-03-14 7:56 Hans de Graaff
2024-12-28 14:15 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