blob: 2b5f9673c4460583ea70f4133741507a55fdc68f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
# Maintainer: Carl Smedstad <carsme@archlinux.org>
# Maintainer: Anton Kudelin <kudelin at protonmail dot com>
# Contrubutor: farwayer <farwayer@gmail.com>
pkgname=ruby-dotenv
_pkgname=${pkgname#ruby-}
pkgver=3.1.4
pkgrel=1
pkgdesc="Loads environment variables from .env"
arch=(any)
url="https://github.com/bkeepers/dotenv"
license=(MIT)
depends=(ruby)
makedepends=(
git
rubygems
)
checkdepends=(ruby-rspec)
options=(!emptydirs)
install=ruby-dotenv.install
source=("git+$url.git#tag=v$pkgver")
sha256sums=('f3e9984a25a902a5868b181b14db17d1b34d4d86cf0cc981f050c4d53610d50a')
_archive="$_pkgname"
prepare() {
cd "$_archive"
# update gemspec/Gemfile to allow newer version of the dependencies
sed --in-place --regexp-extended 's|~>|>=|g' "$_pkgname.gemspec"
# Add missing require to tests
echo "require 'pathname'" >> spec/spec_helper.rb
}
build() {
cd "$_archive"
local gemdir="$(gem env gemdir)"
gem build "$_pkgname.gemspec"
gem install \
--local \
--verbose \
--ignore-dependencies \
--no-user-install \
--install-dir "tmp_install/$gemdir" \
--bindir "tmp_install/usr/bin" \
"$_pkgname-$pkgver.gem"
# remove unrepreducible files
rm --force --recursive --verbose \
"tmp_install/$gemdir/cache/" \
"tmp_install/$gemdir/gems/$_pkgname-$pkgver/vendor/" \
"tmp_install/$gemdir/doc/$_pkgname-$pkgver/ri/ext/"
find "tmp_install/$gemdir/gems/" \
-type f \
\( \
-iname "*.o" -o \
-iname "*.c" -o \
-iname "*.so" -o \
-iname "*.time" -o \
-iname "gem.build_complete" -o \
-iname "Makefile" \
\) \
-delete
find "tmp_install/$gemdir/extensions/" \
-type f \
\( \
-iname "mkmf.log" -o \
-iname "gem_make.out" \
\) \
-delete
}
check() {
cd "$_archive"
# Remove tests that depend on rails
local excluded_tests=(
dotenv/rails_spec.rb
dotenv/log_subscriber_spec.rb
)
local excluded_tests_pattern="spec/{${excluded_tests[0]}$(printf ',%s' "${excluded_tests[@]:1}")}"
GEM_HOME="tmp_install/$(gem env gemdir)" rspec \
--exclude-pattern "$excluded_tests_pattern"
}
package() {
cd "$_archive"
cp -a tmp_install/* "$pkgdir"
mv "$pkgdir/usr/bin/dotenv" "$pkgdir/usr/bin/ruby-dotenv"
install -Dm644 -t "$pkgdir/usr/share/doc/$pkgname" ./*.md
install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
}
|