From 661c9003ca6e7a031bbe690930d9b46a125764b1 Mon Sep 17 00:00:00 2001 From: Trevor Batley Date: Tue, 21 Jan 2025 19:53:28 +1100 Subject: [PATCH] initial create of smeserver perl File::Copy::Recursive on Tue Jan 21 19:53:28 AEDT 2025 --- .gitattributes | 1 + .gitignore | 3 ++ File-Copy-Recursive-0.45.tar.gz | 3 ++ Makefile | 21 +++++++++++ README.md | 17 ++++++++- contriborbase | 1 + perl-File-Copy-Recursive.spec | 67 +++++++++++++++++++++++++++++++++ 7 files changed, 111 insertions(+), 2 deletions(-) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 File-Copy-Recursive-0.45.tar.gz create mode 100644 Makefile create mode 100644 contriborbase create mode 100644 perl-File-Copy-Recursive.spec diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..f087b42 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +*.tar.gz filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1534ba5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +*.rpm +*.log +*spec-20* diff --git a/File-Copy-Recursive-0.45.tar.gz b/File-Copy-Recursive-0.45.tar.gz new file mode 100644 index 0000000..f6cfff1 --- /dev/null +++ b/File-Copy-Recursive-0.45.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3971cf78a8345e38042b208bb7b39cb695080386af629f4a04ffd6549df1157 +size 19256 diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e66a8ea --- /dev/null +++ b/Makefile @@ -0,0 +1,21 @@ +# Makefile for source rpm: perl-File-Copy-Recursive +# $Id: Makefile,v 1.1 2016/02/04 12:24:52 vip-ire Exp $ +NAME := perl-File-Copy-Recursive +SPECFILE = $(firstword $(wildcard *.spec)) + +define find-makefile-common +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +endef + +MAKEFILE_COMMON := $(shell $(find-makefile-common)) + +ifeq ($(MAKEFILE_COMMON),) +# attept a checkout +define checkout-makefile-common +test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 +endef + +MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) +endif + +include $(MAKEFILE_COMMON) diff --git a/README.md b/README.md index 97af5b5..79cd2ce 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,16 @@ -# perl-File-Copy-Recursive +# perl-File-Copy-Recursive (File::Copy::Recursive) -3rd Party (Maintained by Koozali) git repo for perl-File-Copy-Recursive smeserver \ No newline at end of file +SMEServer Koozali local git repo for perl-File-Copy-Recursive + +## Documentation +https://metacpan.org/pod/File::Copy::Recursive + +## Bugs +CPAN bug report are [here](https://rt.cpan.org/Public/Dist/Display.html?Name=File-Copy-Recursive) + +Show list of Koozali outstanding bugs: [here](https://bugs.koozali.org/buglist.cgi?component=perl-File-Copy-Recursive&product=SME%20Server%2011.X&query_format=advanced&limit=0&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=CONFIRMED) + +## Description +This module copies and moves directories recursively (or single files, +well... singley) to an optional depth and attempts to preserve each file or +directory's mode. diff --git a/contriborbase b/contriborbase new file mode 100644 index 0000000..80affab --- /dev/null +++ b/contriborbase @@ -0,0 +1 @@ +sme11 diff --git a/perl-File-Copy-Recursive.spec b/perl-File-Copy-Recursive.spec new file mode 100644 index 0000000..51cef78 --- /dev/null +++ b/perl-File-Copy-Recursive.spec @@ -0,0 +1,67 @@ +Name: perl-File-Copy-Recursive +Version: 0.45 +Release: 1%{?dist} +Summary: Perl extension for recursively copying files and directories +License: GPL+ or Artistic +Group: Development/Libraries +URL: http://search.cpan.org/dist/File-Copy-Recursive/ +Source0: http://www.cpan.org/authors/id/D/DM/DMUEY/File-Copy-Recursive-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildArch: noarch +BuildRequires: perl(Cwd) +BuildRequires: perl(ExtUtils::Manifest) +BuildRequires: perl(inc::Module::Install) +BuildRequires: perl(ExtUtils::MakeMaker) +BuildRequires: perl(File::Copy) +BuildRequires: perl(File::Glob) +BuildRequires: perl(File::Spec) +BuildRequires: perl(File::Temp) +BuildRequires: perl(Path::Tiny) +BuildRequires: perl(Test::Deep) +BuildRequires: perl(Test::Fatal) +BuildRequires: perl(Test::File) +BuildRequires: perl(Test::More) >= 0.88 +BuildRequires: perl(Test::Warnings) +Requires: perl(Cwd) +Requires: perl(File::Copy) +Requires: perl(File::Glob) +Requires: perl(File::Spec) +Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) + +%description +This module copies and moves directories recursively (or single files, +well... singley) to an optional depth and attempts to preserve each file or +directory's mode. + +%prep +%setup -q -n File-Copy-Recursive-%{version} + +%build +%{__perl} Makefile.PL INSTALLDIRS=vendor +make %{?_smp_mflags} + +%install +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/* + +%check +make test + +%clean +rm -rf $RPM_BUILD_ROOT + +%files +%defattr(-,root,root,-) +%doc Changes META.json README README.md +%{perl_vendorlib}/* +%{_mandir}/man3/* + +%changelog +* Tue Jan 21 2025 Koozali 0.45-1 +- Specfile autogenerated by cpanspec 1.78.