Merge branch 'develop'

This commit is contained in:
Dimitris Zlatanidis 2022-09-26 20:00:47 +03:00
commit 518d73cbd6
6 changed files with 32 additions and 4 deletions

View file

@ -1,3 +1,7 @@
4.1.6 - 26/9/2022
Added:
- Configs folder missing from repo
4.1.5 - 9/9/2022
Updated:
- Rename config files to .yml

View file

@ -30,8 +30,8 @@ Install from the official third-party `SBo repository <https://slackbuilds.org/r
.. code-block:: bash
$ tar xvf slpkg-4.1.5.tar.gz
$ cd slpkg-4.1.5
$ tar xvf slpkg-4.1.6.tar.gz
$ cd slpkg-4.1.6
$ ./install.sh

2
configs/blacklist.yml Normal file
View file

@ -0,0 +1,2 @@
blacklist:
packages: []

22
configs/slpkg.yml Normal file
View file

@ -0,0 +1,22 @@
configs:
os_arch: x86_64
tmp_path: /tmp
tmp_slpkg: /tmp/slpkg
build_path: /tmp/slpkg/build
lib_path: /var/lib/slpkg
etc_path: /etc/slpkg
db_path: /var/lib/slpkg/database
sbo_repo_path: /var/lib/slpkg/repository
log_packages: /var/log/packages
database: database.slpkg
repo_version: 15.0
sbo_url: http://slackbuilds.org/slackbuilds/15.0
sbo_txt: SLACKBUILDS.TXT
tar_suffix: .tar.gz
pkg_suffix: .tgz
repo_tag: _SBo
installpkg: upgradepkg --install-new
reinstall: upgradepkg --reinstall
removepkg: removepkg
colors: on
wget_options: -c -N

View file

@ -1,6 +1,6 @@
[metadata]
name = slpkg
version = 4.1.5
version = 4.1.6
license_file = LICENSE
author = Dimitris Zlatanidis
author_email = d.zlatanidis@gmail.com

View file

@ -10,7 +10,7 @@ from slpkg.configs import Configs
@dataclass
class Version:
prog_name: str = Configs.prog_name
version_info: tuple = (4, 1, 5)
version_info: tuple = (4, 1, 6)
version: str = '{0}.{1}.{2}'.format(*version_info)
license: str = 'MIT License'
author: str = 'dslackw'