Merge branch 'develop'

This commit is contained in:
Dimitris Zlatanidis 2022-06-13 14:32:06 +03:00
commit 1f497c2ac4
5 changed files with 11 additions and 8 deletions

View file

@ -1,3 +1,7 @@
4.0.2 - 13/06/2022
Fixed:
- database library path
4.0.1 - 30/05/2022 4.0.1 - 30/05/2022
Added: Added:
- SQLAlchemy Object Relational Mapper - SQLAlchemy Object Relational Mapper

View file

@ -1,5 +1,5 @@
*********** ***********
slpkg 4.0.1 slpkg 4.0.2
*********** ***********
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
@ -35,9 +35,9 @@ Install from the official third party `SBo repository <https://slackbuilds.org/r
.. code-block:: bash .. code-block:: bash
$ wget slpkg-4.0.1.tar.gz $ wget slpkg-4.0.2.tar.gz
$ tar xvf slpkg-4.0.1.tar.gz $ tar xvf slpkg-4.0.2.tar.gz
$ cd slpkg-4.0.1 $ cd slpkg-4.0.2
$ ./install.sh $ ./install.sh

View file

@ -74,7 +74,8 @@ setup(
package_data={"": ["LICENSE", "README.rst", "CHANGELOG"]}, package_data={"": ["LICENSE", "README.rst", "CHANGELOG"]},
data_files=[("man/man8", ["man/slpkg.8"]), data_files=[("man/man8", ["man/slpkg.8"]),
("/etc/bash_completion.d", ["conf/slpkg.bash-completion"]), ("/etc/bash_completion.d", ["conf/slpkg.bash-completion"]),
("/etc/fish/completions", ["conf/slpkg.fish"])], ("/etc/fish/completions", ["conf/slpkg.fish"]),
("/var/lib/slpkg/database", [])],
install_requires=install_requires, install_requires=install_requires,
extras_require={ extras_require={
"optional": optional_requires, "optional": optional_requires,

View file

@ -77,7 +77,7 @@ class MetaData:
__all__ = "slpkg" __all__ = "slpkg"
__author__ = "dslackw" __author__ = "dslackw"
__version_info__ = (4, 0, 1) __version_info__ = (4, 0, 2)
__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"

View file

@ -80,13 +80,11 @@ class Init(Utils):
def make_dir(self, path: list): def make_dir(self, path: list):
for p in path: for p in path:
if not os.path.exists(p): if not os.path.exists(p):
os.mkdir(p) os.mkdir(p)
def make_dirs(self, path: list): def make_dirs(self, path: list):
for p in path: for p in path:
if not os.path.exists(p): if not os.path.exists(p):
os.makedirs(p) os.makedirs(p)