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 40EEB158017 for ; Tue, 28 Sep 2021 20:52:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 97FB0E0817; Tue, 28 Sep 2021 20:52:03 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7B206E0817 for ; Tue, 28 Sep 2021 20:52:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5CF78342F97 for ; Tue, 28 Sep 2021 20:52:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B2FF110B for ; Tue, 28 Sep 2021 20:52:00 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1632862301.e442f457956901e411910c0080d297e30ddc32db.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/rotp/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/rotp/Manifest dev-ruby/rotp/metadata.xml dev-ruby/rotp/rotp-6.2.0.ebuild X-VCS-Directories: dev-ruby/rotp/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: e442f457956901e411910c0080d297e30ddc32db X-VCS-Branch: master Date: Tue, 28 Sep 2021 20:52:00 +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: 42acb6ae-d20a-4e8e-8b47-22687fba5a35 X-Archives-Hash: 565f5bbae3e6ca392a0fcb6922950317 commit: e442f457956901e411910c0080d297e30ddc32db Author: Azamat H. Hackimov gmail com> AuthorDate: Tue Sep 28 10:26:48 2021 +0000 Commit: Sam James gentoo org> CommitDate: Tue Sep 28 20:51:41 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e442f457 dev-ruby/rotp: new package Ruby One Time Password library, runtime dependency for www-apps/redmine. Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Azamat H. Hackimov gmail.com> Signed-off-by: Sam James gentoo.org> dev-ruby/rotp/Manifest | 1 + dev-ruby/rotp/metadata.xml | 19 +++++++++++++++++++ dev-ruby/rotp/rotp-6.2.0.ebuild | 31 +++++++++++++++++++++++++++++++ 3 files changed, 51 insertions(+) diff --git a/dev-ruby/rotp/Manifest b/dev-ruby/rotp/Manifest new file mode 100644 index 00000000000..69bab31e7f7 --- /dev/null +++ b/dev-ruby/rotp/Manifest @@ -0,0 +1 @@ +DIST rotp-6.2.0.tar.gz 60000 BLAKE2B dba270201593425c9282aca71efb33ecacda916996ebfffc703dd865a6c6ee3b3da4098497ce036a95157089d8d736e9413d0aa9fd0dc582d4b278ce811e05d0 SHA512 938cf9feffbe7e86f542c6dde4cd87b57e2ddd2696303e69cb76bc9fb04ffb40c9a5ef45288f23cb096d9f6706e0b48ad89907dc9322594df10c8c0521feffa1 diff --git a/dev-ruby/rotp/metadata.xml b/dev-ruby/rotp/metadata.xml new file mode 100644 index 00000000000..7d387e411d0 --- /dev/null +++ b/dev-ruby/rotp/metadata.xml @@ -0,0 +1,19 @@ + + + + +ruby@gentoo.org + + +azamat.hackimov@gmail.com +Azamat H. Hackimov + + +proxy-maint@gentoo.org +Proxy Maintainers + + +mdp/rotp +rotp + + diff --git a/dev-ruby/rotp/rotp-6.2.0.ebuild b/dev-ruby/rotp/rotp-6.2.0.ebuild new file mode 100644 index 00000000000..8b16fcb7f63 --- /dev/null +++ b/dev-ruby/rotp/rotp-6.2.0.ebuild @@ -0,0 +1,31 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +USE_RUBY="ruby26 ruby27 ruby30" +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md" +RUBY_FAKEGEM_RECIPE_TEST="rspec3" +RUBY_FAKEGEM_RECIPE_DOC="yard" +RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="The Ruby One Time Password Library" +HOMEPAGE="https://github.com/mdp/rotp" +SRC_URI="https://github.com/mdp/rotp/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="dev-libs/openssl:0=" + +ruby_add_bdepend " + test? ( >=dev-ruby/timecop-0.8 ) +" + +all_ruby_prepare() { + # Remove simplecov + sed -i -e '/simplecov/,/^end/ s:^:#:' spec/spec_helper.rb || die +}