I am trying to install git-svn on redhat 7.2 but the yum install fails with some missing dependencies.
Error: Package: git222-perl-Git-SVN-2.22.3-1.el7.ius.noarch (ius)
Requires: perl(SVN::Ra)
Error: Package: git222-perl-Git-SVN-2.22.3-1.el7.ius.noarch (ius)
Requires: perl(SVN::Delta)
Error: Package: git222-perl-Git-SVN-2.22.3-1.el7.ius.noarch (ius)
Requires: perl(SVN::Core)
yum provides SVN:Core
Loaded plugins: langpacks, product-id, search-disabled-repos, subscription-manager
epel/x86_64/filelists_db
rhel-7-workstation-rpms/7Workstation/x86_64/filelists_db
slack/filelists
No matches found
I found a few pages on installing svn-git that recommend creating a repository, but I am getting 404's on the URLs when I try to use them. I had a similar problem with git 2.x that I got around by building from a tarball.I have not been able to find a git-svn tarball. Can someone provide a sample repository that will resolve those dependencies?
I am trying to install git-svn on redhat 7.2
RHEL 7.2 was released 2015-11-19, almost five years ago. IUS packages are built against the current released version, which is currently 7.8. On a current system, those perl dependencies are provided by the subversion-perl package from the base repository.
# cat /etc/redhat-release
Red Hat Enterprise Linux Server release 7.8 (Maipo)
# repoquery --whatprovides 'perl(SVN::Core)' | sort -V | tail -1
subversion-perl-0:1.7.14-14.el7.x86_64
Fully updating your system will allow git222-svn to be installed.