From b1567744e891708e873516bf2019783a8f1843b7 Mon Sep 17 00:00:00 2001 From: Dimitris Zlatanidis Date: Mon, 13 Jun 2022 14:21:59 +0300 Subject: [PATCH 1/2] Fixed database path --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3d2553cb..52fbaa27 100755 --- a/setup.py +++ b/setup.py @@ -74,7 +74,8 @@ setup( package_data={"": ["LICENSE", "README.rst", "CHANGELOG"]}, data_files=[("man/man8", ["man/slpkg.8"]), ("/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, extras_require={ "optional": optional_requires, From 5007f49afa2a7665068b0e84e403a1b496169902 Mon Sep 17 00:00:00 2001 From: Dimitris Zlatanidis Date: Mon, 13 Jun 2022 14:30:57 +0300 Subject: [PATCH 2/2] Updated for version 4.0.2 --- ChangeLog.txt | 4 ++++ README.rst | 8 ++++---- slpkg/__metadata__.py | 2 +- slpkg/init.py | 2 -- 4 files changed, 9 insertions(+), 7 deletions(-) diff --git a/ChangeLog.txt b/ChangeLog.txt index afff4620..eba3ef74 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,3 +1,7 @@ +4.0.2 - 13/06/2022 +Fixed: +- database library path + 4.0.1 - 30/05/2022 Added: - SQLAlchemy Object Relational Mapper diff --git a/README.rst b/README.rst index d7ab5e55..66e73bc4 100644 --- a/README.rst +++ b/README.rst @@ -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 @@ -35,9 +35,9 @@ Install from the official third party `SBo repository