diff options
Diffstat (limited to 'dev-ruby')
-rw-r--r-- | dev-ruby/Manifest.gz | bin | 112160 -> 112162 bytes | |||
-rw-r--r-- | dev-ruby/tilt/Manifest | 2 | ||||
-rw-r--r-- | dev-ruby/tilt/tilt-2.6.0.ebuild | 34 |
3 files changed, 36 insertions, 0 deletions
diff --git a/dev-ruby/Manifest.gz b/dev-ruby/Manifest.gz Binary files differindex aacfd841b3b0..3968b97e0263 100644 --- a/dev-ruby/Manifest.gz +++ b/dev-ruby/Manifest.gz diff --git a/dev-ruby/tilt/Manifest b/dev-ruby/tilt/Manifest index 3c964aba7bbc..8e27d00a6572 100644 --- a/dev-ruby/tilt/Manifest +++ b/dev-ruby/tilt/Manifest @@ -1,5 +1,7 @@ DIST tilt-2.4.0.tar.gz 58520 BLAKE2B fe07437d62de1db062625c1ead3a81ed34bba0c7169181d44216b5f42b1b742b2c7900c079affbae13831d1370044827384da4302b6e92a01f151b36b37f3772 SHA512 3053479b9f258e01620db5f4af02247179df39f18baae2b5b83eac23046effafcd6f47575432158bb752e3019dcb0aadb67ca11236a12ea01e2211354b7418d1 DIST tilt-2.5.0.tar.gz 57181 BLAKE2B 27f2eccaec18c7e87ac30680ad94f9202f9608a384d4391e90cc882a4ed82e8b977d89c275202d67e5f30581104a5279e88d47288e709567d65940c18c8d585f SHA512 d27e08e773dd83cf9310ae2879a3a558ecdf686f105c6f03588646ba771933533f75c0132b404c846dfd10087cd6e9aa2cc7fe41076bb4e84766c79f0b98538f +DIST tilt-2.6.0.tar.gz 61451 BLAKE2B aa007d0665685ddefb6c5228b3c89444913d632c462d7c9be017bdbd6138238e4d533b25e00f65c99ec0c6e59de512b446916b15a6ff7ef7bd1f9b3cda9911c3 SHA512 b1f2e146d98b75e97e479bfcbad125c0fd9c5bc707b5d9ea73185033f70461d008f9f94e5bab6e6e4676fd8237af08f9ea13f311f4673d3644c8dcc335d25c68 EBUILD tilt-2.4.0.ebuild 1072 BLAKE2B 0dd254420285ea12e41fd88495f700f68f6154b2b906643721079cf6249995ddd3d9070afe3324ce95dc1b05b83656d0baa1f469151e73665d249dda78b42813 SHA512 e823131d58b9d4c89d579b552753377b3008900e3e187efd00111f99e965f0d98ead4074ae56d3deb1f190e7dbbce3b88dcde62ff8b351daf9fd8dac24e69db3 EBUILD tilt-2.5.0.ebuild 1085 BLAKE2B 6c326910e1f4a81aed87b762c2ac7b64d21505e388e36dcd5afd72e3d610b68684071672a798839b082bb81b5ae7cd2bdeee95d1221fe83390661a7fd768842c SHA512 36fab09ab023a1723c898406bdfcbaa83e6f1bcc8087ddec7283f7706e879d906c87811462914e070b3452efde99dbc95acd4d12ae784012293077c6fe42d26a +EBUILD tilt-2.6.0.ebuild 1085 BLAKE2B 6c326910e1f4a81aed87b762c2ac7b64d21505e388e36dcd5afd72e3d610b68684071672a798839b082bb81b5ae7cd2bdeee95d1221fe83390661a7fd768842c SHA512 36fab09ab023a1723c898406bdfcbaa83e6f1bcc8087ddec7283f7706e879d906c87811462914e070b3452efde99dbc95acd4d12ae784012293077c6fe42d26a MISC metadata.xml 340 BLAKE2B 5414049365511f348e3da85bf3f207b791dc4269331e6a650f90398b6afe2502e2e62624ec9597a2d55dca4a7e4a99e209837c44bac7a901ec42139518f41647 SHA512 4be8002eca7cc4c0204311dd7dd187caeee3f40db9b00d108fb18e97009f8cec10d298a958bf83d24177297cebd78789cdd546a0c5e9c7288aa697dee1facf71 diff --git a/dev-ruby/tilt/tilt-2.6.0.ebuild b/dev-ruby/tilt/tilt-2.6.0.ebuild new file mode 100644 index 000000000000..b545d4342969 --- /dev/null +++ b/dev-ruby/tilt/tilt-2.6.0.ebuild @@ -0,0 +1,34 @@ +# 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_RECIPE_DOC="none" +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md docs/TEMPLATES.md" + +RUBY_FAKEGEM_GEMSPEC="tilt.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="Thin interface over template engines to make their usage as generic as possible" +HOMEPAGE="https://github.com/jeremyevans/tilt" +SRC_URI="https://github.com/jeremyevans/tilt/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="2" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris" + +# Block on some of the potential test dependencies. These dependencies +# are optional for the test suite, and we don't want to depend on all of +# them to facilitate keywording and stabling. +ruby_add_bdepend "test? ( + dev-ruby/erubi + dev-ruby/nokogiri +)" + +all_ruby_prepare() { + sed -e '/bundler/I s:^:#:' -i Rakefile test/test_helper.rb || die + sed -e '7irequire "uri"' -i test/test_helper.rb || die +} |