mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-11-17 07:48:18 +01:00
updated for version 1.8.7
This commit is contained in:
parent
36e7ba6250
commit
03f46a3518
7 changed files with 16 additions and 10 deletions
|
@ -1,3 +1,8 @@
|
|||
Version 1.8.7
|
||||
19-09-2014
|
||||
|
||||
[Updated] - Fix build time
|
||||
|
||||
Version 1.8.6
|
||||
14-09-2014
|
||||
|
||||
|
|
2
PKG-INFO
2
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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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}
|
||||
|
||||
|
|
|
@ -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=""
|
||||
|
|
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue