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 75946158041 for ; Wed, 20 Mar 2024 12:05:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E009DE29AF; Wed, 20 Mar 2024 12:04:59 +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 C2C5BE29AF for ; Wed, 20 Mar 2024 12:04:59 +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 A1EB833BF60 for ; Wed, 20 Mar 2024 12:04:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 099AC158F for ; Wed, 20 Mar 2024 12:04:57 +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: <1710936287.db3dab5b1d105504faa8d7d9f03287fa049c8019.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/ruby-progressbar/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/ruby-progressbar/ruby-progressbar-1.13.0-r1.ebuild X-VCS-Directories: dev-ruby/ruby-progressbar/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: db3dab5b1d105504faa8d7d9f03287fa049c8019 X-VCS-Branch: master Date: Wed, 20 Mar 2024 12:04:57 +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: 129f0ffe-c1dc-4e7b-a917-cc0e0cb1a28c X-Archives-Hash: 0ec5b5eed292f4001f8a55bb40338925 commit: db3dab5b1d105504faa8d7d9f03287fa049c8019 Author: Hans de Graaff gentoo org> AuthorDate: Wed Mar 20 12:03:53 2024 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Wed Mar 20 12:04:47 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db3dab5b dev-ruby/ruby-progressbar: add ruby33 Drop dependency on unmaintained and broken rspectacular. Signed-off-by: Hans de Graaff gentoo.org> .../ruby-progressbar-1.13.0-r1.ebuild | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/dev-ruby/ruby-progressbar/ruby-progressbar-1.13.0-r1.ebuild b/dev-ruby/ruby-progressbar/ruby-progressbar-1.13.0-r1.ebuild new file mode 100644 index 000000000000..b8659a7f3211 --- /dev/null +++ b/dev-ruby/ruby-progressbar/ruby-progressbar-1.13.0-r1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +USE_RUBY="ruby31 ruby32 ruby33" +RUBY_FAKEGEM_RECIPE_TEST="rspec3" +RUBY_FAKEGEM_EXTRADOC="README.md" +RUBY_FAKEGEM_BINWRAP="" +RUBY_FAKEGEM_GEMSPEC="ruby-progressbar.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="A Text Progress Bar Library for Ruby" +HOMEPAGE="https://github.com/jfelchner/ruby-progressbar" +SRC_URI="https://github.com/jfelchner/ruby-progressbar/archive/releases/v${PV}.tar.gz -> ${P}.tar.gz" +RUBY_S="ruby-progressbar-releases-v${PV}" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris" + +ruby_add_bdepend "test? ( dev-ruby/timecop )" + +all_ruby_prepare() { + sed -e '/warning_filter/ s:^:#:' \ + -e '/rspectacular/arequire "ruby-progressbar"; require "timecop"' \ + -e '/rspectacular/ s:^:#:' \ + -i spec/spec_helper.rb || die +}