From ad7740b6a2dc78559e0fd192fc80a2c6c8ba770f Mon Sep 17 00:00:00 2001 From: Tonus Date: Sun, 5 Jan 2020 18:00:17 -0600 Subject: perl/perl-data-section-simple: Added (extracts data from __DATA__ section) Signed-off-by: Robby Workman --- perl/perl-data-section-simple/README | 13 ++++ .../perl-data-section-simple.SlackBuild | 86 ++++++++++++++++++++++ .../perl-data-section-simple.info | 10 +++ perl/perl-data-section-simple/slack-desc | 19 +++++ 4 files changed, 128 insertions(+) create mode 100644 perl/perl-data-section-simple/README create mode 100644 perl/perl-data-section-simple/perl-data-section-simple.SlackBuild create mode 100644 perl/perl-data-section-simple/perl-data-section-simple.info create mode 100644 perl/perl-data-section-simple/slack-desc diff --git a/perl/perl-data-section-simple/README b/perl/perl-data-section-simple/README new file mode 100644 index 0000000000..307333460f --- /dev/null +++ b/perl/perl-data-section-simple/README @@ -0,0 +1,13 @@ +Data::Section::Simple is a simple module to extract data from "__DATA__" +section of a file. + +As the name suggests, this module is a simpler version of the excellent +Data::Section. If you want more functionalities such as merging data +sections or changing header patterns, use Data::Section instead. + +This module does not implement caching (yet) which means in every +"get_data_section" or "get_data_section($name)" this module seeks and +re-reads the data section. If you want to avoid doing so for the better +performance, you should implement caching in your own caller code. + +If you don't like this design, again, use the superior Data::Section. diff --git a/perl/perl-data-section-simple/perl-data-section-simple.SlackBuild b/perl/perl-data-section-simple/perl-data-section-simple.SlackBuild new file mode 100644 index 0000000000..ee87d36463 --- /dev/null +++ b/perl/perl-data-section-simple/perl-data-section-simple.SlackBuild @@ -0,0 +1,86 @@ +#!/bin/sh + +# Slackware build script for perl-data-section-simple + +# Copyright 2020 Tonus, France +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +PRGNAM=perl-data-section-simple +VERSION=${VERSION:-0.07} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +SRCNAM=Data-Section-Simple +DOCFILES="Changes README" + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $SRCNAM-$VERSION +tar xvf $CWD/$SRCNAM-$VERSION.tar.gz +cd $SRCNAM-$VERSION +chown -R root:root . +find -L . \ + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +echo "y" | perl Makefile.PL \ + PREFIX=/usr \ + INSTALLDIRS=vendor \ + INSTALLVENDORMAN3DIR=/usr/man/man3 +make +make test +make install DESTDIR=$PKG + +find $PKG -name perllocal.pod -o -name ".packlist" -o -name "*.bs" | xargs rm -f || true +find $PKG -depth -type d -empty -delete + +find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +find $PKG/usr/man -type f -exec gzip -9 {} \; +for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a $DOCFILES $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/perl/perl-data-section-simple/perl-data-section-simple.info b/perl/perl-data-section-simple/perl-data-section-simple.info new file mode 100644 index 0000000000..ff55b5e1ab --- /dev/null +++ b/perl/perl-data-section-simple/perl-data-section-simple.info @@ -0,0 +1,10 @@ +PRGNAM="perl-data-section-simple" +VERSION="0.07" +HOMEPAGE="https://metacpan.org/pod/Data::Section::Simple" +DOWNLOAD="https://cpan.metacpan.org/authors/id/M/MI/MIYAGAWA/Data-Section-Simple-0.07.tar.gz" +MD5SUM="5a079d3d7712fa3c8256494cf026a153" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="" +MAINTAINER="Tonus" +EMAIL="tonus1@gmail.com" diff --git a/perl/perl-data-section-simple/slack-desc b/perl/perl-data-section-simple/slack-desc new file mode 100644 index 0000000000..3a89a73d0b --- /dev/null +++ b/perl/perl-data-section-simple/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. +# Line up the first '|' above the ':' following the base package name, and +# the '|' on the right side marks the last column you can put a character in. +# You must make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +perl-data-section-simple: perl-data-section-simple (extracts data from __DATA__ section) +perl-data-section-simple: +perl-data-section-simple: Data::Section::Simple is a simple module to extract data +perl-data-section-simple: from the "__DATA__" section of a file. +perl-data-section-simple: +perl-data-section-simple: +perl-data-section-simple: +perl-data-section-simple: +perl-data-section-simple: +perl-data-section-simple: +perl-data-section-simple: -- cgit v1.2.3