diff options
author | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2022-03-02 16:16:21 +0100 |
---|---|---|
committer | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2022-03-02 16:18:46 +0100 |
commit | b380f63aaa22bbff1d22eaf428b355d8667ac966 (patch) | |
tree | 28a1feaf4d2a83aa4d8a2676cc0ee52d542ea2e1 /pcr | |
parent | 80eaa1227aec300a312b7c94bc21c3353923098d (diff) | |
download | abslibre-b380f63aaa22bbff1d22eaf428b355d8667ac966.tar.gz abslibre-b380f63aaa22bbff1d22eaf428b355d8667ac966.tar.bz2 abslibre-b380f63aaa22bbff1d22eaf428b355d8667ac966.zip |
pcr: remove ruby-asciidoctor
asciidoctor is already in Arch Linux community, and it is more
recent.
On armv7h we have:
community/asciidoctor 2.0.17-1
An implementation of AsciiDoc in Ruby
and on i686 we have:
community/asciidoctor 2.0.17-1.0 [installed]
An implementation of AsciiDoc in Ruby
and on x86_64 we have:
community/asciidoctor 2.0.17-1
An implementation of AsciiDoc in Ruby
So we don't need the pakcage from pcr anymore.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Diffstat (limited to 'pcr')
-rw-r--r-- | pcr/ruby-asciidoctor/PKGBUILD | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/pcr/ruby-asciidoctor/PKGBUILD b/pcr/ruby-asciidoctor/PKGBUILD deleted file mode 100644 index 40b42f71d..000000000 --- a/pcr/ruby-asciidoctor/PKGBUILD +++ /dev/null @@ -1,35 +0,0 @@ -# Generated by gem2arch (https://github.com/anatol/gem2arch) -# Contributor (AUR): Nicolas Bigaouette <nbigaouette@chemcomp.com> -# Maintainer (AUR): Nick Østergaard <oe.nick at gmail dot com> - -_gemname=asciidoctor -pkgname=ruby-$_gemname -pkgver=1.5.8 -pkgdesc='An implementation of the AsciiDoc text processor and publishing toolchain in Ruby' -url='http://asciidoctor.org' -license=(MIT) - -pkgrel=1 -arch=(any) -depends=(ruby) -makedepends=(rubygems) -options=(!emptydirs) -source=($pkgname-$pkgver.tar.gz::https://github.com/asciidoctor/asciidoctor/archive/v$pkgver.tar.gz) -sha256sums=('bc225145feb7876bce5188aa3ef511fad49b141ec18e1bb60e69b33b0a100da0') - -build() { - cd "$srcdir/$_gemname-$pkgver" - - gem build $_gemname.gemspec -} - -package() { - cd "$srcdir/$_gemname-$pkgver" - - local _gemdir="$(ruby -rubygems -e'puts Gem.default_dir')" - gem install --no-user-install --ignore-dependencies -i "$pkgdir$_gemdir" -n "$pkgdir/usr/bin" \ - "$_gemname-$pkgver.gem" - - install -Dm644 "$pkgdir$_gemdir"/gems/$_gemname-$pkgver/LICENSE \ - "$pkgdir"/usr/share/licenses/$pkgname/LICENSE -} |