summaryrefslogtreecommitdiff
path: root/dev-ruby/git/git-3.0.2.ebuild
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-08-03 19:08:23 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-08-03 19:08:23 +0000
commitedc3cf42be1b0b73cd7e2dacbfa1b1310e8df0ac (patch)
tree2c731f823c9ded86e5bbb2f15fde09426a1e640c /dev-ruby/git/git-3.0.2.ebuild
parent285f8e6f8fb85820f4dd41229862f7020c794a5a (diff)
downloadbaldeagleos-repo-edc3cf42be1b0b73cd7e2dacbfa1b1310e8df0ac.tar.gz
baldeagleos-repo-edc3cf42be1b0b73cd7e2dacbfa1b1310e8df0ac.tar.xz
baldeagleos-repo-edc3cf42be1b0b73cd7e2dacbfa1b1310e8df0ac.zip
Adding metadata
Diffstat (limited to 'dev-ruby/git/git-3.0.2.ebuild')
-rw-r--r--dev-ruby/git/git-3.0.2.ebuild50
1 files changed, 0 insertions, 50 deletions
diff --git a/dev-ruby/git/git-3.0.2.ebuild b/dev-ruby/git/git-3.0.2.ebuild
deleted file mode 100644
index ba7548dab940..000000000000
--- a/dev-ruby/git/git-3.0.2.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# 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
-}