From: "Hans de Graaff" <graaff@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/haml/
Date: Sat, 4 Nov 2023 07:06:02 +0000 (UTC) [thread overview]
Message-ID: <1699081557.8bb5590e51bcff309a67ac34b05b069e5365c3e2.graaff@gentoo> (raw)
commit: 8bb5590e51bcff309a67ac34b05b069e5365c3e2
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 4 06:45:58 2023 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sat Nov 4 07:05:57 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bb5590e
dev-ruby/haml: add 6.2.3
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
dev-ruby/haml/Manifest | 1 +
dev-ruby/haml/haml-6.2.3.ebuild | 56 +++++++++++++++++++++++++++++++++++++++++
2 files changed, 57 insertions(+)
diff --git a/dev-ruby/haml/Manifest b/dev-ruby/haml/Manifest
index 33dad6c18c21..04e4f5196adf 100644
--- a/dev-ruby/haml/Manifest
+++ b/dev-ruby/haml/Manifest
@@ -2,3 +2,4 @@ DIST haml-5.2.2.tar.gz 129833 BLAKE2B d68c24c7a3c817d6d364b2ec92b84b4f56f4fffa48
DIST haml-6.1.1.tar.gz 669644 BLAKE2B 239b3a1fe02bcd1e2981198ba7c54c71ca2af0947102fcea6cd600cc6579294856baa290589a7d3a015e54df8bcecf8e50175cf2189e8f4f9c6f9721a558bcc9 SHA512 7d732be085b41b8f0eec418600a82b51c68301081165aa636fa342ae26b74215a202a4b15e592da980d9a7fbe24bad01399f599770420133c4b6ab7523386fa5
DIST haml-6.1.2.tar.gz 669696 BLAKE2B 81398ca33af69a1cf79cbe6d49d82ca27489584dc8c4082c079606f1f029b99e6b4c6fb350a5b50da31349ca3cbd7b7d2913e521b401634f7442e03279753e18 SHA512 c059b96111c6e477874cf37f0463dd9150d00e2e5261e9dab8251e1f66cacfa647009bf4d7ddd60fd11582c3f41ce06515f5aa448358aa58a9df2c8289660151
DIST haml-6.1.4.tar.gz 669960 BLAKE2B ae4194a7af653e60ec1f5a494a4f8db61a53c99790a9f859cf294961d6cf2d215ad5d2dc78f61355c65935aca0d5534604f0b2fe77dcaf9d3a6cfd775c173701 SHA512 fe866b524fd2f5e85e458897642cb39a97802fdf728182ae3ca2e828931d5526e0568e771a067161610dbb600d962808f417f9dee8b08ffe4baeb71a5566f502
+DIST haml-6.2.3.tar.gz 666083 BLAKE2B 8f6c3e6b3538fdd8b6937278073d532245d7ce53bfbb81f2ebc394160af50e8022475bf7225d3e8f8846d0088120de58829dacf91864b91bab4f0ffc18479322 SHA512 28c0031b62c44cf6b057ee88ffb522d2081e92f5d70fc25999b64a59a4430acd63bb9ee4e3fc34139a1a6fe6f678cde6c3ce08b9a5ed5d433d30d661c5983b81
diff --git a/dev-ruby/haml/haml-6.2.3.ebuild b/dev-ruby/haml/haml-6.2.3.ebuild
new file mode 100644
index 000000000000..a4ac5c0cb899
--- /dev/null
+++ b/dev-ruby/haml/haml-6.2.3.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+USE_RUBY="ruby31 ruby32"
+
+RUBY_FAKEGEM_BINWRAP=""
+
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md FAQ.md README.md REFERENCE.md"
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A ruby web page templating engine"
+HOMEPAGE="https://haml.info/"
+SRC_URI="https://github.com/haml/haml/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="$(ver_cut 1)"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
+
+IUSE="doc test"
+
+ruby_add_rdepend ">=dev-ruby/temple-0.8.2 dev-ruby/thor dev-ruby/tilt:*"
+
+ruby_add_bdepend "
+ test? (
+ dev-ruby/minitest:5.15
+ dev-ruby/nokogiri
+ <dev-ruby/railties-7.1
+ <dev-ruby/activemodel-7.1
+ <dev-ruby/actionpack-7.1
+ dev-ruby/unindent
+ )
+ doc? (
+ dev-ruby/yard
+ )"
+
+all_ruby_prepare() {
+ sed -i -e 's/git ls-files -z/find * -print0/' ${RUBY_FAKEGEM_GEMSPEC} || die
+
+ sed -i -e '/bundler/ s:^:#: ; /Bundler/,/end/ s:^:#:' Rakefile || die
+ sed -i \
+ -e '/bundler/I s:^:#:' \
+ -e '/simplecov/I s:^:#:' \
+ -e "1igem 'rails', '<7.1'" \
+ test/test_helper.rb || die
+ # Remove tests that fails when RedCloth is available
+ rm -f test/haml/filters/markdown_test.rb || die
+}
+
+each_ruby_test() {
+ ${RUBY} -Ilib:test:. -rtest_helper -e 'Dir["test/haml/**/*_test.rb"].each { require _1 }' || die
+}
next reply other threads:[~2023-11-04 7:06 UTC|newest]
Thread overview: 84+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-11-04 7:06 Hans de Graaff [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-11-15 14:46 [gentoo-commits] repo/gentoo:master commit in: dev-ruby/haml/ Arthur Zamarin
2024-11-15 10:12 Hans de Graaff
2024-11-15 10:03 Hans de Graaff
2024-11-15 9:36 Hans de Graaff
2024-11-15 9:35 Hans de Graaff
2024-10-18 16:11 Arthur Zamarin
2024-10-06 10:46 Sam James
2024-10-06 10:46 Sam James
2024-10-06 10:46 Sam James
2024-06-02 7:00 Hans de Graaff
2024-04-03 15:40 Hans de Graaff
2023-12-29 16:45 Arthur Zamarin
2023-12-24 14:22 Sam James
2023-12-24 11:12 Sam James
2023-12-24 11:00 Hans de Graaff
2023-12-24 11:00 Hans de Graaff
2023-12-22 8:08 Hans de Graaff
2023-09-28 4:38 Hans de Graaff
2023-08-29 17:19 Hans de Graaff
2023-08-19 5:14 Hans de Graaff
2023-08-11 19:24 Hans de Graaff
2023-04-11 17:52 Jakov Smolić
2023-04-09 2:34 Sam James
2023-04-07 18:25 Sam James
2023-04-07 11:25 Sam James
2023-01-14 7:31 Hans de Graaff
2023-01-13 7:57 Hans de Graaff
2023-01-13 7:57 Hans de Graaff
2022-10-02 17:03 Hans de Graaff
2022-04-08 5:32 Hans de Graaff
2022-03-26 7:48 Hans de Graaff
2021-11-08 2:51 Yixun Lan
2021-10-04 1:30 Sam James
2021-10-04 1:30 Sam James
2021-10-04 1:21 Sam James
2021-10-04 1:21 Sam James
2021-10-04 1:21 Sam James
2021-10-04 0:49 Sam James
2021-10-03 7:55 Hans de Graaff
2021-08-23 17:38 Hans de Graaff
2021-07-16 9:31 Hans de Graaff
2021-07-16 6:20 Hans de Graaff
2021-04-18 6:13 Hans de Graaff
2021-04-18 6:13 Hans de Graaff
2020-05-23 18:49 Hans de Graaff
2020-04-19 5:44 Hans de Graaff
2019-11-27 13:06 Mikle Kolyada
2019-11-13 7:44 Agostino Sarubbo
2019-11-13 7:39 Agostino Sarubbo
2019-11-12 15:08 Agostino Sarubbo
2019-11-12 10:05 Agostino Sarubbo
2019-11-11 18:59 Hans de Graaff
2019-11-11 18:59 Hans de Graaff
2019-08-06 18:56 Hans de Graaff
2019-07-17 7:17 Hans de Graaff
2019-06-30 5:24 Hans de Graaff
2019-05-25 5:38 Hans de Graaff
2019-05-17 4:31 Hans de Graaff
2019-05-16 4:32 Hans de Graaff
2019-05-01 19:56 Hans de Graaff
2019-01-22 16:28 Hans de Graaff
2018-07-10 17:45 Hans de Graaff
2018-06-06 23:23 Thomas Deutschmann
2018-06-02 13:50 Mikle Kolyada
2018-06-02 6:01 Hans de Graaff
2018-06-02 6:01 Hans de Graaff
2018-05-23 4:47 Hans de Graaff
2018-05-06 18:52 Hans de Graaff
2018-01-25 6:34 Hans de Graaff
2017-12-09 7:55 Hans de Graaff
2017-09-28 5:36 Hans de Graaff
2017-08-03 4:41 Hans de Graaff
2017-07-17 6:21 Hans de Graaff
2017-07-03 9:12 Alexis Ballier
2017-06-01 5:10 Hans de Graaff
2017-06-01 5:10 Hans de Graaff
2017-02-27 18:55 Michael Weber
2017-01-20 6:40 Hans de Graaff
2016-04-29 7:36 Hans de Graaff
2016-04-29 7:36 Hans de Graaff
2016-01-17 20:56 Manuel Rüger
2015-08-11 5:05 Hans de Graaff
2015-08-11 5:05 Hans de Graaff
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1699081557.8bb5590e51bcff309a67ac34b05b069e5365c3e2.graaff@gentoo \
--to=graaff@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox