summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO7
-rw-r--r--CHANGELOG7
-rw-r--r--PKGBUILD7
3 files changed, 16 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index aa89a8b08d50..639e26c48ed8 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,16 +1,17 @@
pkgbase = pikaur
pkgdesc = AUR helper which asks all questions before installing/building. Inspired by pacaur, yaourt and yay.
- pkgver = 1.3.0.4
+ pkgver = 1.3.0.5
pkgrel = 1
url = https://github.com/actionless/pikaur
arch = any
license = GPL3
+ makedepends = gettext
depends = pyalpm
depends = git
optdepends = asp: for ABS support in -G/--getpkgbuild operation
conflicts = pikaur-git
- source = pikaur-1.3.0.4.tar.gz::https://github.com/actionless/pikaur/archive/1.3.0.4.tar.gz
- md5sums = e04fddd1eae37730a30577bf9201274b
+ source = pikaur-1.3.0.5.tar.gz::https://github.com/actionless/pikaur/archive/1.3.0.5.tar.gz
+ md5sums = 8c25ea4451e14fc15293e96d283bccd3
pkgname = pikaur
diff --git a/CHANGELOG b/CHANGELOG
index 41f1d047bf8a..e58ed0a54968 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1256,3 +1256,10 @@ Sun Oct 7 19:20:00 2018 +0200
1.3.0.4 Bugfix release 1.3.0.4
2018-10-07 5de9593 鳶一雨音 fix(locale): Fix Chinese locale issues. (#305)
+
+
+Sun Oct 7 19:30:17 2018 +0200
+-------------------------------------------------
+1.3.0.5 Bugfix release 1.3.0.5
+
+ 2018-10-07 0270f89 actionless fix(PKGBUILD): add gettext to make deps
diff --git a/PKGBUILD b/PKGBUILD
index 61d1612673ce..6d7e0cf57222 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
# shellcheck disable=SC2034,SC2154
pkgname=pikaur
-pkgver=1.3.0.4
+pkgver=1.3.0.5
pkgrel=1
pkgdesc="AUR helper which asks all questions before installing/building. Inspired by pacaur, yaourt and yay."
arch=('any')
@@ -11,11 +11,14 @@ license=('GPL3')
source=(
"$pkgname-$pkgver.tar.gz"::https://github.com/actionless/pikaur/archive/"$pkgver".tar.gz
)
-md5sums=('e04fddd1eae37730a30577bf9201274b')
+md5sums=('8c25ea4451e14fc15293e96d283bccd3')
depends=(
'pyalpm'
'git'
)
+makedepends=(
+ 'gettext'
+)
optdepends=(
'asp: for ABS support in -G/--getpkgbuild operation'
)