From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 40B4D158086 for ; Fri, 5 Nov 2021 09:35:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 518AEE0844; Fri, 5 Nov 2021 09:35:06 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 387EDE0844 for ; Fri, 5 Nov 2021 09:35:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 47772342C43 for ; Fri, 5 Nov 2021 07:51:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2AF528F for ; Fri, 5 Nov 2021 07:51:13 +0000 (UTC) From: "Hans de Graaff" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hans de Graaff" Message-ID: <1636098657.16f55c32975b3bc66b11c1ae61820d9618e4bf3a.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/localhost/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/localhost/Manifest dev-ruby/localhost/localhost-1.1.9.ebuild dev-ruby/localhost/metadata.xml X-VCS-Directories: dev-ruby/localhost/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 16f55c32975b3bc66b11c1ae61820d9618e4bf3a X-VCS-Branch: master Date: Fri, 5 Nov 2021 07:51:13 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 5a84f930-7907-443c-b085-bf80b3433bed X-Archives-Hash: 3f8f8d6263a8e0274294a12fe120cc98 commit: 16f55c32975b3bc66b11c1ae61820d9618e4bf3a Author: Hans de Graaff gentoo org> AuthorDate: Fri Nov 5 07:39:15 2021 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Fri Nov 5 07:50:57 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16f55c32 dev-ruby/localhost: import of 1.1.9 New test dependency for www-servers/puma. Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/localhost/Manifest | 1 + dev-ruby/localhost/localhost-1.1.9.ebuild | 31 +++++++++++++++++++++++++++++++ dev-ruby/localhost/metadata.xml | 8 ++++++++ 3 files changed, 40 insertions(+) diff --git a/dev-ruby/localhost/Manifest b/dev-ruby/localhost/Manifest new file mode 100644 index 00000000000..ed63740a7d3 --- /dev/null +++ b/dev-ruby/localhost/Manifest @@ -0,0 +1 @@ +DIST localhost-1.1.9.tar.gz 2125545 BLAKE2B 5843b3857a11d9f56412f67cb15e424332b07cf81a29ae0a05a3ff20c6f06af56f6a02d8315f97c2d57fe76f7359c737cf19f116868ff532ac083070430fa22e SHA512 d46fd016957fd34309d50488dc61f23e9d47a5a6bfdeda5c049f6ffc112c13cd21394ada3e15c56f14913cba6ab503f60e32237431f7ff824fbbab8cd8a2d746 diff --git a/dev-ruby/localhost/localhost-1.1.9.ebuild b/dev-ruby/localhost/localhost-1.1.9.ebuild new file mode 100644 index 00000000000..c0bfad9d596 --- /dev/null +++ b/dev-ruby/localhost/localhost-1.1.9.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +USE_RUBY="ruby26 ruby27 ruby30" + +RUBY_FAKEGEM_EXTRADOC="README.md" +RUBY_FAKEGEM_GEMSPEC="localhost.gemspec" +RUBY_FAKEGEM_RECIPE_TEST="rspec3" + +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" + +KEYWORDS="~amd64" +SLOT="$(ver_cut 1)" +IUSE="" + +# Skip tests for now since they require a lot of +# dependencies and this package blocks a security bug. +RESTRICT="test" + +#ruby_add_bdepend "test? ( dev-ruby/async-rspec ) " + +all_ruby_prepare() { + sed -i -e 's:_relative ": "./:' ${RUBY_FAKEGEM_GEMSPEC} || die + sed -i -e '/covered/ s:^:#:' spec/spec_helper.rb || die +} diff --git a/dev-ruby/localhost/metadata.xml b/dev-ruby/localhost/metadata.xml new file mode 100644 index 00000000000..658c72b1920 --- /dev/null +++ b/dev-ruby/localhost/metadata.xml @@ -0,0 +1,8 @@ + + + + + ruby@gentoo.org + Gentoo Ruby Project + +