# HG changeset patch # User Hans-G?nter Theisgen # Date 1641114622 -3600 # Node ID 3e367c02357db72b987bfd5e7ddd2138d5504622 # Parent eaee9007e7d863a6ee4b563a6d841ea25936a8b9 updated perl-test-simple (1.302172 -> 1.302188) diff -r eaee9007e7d8 -r 3e367c02357d perl-test-simple/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/perl-test-simple/description.txt Sun Jan 02 10:10:22 2022 +0100 @@ -0,0 +1,9 @@ +This is an extremely simple, extremely basic module for writing tests +suitable for CPAN modules and other pursuits. +If you wish to do more complicated testing, use the Test::More module +(a drop-in replacement for this one). + +The basic unit of Perl testing is the ok. For each thing you want to +test your program will print out an "ok" or "not ok" to indicate pass +or fail. +You do this with the ok() function. diff -r eaee9007e7d8 -r 3e367c02357d perl-test-simple/receipt --- a/perl-test-simple/receipt Sun Jan 02 10:07:54 2022 +0100 +++ b/perl-test-simple/receipt Sun Jan 02 10:10:22 2022 +0100 @@ -1,12 +1,13 @@ # SliTaz package receipt. PACKAGE="perl-test-simple" -VERSION="1.302172" +VERSION="1.302188" CATEGORY="development" SHORT_DESC="Perl extension Test::Simple." MAINTAINER="nneul@neulinger.org" LICENSE="GPL" -WEB_SITE="https://metacpan.org/release/Test-Simple" +WEB_SITE="https://metacpan.org/pod/Test::Simple" +REPOLOGY="perl:test-simple" SOURCE="Test-Simple" TARBALL="$SOURCE-$VERSION.tar.gz" @@ -26,11 +27,11 @@ { perl Makefile.PL && make && - make DESTDIR=$DESTDIR install + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $install/usr $fs + cook_copy_folders lib }