diff --git a/PKGBUILD b/PKGBUILD index 07ab08f..6b00072 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,14 +1,14 @@ # Maintainer: Yunchih Chen modulename=resrc pkgname="python-${modulename}" -pkgver=1.2 +pkgver=1.3 pkgdesc="Systemd-logind resource hook" arch=('any') url="https://github.com/yunchih/systemd-logind-hook" license=('MIT') depends=('pacman' 'python>=3.3' 'python-dbus' 'python-yaml') source=("https://github.com/yunchih/resrc/releases/download/v${pkgver}/${modulename}-${pkgver}.tar.gz") -md5sums=('2e3849e05d54cd7e72726ac807a65067') +md5sums=('10f515c3b67858b1c2a617105fb9898d') package() { cd "${srcdir}/${modulename}-${pkgver}" python setup.py install --root="${pkgdir}" --optimize=1 diff --git a/bin/resrctl b/bin/resrctl index 8d5a0e7..82ada68 100755 --- a/bin/resrctl +++ b/bin/resrctl @@ -24,7 +24,7 @@ from resrc.systemd import UsersResourceManager CONFIG_FILE = "logind-hook.conf" DESCRIPTION = "Limit total system resources available to a user within all her sessions." -VERSION = 1.1 +VERSION = 1.3 EXAMPLE_USAGE = """ Note: Please see `man systemd.cgroups(5)` for a list of available resource types. diff --git a/make-src-pkg.sh b/make-src-pkg.sh index 4d75506..f288a39 100755 --- a/make-src-pkg.sh +++ b/make-src-pkg.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -VERSION=1.2 +VERSION=1.3 PKG_NAME=resrc FILES=("bin" "examples" "resrc" "setup.py" "README.md") BASE="$(dirname "$0")" diff --git a/setup.py b/setup.py index c8ea4ff..fac4fe9 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages setup(name='resrc', - version='1.1', + version='1.3', description='Limit total system resources available to a user within all her sessions.', url='http://github.com/yunchih/logind-hook', author='Yunchih Chen',