summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Haider2023-07-27 18:26:33 +0200
committerThomas Haider2023-07-27 18:26:33 +0200
commit65581c046a37eebb742dbba46e29b8d82f354c12 (patch)
tree374336b6cbe09ea1a285ea64b57b115acf8da7ec
parentd28905fea079aebb1ce0d8494067b187704e1027 (diff)
downloadaur-65581c046a37eebb742dbba46e29b8d82f354c12.tar.gz
fix SRCINFO
-rw-r--r--.SRCINFO5
-rw-r--r--fix_setup.patch24
2 files changed, 1 insertions, 28 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 48a8cbb39a6e..e0333d5028aa 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = bley-git
pkgdesc = Intelligent greylisting daemon for postfix and exim
- pkgver = r388.30571b1
+ pkgver = r541.eaad52f
pkgrel = 1
url = http://bley.mx
install = bley.sysusers
@@ -21,11 +21,8 @@ pkgbase = bley-git
provides = bley
conflicts = bley
source = bley-git::git+https://github.com/evgeni/bley.git
- source = fix_setup.patch
source = bley.sysusers
md5sums = SKIP
- md5sums = 18f197d7034087e3125751624a8c13c3
md5sums = 4c5d548dd75a3b40c8b5b8f5c74f76ef
pkgname = bley-git
-
diff --git a/fix_setup.patch b/fix_setup.patch
deleted file mode 100644
index b7f05c4feba0..000000000000
--- a/fix_setup.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-From 1ced7a71a68bd2da82b5e0031eed2b671c0e8523 Mon Sep 17 00:00:00 2001
-From: Thomas Haider <t.haider@deprecate.de>
-Date: Mon, 20 Mar 2017 08:48:41 +0100
-Subject: [PATCH] fix getoutput call
-
----
- setup.py | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/setup.py b/setup.py
-index 0785e68..ba17f5f 100755
---- a/setup.py
-+++ b/setup.py
-@@ -8,7 +8,7 @@ def systemd_unit_path():
- try:
- command = ["pkg-config", "--variable=systemdsystemunitdir", "systemd"]
- try:
-- path = subprocess.getoutput(command)
-+ path = subprocess.getoutput(' '.join(command))
- except AttributeError:
- path = subprocess.check_output(command, stderr=subprocess.STDOUT)
- return path.strip()
---
-2.12.0