From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1333211-garchives=archives.gentoo.org@lists.gentoo.org> 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 70EDD158087 for <garchives@archives.gentoo.org>; Sun, 24 Oct 2021 09:25:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1D9D3E086E; Sun, 24 Oct 2021 09:25:52 +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 02E43E086E for <gentoo-commits@lists.gentoo.org>; Sun, 24 Oct 2021 09:25:52 +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 F3D6B34365C for <gentoo-commits@lists.gentoo.org>; Sun, 24 Oct 2021 09:25:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8F0D8175 for <gentoo-commits@lists.gentoo.org>; Sun, 24 Oct 2021 09:25:49 +0000 (UTC) From: "Hans de Graaff" <graaff@gentoo.org> 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" <graaff@gentoo.org> Message-ID: <1635067544.e1381d418b9c8cd54631025754a2a431333a0071.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/chronic/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/chronic/chronic-0.10.2-r1.ebuild X-VCS-Directories: dev-ruby/chronic/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: e1381d418b9c8cd54631025754a2a431333a0071 X-VCS-Branch: master Date: Sun, 24 Oct 2021 09:25:49 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 6937f0f1-185e-403d-b83d-91919be0bb6e X-Archives-Hash: f3f498964ab47090e008d3bae181ed37 commit: e1381d418b9c8cd54631025754a2a431333a0071 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org> AuthorDate: Sun Oct 24 08:49:29 2021 +0000 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org> CommitDate: Sun Oct 24 09:25:44 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1381d41 dev-ruby/chronic: add ruby30 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org> dev-ruby/chronic/chronic-0.10.2-r1.ebuild | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/dev-ruby/chronic/chronic-0.10.2-r1.ebuild b/dev-ruby/chronic/chronic-0.10.2-r1.ebuild new file mode 100644 index 00000000000..ed41be3fea3 --- /dev/null +++ b/dev-ruby/chronic/chronic-0.10.2-r1.ebuild @@ -0,0 +1,26 @@ +# 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_TASK_DOC="" +RUBY_FAKEGEM_EXTRADOC="HISTORY.md README.md" + +RUBY_FAKEGEM_GEMSPEC="chronic.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="Chronic is a natural language date/time parser written in pure Ruby" +HOMEPAGE="https://github.com/mojombo/chronic" +LICENSE="MIT" + +KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +SLOT="0" +IUSE="" + +ruby_add_bdepend "test? ( >=dev-ruby/minitest-5 )" + +all_ruby_prepare() { + sed -i -e '/git ls-files/d' chronic.gemspec || die +}