diff --git a/CHANGELOG b/CHANGELOG index 578e030e..3b89e8cb 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,8 @@ +Version 1.8.7 +19-09-2014 + +[Updated] - Fix build time + Version 1.8.6 14-09-2014 diff --git a/PKG-INFO b/PKG-INFO index aad61470..e93e4f53 100644 --- a/PKG-INFO +++ b/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: slpkg -Version: 1.8.6 +Version: 1.8.7 Author: dslackw Author-email: d zlatanidis at gmail com Maintainer: dslackw diff --git a/install.sh b/install.sh index 5e3a5a15..a975faf7 100755 --- a/install.sh +++ b/install.sh @@ -21,11 +21,12 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=slpkg -VERSION=${VERSION:-1.8.6} +VERSION=${VERSION:-1.8.7} TAG=${TAG:-_dsw} cd .. # Installation script. +# With this script allows you to install the slpkg as a package SlackBuild. # Select archive to copy in slackbuild directory # support wget download. if [ -f $PRGNAM-$VERSION.zip ]; then diff --git a/man/slpkg.8 b/man/slpkg.8 index 3bb2fbd0..aca962a1 100644 --- a/man/slpkg.8 +++ b/man/slpkg.8 @@ -68,7 +68,7 @@ slackbuilds.org is up to date. .SS -s , sbo, slack [sbo, slack ...] download, build and install package with all dependencies \fBslpkg\fP \fB-s\fP <\fIsbo\fP> <\fIslack\fP> <\fIname of package\fP> .PP -Installs packages from the repository slackbuilds.org automatically resolving all +Installs or upgrade packages from the repository slackbuilds.org automatically resolving all dependencies of the package. Also installs the official distribution Slackware packages. .SS -f find packages @@ -80,7 +80,7 @@ Find installed packages with view total file size. .PP Tracking all dependencies of that package. The sequence shown is that you must follow to correctly install package. -.SS -n , find from SBo repositority +.SS -n , find packages from SBo repositority \fBslpkg\fP \fB-n\fP <\fIname of package\fP> .PP With this method you can find the SBo script that interests you through diff --git a/slackbuild/slpkg.SlackBuild b/slackbuild/slpkg.SlackBuild index b95019f8..5c9d2387 100755 --- a/slackbuild/slpkg.SlackBuild +++ b/slackbuild/slpkg.SlackBuild @@ -23,7 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=slpkg -VERSION=${VERSION:-1.8.6} +VERSION=${VERSION:-1.8.7} BUILD=${BUILD:-1} TAG=${TAG:-_dsw} diff --git a/slackbuild/slpkg.info b/slackbuild/slpkg.info index 415e7c53..f3c8fcc7 100644 --- a/slackbuild/slpkg.info +++ b/slackbuild/slpkg.info @@ -1,7 +1,7 @@ PRGNAM="slpkg" -VERSION="1.8.6" +VERSION="1.8.7" HOMEPAGE="https://github.com/dslackw/slpkg" -DOWNLOAD="https://github.com/dslackw/slpkg/archive/v1.8.6.tar.gz" +DOWNLOAD="https://github.com/dslackw/slpkg/archive/v1.8.7.tar.gz" MD5SUM="" DOWNLOAD_x86_64="" MD5SUM_x86_64="" diff --git a/slpkg/pkg/build.py b/slpkg/pkg/build.py index 3c0012e6..9975fc71 100755 --- a/slpkg/pkg/build.py +++ b/slpkg/pkg/build.py @@ -38,8 +38,8 @@ from sbo.greps import sbo_checksum_pkg def build_package(script, sources, path): ''' - Build package from source and - create log file in path /var/log/slpkg/sbo/build_logs/. + Build package from source and create log + file in path /var/log/slpkg/sbo/build_logs/. Also check md5sum calculates. ''' prgnam = script.replace(".tar.gz", "") @@ -98,7 +98,7 @@ def build_package(script, sources, path): log.write(log_line) log.close() subprocess.Popen("./{0}.SlackBuild 2>&1 | tee -a {1}{2}".format( - prgnam, build_logs, log_file), \ + prgnam, build_logs, log_file), \ shell=True, stdout=sys.stdout).communicate() end_log_time = time.strftime("%H:%M:%S") end_time = time.time()