Update to diff-lcs 1.1.3.
This commit is contained in:
parent
deea88c80f
commit
ef882e6f61
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +1,2 @@
|
|||||||
diff-lcs-1.1.2.gem
|
diff-lcs-1.1.2.gem
|
||||||
|
/diff-lcs-1.1.3.gem
|
||||||
|
@ -1,25 +1,21 @@
|
|||||||
%global gemdir %{gem_dir}
|
%global gem_name diff-lcs
|
||||||
%global gemname diff-lcs
|
%global rubyabi 1.9.1
|
||||||
%global gem_name %{gemname}
|
|
||||||
%global geminstdir %{gem_instdir}
|
|
||||||
|
|
||||||
%global rubyabi 1.9.1
|
Summary: Provide a list of changes between two sequenced collections
|
||||||
|
Name: rubygem-%{gem_name}
|
||||||
Summary: Provide a list of changes between two sequenced collections
|
Version: 1.1.3
|
||||||
Name: rubygem-%{gemname}
|
Release: 1%{?dist}
|
||||||
Version: 1.1.2
|
Group: Development/Languages
|
||||||
Release: 8%{?dist}
|
License: GPLv2+ or Ruby or Artistic
|
||||||
Group: Development/Languages
|
URL: http://rubyforge.org/projects/ruwiki/
|
||||||
License: GPLv2+ or Ruby or Artistic
|
Source0: http://gems.rubyforge.org/gems/%{gem_name}-%{version}.gem
|
||||||
URL: http://rubyforge.org/projects/ruwiki/
|
Requires: ruby(abi) = %{rubyabi}
|
||||||
Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem
|
Requires: rubygems
|
||||||
Requires: ruby(abi) = %{rubyabi}
|
BuildRequires: rubygems-devel
|
||||||
Requires: rubygems
|
BuildRequires: %{_bindir}/rspec
|
||||||
BuildRequires: rubygems-devel
|
BuildRequires: ruby(abi) = %{rubyabi}
|
||||||
BuildRequires: rubygem(minitest)
|
BuildArch: noarch
|
||||||
BuildRequires: ruby(abi) = %{rubyabi}
|
Provides: rubygem(%{gem_name}) = %{version}
|
||||||
BuildArch: noarch
|
|
||||||
Provides: rubygem(%{gemname}) = %{version}
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Diff::LCS is a port of Algorithm::Diff that uses the McIlroy-Hunt longest
|
Diff::LCS is a port of Algorithm::Diff that uses the McIlroy-Hunt longest
|
||||||
@ -28,39 +24,41 @@ two sequenced enumerable containers. The implementation is based on Mario I.
|
|||||||
Wolczko's Smalltalk version (1.2, 1993) and Ned Konz's Perl version
|
Wolczko's Smalltalk version (1.2, 1993) and Ned Konz's Perl version
|
||||||
(Algorithm::Diff).
|
(Algorithm::Diff).
|
||||||
|
|
||||||
%package doc
|
%package doc
|
||||||
Summary: Documentation for %{name}
|
Summary: Documentation for %{name}
|
||||||
Group: Documentation
|
Group: Documentation
|
||||||
|
|
||||||
Requires: %{name} = %{version}-%{release}
|
Requires: %{name} = %{version}-%{release}
|
||||||
|
|
||||||
%description doc
|
%description doc
|
||||||
This package contains documentation for %{name}.
|
This package contains documentation for %{name}.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -c -T
|
%setup -q -c -T
|
||||||
mkdir -p .%{gemdir}
|
mkdir -p .%{gem_dir}
|
||||||
gem install --local --install-dir .%{gemdir} \
|
gem install --local --install-dir .%{gem_dir} \
|
||||||
-V \
|
--bindir .%{_bindir} \
|
||||||
--force --rdoc %{SOURCE0}
|
--force %{SOURCE0}
|
||||||
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
mkdir -p $RPM_BUILD_ROOT%{gemdir}
|
mkdir -p %{buildroot}%{gem_dir}
|
||||||
mkdir -p $RPM_BUILD_ROOT/%{_bindir}
|
mkdir -p %{buildroot}/%{_bindir}
|
||||||
|
|
||||||
cp -a .%{gemdir}/* $RPM_BUILD_ROOT%{gemdir}
|
cp -a .%{gem_dir}/* %{buildroot}%{gem_dir}
|
||||||
|
cp -a .%{_bindir}/* %{buildroot}/%{_bindir}
|
||||||
|
|
||||||
mv $RPM_BUILD_ROOT%{gemdir}/bin/* $RPM_BUILD_ROOT/%{_bindir}
|
find %{buildroot}%{gem_instdir}/bin -type f |xargs chmod a+x
|
||||||
rmdir $RPM_BUILD_ROOT%{gemdir}/bin
|
|
||||||
find $RPM_BUILD_ROOT%{geminstdir}/bin -type f |xargs chmod a+x
|
# Remove the bad shebangs.
|
||||||
|
# https://github.com/halostatue/diff-lcs/pull/9
|
||||||
|
|
||||||
# We strip bad shebangs (/usr/bin/env) instead of fixing them
|
# We strip bad shebangs (/usr/bin/env) instead of fixing them
|
||||||
# since these files are not executable anyways
|
# since these files are not executable anyways
|
||||||
find $RPM_BUILD_ROOT%{gemdir} \( -name '*.rb' -o -name 'Rakefile' \) \
|
find %{buildroot}%{gem_dir} \( -name '*.rb' -o -name 'Rakefile' \) \
|
||||||
-exec grep -q '^#!' '{}' \; -print |while read F
|
-exec grep -q '^#!' '{}' \; -print |while read F
|
||||||
do
|
do
|
||||||
awk '/^#!/ {if (FNR == 1) next;} {print}' $F >chopped
|
awk '/^#!/ {if (FNR == 1) next;} {print}' $F >chopped
|
||||||
@ -68,28 +66,40 @@ do
|
|||||||
mv chopped $F
|
mv chopped $F
|
||||||
done
|
done
|
||||||
|
|
||||||
|
# Fix shebangs.
|
||||||
|
sed -i 's|^#!.*|#!/usr/bin/ruby|' %{buildroot}%{gem_instdir}/bin/{htmldiff,ldiff}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
pushd .%{geminstdir}
|
pushd .%{gem_instdir}
|
||||||
ruby -Ilib tests/*.rb
|
rspec spec
|
||||||
|
popd
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%{_bindir}/ldiff
|
%{_bindir}/ldiff
|
||||||
%{_bindir}/htmldiff
|
%{_bindir}/htmldiff
|
||||||
%dir %{geminstdir}
|
%dir %{gem_instdir}
|
||||||
%{geminstdir}/bin
|
%exclude %{gem_instdir}/.*
|
||||||
%{geminstdir}/lib
|
%doc %{gem_instdir}/License.rdoc
|
||||||
%{geminstdir}/[A-Z]*
|
%doc %{gem_instdir}/docs
|
||||||
%exclude %{geminstdir}/Rakefile
|
%{gem_instdir}/bin
|
||||||
%{gemdir}/cache/%{gemname}-%{version}.gem
|
%{gem_libdir}
|
||||||
%{gemdir}/specifications/%{gemname}-%{version}.gemspec
|
%exclude %{gem_cache}
|
||||||
|
%{gem_spec}
|
||||||
|
|
||||||
%files doc
|
%files doc
|
||||||
%{geminstdir}/Rakefile
|
%doc %{gem_docdir}
|
||||||
%{geminstdir}/tests/
|
%doc %{gem_instdir}/History.rdoc
|
||||||
%{gemdir}/doc/%{gemname}-%{version}
|
%doc %{gem_instdir}/Manifest.txt
|
||||||
|
%{gem_instdir}/Rakefile
|
||||||
|
%{gem_instdir}/diff-lcs.gemspec
|
||||||
|
%doc %{gem_instdir}/README.rdoc
|
||||||
|
%{gem_instdir}/spec
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Aug 17 2012 Vít Ondruch <vondruch@redhat.com> - 1.1.3-1
|
||||||
|
- Update to diff-lcs 1.1.3.
|
||||||
|
|
||||||
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.2-8
|
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.2-8
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user