mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-10 20:01:54 +01:00
Merge branch 'develop'
This commit is contained in:
commit
8c6bb0f23c
4 changed files with 7 additions and 3 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
3.8.8 - 20/05/2020
|
||||||
|
BugFix:
|
||||||
|
- Fixed the name of variable flags to flag for patches upgrade option
|
||||||
|
|
||||||
3.8.7 - 01/04/2020
|
3.8.7 - 01/04/2020
|
||||||
BuFix:
|
BuFix:
|
||||||
- '--checklist' flag doesn't work since 3.8.1 to 3.8.6 version #127
|
- '--checklist' flag doesn't work since 3.8.1 to 3.8.6 version #127
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# slpkg 3.8.7
|
# slpkg 3.8.8
|
||||||
|
|
||||||
Slpkg is a powerful software package manager that installs, updates, and removes packages on
|
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
|
[Slackware](http://www.slackware.com/) based systems. It automatically computes dependencies and
|
||||||
|
|
|
@ -76,7 +76,7 @@ class MetaData:
|
||||||
|
|
||||||
__all__ = "slpkg"
|
__all__ = "slpkg"
|
||||||
__author__ = "dslackw"
|
__author__ = "dslackw"
|
||||||
__version_info__ = (3, 8, 7)
|
__version_info__ = (3, 8, 8)
|
||||||
__version__ = "{0}.{1}.{2}".format(*__version_info__)
|
__version__ = "{0}.{1}.{2}".format(*__version_info__)
|
||||||
__license__ = "GNU General Public License v3 (GPLv3)"
|
__license__ = "GNU General Public License v3 (GPLv3)"
|
||||||
__email__ = "d.zlatanidis@gmail.com"
|
__email__ = "d.zlatanidis@gmail.com"
|
||||||
|
|
|
@ -320,7 +320,7 @@ class ArgParse(BlackList):
|
||||||
BinaryInstall(pkg_upgrade("slack", skip, flag),
|
BinaryInstall(pkg_upgrade("slack", skip, flag),
|
||||||
"slack", flag).start(is_upgrade=True)
|
"slack", flag).start(is_upgrade=True)
|
||||||
else:
|
else:
|
||||||
Patches(skip, flags).start()
|
Patches(skip, flag).start()
|
||||||
elif self.args[1] == "sbo":
|
elif self.args[1] == "sbo":
|
||||||
SBoInstall(sbo_upgrade(skip, flag), flag).start(
|
SBoInstall(sbo_upgrade(skip, flag), flag).start(
|
||||||
is_upgrade=True)
|
is_upgrade=True)
|
||||||
|
|
Loading…
Reference in a new issue