diff options
author | Sam James <sam@gentoo.org> | 2023-04-03 01:08:16 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-04-03 01:46:31 +0100 |
commit | 49a6bab711e4287028759ff29b4cc3f2184f230b (patch) | |
tree | 13c71516fb2bcba87a18b0c3f589db5cc2d9ef78 /dev-ruby/localhost/localhost-1.1.10.ebuild | |
parent | dev-ruby/async-process: new package, add 1.3.1 (diff) | |
download | gentoo-49a6bab711e4287028759ff29b4cc3f2184f230b.tar.gz gentoo-49a6bab711e4287028759ff29b4cc3f2184f230b.tar.bz2 gentoo-49a6bab711e4287028759ff29b4cc3f2184f230b.zip |
dev-ruby/localhost: add 1.1.10
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-ruby/localhost/localhost-1.1.10.ebuild')
-rw-r--r-- | dev-ruby/localhost/localhost-1.1.10.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/dev-ruby/localhost/localhost-1.1.10.ebuild b/dev-ruby/localhost/localhost-1.1.10.ebuild new file mode 100644 index 000000000000..f061baa1a9e2 --- /dev/null +++ b/dev-ruby/localhost/localhost-1.1.10.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +USE_RUBY="ruby27 ruby30 ruby31 ruby32" + +RUBY_FAKEGEM_EXTRADOC="readme.md" +RUBY_FAKEGEM_GEMSPEC="localhost.gemspec" +RUBY_FAKEGEM_RECIPE_TEST="sus" + +inherit ruby-fakegem + +DESCRIPTION="Manage a local CA for self-signed localhost development servers" +HOMEPAGE="https://github.com/socketry/localhost" +SRC_URI="https://github.com/socketry/localhost/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="$(ver_cut 1)" +KEYWORDS="~amd64" + +ruby_add_bdepend "test? ( dev-ruby/sus-fixtures-async )" + +all_ruby_prepare() { + sed -i -e 's:_relative ": "./:' ${RUBY_FAKEGEM_GEMSPEC} || die + sed -i -e '/covered/Id' config/sus.rb || die +} + +each_ruby_test() { + # Tests fail in parallel as it tries to use the same port so + # manually replicate ruby-ng_sus for now, as ruby-ng_sus runs sus-parallel. + ${RUBY} -S sus || die +} |