public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Hans de Graaff" <graaff@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/git/
Date: Mon, 19 May 2025 05:01:27 +0000 (UTC)	[thread overview]
Message-ID: <1747630878.e12adcd4c1e395b720ab0c736e51ec7de07bb5f6.graaff@gentoo> (raw)

commit:     e12adcd4c1e395b720ab0c736e51ec7de07bb5f6
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Mon May 19 05:01:00 2025 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Mon May 19 05:01:18 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e12adcd4

dev-ruby/git: add 3.1.0

Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>

 dev-ruby/git/Manifest         |  1 +
 dev-ruby/git/git-3.1.0.ebuild | 50 +++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 51 insertions(+)

diff --git a/dev-ruby/git/Manifest b/dev-ruby/git/Manifest
index a6755f438971..71f64b3378c3 100644
--- a/dev-ruby/git/Manifest
+++ b/dev-ruby/git/Manifest
@@ -3,3 +3,4 @@ DIST git-2.3.3.tar.gz 199255 BLAKE2B 1e426c65088619dcf0c53829f397a990bd94b75fe2f
 DIST git-3.0.0.tar.gz 198966 BLAKE2B 79a9e95b6b460eb0be17f7eefc2c6330a3297569d5ce3bf9e951d55f97506efa35e7590630c000b3ebc580eb76a4579b65faa2ba68465eaf182f134be49a0856 SHA512 6290a5b7ed7de225ea3c793fc31a4f11cf79efaf73dc6191259d958378fd77aa6079c90befa209fce69d16665f2c13ea4f508445952971337f1593cc59bee596
 DIST git-3.0.1.tar.gz 199554 BLAKE2B d854d4a40452f6923d0d02ae1b24feb5180e874d16332eac951b2d2c038d5181d99fb4c19942230940bbafb53fdd2fcbd0c09e3e6322122fbdc3b98a028d8974 SHA512 0dcd97f311c3ab330025136d880f3d1ffbdf6e8ec4e61f92169b1306d591bd7d2ec38668a00baa6bab12cbad41b54f42ead62739adb33d03e5e34a5e752c211d
 DIST git-3.0.2.tar.gz 201011 BLAKE2B ae8441dfcc9c989db9551c8b48977968d1ba96a6fa7be95336fa6bfdb439621860e17768d44eb9da85d26b0e196b3739d469fcc2105762a41346c730b6033029 SHA512 bf30dae5c917df02843ffd79c22f47797feefbdc7030197ba00af025bc139948ebec9616a60039117601e77cdc78a04171da3bf4a37dca16e75f3f96fb2bccfe
+DIST git-3.1.0.tar.gz 202246 BLAKE2B c532e3be832490c7ceef1a95f06fd638441bb7aca451e06dde664f8cf93b81bdabfc94d4fb1bfa872bcd0428129ebcb65e6055b99cbca583e84809c7b6690104 SHA512 e05fa4aee454502b8c6a49f9b3ae5deede8861f9d9ae4b3881e359fb061a7fff34e4dcf8a491ed7459ee5ac66da5cbb276101fe225aa4927ddde53b41ae155e0

diff --git a/dev-ruby/git/git-3.1.0.ebuild b/dev-ruby/git/git-3.1.0.ebuild
new file mode 100644
index 000000000000..ba7548dab940
--- /dev/null
+++ b/dev-ruby/git/git-3.1.0.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+USE_RUBY="ruby32 ruby33 ruby34"
+
+RUBY_FAKEGEM_BINWRAP=""
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
+
+RUBY_FAKEGEM_GEMSPEC="git.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Library for using Git in Ruby"
+HOMEPAGE="https://github.com/ruby-git/ruby-git"
+SRC_URI="https://github.com/ruby-git/ruby-git/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+RUBY_S="ruby-git-${PV}"
+
+LICENSE="MIT"
+SLOT="$(ver_cut 1)"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+IUSE="test"
+
+DEPEND="test? ( >=dev-vcs/git-1.6.0.0 net-misc/openssh app-arch/tar )"
+RDEPEND=">=dev-vcs/git-1.6.0.0"
+
+ruby_add_rdepend "
+	>=dev-ruby/activesupport-5.0:*
+	>=dev-ruby/addressable-2.8:0
+	>=dev-ruby/process_executer-1.3:1
+	>=dev-ruby/rchardet-1.9:1
+"
+
+ruby_add_bdepend "test? ( dev-ruby/bundler dev-ruby/minitar:1 >=dev-ruby/mocha-2.1:2 dev-ruby/test-unit:2 )"
+
+all_ruby_prepare() {
+	# Don't use hardcoded /tmp directory.
+	sed -i -e "s:/tmp:${TMPDIR}:" tests/units/test_archive.rb tests/test_helper.rb || die
+
+	sed -i -e 's/__dir__/"."/' -e 's/git ls-files -z/find * -print0/' ${RUBY_FAKEGEM_GEMSPEC} || die
+
+	# Don't use deprecated key type that is removed from openssh
+	sed -i -e 's/-t dsa/-t rsa/' tests/units/test_signed_commits.rb || die
+}
+
+each_ruby_test() {
+	git config --global user.email "git@example.com" || die
+	git config --global user.name "GitExample" || die
+	${RUBY} -Ilib:.:tests -e 'Dir["tests/**/test_*.rb"].each {|f| require f}' || die
+}


             reply	other threads:[~2025-05-19  5:01 UTC|newest]

Thread overview: 85+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-05-19  5:01 Hans de Graaff [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-08-26  6:37 [gentoo-commits] repo/gentoo:master commit in: dev-ruby/git/ Hans de Graaff
2025-08-03 12:23 Hans de Graaff
2025-08-03 12:23 Hans de Graaff
2025-07-07 11:36 Hans de Graaff
2025-07-07 11:36 Hans de Graaff
2025-07-02  5:49 Hans de Graaff
2025-06-04  7:01 Hans de Graaff
2025-05-16  5:20 Hans de Graaff
2025-05-16  5:20 Hans de Graaff
2025-05-15  5:11 Hans de Graaff
2025-04-25  5:53 Hans de Graaff
2025-04-04 13:36 Hans de Graaff
2025-03-31 16:53 Hans de Graaff
2025-03-31 16:53 Hans de Graaff
2024-12-06  7:34 Hans de Graaff
2024-11-22  7:47 Hans de Graaff
2024-10-24  6:33 Hans de Graaff
2024-10-24  6:33 Hans de Graaff
2024-10-06 11:35 Sam James
2024-09-17 16:29 Arthur Zamarin
2024-09-02  5:22 Hans de Graaff
2024-09-02  5:22 Hans de Graaff
2024-08-31  2:42 Ionen Wolkens
2024-08-27  5:40 Hans de Graaff
2024-08-27  5:40 Hans de Graaff
2024-07-18  6:47 Hans de Graaff
2024-07-18  6:47 Hans de Graaff
2024-07-18  6:47 Hans de Graaff
2024-07-18  6:47 Hans de Graaff
2024-06-29  8:53 Sam James
2024-06-29  5:16 Hans de Graaff
2024-01-31 16:45 Hans de Graaff
2024-01-15  7:40 Hans de Graaff
2024-01-14  8:30 Hans de Graaff
2023-12-29  7:47 Hans de Graaff
2023-07-12  5:41 Hans de Graaff
2023-07-12  5:41 Hans de Graaff
2023-04-24 15:29 Arthur Zamarin
2023-04-08 10:57 Arthur Zamarin
2023-03-24  7:00 Hans de Graaff
2023-03-24  7:00 Hans de Graaff
2023-03-04  8:28 Hans de Graaff
2023-03-04  8:28 Hans de Graaff
2023-02-04  7:41 Hans de Graaff
2023-02-04  7:41 Hans de Graaff
2023-02-04  7:41 Hans de Graaff
2023-01-13  7:57 Hans de Graaff
2023-01-09  6:33 Hans de Graaff
2023-01-09  6:33 Hans de Graaff
2023-01-08 11:57 Hans de Graaff
2023-01-08  8:33 Hans de Graaff
2022-12-15  6:51 Hans de Graaff
2022-12-15  6:51 Hans de Graaff
2022-12-15  6:51 Hans de Graaff
2022-08-19  5:47 Hans de Graaff
2022-08-19  5:47 Hans de Graaff
2022-05-06  7:13 Hans de Graaff
2022-04-19  5:09 Hans de Graaff
2022-04-19  5:09 Hans de Graaff
2022-01-15  6:29 Hans de Graaff
2022-01-15  6:29 Hans de Graaff
2021-12-25  7:42 Hans de Graaff
2021-12-25  7:42 Hans de Graaff
2021-07-09  6:55 Hans de Graaff
2020-08-21  6:51 Hans de Graaff
2020-07-12  6:35 Hans de Graaff
2020-07-11 16:05 Sam James
2020-07-11  3:50 Sam James
2020-06-20 14:49 Thomas Deutschmann
2020-05-21  5:15 Hans de Graaff
2019-11-16  9:13 Hans de Graaff
2019-07-22 13:03 Hans de Graaff
2019-02-02  8:13 Hans de Graaff
2018-08-11  5:05 Hans de Graaff
2018-08-11  5:05 Hans de Graaff
2018-08-11  5:05 Hans de Graaff
2018-05-17  4:57 Hans de Graaff
2017-07-18  6:45 Hans de Graaff
2016-12-18  7:45 Hans de Graaff
2016-08-13  6:13 Hans de Graaff
2016-07-21 19:38 Hans de Graaff
2016-03-21 21:53 Manuel Rüger
2016-03-21 21:53 Manuel Rüger
2016-02-26  6:54 Hans de Graaff

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1747630878.e12adcd4c1e395b720ab0c736e51ec7de07bb5f6.graaff@gentoo \
    --to=graaff@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox