- New upstream release 1.669004 - Tweaked widow handling to avoid a nasty edge case - Specify all dependencies - Replace provides filter with a patch that works right back to EL-5 - Don't need to remove empty directories from the buildroot - Drop %defattr, redundant since rpm 4.4 - Make %files list more explicit - Don't use macros for commandsepel9
parent
f57aa52d39
commit
c189a753f8
@ -1,2 +1 @@
|
|||||||
Text-Autoformat-v1.14.0.tar.gz
|
/Text-Autoformat-[0-9.]*.tar.gz
|
||||||
/Text-Autoformat-1.669002.tar.gz
|
|
||||||
|
@ -0,0 +1,26 @@
|
|||||||
|
Separating "package" and package names by a newline results in
|
||||||
|
rpm provides not being generated for the package, which is
|
||||||
|
exactly what we want in these cases, as they're private modules.
|
||||||
|
|
||||||
|
--- lib/Text/Autoformat.pm
|
||||||
|
+++ lib/Text/Autoformat.pm
|
||||||
|
@@ -649,7 +649,8 @@
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
-package Hang;
|
||||||
|
+package # hide from rpm
|
||||||
|
+ Hang;
|
||||||
|
use strict;
|
||||||
|
|
||||||
|
# ROMAN NUMERALS
|
||||||
|
@@ -851,7 +852,8 @@
|
||||||
|
|
||||||
|
sub empty { 0 }
|
||||||
|
|
||||||
|
-package NullHang;
|
||||||
|
+package # hide from rpm
|
||||||
|
+ NullHang;
|
||||||
|
use strict;
|
||||||
|
|
||||||
|
sub new { bless {}, $_[0] }
|
@ -1,4 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
@@PERL_PROV@@ "$@" | sed -e '/^perl(Hang)$/d' \
|
|
||||||
-e '/^perl(NullHang)$/d'
|
|
Loading…
Reference in new issue