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 50BCA158086 for ; Tue, 2 Nov 2021 05:07:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 42E67E0891; Tue, 2 Nov 2021 05:07:43 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 15757E087A for ; Tue, 2 Nov 2021 05:07:41 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 93DB1342E24 for ; Tue, 2 Nov 2021 05:07:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D0A87186 for ; Tue, 2 Nov 2021 05:07:38 +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: <1635829654.1832884bea8a429d61dd86e086f8edba0ea02ba8.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/net-telnet/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/net-telnet/net-telnet-0.2.0-r1.ebuild X-VCS-Directories: dev-ruby/net-telnet/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 1832884bea8a429d61dd86e086f8edba0ea02ba8 X-VCS-Branch: master Date: Tue, 2 Nov 2021 05:07:38 +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: e6ac5fbc-8320-419f-ae01-000abc66b616 X-Archives-Hash: 2c33769d2562b2f0d94f5c76b1acaa75 commit: 1832884bea8a429d61dd86e086f8edba0ea02ba8 Author: Hans de Graaff gentoo org> AuthorDate: Mon Nov 1 08:53:04 2021 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Tue Nov 2 05:07:34 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1832884b dev-ruby/net-telnet: add ruby30 Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/net-telnet/net-telnet-0.2.0-r1.ebuild | 32 ++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/dev-ruby/net-telnet/net-telnet-0.2.0-r1.ebuild b/dev-ruby/net-telnet/net-telnet-0.2.0-r1.ebuild new file mode 100644 index 00000000000..24bfd3876fc --- /dev/null +++ b/dev-ruby/net-telnet/net-telnet-0.2.0-r1.ebuild @@ -0,0 +1,32 @@ +# 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_EXTRADOC="README.md" +RUBY_FAKEGEM_GEMSPEC="net-telnet.gemspec" + +# Don't install the binaries since they don't seem to be intended for +# general use and they have very generic names leading to collisions, +# e.g. bug 571186 +RUBY_FAKEGEM_BINWRAP="" + +inherit ruby-fakegem + +DESCRIPTION="Provides telnet client functionality" +HOMEPAGE="https://github.com/ruby/net-telnet" +SRC_URI="https://github.com/ruby/net-telnet/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="|| ( Ruby-BSD BSD-2 )" +SLOT="1" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="test" + +ruby_add_bdepend "test? ( dev-ruby/minitest )" + +all_ruby_prepare() { + sed -i -e 's/git ls-files -z/find * -print0/' ${RUBY_FAKEGEM_GEMSPEC} || die + + sed -i -e '/bundler/ s:^:#:' Rakefile || die +}