mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-25 19:58:37 +01:00
Merge branch 'develop'
This commit is contained in:
commit
e8a573264b
5 changed files with 9 additions and 4 deletions
|
@ -1,3 +1,7 @@
|
|||
3.8.7 - 01/04/2020
|
||||
BuFix:
|
||||
- '--checklist' flag doesn't work since 3.8.1 to 3.8.6 version #127
|
||||
|
||||
3.8.6 - 22/03/2020
|
||||
BugFix:
|
||||
- Message function pkg_not_found arguments
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# slpkg 3.8.6
|
||||
# slpkg 3.8.7
|
||||
|
||||
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
|
||||
|
|
|
@ -76,7 +76,7 @@ class MetaData:
|
|||
|
||||
__all__ = "slpkg"
|
||||
__author__ = "dslackw"
|
||||
__version_info__ = (3, 8, 6)
|
||||
__version_info__ = (3, 8, 7)
|
||||
__version__ = "{0}.{1}.{2}".format(*__version_info__)
|
||||
__license__ = "GNU General Public License v3 (GPLv3)"
|
||||
__email__ = "d.zlatanidis@gmail.com"
|
||||
|
|
|
@ -320,7 +320,7 @@ class ArgParse(BlackList):
|
|||
BinaryInstall(pkg_upgrade("slack", skip, flag),
|
||||
"slack", flag).start(is_upgrade=True)
|
||||
else:
|
||||
Patches(skip, flags[0]).start()
|
||||
Patches(skip, flags).start()
|
||||
elif self.args[1] == "sbo":
|
||||
SBoInstall(sbo_upgrade(skip, flag), flag).start(
|
||||
is_upgrade=True)
|
||||
|
|
|
@ -158,9 +158,10 @@ class Patches(BlackList, Utils):
|
|||
data.append(upg[:-4])
|
||||
text = "Press 'spacebar' to unchoose packages from upgrade"
|
||||
title = " Upgrade "
|
||||
status = True
|
||||
backtitle = f"{self.meta.__all__} {self.meta.__version__}"
|
||||
pkgs = DialogUtil(data, text, title, backtitle,
|
||||
status=True).checklist()
|
||||
status).checklist()
|
||||
index = 0
|
||||
for pkg, comp, uncomp in zip(self.upgrade_all, self.comp_sum,
|
||||
self.uncomp_sum):
|
||||
|
|
Loading…
Add table
Reference in a new issue