diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-12 19:09:37 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-12 19:09:37 -0500 |
| commit | b590c8d7572b727d565cc0b8ff660d43569845de (patch) | |
| tree | 06f7a4102ea4e845df8b66660f252920d52952f9 /dev-ruby/time | |
| parent | 24f9cbfc4c34fdb6a6e03311674414e881ceab47 (diff) | |
| download | baldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.tar.gz baldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.tar.xz baldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.zip | |
Adding metadata
Diffstat (limited to 'dev-ruby/time')
| -rw-r--r-- | dev-ruby/time/Manifest | 2 | ||||
| -rw-r--r-- | dev-ruby/time/metadata.xml | 9 | ||||
| -rw-r--r-- | dev-ruby/time/time-0.4.1.ebuild | 35 | ||||
| -rw-r--r-- | dev-ruby/time/time-0.4.2.ebuild | 36 |
4 files changed, 82 insertions, 0 deletions
diff --git a/dev-ruby/time/Manifest b/dev-ruby/time/Manifest new file mode 100644 index 000000000000..bae9cb4500fd --- /dev/null +++ b/dev-ruby/time/Manifest @@ -0,0 +1,2 @@ +DIST time-0.4.1.tar.gz 17233 BLAKE2B b6a7fc2c92f879e19a210ef5db7fa680e699b374df7b180602fd7717e7bf287be51f38a2d9a2680c41994c6e1f82602f3d024d4eaa2eaa1515fb0f85a69e05f7 SHA512 daf7bd8fdafb2a04e94f925e4f32c1077ce1c94a17fe4bdc411aaa945d3ec43d575fba6166c18c1ce4ccbd032708974f02a561961b04efd039621749d239bd57 +DIST time-0.4.2.tar.gz 17819 BLAKE2B f45f852fd6774873fad76830758ca4dce437b3b8c4669cf7f03f65eb94f40c5eddf2c48398b61a5e4f2697c687f766d7d66abf84ddcec6ad6e93186df5269540 SHA512 3e9e80fb58c551f2381099d253811cc1764acef70d63d44e097fdd40039aa0b8475b4e353aa66443a0ec2072bae9b9315350f91647100796bdcc3c517871de0a diff --git a/dev-ruby/time/metadata.xml b/dev-ruby/time/metadata.xml new file mode 100644 index 000000000000..c685ebad7e3a --- /dev/null +++ b/dev-ruby/time/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="project"> + <email>ruby@gentoo.org</email> + <name>Gentoo Ruby Project</name> + </maintainer> + <origin>baldeagleos-repo</origin> +</pkgmetadata> diff --git a/dev-ruby/time/time-0.4.1.ebuild b/dev-ruby/time/time-0.4.1.ebuild new file mode 100644 index 000000000000..e83d236a1971 --- /dev/null +++ b/dev-ruby/time/time-0.4.1.ebuild @@ -0,0 +1,35 @@ +# 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_EXTRADOC="README.md" +RUBY_FAKEGEM_GEMSPEC="time.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="Extends the Time class with methods for parsing and conversion" +HOMEPAGE="https://github.com/ruby/time" +SRC_URI="https://github.com/ruby/time/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 ~arm64-macos ~x64-macos ~x64-solaris" +IUSE="test" + +ruby_add_rdepend "dev-ruby/date" + +ruby_add_bdepend "test? ( dev-ruby/test-unit dev-ruby/test-unit-ruby-core )" + +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 -rhelper -e 'Dir["test/**/test_*.rb"].each{|f| require f}' || die +} diff --git a/dev-ruby/time/time-0.4.2.ebuild b/dev-ruby/time/time-0.4.2.ebuild new file mode 100644 index 000000000000..e181fa406a64 --- /dev/null +++ b/dev-ruby/time/time-0.4.2.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +USE_RUBY="ruby32 ruby33 ruby34 ruby40" + +RUBY_FAKEGEM_BINWRAP="" +RUBY_FAKEGEM_EXTRADOC="README.md" +RUBY_FAKEGEM_GEMSPEC="time.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="Extends the Time class with methods for parsing and conversion" +HOMEPAGE="https://github.com/ruby/time" +SRC_URI="https://github.com/ruby/time/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 ~arm64-macos ~x64-macos ~x64-solaris" +IUSE="test" + +ruby_add_rdepend "dev-ruby/date" + +ruby_add_bdepend "test? ( dev-ruby/test-unit dev-ruby/test-unit-ruby-core )" + +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 -rhelper -e 'Dir["test/**/test_*.rb"].each{|f| require f}' || die +} |
