2012-08-17 14:24:46 +00:00
|
|
|
%global gem_name diff-lcs
|
|
|
|
|
2013-02-20 08:48:45 +00:00
|
|
|
# %%check section needs rspec-expectations, however rspec-expectations depends
|
|
|
|
# on diff-lcs.
|
2013-02-22 18:04:53 +00:00
|
|
|
%{!?need_bootstrap: %global need_bootstrap 1}
|
2013-02-20 08:48:45 +00:00
|
|
|
|
2012-08-17 14:24:46 +00:00
|
|
|
Summary: Provide a list of changes between two sequenced collections
|
|
|
|
Name: rubygem-%{gem_name}
|
|
|
|
Version: 1.1.3
|
2014-06-08 03:50:02 +00:00
|
|
|
Release: 5%{?dist}
|
2012-08-17 14:24:46 +00:00
|
|
|
Group: Development/Languages
|
2014-02-10 09:58:38 +00:00
|
|
|
#lib/diff/lcs.rb is Artistic or Ruby or BSD
|
|
|
|
#lib/diff/lcs/*.rb is GPLv2+ or Artistic or Ruby or BSD
|
|
|
|
#License.rdoc states GPLv2+ or Artistic or MIT
|
|
|
|
License: (GPLv2+ or Artistic or MIT) and (GPLv2+ or Artistic or Ruby or BSD) and (Artistic or Ruby or BSD)
|
2012-08-17 14:24:46 +00:00
|
|
|
URL: http://rubyforge.org/projects/ruwiki/
|
|
|
|
Source0: http://gems.rubyforge.org/gems/%{gem_name}-%{version}.gem
|
2013-02-22 18:04:53 +00:00
|
|
|
Requires: ruby(release)
|
2012-08-17 14:24:46 +00:00
|
|
|
Requires: rubygems
|
|
|
|
BuildRequires: rubygems-devel
|
2013-02-20 08:48:45 +00:00
|
|
|
%if 0%{?need_bootstrap} < 1
|
|
|
|
BuildRequires: rubygem(rspec)
|
|
|
|
%endif
|
2013-02-22 18:04:53 +00:00
|
|
|
BuildRequires: ruby(release)
|
2012-08-17 14:24:46 +00:00
|
|
|
BuildArch: noarch
|
|
|
|
Provides: rubygem(%{gem_name}) = %{version}
|
2009-07-08 17:17:19 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
Diff::LCS is a port of Algorithm::Diff that uses the McIlroy-Hunt longest
|
|
|
|
common subsequence (LCS) algorithm to compute intelligent differences between
|
|
|
|
two sequenced enumerable containers. The implementation is based on Mario I.
|
|
|
|
Wolczko's Smalltalk version (1.2, 1993) and Ned Konz's Perl version
|
|
|
|
(Algorithm::Diff).
|
|
|
|
|
2012-08-17 14:24:46 +00:00
|
|
|
%package doc
|
|
|
|
Summary: Documentation for %{name}
|
|
|
|
Group: Documentation
|
2012-01-21 23:14:59 +00:00
|
|
|
|
2012-08-17 14:24:46 +00:00
|
|
|
Requires: %{name} = %{version}-%{release}
|
2012-01-21 23:14:59 +00:00
|
|
|
|
2012-08-17 14:24:46 +00:00
|
|
|
%description doc
|
2012-01-21 23:14:59 +00:00
|
|
|
This package contains documentation for %{name}.
|
2009-07-08 17:17:19 +00:00
|
|
|
|
|
|
|
%prep
|
2012-01-21 23:14:59 +00:00
|
|
|
%setup -q -c -T
|
2013-02-22 18:04:53 +00:00
|
|
|
%gem_install -n %{SOURCE0}
|
2009-07-08 17:17:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
2012-08-17 14:24:46 +00:00
|
|
|
mkdir -p %{buildroot}%{gem_dir}
|
|
|
|
mkdir -p %{buildroot}/%{_bindir}
|
2012-01-21 23:14:59 +00:00
|
|
|
|
2012-08-17 14:24:46 +00:00
|
|
|
cp -a .%{gem_dir}/* %{buildroot}%{gem_dir}
|
|
|
|
cp -a .%{_bindir}/* %{buildroot}/%{_bindir}
|
2012-01-21 23:14:59 +00:00
|
|
|
|
2012-08-17 14:24:46 +00:00
|
|
|
find %{buildroot}%{gem_instdir}/bin -type f |xargs chmod a+x
|
|
|
|
|
|
|
|
# Remove the bad shebangs.
|
|
|
|
# https://github.com/halostatue/diff-lcs/pull/9
|
2009-07-08 17:17:19 +00:00
|
|
|
|
|
|
|
# We strip bad shebangs (/usr/bin/env) instead of fixing them
|
|
|
|
# since these files are not executable anyways
|
2012-08-17 14:24:46 +00:00
|
|
|
find %{buildroot}%{gem_dir} \( -name '*.rb' -o -name 'Rakefile' \) \
|
2009-07-08 17:17:19 +00:00
|
|
|
-exec grep -q '^#!' '{}' \; -print |while read F
|
|
|
|
do
|
|
|
|
awk '/^#!/ {if (FNR == 1) next;} {print}' $F >chopped
|
|
|
|
touch -r $F chopped
|
|
|
|
mv chopped $F
|
|
|
|
done
|
|
|
|
|
2012-08-17 14:24:46 +00:00
|
|
|
# Fix shebangs.
|
|
|
|
sed -i 's|^#!.*|#!/usr/bin/ruby|' %{buildroot}%{gem_instdir}/bin/{htmldiff,ldiff}
|
|
|
|
|
2013-02-20 08:48:45 +00:00
|
|
|
%if 0%{?need_bootstrap} < 1
|
2012-01-21 23:14:59 +00:00
|
|
|
%check
|
2012-08-17 14:24:46 +00:00
|
|
|
pushd .%{gem_instdir}
|
|
|
|
rspec spec
|
|
|
|
popd
|
2013-02-20 08:48:45 +00:00
|
|
|
%endif
|
2009-07-08 17:17:19 +00:00
|
|
|
|
|
|
|
%files
|
|
|
|
%{_bindir}/ldiff
|
|
|
|
%{_bindir}/htmldiff
|
2012-08-17 14:24:46 +00:00
|
|
|
%dir %{gem_instdir}
|
|
|
|
%exclude %{gem_instdir}/.*
|
|
|
|
%doc %{gem_instdir}/License.rdoc
|
|
|
|
%doc %{gem_instdir}/docs
|
|
|
|
%{gem_instdir}/bin
|
|
|
|
%{gem_libdir}
|
|
|
|
%exclude %{gem_cache}
|
|
|
|
%{gem_spec}
|
2009-07-08 17:17:19 +00:00
|
|
|
|
2012-01-21 23:14:59 +00:00
|
|
|
%files doc
|
2012-08-17 14:24:46 +00:00
|
|
|
%doc %{gem_docdir}
|
|
|
|
%doc %{gem_instdir}/History.rdoc
|
|
|
|
%doc %{gem_instdir}/Manifest.txt
|
|
|
|
%{gem_instdir}/Rakefile
|
|
|
|
%{gem_instdir}/diff-lcs.gemspec
|
|
|
|
%doc %{gem_instdir}/README.rdoc
|
|
|
|
%{gem_instdir}/spec
|
2012-01-21 23:14:59 +00:00
|
|
|
|
2009-07-08 17:17:19 +00:00
|
|
|
|
|
|
|
%changelog
|
2014-06-08 03:50:02 +00:00
|
|
|
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.3-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-02-10 09:58:38 +00:00
|
|
|
* Thu Feb 06 2014 Josef Stribny <jstribny@redhat.com> - 1.1.3-4
|
|
|
|
- Fix licensing
|
|
|
|
|
2013-08-04 13:45:01 +00:00
|
|
|
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.3-3.2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-02-22 18:04:53 +00:00
|
|
|
* Wed Feb 20 2013 Vít Ondruch <vondruch@redhat.com> - 1.1.3-3
|
|
|
|
- Rebuild for https://fedoraproject.org/wiki/Features/Ruby_2.0.0
|
2013-02-20 08:48:45 +00:00
|
|
|
- Change the dependency to rubygem(rspec).
|
|
|
|
- Add bootstrap code.
|
|
|
|
|
2013-02-14 22:28:51 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-08-17 14:24:46 +00:00
|
|
|
* Fri Aug 17 2012 Vít Ondruch <vondruch@redhat.com> - 1.1.3-1
|
|
|
|
- Update to diff-lcs 1.1.3.
|
|
|
|
|
2012-07-21 17:47:27 +00:00
|
|
|
* 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
|
|
|
|
|
2012-01-21 23:14:59 +00:00
|
|
|
* Sun Jan 22 2012 Mamoru Tasaka <mtasaka@fedoraproject.org> - 1.1.2-7
|
|
|
|
- Rebuild against ruby 1.9
|
|
|
|
|
2012-01-14 03:07:44 +00:00
|
|
|
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.2-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-02-09 09:41:22 +00:00
|
|
|
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.2-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2009-07-27 03:28:12 +00:00
|
|
|
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.2-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-07-08 17:17:19 +00:00
|
|
|
* Fri Jun 26 2009 Lubomir Rintel (Good Data) <lubo.rintel@gooddata.com> - 1.1.2-3
|
|
|
|
- Get rid of duplicate files (thanks to Mamoru Tasaka)
|
|
|
|
|
|
|
|
* Mon Jun 08 2009 Lubomir Rintel (Good Data) <lubo.rintel@gooddata.com> - 1.1.2-2
|
|
|
|
- Depend on ruby(abi)
|
|
|
|
- Replace defines with globals
|
|
|
|
|
|
|
|
* Fri Jun 05 2009 Lubomir Rintel (Good Data) <lubo.rintel@gooddata.com> - 1.1.2-1
|
|
|
|
- Package generated by gem2rpm
|
|
|
|
- Strip useless shebangs
|
|
|
|
- Fix up License
|