public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Hans de Graaff" <graaff@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/liquid/
Date: Sat, 05 Apr 2025 17:36:29 +0000 (UTC)	[thread overview]
Message-ID: <1743874575.73e66b3b0adab4f7a692919e5c778edfcce35ba1.graaff@gentoo> (raw)

commit:     73e66b3b0adab4f7a692919e5c778edfcce35ba1
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sat Apr  5 16:43:01 2025 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sat Apr  5 17:36:15 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73e66b3b

dev-ruby/liquid: add 5.8.3

Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>

 dev-ruby/liquid/Manifest            |  1 +
 dev-ruby/liquid/liquid-5.8.3.ebuild | 45 +++++++++++++++++++++++++++++++++++++
 2 files changed, 46 insertions(+)

diff --git a/dev-ruby/liquid/Manifest b/dev-ruby/liquid/Manifest
index 688fe0f979da..95afb8cea1a9 100644
--- a/dev-ruby/liquid/Manifest
+++ b/dev-ruby/liquid/Manifest
@@ -2,3 +2,4 @@ DIST liquid-4.0.4.tar.gz 102376 BLAKE2B 034c1635556455b41911230e03329f2e817562c9
 DIST liquid-5.6.0.tar.gz 134318 BLAKE2B bad5b8899acde697d8f339d49fe07a292524dd3826750e1acf930a0a607dfe6349847406a6ce0c2d0f1366ce577b0677094ecbe0f19b26a5e30fbb4c72e1b644 SHA512 2c893ae1ce8db0a0ef4485bceba64e3a4ec80bf56666b5bb5e2da1f96477ef58579977aed3e2ae1cdc85886f5c012277414aa2ddf37fa22290b88699b09fc660
 DIST liquid-5.8.1.tar.gz 141973 BLAKE2B 2f710e77b749bf68dc288c7ea149c44048803fdeac7d41d93aad890353c7f1fa6ab7fb8ac4b71fa4c448d3277ab4faa18ddcd7ee91600482ee7e62ece562a760 SHA512 8cee010ad1858a9211fee8045a0b112f95a6f57356e86bac81d8db97edcf6911f92956eeea6473b65a455dff87556e22735e87f0987b74116b8591dbbd482703
 DIST liquid-5.8.2.tar.gz 142321 BLAKE2B 1859c75b87e1211f409200fce759b328fe654ffe8bfc61f9a349b762f76f3279e7f7fdece40b33f0c032baa9712693349afebf2ec7be1928e67e6912b586fc09 SHA512 919c59ec1f91b13f8a2b3af385dad89b2ef9b039447c152531fabd7faa2f9f3b91adbc2fdaa9ed133eadb4bce377e895f92f9366c8fbfb06d8793211933d95ff
+DIST liquid-5.8.3.tar.gz 142525 BLAKE2B 5a01a3d1be6803e3d04b9e53c594ce76f70581a11a7efca92e1182e638f4becae4625ec68a41ee53266a113dea0a6b98e5756d4db5d42b76302ead6b026c50b2 SHA512 7fa65215e1ad63d889c78d6664f975cb6804184acea19ed9e4c8e25e0b6c695913aba20105b3bbb0cea5da163db80a505c00489d7d70aec336bc8f55efa357c4

diff --git a/dev-ruby/liquid/liquid-5.8.3.ebuild b/dev-ruby/liquid/liquid-5.8.3.ebuild
new file mode 100644
index 000000000000..f050d369cb21
--- /dev/null
+++ b/dev-ruby/liquid/liquid-5.8.3.ebuild
@@ -0,0 +1,45 @@
+# 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_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="History.md README.md"
+
+RUBY_FAKEGEM_GEMSPEC="liquid.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Template engine for Ruby"
+HOMEPAGE="https://shopify.github.io/liquid/"
+SRC_URI="https://github.com/Shopify/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="$(ver_cut 1)"
+KEYWORDS="~amd64 ~arm64"
+IUSE="test"
+
+ruby_add_rdepend "
+	dev-ruby/bigdecimal
+	>=dev-ruby/strscan-3.1.1
+"
+
+ruby_add_bdepend "test? ( dev-ruby/minitest )"
+
+all_ruby_prepare() {
+	# liquid-c is not packaged
+	sed -i -e '/LIQUID_C/ s:^:#:' Rakefile || die
+
+	# Avoid test requiring unpackaged stackprof
+	sed -i -e '/assert_no_object_allocations/askip "unpackaged stackprof"' test/integration/context_test.rb || die
+
+	# Avoid test requiring unpackaged lru_redux
+	sed -e '/require.*lru_redux/ s:^:#:' \
+		-e '/test_expression_cache_with_lru_redux/askip "unpackaged lru_redux"' \
+		-i test/integration/expression_test.rb || die
+
+	# Ensure the gem version of strscan is used.
+	sed -e '3igem "strscan", ">=3.1.1"' \
+		-i test/test_helper.rb || die
+}


             reply	other threads:[~2025-04-05 17:36 UTC|newest]

Thread overview: 45+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-04-05 17:36 Hans de Graaff [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-04-15  7:17 [gentoo-commits] repo/gentoo:master commit in: dev-ruby/liquid/ Hans de Graaff
2025-04-10  5:38 Hans de Graaff
2025-04-10  5:38 Hans de Graaff
2025-03-20  8:04 Hans de Graaff
2025-03-20  8:04 Hans de Graaff
2025-03-16  8:39 Hans de Graaff
2025-01-20 17:03 Hans de Graaff
2024-12-31  6:02 Hans de Graaff
2024-12-20  6:07 Hans de Graaff
2024-12-20  6:07 Hans de Graaff
2024-07-23  5:29 Hans de Graaff
2024-07-23  5:29 Hans de Graaff
2024-03-22  6:26 Hans de Graaff
2023-12-27 19:41 Hans de Graaff
2023-08-27  6:44 Hans de Graaff
2023-03-27 16:08 Hans de Graaff
2023-03-26  3:03 Sam James
2023-03-12 12:09 Hans de Graaff
2022-08-06  5:55 Hans de Graaff
2022-06-12  8:33 Hans de Graaff
2022-05-20 10:36 Hans de Graaff
2022-04-06  5:48 Hans de Graaff
2022-03-16  6:41 Hans de Graaff
2021-09-16  6:25 Hans de Graaff
2021-07-16  9:31 Hans de Graaff
2021-04-04  6:53 Hans de Graaff
2021-03-15  6:16 Hans de Graaff
2020-09-05  8:01 Hans de Graaff
2020-08-09 17:28 Hans de Graaff
2020-07-27  2:09 Sam James
2019-03-13  7:03 Hans de Graaff
2019-03-13  7:03 Hans de Graaff
2019-03-09  6:33 Hans de Graaff
2019-02-01 11:46 Hans de Graaff
2018-12-11  8:54 Hans de Graaff
2018-12-11  8:54 Hans de Graaff
2018-09-13  5:46 Hans de Graaff
2018-02-04 15:15 Hans de Graaff
2017-08-26  8:27 Hans de Graaff
2017-07-19  6:55 Hans de Graaff
2016-11-08 23:17 Manuel Rüger
2016-07-24 14:47 Hans de Graaff
2016-04-29  7:36 Hans de Graaff
2016-04-17 14:35 Manuel Rüger

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=1743874575.73e66b3b0adab4f7a692919e5c778edfcce35ba1.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