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 E993A158089 for ; Wed, 13 Sep 2023 04:56:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BFB822BC154; Wed, 13 Sep 2023 04:56:40 +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 A4D312BC154 for ; Wed, 13 Sep 2023 04:56:40 +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 703A9335CD4 for ; Wed, 13 Sep 2023 04:56:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BC078118F for ; Wed, 13 Sep 2023 04:56:37 +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: <1694580247.363924c2f53704fe210de5c5d28c3781dfcb30ee.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/base64/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/base64/Manifest dev-ruby/base64/base64-0.1.1.ebuild dev-ruby/base64/metadata.xml X-VCS-Directories: dev-ruby/base64/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 363924c2f53704fe210de5c5d28c3781dfcb30ee X-VCS-Branch: master Date: Wed, 13 Sep 2023 04:56:37 +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: 7098b282-8339-4e43-9e32-6c1649f0c242 X-Archives-Hash: eaf5a5e8e64f83cec2cebca8a2217818 commit: 363924c2f53704fe210de5c5d28c3781dfcb30ee Author: Hans de Graaff gentoo org> AuthorDate: Wed Sep 13 04:43:53 2023 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Wed Sep 13 04:44:07 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=363924c2 dev-ruby/base64: new package, add 0.1.1 Moved from "graaff" overlay. Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/base64/Manifest | 1 + dev-ruby/base64/base64-0.1.1.ebuild | 29 +++++++++++++++++++++++++++++ dev-ruby/base64/metadata.xml | 11 +++++++++++ 3 files changed, 41 insertions(+) diff --git a/dev-ruby/base64/Manifest b/dev-ruby/base64/Manifest new file mode 100644 index 000000000000..1623d8bd8437 --- /dev/null +++ b/dev-ruby/base64/Manifest @@ -0,0 +1 @@ +DIST base64-0.1.1.tar.gz 4704 BLAKE2B c995292e1abd1e9c28db0cf4c6dbdf9b388062bc4f618c6fcf9404faa6516f5e9689965f63edbd44ca91d4c938be72293b3ad3aad87bed8be0c7a5f064cc83fd SHA512 3ac6dac47deba30002fb19e369fac50c1c3838c7ed8545eff462b7c6402f731d9dd1951f56bb1b2a31bec324c8a28ef94599650129f66bae72dccc72707ff7af diff --git a/dev-ruby/base64/base64-0.1.1.ebuild b/dev-ruby/base64/base64-0.1.1.ebuild new file mode 100644 index 000000000000..093c9abc72b5 --- /dev/null +++ b/dev-ruby/base64/base64-0.1.1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +USE_RUBY="ruby30 ruby31 ruby32" + +RUBY_FAKEGEM_BINWRAP="" +RUBY_FAKEGEM_EXTRADOC="README.md" +RUBY_FAKEGEM_GEMSPEC="base64.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="Support for encoding and decoding binary data using a Base64 representation." +HOMEPAGE="https://github.com/ruby/base64" +SRC_URI="https://github.com/ruby/base64/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="$(ver_cut 1-2)" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris" +IUSE="" + +all_ruby_prepare() { + sed -e 's:_relative ": "./:' \ + -i ${RUBY_FAKEGEM_GEMSPEC} || die +} + +each_ruby_test() { + ${RUBY} -Ilib:.:test:test/lib -e 'Dir["test/**/test_*.rb"].each{|f| require f}' || die +} diff --git a/dev-ruby/base64/metadata.xml b/dev-ruby/base64/metadata.xml new file mode 100644 index 000000000000..da4e24add3eb --- /dev/null +++ b/dev-ruby/base64/metadata.xml @@ -0,0 +1,11 @@ + + + + + ruby@gentoo.org + Gentoo Ruby Project + + + ruby/base64 + +