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 B0CD715808D for ; Fri, 22 Apr 2022 06:56:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 96CD4E097B; Fri, 22 Apr 2022 06:56: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 D691BE0961 for ; Fri, 22 Apr 2022 06:56:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 smtp.gentoo.org (Postfix) with ESMTPS id E6070341E62 for ; Fri, 22 Apr 2022 06:56:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 57D83445 for ; Fri, 22 Apr 2022 06:56:00 +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: <1650610553.e9e4d92e69a1e6a9e2a15642ab254a67edd5d1d3.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/strptime/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/strptime/strptime-0.2.5-r2.ebuild X-VCS-Directories: dev-ruby/strptime/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: e9e4d92e69a1e6a9e2a15642ab254a67edd5d1d3 X-VCS-Branch: master Date: Fri, 22 Apr 2022 06:56: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: e885d84f-3e1e-4a7a-9a8f-c1e7d1e88432 X-Archives-Hash: 30424a0507c2d3cf3792ae1676ee6508 commit: e9e4d92e69a1e6a9e2a15642ab254a67edd5d1d3 Author: Hans de Graaff gentoo org> AuthorDate: Fri Apr 22 06:52:54 2022 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Fri Apr 22 06:55:53 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9e4d92e dev-ruby/strptime: update EAPI 7 -> 8, add ruby31 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/strptime/strptime-0.2.5-r2.ebuild | 31 ++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/dev-ruby/strptime/strptime-0.2.5-r2.ebuild b/dev-ruby/strptime/strptime-0.2.5-r2.ebuild new file mode 100644 index 000000000000..bec5f0bd8e88 --- /dev/null +++ b/dev-ruby/strptime/strptime-0.2.5-r2.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +USE_RUBY="ruby26 ruby27 ruby30 ruby31" + +RUBY_FAKEGEM_EXTRADOC="README.md" + +RUBY_FAKEGEM_RECIPE_TEST="rspec3" + +RUBY_FAKEGEM_GEMSPEC="strptime.gemspec" + +RUBY_FAKEGEM_BINWRAP="" + +RUBY_FAKEGEM_EXTENSIONS=(ext/strptime/extconf.rb) +RUBY_FAKEGEM_EXTENSION_LIBDIR=lib/strptime + +inherit multilib ruby-fakegem + +DESCRIPTION="A fast strptime/strftime engine which uses VM" +HOMEPAGE="https://github.com/nurse/strptime" +SRC_URI="https://github.com/nurse/strptime/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +all_ruby_prepare() { + sed -i -e 's/git ls-files -z/find * -print0/' ${RUBY_FAKEGEM_GEMSPEC} || die +}