wok-current rev 24907
updated minised (1.15 -> 1.16)
author | Hans-G?nter Theisgen |
---|---|
date | Sat Apr 09 14:44:11 2022 +0100 (2022-04-09) |
parents | fa6b75f08512 |
children | ab377f6a6568 |
files | minised/description.txt minised/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/minised/description.txt Sat Apr 09 14:44:11 2022 +0100 1.3 @@ -0,0 +1,14 @@ 1.4 +Mini-sed is a smaller, cheaper, faster SED implementation. 1.5 +Minix uses it. GNU used to use it, until they built their own sed 1.6 +around an extended (some would say over-extended) regexp package. 1.7 + 1.8 +For embedded use we searched for a tiny sed implementation especially 1.9 +for use with the dietlibc and found Eric S. Raymond's sed implementation 1.10 +quite handy. 1.11 +Though it suffered several bugs and was not under active maintenance 1.12 +anymore. After sending a bunch of fixes we agreed to continue maintaining 1.13 +this lovely, historic sed implementation. 1.14 + 1.15 +Along a lot of fixes and cleanups, further speedups, and some missing 1.16 +features and POSIX conformance, we also added a test-suite to the package, 1.17 +so regressions are quickly and easily uncovered.
2.1 --- a/minised/receipt Sat Apr 09 14:37:52 2022 +0100 2.2 +++ b/minised/receipt Sat Apr 09 14:44:11 2022 +0100 2.3 @@ -1,12 +1,12 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="minised" 2.7 -VERSION="1.15" 2.8 +VERSION="1.16" 2.9 CATEGORY="base-system" 2.10 SHORT_DESC="A smaller, cheaper, faster SED implementation." 2.11 MAINTAINER="pascal.bellard@slitaz.org" 2.12 LICENSE="BSD" 2.13 -WEB_SITE="httpa://www.exactcode.com/opensource/minised/" 2.14 +WEB_SITE="https://www.exactcode.com/opensource/minised/" 2.15 2.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 2.17 WGET_URL="http://dl.exactcode.de/oss/$PACKAGE/$TARBALL" 2.18 @@ -25,12 +25,11 @@ 2.19 compile_rules() 2.20 { 2.21 make && 2.22 - make DESTDIR=$DESTDIR install 2.23 + make install DESTDIR=$DESTDIR 2.24 } 2.25 2.26 # Rules to gen a SliTaz package suitable for Tazpkg. 2.27 genpkg_rules() 2.28 { 2.29 - mkdir -p $fs/usr 2.30 - cp -a $install/usr/bin $fs/usr 2.31 + cook_copy_folders bin 2.32 }