summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--guix/.SRCINFO12
-rw-r--r--guix/PKGBUILD6
-rw-r--r--guix/guix.install14
3 files changed, 9 insertions, 23 deletions
diff --git a/guix/.SRCINFO b/guix/.SRCINFO
index f249a4d..33f7d89 100644
--- a/guix/.SRCINFO
+++ b/guix/.SRCINFO
@@ -1,8 +1,8 @@
# Generated by mksrcinfo v8
-# Thu Mar 31 19:07:19 UTC 2016
+# Thu Aug 4 07:10:02 UTC 2016
pkgbase = guix
pkgdesc = A purely functional package manager for the GNU system
- pkgver = 0.10.0
+ pkgver = 0.11.0
pkgrel = 1
url = https://www.gnu.org/software/guix/
install = guix.install
@@ -23,10 +23,10 @@ pkgbase = guix
optdepends = emacs: to enable Emacs Interface
optdepends = graphviz: to enable Emacs Interface
optdepends = guile-json: to import packages from cpan, gem, pypi
- source = ftp://alpha.gnu.org/gnu/guix/guix-0.10.0.tar.gz
- source = ftp://alpha.gnu.org/gnu/guix/guix-0.10.0.tar.gz.sig
- sha1sums = 36be27ea1f1314d508bd80c84cadf7eafe974093
- sha1sums = 915ffda358412018a413ae07054ed19f725e3797
+ source = ftp://alpha.gnu.org/gnu/guix/guix-0.11.0.tar.gz
+ source = ftp://alpha.gnu.org/gnu/guix/guix-0.11.0.tar.gz.sig
+ sha1sums = bd12d65a46c8eef3b490efea6ac953b995d524eb
+ sha1sums = a9080412df96832d22e57a1bcc76e3016f93f0b0
pkgname = guix
diff --git a/guix/PKGBUILD b/guix/PKGBUILD
index 5072c8d..392765c 100644
--- a/guix/PKGBUILD
+++ b/guix/PKGBUILD
@@ -6,7 +6,7 @@
# gpg --recv-keys 090B11993D9AEBB5
pkgname=guix
-pkgver=0.10.0
+pkgver=0.11.0
pkgrel=1
pkgdesc="A purely functional package manager for the GNU system"
arch=('x86_64' 'i686')
@@ -32,8 +32,8 @@ optdepends=(
source=(
"ftp://alpha.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz"{,.sig})
install="${pkgname}.install"
-sha1sums=('36be27ea1f1314d508bd80c84cadf7eafe974093'
- '915ffda358412018a413ae07054ed19f725e3797')
+sha1sums=('bd12d65a46c8eef3b490efea6ac953b995d524eb'
+ 'a9080412df96832d22e57a1bcc76e3016f93f0b0')
validpgpkeys=('3CE464558A84FDC69DB40CFB090B11993D9AEBB5')
build() {
diff --git a/guix/guix.install b/guix/guix.install
index 54f7659..c2baacd 100644
--- a/guix/guix.install
+++ b/guix/guix.install
@@ -1,6 +1,3 @@
-infodir=usr/share/info
-file=guix.info
-
post_install() {
echo "Guix 0.8.3 already provides a systemd service file in its release,"
echo "so the one included in AUR package is now removed. Please use the"
@@ -14,17 +11,6 @@ post_install() {
echo
echo "If you have /etc/systemd/system/guix.service.d, please also remember"
echo "to review its content and rename it to guix-daemon.service.d."
- [[ -x usr/bin/install-info ]] || return 0
- install-info "$infodir/$file.gz" "$infodir/dir" 2> /dev/null
-}
-
-post_upgrade() {
- post_install "$1"
-}
-
-pre_remove() {
- [[ -x usr/bin/install-info ]] || return 0
- install-info --delete "$infodir/$file.gz" "$infodir/dir" 2> /dev/null
}
# vim:set ts=2 sw=2 ft=sh et: