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: Fri,  6 May 2022 07:13:39 +0000 (UTC)	[thread overview]
Message-ID: <1651821215.8a2eb2305eb12c6228d22d285edba4b3ce24529e.graaff@gentoo> (raw)

commit:     8a2eb2305eb12c6228d22d285edba4b3ce24529e
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Fri May  6 07:04:54 2022 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Fri May  6 07:13:35 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a2eb230

dev-ruby/git: drop 1.9.1, 1.10.0

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

 dev-ruby/git/Manifest          |  2 --
 dev-ruby/git/git-1.10.0.ebuild | 41 -----------------------------------------
 dev-ruby/git/git-1.9.1.ebuild  | 42 ------------------------------------------
 3 files changed, 85 deletions(-)

diff --git a/dev-ruby/git/Manifest b/dev-ruby/git/Manifest
index 0488f1bdc080..6ff924a106bc 100644
--- a/dev-ruby/git/Manifest
+++ b/dev-ruby/git/Manifest
@@ -1,4 +1,2 @@
-DIST git-1.10.0.tar.gz 207412 BLAKE2B e18406a9690d4c0fc3009b57629515e701f41113592fd7533b6b2ae659b90ec1b635410deb7bcb3bd711ce291aaec2010bfcfb4bfb812b9fffdafac167d33bb9 SHA512 717ae5df3cf2b700395df91e8f6e9632062c804955c8f18215c5220ec373a33c2a991534f2a63155111643a867f45f2e7056e2dd6e297340372143770bb70021
 DIST git-1.10.2.tar.gz 212738 BLAKE2B 4059066fac1a22e8f19ecce1ebaed648fedc30767b91cb38cf9cf4c9f7091f55f5e9682183e188357dd12ed06dc1ad905d9b688db0c536623487e3c5431ba6f8 SHA512 5d8150a8f974c9b9f531d169e2899b311965a9e9d48d1e45c8bb778a48ea0887ccecf7681baf7cbfad4d22509ba0aafb9886559565e918b84f740b3da7430d86
 DIST git-1.11.0.tar.gz 214161 BLAKE2B 69471f89fddf18bf31d74e318141046395281ba64de1f91fd49cb866508dca9cf7c568c113ed7d7e928bf1d7dfdb0e130a193d4069b87155a4dbc046d6dd6ce9 SHA512 a71da8890622b6ad5a341908e968040ef6c00e2f9edd0bfee1a0c1e9f110cc12b9c01015605b0fb902fdf04fab6011adfbffcf5e8f853c550bff7c263d2e6bd6
-DIST git-1.9.1.tar.gz 206509 BLAKE2B 3f8739286f3197fa86a3fccfab357510d562415f568726126cf96c8b74c716c4fbb592f854cafda26cf2f0371e4bc9b52a9f5efdea860d0ea6836198ca48b887 SHA512 ee1df3e704b8bf0687c9fce83d73502d3d46e7f3291da90906961dda057d8e6ec3a0fda5b68c258dd8542559055f1bfabf8915a7e594edafa4b3f267f302f397

diff --git a/dev-ruby/git/git-1.10.0.ebuild b/dev-ruby/git/git-1.10.0.ebuild
deleted file mode 100644
index 48659e920ef8..000000000000
--- a/dev-ruby/git/git-1.10.0.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# 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="CHANGELOG.md README.md"
-
-RUBY_FAKEGEM_GEMSPEC="git.gemspec"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Library for using Git in Ruby"
-HOMEPAGE="https://github.com/schacon/ruby-git"
-SRC_URI="https://github.com/schacon/ruby-git/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-RUBY_S="ruby-git-${PV}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
-IUSE="test"
-
-DEPEND+="test? ( >=dev-vcs/git-1.6.0.0 app-arch/tar )"
-RDEPEND+=">=dev-vcs/git-1.6.0.0"
-
-ruby_add_rdepend ">=dev-ruby/rchardet-1.8:1"
-
-ruby_add_bdepend "test? ( dev-ruby/bundler dev-ruby/minitar 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
-}
-
-each_ruby_test() {
-	git config --global user.email "git@example.com" || die
-	git config --global user.name "GitExample" || die
-	${RUBY} -Ilib:.:test -e 'Dir["tests/**/test_*.rb"].each {|f| require f}' || die
-}

diff --git a/dev-ruby/git/git-1.9.1.ebuild b/dev-ruby/git/git-1.9.1.ebuild
deleted file mode 100644
index caa61b6460d3..000000000000
--- a/dev-ruby/git/git-1.9.1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-USE_RUBY="ruby25 ruby26 ruby27 ruby30"
-
-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/schacon/ruby-git"
-SRC_URI="https://github.com/schacon/ruby-git/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-RUBY_S="ruby-git-${PV}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~ppc ~ppc64 ~x86"
-IUSE="test"
-
-DEPEND+="test? ( >=dev-vcs/git-1.6.0.0 app-arch/tar )"
-RDEPEND+=">=dev-vcs/git-1.6.0.0"
-
-ruby_add_rdepend ">=dev-ruby/rchardet-1.8:1"
-
-ruby_add_bdepend "test? ( dev-ruby/bundler dev-ruby/minitar 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 "1irequire 'pathname'" tests/test_helper.rb || die
-
-	sed -i -e 's/__dir__/"."/' -e 's/git ls-files -z/find * -print0/' ${RUBY_FAKEGEM_GEMSPEC} || die
-}
-
-each_ruby_test() {
-	git config --global user.email "git@example.com" || die
-	git config --global user.name "GitExample" || die
-	${RUBY} -Ilib:.:test -e 'Dir["tests/**/test_*.rb"].each {|f| require f}' || die
-}


             reply	other threads:[~2022-05-06  7:13 UTC|newest]

Thread overview: 70+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-05-06  7:13 Hans de Graaff [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-12-06  7:34 [gentoo-commits] repo/gentoo:master commit in: dev-ruby/git/ 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-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=1651821215.8a2eb2305eb12c6228d22d285edba4b3ce24529e.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