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
c551b8beed
5 changed files with 10 additions and 6 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
4.1.7 - 28/9/2022
|
||||||
|
Bugfixed:
|
||||||
|
- Creating /var/lib/slpkg directory
|
||||||
|
|
||||||
4.1.6 - 26/9/2022
|
4.1.6 - 26/9/2022
|
||||||
Added:
|
Added:
|
||||||
- Configs folder missing from repo
|
- Configs folder missing from repo
|
||||||
|
|
|
@ -30,8 +30,8 @@ Install from the official third-party `SBo repository <https://slackbuilds.org/r
|
||||||
|
|
||||||
.. code-block:: bash
|
.. code-block:: bash
|
||||||
|
|
||||||
$ tar xvf slpkg-4.1.6.tar.gz
|
$ tar xvf slpkg-4.1.7.tar.gz
|
||||||
$ cd slpkg-4.1.6
|
$ cd slpkg-4.1.7
|
||||||
$ ./install.sh
|
$ ./install.sh
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[metadata]
|
[metadata]
|
||||||
name = slpkg
|
name = slpkg
|
||||||
version = 4.1.6
|
version = 4.1.7
|
||||||
license_file = LICENSE
|
license_file = LICENSE
|
||||||
author = Dimitris Zlatanidis
|
author = Dimitris Zlatanidis
|
||||||
author_email = d.zlatanidis@gmail.com
|
author_email = d.zlatanidis@gmail.com
|
||||||
|
|
|
@ -96,8 +96,8 @@ cp bin/slpkg $PKG/usr/sbin/slpkg
|
||||||
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
|
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
|
||||||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||||
|
|
||||||
# install configuration files
|
# Install configuration files and creating lib directory
|
||||||
mkdir -p $PKG/etc/slpkg
|
mkdir -p $PKG/etc/$PRGNAM $PKG/var/lib/$PRGNAM/database $PKG/var/lib/$PRGNAM/repository
|
||||||
install -D -m0644 configs/slpkg.yml $PKG/etc/slpkg/slpkg.yml.new
|
install -D -m0644 configs/slpkg.yml $PKG/etc/slpkg/slpkg.yml.new
|
||||||
install -D -m0644 configs/blacklist.yml $PKG/etc/slpkg/blacklist.yml.new
|
install -D -m0644 configs/blacklist.yml $PKG/etc/slpkg/blacklist.yml.new
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@ from slpkg.configs import Configs
|
||||||
@dataclass
|
@dataclass
|
||||||
class Version:
|
class Version:
|
||||||
prog_name: str = Configs.prog_name
|
prog_name: str = Configs.prog_name
|
||||||
version_info: tuple = (4, 1, 6)
|
version_info: tuple = (4, 1, 7)
|
||||||
version: str = '{0}.{1}.{2}'.format(*version_info)
|
version: str = '{0}.{1}.{2}'.format(*version_info)
|
||||||
license: str = 'MIT License'
|
license: str = 'MIT License'
|
||||||
author: str = 'dslackw'
|
author: str = 'dslackw'
|
||||||
|
|
Loading…
Reference in a new issue