# HG changeset patch # User Hans-G?nter Theisgen # Date 1649511851 -3600 # Node ID 4cc045d1c2be7a33a0ecc657e6d07bb1cd025276 # Parent fa6b75f0851210247239d3f8ad3b5501bdeefdef updated minised (1.15 -> 1.16) diff -r fa6b75f08512 -r 4cc045d1c2be minised/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/minised/description.txt Sat Apr 09 14:44:11 2022 +0100 @@ -0,0 +1,14 @@ +Mini-sed is a smaller, cheaper, faster SED implementation. +Minix uses it. GNU used to use it, until they built their own sed +around an extended (some would say over-extended) regexp package. + +For embedded use we searched for a tiny sed implementation especially +for use with the dietlibc and found Eric S. Raymond's sed implementation +quite handy. +Though it suffered several bugs and was not under active maintenance +anymore. After sending a bunch of fixes we agreed to continue maintaining +this lovely, historic sed implementation. + +Along a lot of fixes and cleanups, further speedups, and some missing +features and POSIX conformance, we also added a test-suite to the package, +so regressions are quickly and easily uncovered. diff -r fa6b75f08512 -r 4cc045d1c2be minised/receipt --- a/minised/receipt Sat Apr 09 14:37:52 2022 +0100 +++ b/minised/receipt Sat Apr 09 14:44:11 2022 +0100 @@ -1,12 +1,12 @@ # SliTaz package receipt. PACKAGE="minised" -VERSION="1.15" +VERSION="1.16" CATEGORY="base-system" SHORT_DESC="A smaller, cheaper, faster SED implementation." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="BSD" -WEB_SITE="httpa://www.exactcode.com/opensource/minised/" +WEB_SITE="https://www.exactcode.com/opensource/minised/" TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="http://dl.exactcode.de/oss/$PACKAGE/$TARBALL" @@ -25,12 +25,11 @@ compile_rules() { make && - make DESTDIR=$DESTDIR install + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr - cp -a $install/usr/bin $fs/usr + cook_copy_folders bin }