Merge branch 'develop'

This commit is contained in:
Dimitris Zlatanidis 2020-03-26 14:43:46 +01:00
commit 3f020e1faa
5 changed files with 7 additions and 5 deletions

View file

@ -1,3 +1,7 @@
3.8.6 - 22/03/2020
BugFix:
- Message function pkg_not_found arguments
3.8.5 - 5/03/2020
Added:
- set export variable $TAG #126

View file

@ -1,4 +1,4 @@
# slpkg 3.8.5
# slpkg 3.8.6
Slpkg is a powerful software package manager that installs, updates, and removes packages on
[Slackware](http://www.slackware.com/) based systems. It automatically computes dependencies and

View file

@ -76,12 +76,11 @@ class MetaData:
__all__ = "slpkg"
__author__ = "dslackw"
__version_info__ = (3, 8, 5)
__version_info__ = (3, 8, 6)
__version__ = "{0}.{1}.{2}".format(*__version_info__)
__license__ = "GNU General Public License v3 (GPLv3)"
__email__ = "d.zlatanidis@gmail.com"
__maintainer__ = "Dimitris Zlatanidis (dslackw)"
__twitter__ = "https://twitter.com/dslackw"
__homepage__ = "https://dslackw.gitlab.io/slpkg/"
# Default Slackware release

View file

@ -53,7 +53,7 @@ def slack_package(prgnam):
cache = binary
if not binary:
msg.pkg_not_found(prgnam)
msg.pkg_not_found("\n", prgnam, "Can't build", "\n")
raise SystemExit(1)
return ["".join(_meta_.output + binary)]

View file

@ -32,5 +32,4 @@ def prog_version():
f"Licence : {m.__license__}\n"
f"Email : {m.__email__}\n"
f"Homepage : {m.__homepage__}\n"
f"Twitter : {m.__twitter__}\n"
f"Maintainer: {m.__maintainer__}")