diff --git a/Daemon-Control-0.001010.tar.gz b/Daemon-Control-0.001010.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..315e14c2dcaa7d0761bf6389bde390c341050540 Binary files /dev/null and b/Daemon-Control-0.001010.tar.gz differ diff --git a/perl-Daemon-Control.spec b/perl-Daemon-Control.spec new file mode 100644 index 0000000000000000000000000000000000000000..424ab782cc7baff94b0a232775aa5595d1c12bab --- /dev/null +++ b/perl-Daemon-Control.spec @@ -0,0 +1,83 @@ +%global _empty_manifest_terminate_build 0 +Name: perl-Daemon-Control +Version: 0.001010 +Release: 1 +Summary: Create init scripts in Perl +License: GPL+ or Artistic +Group: Development/Libraries +URL: http://search.cpan.org/dist/Daemon-Control/ +Source0: http://www.cpan.org/authors/id/S/SY/SYMKAT/Daemon-Control-%{version}.tar.gz +BuildArch: noarch +BuildRequires: perl >= 1:5.8.1 +BuildRequires: perl-generators +BuildRequires: perl(Cwd) +BuildRequires: perl(ExtUtils::MakeMaker) +BuildRequires: perl(File::Path) >= 2.08 +BuildRequires: perl(File::Spec) +BuildRequires: perl(File::Temp) >= 0.14 +BuildRequires: perl(Test::More) >= 0.88 +Requires: perl(Cwd) +Requires: perl(File::Path) >= 2.08 +Requires: perl(File::Spec) +Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) +%description +Daemon::Control provides a library for creating init scripts in perl. Your +perl script just needs to set the accessors for what and how you want +something to run and the library takes care of the rest. +%package help +Summary : Create init scripts in Perl +Provides: perl-Daemon-Control-doc +%description help +Daemon::Control provides a library for creating init scripts in perl. Your +perl script just needs to set the accessors for what and how you want +something to run and the library takes care of the rest. +%prep +%setup -q -n Daemon-Control-%{version} +%build +export PERL_MM_OPT="" +%{__perl} Makefile.PL INSTALLDIRS=vendor +make %{?_smp_mflags} + +%install +export PERL_MM_OPT="" +rm -rf $RPM_BUILD_ROOT + +make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT + +find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \; +find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; + +%{_fixperms} $RPM_BUILD_ROOT/* + +pushd %{buildroot} +touch filelist.lst +if [ -d usr/bin ];then + find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/sbin ];then + find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/lib64 ];then + find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/lib ];then + find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst +fi +popd +mv %{buildroot}/filelist.lst . +%check +make test + +%clean +rm -rf $RPM_BUILD_ROOT + +%files -f filelist.lst +%defattr(-,root,root,-) +%doc Changes +%{perl_vendorlib}/* +%files help +%{_mandir}/* + +%changelog +* Wed Jun 30 2021 Perl_Bot 0.001010-1 +- Specfile autogenerated by Perl_Bot