Date: Friday, March 19, 2021 @ 17:14:08 Author: felixonmars Revision: 894748
archrelease: copy trunk to community-staging-any Added: ruby-activesupport/repos/community-staging-any/ ruby-activesupport/repos/community-staging-any/PKGBUILD (from rev 894747, ruby-activesupport/trunk/PKGBUILD) ----------+ PKGBUILD | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) Copied: ruby-activesupport/repos/community-staging-any/PKGBUILD (from rev 894747, ruby-activesupport/trunk/PKGBUILD) =================================================================== --- community-staging-any/PKGBUILD (rev 0) +++ community-staging-any/PKGBUILD 2021-03-19 17:14:08 UTC (rev 894748) @@ -0,0 +1,56 @@ +# Maintainer: David Runge <dv...@archlinux.org> + +_name=activesupport +pkgname=ruby-activesupport +pkgver=6.1.3 +pkgrel=2 +pkgdesc='A collection of utility classes and standard library extensions' +arch=('any') +url="https://github.com/rails/rails/tree/master/activesupport" +license=('MIT') +# bootstrap activesupport without i18n (circular dependency) +depends=('ruby' 'ruby-concurrent' 'ruby-i18n' 'ruby-tzinfo' 'ruby-zeitwerk' 'ruby-minitest') +makedepends=('git' 'ruby-rake') +# TODO: package ruby-dalli +checkdepends=('ruby-minitest') +options=(!emptydirs) +source=("${pkgname}-${pkgver}::git+https://github.com/rails/rails#tag=v${pkgver}?signed") +sha512sums=('SKIP') +validpgpkeys=( + '54FE550EA35E26D7C75362C1FC23B6D0F1EEE948' # Rafael Mendonça França <rafael....@gmail.com> + '4CE91B75A79828E86B1AA8BB953170BCB4FFAFC6' # Aaron Patterson <tenderl...@ruby-lang.org> +) + +prepare() { + cd "${pkgname}-${pkgver}/activesupport" + # we don't do version pinning + sed -r 's|~>|>=|g' -i "${_name}.gemspec" +} + +build() { + cd "$pkgname-$pkgver/activesupport" + gem build "${_name}.gemspec" +} + +# bootstrap activesupport without tests (circular dependency on i18n) +# unspecified dependency on ruby-dalli: https://github.com/rails/rails/issues/38134 +# check() { +# cd "$pkgname-$pkgver/activesupport" +# rake test +# } + +package() { + cd "$pkgname-$pkgver/activesupport" + local _gemdir="$(gem env gemdir)" + gem install --ignore-dependencies \ + --no-user-install \ + -i "${pkgdir}/${_gemdir}" \ + -n "${pkgdir}/usr/bin" \ + ${_name}-${pkgver}.gem + install -vDm 644 MIT-LICENSE \ + "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" + cd "${pkgdir}/${_gemdir}" + rm -rvf cache gems/${_name}-${pkgver}/{ext,lib/*/*.so} \ + extensions/*/*/${_name}-${pkgver}/{mkmf.log,gem_make.out} \ + build_info extensions +}