summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Butler2020-10-26 17:37:00 +0000
committerAlex Butler2020-10-26 17:37:00 +0000
commitb09fb75e885e7d40aad390334223053cf55958e6 (patch)
tree2b1f66148649a65702a7eb7782b37e2ab3092274
parentd232eaec4b114c6e26146265d66d7cb057d49a4b (diff)
downloadaur-b09fb75e885e7d40aad390334223053cf55958e6.tar.gz
0.10.3-1
Add backup: etc/aurto/pacman-chroot.conf Fix stderr remove warning
-rw-r--r--.SRCINFO7
-rw-r--r--PKGBUILD5
-rw-r--r--aurto.install2
3 files changed, 8 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 48f12bcd7c84..7076ab4d7966 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = aurto
pkgdesc = An AUR tool for managing an auto-updating local 'aurto' package repository using aurutils.
- pkgver = 0.10.2
+ pkgver = 0.10.3
pkgrel = 1
url = https://github.com/alexheretic/aurto
install = aurto.install
@@ -18,9 +18,10 @@ pkgbase = aurto
backup = usr/lib/systemd/system/check-aurto-git-trigger.timer
backup = usr/lib/systemd/system/update-aurto.timer
backup = usr/lib/systemd/system/update-aurto-startup.timer
+ backup = etc/aurto/pacman-chroot.conf
backup = etc/aurto/makepkg-chroot.conf
- source = https://github.com/alexheretic/aurto/archive/v0.10.2.tar.gz
- sha256sums = 2f2dbc95d0e64d76a1f18e3579dff1f7a5d069553169e84a284b9e63e92ee67c
+ source = https://github.com/alexheretic/aurto/archive/v0.10.3.tar.gz
+ sha256sums = 4c4558473cfe16906cecea62c8100c76cd67a24ca9c9a27bf9faaa45ac6b5e57
pkgname = aurto
diff --git a/PKGBUILD b/PKGBUILD
index 7383360e620b..d6e0f56449c5 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,6 +1,6 @@
# Maintainer: Alex Butler <alexheretic@gmail.com>
pkgname=aurto
-pkgver=0.10.2
+pkgver=0.10.3
pkgrel=1
pkgdesc="An AUR tool for managing an auto-updating local 'aurto' package repository using aurutils."
arch=('any')
@@ -18,10 +18,11 @@ optdepends=()
makedepends=('cargo')
install="aurto.install"
source=("https://github.com/alexheretic/$pkgname/archive/v$pkgver.tar.gz")
-sha256sums=('2f2dbc95d0e64d76a1f18e3579dff1f7a5d069553169e84a284b9e63e92ee67c')
+sha256sums=('4c4558473cfe16906cecea62c8100c76cd67a24ca9c9a27bf9faaa45ac6b5e57')
backup=('usr/lib/systemd/system/check-aurto-git-trigger.timer'
'usr/lib/systemd/system/update-aurto.timer'
'usr/lib/systemd/system/update-aurto-startup.timer'
+ 'etc/aurto/pacman-chroot.conf'
'etc/aurto/makepkg-chroot.conf')
build() {
diff --git a/aurto.install b/aurto.install
index 5612664c69e3..70dbec5c429f 100644
--- a/aurto.install
+++ b/aurto.install
@@ -4,7 +4,7 @@ set -eu
pre_remove() {
# If pacman.conf is still configured to use aurto warn that removing the package will break pacman
if grep -q '^Include = /etc/pacman.d/aurto$' /etc/pacman.conf; then
- echo -en "\\e[33mWarning: Aurto repo is still configured. "
+ echo -en "\\e[33mWarning: Aurto repo is still configured. " >&2
echo -e "Remove \"Include = /etc/pacman.d/aurto\" from /etc/pacman.conf\\e[39m" >&2
fi
}