feat: add provides exec-notify and do-notify

This commit is contained in:
Daniel Langbein 2023-06-14 21:57:27 +02:00
parent f1c34c2f07
commit b96b44a7c1
3 changed files with 8 additions and 1 deletions

4
.gitignore vendored
View File

@ -7,3 +7,7 @@ __pycache__/
/dist/ /dist/
/src/exec_notify.egg-info/ /src/exec_notify.egg-info/
/build/ /build/
# makepkg
/packaging/python-exec-notify-git-*-any.pkg.tar.zst
/packaging/exec-notify/

1
.idea/vcs.xml generated
View File

@ -2,5 +2,6 @@
<project version="4"> <project version="4">
<component name="VcsDirectoryMappings"> <component name="VcsDirectoryMappings">
<mapping directory="" vcs="Git" /> <mapping directory="" vcs="Git" />
<mapping directory="$PROJECT_DIR$/packaging/src/exec-notify" vcs="Git" />
</component> </component>
</project> </project>

View File

@ -5,12 +5,14 @@
_name=exec-notify _name=exec-notify
pkgname="python-$_name-git" pkgname="python-$_name-git"
pkgver=0.1.0 pkgver=r48.f1c34c2
pkgrel=1 pkgrel=1
pkgdesc='execute command and notify about failure via email' pkgdesc='execute command and notify about failure via email'
arch=(any) arch=(any)
url="https://codeberg.org/privacy1st/$_name" url="https://codeberg.org/privacy1st/$_name"
license=('custom:BSD-3-Clause-Clear-License') license=('custom:BSD-3-Clause-Clear-License')
provides=(exec-notify do-notify)
depends=(python) depends=(python)
makedepends=(git python-build python-installer python-wheel) makedepends=(git python-build python-installer python-wheel)