From b96b44a7c1f4fe7ebb8c5118ff5069b6ed64b242 Mon Sep 17 00:00:00 2001 From: Daniel Langbein Date: Wed, 14 Jun 2023 21:57:27 +0200 Subject: [PATCH] feat: add provides exec-notify and do-notify --- .gitignore | 4 ++++ .idea/vcs.xml | 1 + packaging/PKGBUILD | 4 +++- 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index d19241f..5853fd1 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,7 @@ __pycache__/ /dist/ /src/exec_notify.egg-info/ /build/ + +# makepkg +/packaging/python-exec-notify-git-*-any.pkg.tar.zst +/packaging/exec-notify/ diff --git a/.idea/vcs.xml b/.idea/vcs.xml index 35eb1dd..267a584 100644 --- a/.idea/vcs.xml +++ b/.idea/vcs.xml @@ -2,5 +2,6 @@ + \ No newline at end of file diff --git a/packaging/PKGBUILD b/packaging/PKGBUILD index 526a405..a6f5dec 100644 --- a/packaging/PKGBUILD +++ b/packaging/PKGBUILD @@ -5,12 +5,14 @@ _name=exec-notify pkgname="python-$_name-git" -pkgver=0.1.0 +pkgver=r48.f1c34c2 pkgrel=1 pkgdesc='execute command and notify about failure via email' arch=(any) url="https://codeberg.org/privacy1st/$_name" license=('custom:BSD-3-Clause-Clear-License') + +provides=(exec-notify do-notify) depends=(python) makedepends=(git python-build python-installer python-wheel)