- remove *.orig files from t/ (BZ#427754)

epel9
Chris Weyl 17 years ago
parent d35467ea74
commit 15bc7c5cb1

@ -1,6 +1,6 @@
Name: perl-Moose Name: perl-Moose
Version: 0.33 Version: 0.33
Release: 1%{?dist} Release: 2%{?dist}
Summary: Complete modern object system for Perl 5 Summary: Complete modern object system for Perl 5
License: GPL+ or Artistic License: GPL+ or Artistic
Group: Development/Libraries Group: Development/Libraries
@ -71,6 +71,9 @@ Perl 6 OO. So instead of switching to Ruby, I wrote Moose :)
find t/ -type f -exec perl -pi -e 's|^#!/usr/local/bin|#!/usr/bin|' {} + find t/ -type f -exec perl -pi -e 's|^#!/usr/local/bin|#!/usr/bin|' {} +
# remove the originals of patched files...
find . -name '*.orig' -exec rm -v {} +
# Filter unwanted Provides: # Filter unwanted Provides:
cat << \EOF > %{name}-prov cat << \EOF > %{name}-prov
#!/bin/sh #!/bin/sh
@ -108,6 +111,9 @@ rm -rf %{buildroot}
%{_mandir}/man3/* %{_mandir}/man3/*
%changelog %changelog
* Mon Jan 07 2008 Chris Weyl <cweyl@alumni.drew.edu> 0.33-2
- remove *.orig files from t/ (BZ#427754)
* Sat Dec 15 2007 Chris Weyl <cweyl@alumni.drew.edu> 0.33-1 * Sat Dec 15 2007 Chris Weyl <cweyl@alumni.drew.edu> 0.33-1
- update to 0.33 - update to 0.33

Loading…
Cancel
Save