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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8F7FF138359 for ; Tue, 1 Sep 2020 05:19:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 818CFE09C6; Tue, 1 Sep 2020 05:19:07 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 64468E09C6 for ; Tue, 1 Sep 2020 05:19:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D78C7340E8F for ; Tue, 1 Sep 2020 05:19:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 54100339 for ; Tue, 1 Sep 2020 05:19:04 +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: <1598937261.ad31480ab7e4d260ba09e2072d340600ba3ee50c.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/warden/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/warden/Manifest dev-ruby/warden/warden-1.2.9.ebuild X-VCS-Directories: dev-ruby/warden/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: ad31480ab7e4d260ba09e2072d340600ba3ee50c X-VCS-Branch: master Date: Tue, 1 Sep 2020 05:19:04 +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: 70e6e466-f66c-4ffd-ae67-af260cfd21e1 X-Archives-Hash: d28b31f4fa25b61df188bcb761579740 commit: ad31480ab7e4d260ba09e2072d340600ba3ee50c Author: Hans de Graaff gentoo org> AuthorDate: Tue Sep 1 05:14:21 2020 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Tue Sep 1 05:14:21 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad31480a dev-ruby/warden: add 1.2.9 Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/warden/Manifest | 1 + dev-ruby/warden/warden-1.2.9.ebuild | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/dev-ruby/warden/Manifest b/dev-ruby/warden/Manifest index 639e20741db..e6da1e1e806 100644 --- a/dev-ruby/warden/Manifest +++ b/dev-ruby/warden/Manifest @@ -1 +1,2 @@ DIST warden-1.2.8.tar.gz 29841 BLAKE2B 657f9d1b5a7fbf3b07ac8cfa514c410561cce853cbc2e6c7bf6d98deab8f625771b20d339613738a979395638b654b066080fad5a7378b15345cb46e273966c9 SHA512 efd7a416f2da3095d6d33c2dca3a7e09d127fb0abec86e959aba56739ae865ea9a11e234ea1f6d557466d9076e3f271481e20982bc159a3f09a4d55148d45734 +DIST warden-1.2.9.tar.gz 29992 BLAKE2B 8a4470c6503c89cb759ebcc155171e86dbb124585d391d6d06c09da0fc0a4095f0235816b9e80895dafe7290584ba49e6699adc9fe8121b2aaee8d1045919b59 SHA512 2ec1129d9afc178c9883a72ffed06f184001147463827f4c5d09475ad65beb084832902a94980e22136400648ad97f2e42a779faf6d49d5a110f545d82a4ddb7 diff --git a/dev-ruby/warden/warden-1.2.9.ebuild b/dev-ruby/warden/warden-1.2.9.ebuild new file mode 100644 index 00000000000..8075b9c4378 --- /dev/null +++ b/dev-ruby/warden/warden-1.2.9.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +USE_RUBY="ruby25 ruby26 ruby27" + +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md" +RUBY_FAKEGEM_RECIPE_TEST="rspec3" + +RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="General Rack Authentication Framework" +HOMEPAGE="https://github.com/wardencommunity/warden" +SRC_URI="https://github.com/wardencommunity/warden/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" + +KEYWORDS="~amd64" +SLOT="0" +IUSE="" + +ruby_add_rdepend ">=dev-ruby/rack-2.0.9:*" + +all_ruby_prepare() { + sed -i -e 's/git ls-files -z/find . -print0/' ${RUBY_FAKEGEM_GEMSPEC} || die +}