diff options
-rw-r--r-- | MANIFEST | 1 | ||||
-rwxr-xr-x | Makefile.PL | 1 | ||||
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | rpmtools.pm | 7 |
4 files changed, 12 insertions, 0 deletions
@@ -8,6 +8,7 @@ MANIFEST NEWS packdrake packdrake.pm +rpmtools.pm t/01packdrake.t META.yml Module meta-data (added by MakeMaker) README diff --git a/Makefile.PL b/Makefile.PL index ba4a646..1803159 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -28,6 +28,7 @@ WriteMakefile( }, PM => { 'packdrake.pm' => '$(INST_LIBDIR)/packdrake.pm', + 'rpmtools.pm' => '$(INST_LIBDIR)/rpmtools.pm', }, EXE_FILES => [ qw(gendistrib genhdlist2 packdrake dumpdistribconf) ], C => [], @@ -1,3 +1,6 @@ +- cpan_testers: + o add dummy package so that rpmtools can be installed for urpmi testers + Version 7.05 - 21 September 2018, by Thierry Vignaud - CPAN: add README diff --git a/rpmtools.pm b/rpmtools.pm new file mode 100644 index 0000000..080085c --- /dev/null +++ b/rpmtools.pm @@ -0,0 +1,7 @@ +package rpmtools; + +# Dummy package for CPAN testers + +our $VERSION = '7.06'; + +1; |