summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Peukert2020-06-14 12:40:43 +0200
committerDaniel Peukert2020-06-14 12:40:43 +0200
commita51a17d4b6aa412871f4945e35c3672bd362e3eb (patch)
tree72d0905e7d7b3ae998d44de89789e3fbb63cae7d
parent243425fe9941149e53d6773b698753254a3ab995 (diff)
downloadaur-mailpile.tar.gz
Fixed python hashbang regex
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD6
2 files changed, 6 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 07efb709fb2a..07d993ccef49 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = mailpile
pkgdesc = A free & open modern, fast email client with user-friendly encryption and privacy features
pkgver = 1.0.0rc6
- pkgrel = 2
+ pkgrel = 3
url = http://www.mailpile.is
install = mailpile.install
arch = any
@@ -25,8 +25,8 @@ pkgbase = mailpile
depends = tor
optdepends = pagekite: remote access
optdepends = python2-stem>=1.4: remote access
- source = mailpile-1.0.0rc6-2.tar.gz::https://github.com/mailpile/Mailpile/archive/1.0.0rc6.tar.gz
- source = mailpile-print-1.0.0rc6-2.tar.gz::https://github.com/mailpile/Mailpile-print/archive/7c1372b999dd6e68710e08e16778f2986c064295.tar.gz
+ source = mailpile-1.0.0rc6-3.tar.gz::https://github.com/mailpile/Mailpile/archive/1.0.0rc6.tar.gz
+ source = mailpile-print-1.0.0rc6-3.tar.gz::https://github.com/mailpile/Mailpile-print/archive/7c1372b999dd6e68710e08e16778f2986c064295.tar.gz
source = mailpile.sysusers
source = mailpile.tmpfiles
source = mailpile.service
diff --git a/PKGBUILD b/PKGBUILD
index f668fa9f7ee0..fe98b18f3065 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,7 +5,7 @@
pkgname='mailpile'
pkgver='1.0.0rc6'
_printcommit='7c1372b999dd6e68710e08e16778f2986c064295'
-pkgrel='2'
+pkgrel='3'
pkgdesc='A free & open modern, fast email client with user-friendly encryption and privacy features'
arch=('any')
url="http://www.$pkgname.is"
@@ -31,8 +31,8 @@ _sourcedirectory="${pkgname^}-$pkgver"
prepare() {
cd "$srcdir/$_sourcedirectory/"
- find . -type f -exec sed -i 's|#!/usr/bin/python|#!/usr/bin/env python2.7|g' {} \;
- find . -type f -exec sed -i 's|#!/usr/bin/python2.7|#!/usr/bin/env python2.7|g' {} \;
+ find . -type f -exec sed -i 's|#!/usr/bin/python$|#!/usr/bin/env python2.7|g' {} \;
+ find . -type f -exec sed -i 's|#!/usr/bin/python2.7$|#!/usr/bin/env python2.7|g' {} \;
rm -rf 'shared-data/'{"$pkgname-gui/",'multipile/'}
rm -rf 'shared-data/default-theme/'{'less/','index.html'}
rm -rf "$pkgname/tests"