Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.13.8 update #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ RVM RPM Package
RPM package for [rvm](http://rvm.beginrescueend.com/) suitable for CentOS or
RHEL.

Why the fork?
-------------
I wanted the most recent stable RVM. At the time of this fork, it was 1.13.8.
Once I attempted an rpmbuild with that tar, I found that 1.13.8 created a /usr/bin/bundle file,
and this prevented rpmbuild from succeeding.

So, I updated the spec file to do change the name of /usr/bin/bundle to /usr/bin/rvm-bundle,
because the renaming was being done with /usr/bin/rake created by rvm (consistent with original author)


About
-----
Expand Down
Binary file removed SOURCES/wayneeseguin-rvm-1.10.0-0-g1d4af11.tar.gz
Binary file not shown.
Binary file added SOURCES/wayneeseguin-rvm-1.13.8-0-g87b7d1b.tar.gz
Binary file not shown.
9 changes: 7 additions & 2 deletions SPECS/rvm-ruby.spec
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
%global rvm_version_sha1 1d4af11
%global rvm_version_sha1 87b7d1b
%global rvm_dir /usr/lib/rvm
%global rvm_group rvm

Name: rvm-ruby
Summary: Ruby Version Manager
Version: 1.10.0
Version: 1.13.8
Release: 2%{?dist:%{dist}}
License: ASL 2.0
URL: http://rvm.beginrescueend.com/
Expand Down Expand Up @@ -95,7 +95,9 @@ END_OF_RVMSH

chmod 755 %{buildroot}%{_sysconfdir}/profile.d/rvm.sh


mv %{buildroot}%{_bindir}/rake %{buildroot}%{_bindir}/rvm-rake
mv %{buildroot}%{_bindir}/bundle %{buildroot}%{_bindir}/rvm-bundle

%clean
rm -rf %{buildroot}
Expand All @@ -113,6 +115,9 @@ exit 0
%{_mandir}/man1/*

%changelog
* Wed May 23 2012 Seth Call <[email protected]> - 1.13.8-2
- New upstream release

* Tue Dec 13 2011 Matthew Kent <[email protected]> - 1.10.0-2
- New upstream release
- Drop rvm_prefix
Expand Down