package init

This commit is contained in:
wang_yue111 2020-08-28 15:39:55 +08:00
parent 1e7ec6b104
commit fcc5d30f3e
3 changed files with 74 additions and 0 deletions

BIN
Class-Accessor-0.51.tar.gz Normal file

Binary file not shown.

70
perl-Class-Accessor.spec Normal file
View File

@ -0,0 +1,70 @@
%global _empty_manifest_terminate_build 0
Name: perl-Class-Accessor
Version: 0.51
Release: 1
Summary: Automated accessor generation
License: GPL+ or Artistic
Group: Development/Libraries
URL: http://search.cpan.org/dist/Class-Accessor/
Source0: http://www.cpan.org/authors/id/K/KA/KASEI/Class-Accessor-%{version}.tar.gz
BuildArch: noarch
BuildRequires: perl-generators
BuildRequires: perl(ExtUtils::MakeMaker)
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
%description
This module automagically generates accessors/mutators for your class.
%package help
Summary : Automated accessor generation
Provides: perl-Class-Accessor-doc
%description help
This module automagically generates accessors/mutators for your class.
%prep
%setup -q -n Class-Accessor-%{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 META.json README
%{perl_vendorlib}/*
%files help
%{_mandir}/*
%changelog
* Wed Aug 26 2020 wangyue <wangyue92@huawei.com> 0.51-1
- package init

4
perl-Class-Accessor.yaml Normal file
View File

@ -0,0 +1,4 @@
version_control: metacpan
src_repo: Class-Accessor
tag_prefix: "^"
seperator: "."