summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorf43nd1r2022-02-09 18:05:48 +0100
committerf43nd1r2022-02-09 18:05:48 +0100
commit33e948f0e70d9c78c301f0dbe10cb44f3ef07cba (patch)
tree7133fd93ac43b419fd93f5d96eabee5be1a3d7ca
parent0c8b82d2ac9eb25d5f0c801e3dd50282ac107595 (diff)
downloadaur-33e948f0e70d9c78c301f0dbe10cb44f3ef07cba.tar.gz
v1.1.1
-rw-r--r--.SRCINFO7
-rw-r--r--PKGBUILD4
-rwxr-xr-xupdate.sh6
3 files changed, 11 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index bf85b46353bf..454d2ac1d04f 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,14 +1,13 @@
pkgbase = python-certbot-dns-netcup
pkgdesc = netcup DNS Authenticator plugin for Certbot
- pkgver = 1.1.0
+ pkgver = 1.1.1
pkgrel = 1
url = https://github.com/coldfix/certbot-dns-netcup
arch = any
license = Apache
makedepends = python
makedepends = python-setuptools
- source = https://files.pythonhosted.org/packages/source/c/certbot-dns-netcup/certbot-dns-netcup-1.1.0.tar.gz
- sha256sums = c52179526e4ebbb40a4f78aa46a469f5223d0d2c255e08e10da422a9639989fc
+ source = https://files.pythonhosted.org/packages/source/c/certbot-dns-netcup/certbot-dns-netcup-1.1.1.tar.gz
+ sha256sums = d2a4e433b8e0571bc805f7ff060f9ac05014f374824c0cac6c55ea5a9af685be
pkgname = python-certbot-dns-netcup
-
diff --git a/PKGBUILD b/PKGBUILD
index 494d84502e0d..0fa1c1059de7 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
# Python package author: Thomas Gläßle <thomas@coldfix.de>
_name=certbot-dns-netcup
pkgname=python-$_name
-pkgver=1.1.0
+pkgver=1.1.1
pkgrel=1
pkgdesc="netcup DNS Authenticator plugin for Certbot"
arch=(any)
@@ -10,7 +10,7 @@ url="https://github.com/coldfix/certbot-dns-netcup"
license=("Apache")
makedepends=("python" "python-setuptools")
source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz")
-sha256sums=('c52179526e4ebbb40a4f78aa46a469f5223d0d2c255e08e10da422a9639989fc')
+sha256sums=('d2a4e433b8e0571bc805f7ff060f9ac05014f374824c0cac6c55ea5a9af685be')
build() {
cd $_name-$pkgver
python setup.py build
diff --git a/update.sh b/update.sh
new file mode 100755
index 000000000000..279631798d8a
--- /dev/null
+++ b/update.sh
@@ -0,0 +1,6 @@
+#!/bin/sh
+makepkg --printsrcinfo > .SRCINFO
+git add PKGBUILD .SRCINFO
+read -p "Commit message:" msg
+git commit -m $msg
+git push