perl/perl-File-Remove: Updated for version 1.57.

This should probably be noarch...

Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
Edinaldo P. Silva 2016-07-24 22:36:42 -05:00 committed by Willy Sudiarto Raharjo
parent bd6bec872d
commit 5a2075b991
No known key found for this signature in database
GPG Key ID: 887B8374D7333381
4 changed files with 16 additions and 14 deletions

View File

@ -1,7 +1,9 @@
perl-File-Remove (Remove files and directories).
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.
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.
File::Remove::trash accepts the same arguments as remove, with the addition of an optional, infrequently used "other platforms" hashref.
File::Remove::trash accepts the same arguments as remove, with the addition
of an optional, infrequently used "other platforms" hashref.

View File

@ -1,7 +1,7 @@
#!/bin/sh
#
# Slackware build script for perl-File-Remove.
#
# Copyright 2015 Edinaldo P. Silva, Rio de Janeiro, Brazil.
# All rights reserved.
#
@ -23,7 +23,7 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=perl-File-Remove
VERSION=${VERSION:-1.52}
VERSION=${VERSION:-1.57}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@ -31,7 +31,7 @@ SRCNAM="$(printf $PRGNAM | cut -d- -f2-)"
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i486 ;;
i?86) ARCH=i586 ;;
arm*) ARCH=arm ;;
*) ARCH=$( uname -m ) ;;
esac
@ -42,8 +42,8 @@ TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
if [ "$ARCH" = "i586" ]; then
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"

View File

@ -1,8 +1,8 @@
PRGNAM="perl-File-Remove"
VERSION="1.52"
VERSION="1.57"
HOMEPAGE="https://metacpan.org/pod/File::Remove"
DOWNLOAD="https://cpan.metacpan.org/authors/id/A/AD/ADAMK/File-Remove-1.52.tar.gz"
MD5SUM="e9d6c33a2aac9789036afb4cc23ed8eb"
DOWNLOAD="https://cpan.metacpan.org/authors/id/S/SH/SHLOMIF/File-Remove-1.57.tar.gz"
MD5SUM="fe7da64339206d6568037209a577724f"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES=""

View File

@ -6,7 +6,7 @@
# customary to leave one space after the ':' except on otherwise blank lines.
|-----handy-ruler------------------------------------------------------|
perl-File-Remove: perl-File-Remove (Remove files and directories).
perl-File-Remove: perl-File-Remove (remove files and directories)
perl-File-Remove:
perl-File-Remove: File::Remove::remove removes files and directories. It acts like
perl-File-Remove: /bin/rm, for the most part.