dev-ruby/rss: add 0.3.2

Signed-off-by: Hans de Graaff <graaff@gentoo.org>
This commit is contained in:
Hans de Graaff 2025-12-19 20:53:41 +01:00
parent 8b2e86508a
commit 6eb258cacc
No known key found for this signature in database
GPG Key ID: DB347F938654FA34
2 changed files with 31 additions and 0 deletions

View File

@ -1 +1,2 @@
DIST rss-0.3.1.tar.gz 107398 BLAKE2B 8ae8e714a12a6692a0b41d5c757204ee8a63350267cb2506435fad220a23fdec417887bd5879ef2355ec65a8dd278985d623aa8f98a43af306f169188adb3887 SHA512 bc0238a020f5a330e6bca45dbcdfaa40c37bb5220f7de35636547c6b75aa64955cc5c7840097b9e1525a545196f0374d7108de8b50672bc2aeefce72f60a9ea5
DIST rss-0.3.2.tar.gz 107583 BLAKE2B 064e2799006dddd565649ad0a101d1ab21a2870bfb68d9bc97d3020b21b9f98adcca3f8c61dd6babcd35ade1296dd52b230c2b2f952b82c7dc6078e6161fff41 SHA512 3da1d71d63d90c5280d508b446699d0c920d46d8c1e0ad6a6bf997de131294a3b760cbdf3c43abf966963f67320dbfce54c43578559608a54f5121f969f66263

View File

@ -0,0 +1,30 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
USE_RUBY="ruby32 ruby33 ruby34"
RUBY_FAKEGEM_EXTRADOC="NEWS.md README.md"
RUBY_FAKEGEM_GEMSPEC="rss.gemspec"
inherit ruby-fakegem
DESCRIPTION="Family of libraries that support various formats of XML feeds"
HOMEPAGE="https://github.com/ruby/rss"
SRC_URI="https://github.com/ruby/rss/archive/refs/tags/${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/rexml"
ruby_add_bdepend "test? ( dev-ruby/test-unit )"
all_ruby_prepare() {
sed -i -e '/bundler/,/^helper.install/ s:^:#:' Rakefile || die
sed -i -e 's:_relative ": "./:' ${RUBY_FAKEGEM_GEMSPEC} || die
}