# HG changeset patch # User Aleksej Bobylev # Date 1413276651 -10800 # Node ID 252c035d8cdf6382d5d2e0ddf8b60f8dc1d56b80 # Parent cc6bbcf323fa169002179234a4d98318f590d62d Up: file (5.20). diff -r cc6bbcf323fa -r 252c035d8cdf file/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/file/description.txt Tue Oct 14 11:50:51 2014 +0300 @@ -0,0 +1,3 @@ +File tests each argument in an attempt to classify it. There are three sets +of tests, performed in this order: filesystem tests, magic number tests, and +language tests. The first test that succeeds causes the file type to be printed. diff -r cc6bbcf323fa -r 252c035d8cdf file/receipt --- a/file/receipt Sat Oct 11 14:25:56 2014 +0200 +++ b/file/receipt Tue Oct 14 11:50:51 2014 +0300 @@ -1,9 +1,9 @@ # SliTaz package receipt. PACKAGE="file" -VERSION="5.14" +VERSION="5.20" CATEGORY="system-tools" -SHORT_DESC="Retrieve file type." +SHORT_DESC="Determines file type using 'magic' numbers" MAINTAINER="erjo@slitaz.org" LICENSE="BSD" TARBALL="$PACKAGE-$VERSION.tar.gz" @@ -14,6 +14,8 @@ DEPENDS="zlib libmagic" BUILD_DEPENDS="zlib-dev python" +# Please, update too: libmagic, libmagic-dev, python-magic. + # Handle cross compilation. python is installed in a ARM cook env. case "$ARCH" in arm) BUILD_DEPENDS="" ;; @@ -22,7 +24,6 @@ # Rules to configure and make the package. compile_rules() { - cd $src ./configure \ --datarootdir=/usr/share \ $CONFIGURE_ARGS && @@ -37,8 +38,6 @@ { mkdir -p $fs/usr/share cp -a $install/usr/bin $fs/usr - # --> libmagic - #cp -a $install/usr/lib/*.so* $fs/usr/lib cp -a $install/usr/share/misc $fs/usr/share } diff -r cc6bbcf323fa -r 252c035d8cdf libmagic-dev/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libmagic-dev/description.txt Tue Oct 14 11:50:51 2014 +0300 @@ -0,0 +1,4 @@ +This library can be used to classify files according to magic number tests. +It implements the core functionality of the file command. + +This package contains the development files. diff -r cc6bbcf323fa -r 252c035d8cdf libmagic-dev/receipt --- a/libmagic-dev/receipt Sat Oct 11 14:25:56 2014 +0200 +++ b/libmagic-dev/receipt Tue Oct 14 11:50:51 2014 +0300 @@ -1,9 +1,9 @@ # SliTaz package receipt. PACKAGE="libmagic-dev" -VERSION="5.14" +VERSION="5.20" CATEGORY="development" -SHORT_DESC="Library for File utility dev files" +SHORT_DESC="File type determination library using 'magic' numbers (development)" MAINTAINER="erjo@slitaz.org" LICENSE="BSD" WEB_SITE="http://www.darwinsys.com/file/" @@ -16,7 +16,7 @@ genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/usr/lib/*.*a $fs/usr/lib - cp -a $install/usr/include $fs/usr/ + cp -a $install/usr/lib/*.la $fs/usr/lib + cp -a $install/usr/include $fs/usr } diff -r cc6bbcf323fa -r 252c035d8cdf libmagic/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libmagic/description.txt Tue Oct 14 11:50:51 2014 +0300 @@ -0,0 +1,2 @@ +This library can be used to classify files according to magic number tests. +It implements the core functionality of the file command. diff -r cc6bbcf323fa -r 252c035d8cdf libmagic/receipt --- a/libmagic/receipt Sat Oct 11 14:25:56 2014 +0200 +++ b/libmagic/receipt Tue Oct 14 11:50:51 2014 +0300 @@ -1,9 +1,9 @@ # SliTaz package receipt. PACKAGE="libmagic" -VERSION="5.14" +VERSION="5.20" CATEGORY="system-tools" -SHORT_DESC="Library for File utility" +SHORT_DESC="File type determination library using 'magic' numbers" MAINTAINER="erjo@slitaz.org" LICENSE="BSD" WEB_SITE="http://www.darwinsys.com/file/" diff -r cc6bbcf323fa -r 252c035d8cdf python-magic/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-magic/description.txt Tue Oct 14 11:50:51 2014 +0300 @@ -0,0 +1,4 @@ +This library can be used to classify files according to magic number tests. +It implements the core functionality of the file command. + +This package contains the Python bindings. diff -r cc6bbcf323fa -r 252c035d8cdf python-magic/receipt --- a/python-magic/receipt Sat Oct 11 14:25:56 2014 +0200 +++ b/python-magic/receipt Tue Oct 14 11:50:51 2014 +0300 @@ -1,9 +1,9 @@ # SliTaz package receipt. PACKAGE="python-magic" -VERSION="5.14" +VERSION="5.20" CATEGORY="development" -SHORT_DESC="Retrieve file type." +SHORT_DESC="File type determination library using 'magic' numbers (Python bindings)" MAINTAINER="pascal.bellard@slitaz.org" LICENSE="BSD" WEB_SITE="http://www.darwinsys.com/file/"