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
1f497c2ac4
5 changed files with 11 additions and 8 deletions
|
@ -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
|
||||
|
|
|
@ -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 <https://slackbuilds.org/r
|
|||
|
||||
.. code-block:: bash
|
||||
|
||||
$ wget slpkg-4.0.1.tar.gz
|
||||
$ tar xvf slpkg-4.0.1.tar.gz
|
||||
$ cd slpkg-4.0.1
|
||||
$ wget slpkg-4.0.2.tar.gz
|
||||
$ tar xvf slpkg-4.0.2.tar.gz
|
||||
$ cd slpkg-4.0.2
|
||||
$ ./install.sh
|
||||
|
||||
|
||||
|
|
3
setup.py
3
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,
|
||||
|
|
|
@ -77,7 +77,7 @@ class MetaData:
|
|||
|
||||
__all__ = "slpkg"
|
||||
__author__ = "dslackw"
|
||||
__version_info__ = (4, 0, 1)
|
||||
__version_info__ = (4, 0, 2)
|
||||
__version__ = "{0}.{1}.{2}".format(*__version_info__)
|
||||
__license__ = "GNU General Public License v3 (GPLv3)"
|
||||
__email__ = "d.zlatanidis@gmail.com"
|
||||
|
|
|
@ -80,13 +80,11 @@ class Init(Utils):
|
|||
|
||||
def make_dir(self, path: list):
|
||||
for p in path:
|
||||
|
||||
if not os.path.exists(p):
|
||||
os.mkdir(p)
|
||||
|
||||
def make_dirs(self, path: list):
|
||||
for p in path:
|
||||
|
||||
if not os.path.exists(p):
|
||||
os.makedirs(p)
|
||||
|
||||
|
|
Loading…
Reference in a new issue