initial create of smeserver perl File::Remove on Tue Jan 21 19:56:10 AEDT 2025

This commit is contained in:
Trevor Batley 2025-01-21 19:56:10 +11:00
parent 4da92aa744
commit 7a734b7822
7 changed files with 118 additions and 2 deletions

1
.gitattributes vendored Normal file
View File

@ -0,0 +1 @@
*.tar.gz filter=lfs diff=lfs merge=lfs -text

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
*.rpm
*.log
*spec-20*

BIN
File-Remove-1.61.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

21
Makefile Normal file
View File

@ -0,0 +1,21 @@
# Makefile for source rpm: perl-File-Remove
# $Id: Makefile,v 1.1 2016/02/04 12:24:52 vip-ire Exp $
NAME := perl-File-Remove
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)

View File

@ -1,3 +1,17 @@
# perl-File-Remove
# <img src="https://www.koozali.org/images/koozali/Logo/Png/Koozali_logo_2016.png" width="25%" vertical="auto" style="vertical-align:bottom"> perl-File-Remove (File::Remove)
3rd Party (Maintained by Koozali) git repo for perl-File-Remove smeserver
SMEServer Koozali local git repo for perl-File-Remove
## Documentation
https://metacpan.org/pod/File::Remove
## Bugs
CPAN bug report are [here](https://rt.cpan.org/Public/Dist/Display.html?Name=File-Remove)
Show list of Koozali outstanding bugs: [here](https://bugs.koozali.org/buglist.cgi?component=perl-File-Remove&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
File::Remove::remove removes files and directories. It acts like /bin/rm,
for the most part. Although unlink can be given a list of files, it will
not remove directories; this module remedies that. It also accepts
wildcards, * and ?, as arguments for filenames.

1
contriborbase Normal file
View File

@ -0,0 +1 @@
sme11

73
perl-File-Remove.spec Normal file
View File

@ -0,0 +1,73 @@
Name: perl-File-Remove
Version: 1.61
Release: 1%{?dist}
Summary: Remove files and directories
License: GPL+ or Artistic
Group: Development/Libraries
URL: http://search.cpan.org/dist/File-Remove/
Source0: http://www.cpan.org/authors/id/S/SH/SHLOMIF/File-Remove-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch
BuildRequires: perl >= 0:5.008
BuildRequires: perl(ExtUtils::Manifest)
BuildRequires: perl(inc::Module::Install)
BuildRequires: perl(constant)
BuildRequires: perl(Cwd) >= 3.29
BuildRequires: perl(File::Copy)
BuildRequires: perl(File::Glob)
BuildRequires: perl(File::Path)
BuildRequires: perl(File::Spec) >= 3.29
BuildRequires: perl(File::Spec::Functions)
BuildRequires: perl(IO::Handle)
BuildRequires: perl(IPC::Open3)
BuildRequires: perl(Module::Build)
BuildRequires: perl(strict)
BuildRequires: perl(Test::More) >= 0.88
BuildRequires: perl(vars)
BuildRequires: perl(warnings)
Requires: perl(constant)
Requires: perl(Cwd) >= 3.29
Requires: perl(File::Glob)
Requires: perl(File::Path)
Requires: perl(File::Spec) >= 3.29
Requires: perl(strict)
Requires: perl(vars)
Requires: perl(warnings)
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
%description
File::Remove::remove removes files and directories. It acts like /bin/rm,
for the most part. Although unlink can be given a list of files, it will
not remove directories; this module remedies that. It also accepts
wildcards, * and ?, as arguments for filenames.
%prep
%setup -q -n File-Remove-%{version}
%build
%{__perl} Build.PL --installdirs=vendor
./Build
%install
rm -rf $RPM_BUILD_ROOT
./Build install --destdir=$RPM_BUILD_ROOT --create_packlist=0
find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
%{_fixperms} $RPM_BUILD_ROOT/*
%check
./Build test
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%doc Changes dist.ini LICENSE META.json README scripts weaver.ini
%{perl_vendorlib}/*
%{_mandir}/man3/*
%changelog
* Tue Jan 21 2025 Koozali 1.61-1
- Specfile autogenerated by cpanspec 1.78.