Felix Yan pushed to branch main at Arch Linux / Packaging / Packages / ruby-rss
Commits:
312894fd by Felix Yan at 2026-03-07T00:36:09+08:00
upgpkg: 0.3.2-1
- - - - -
3 changed files:
- .SRCINFO
- .nvchecker.toml
- PKGBUILD
Changes:
=====================================
.SRCINFO
=====================================
@@ -1,17 +1,18 @@
pkgbase = ruby-rss
pkgdesc = Family of libraries that support various formats of XML
"feeds"
- pkgver = 0.3.1
- pkgrel = 4
+ pkgver = 0.3.2
+ pkgrel = 1
url = https://github.com/ruby/rss
arch = any
- license = BSD
+ license = BSD-2-Clause
checkdepends = ruby-bundler
checkdepends = ruby-erb
+ makedepends = git
makedepends = ruby-rake
makedepends = ruby-test-unit
depends = ruby-rexml
options = !emptydirs
- source = https://github.com/ruby/rss/archive/0.3.1/ruby-rss-0.3.1.tar.gz
- sha256sums =
45e9db44b41205d59b7acdeb5d347fe26852057032b065462247ceb491d17867
+ source = git+https://github.com/ruby/rss.git#tag=0.3.2
+ sha256sums =
d9c660f42fc90dc37d9088557258b1cb716ae312ceda9143af0f47ae4ebea0f8
pkgname = ruby-rss
=====================================
.nvchecker.toml
=====================================
@@ -1,4 +1,3 @@
[ruby-rss]
source = "git"
git = "https://github.com/ruby/rss.git"
-prefix = "v"
=====================================
PKGBUILD
=====================================
@@ -1,16 +1,17 @@
# Maintainer: Felix Yan <[email protected]>
pkgname=ruby-rss
-pkgver=0.3.1
-pkgrel=4
+pkgver=0.3.2
+pkgrel=1
pkgdesc='Family of libraries that support various formats of XML "feeds"'
arch=(any)
url='https://github.com/ruby/rss'
-license=(BSD)
+license=(BSD-2-Clause)
depends=(
ruby-rexml
)
makedepends=(
+ git
ruby-rake
ruby-test-unit
)
@@ -19,12 +20,12 @@ checkdepends=(
ruby-erb
)
options=(!emptydirs)
-source=(https://github.com/ruby/rss/archive/$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('45e9db44b41205d59b7acdeb5d347fe26852057032b065462247ceb491d17867')
+source=(git+https://github.com/ruby/rss.git#tag=$pkgver)
+sha256sums=('d9c660f42fc90dc37d9088557258b1cb716ae312ceda9143af0f47ae4ebea0f8')
build() {
local _gemdir="$(gem env gemdir)"
- cd rss-$pkgver
+ cd rss
gem build rss.gemspec
gem install \
--local \
@@ -50,12 +51,12 @@ build() {
check() {
local _gemdir="$(gem env gemdir)"
- cd rss-$pkgver
+ cd rss
GEM_HOME="tmp_install/$_gemdir" rake
}
package() {
- cd rss-$pkgver
+ cd rss
cp -a tmp_install/* "$pkgdir"/
install -Dm644 LICENSE.txt -t "$pkgdir"/usr/share/licenses/$pkgname/
}
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/ruby-rss/-/commit/312894fdef100146edf3587933c50e5158e3af5d
--
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/ruby-rss/-/commit/312894fdef100146edf3587933c50e5158e3af5d
You're receiving this email because of your account on gitlab.archlinux.org.