summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcel Röthke2020-04-18 20:02:44 +0200
committerMarcel Röthke2020-04-18 20:02:44 +0200
commitb7bec8415f343979087ced39b65fc627f9e92158 (patch)
tree00880fc72e4f0dcfe5a7ce9807193afd7fb57bb9
parentf77a6de7b53d1f5bf76c7faa9db5f993f0296894 (diff)
downloadaur-b7bec8415f343979087ced39b65fc627f9e92158.tar.gz
upgpkg: mu 1.4-1
upstream release
-rw-r--r--.SRCINFO8
-rw-r--r--PKGBUILD6
-rw-r--r--mu.install34
3 files changed, 7 insertions, 41 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 391aba748960..558a573e2854 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = mu
pkgdesc = Maildir indexer/searcher and Emacs client (mu4e)
- pkgver = 1.2
- pkgrel = 3
+ pkgver = 1.4
+ pkgrel = 1
url = http://www.djcbsoftware.nl/code/mu
arch = x86_64
license = GPL
@@ -11,8 +11,8 @@ pkgbase = mu
depends = guile2.0
optdepends = guile: guile support
optdepends = emacs: mu4e support
- source = mu-1.2.tar.gz::https://github.com/djcb/mu/archive/1.2.tar.gz
- md5sums = 5e7d7c3549b9428ec0b5ea7d374b6d0d
+ source = mu-1.4.tar.gz::https://github.com/djcb/mu/archive/1.4.tar.gz
+ md5sums = 7a679ca4cec44a40654def96c776f0db
pkgname = mu
diff --git a/PKGBUILD b/PKGBUILD
index 505114dcc913..568295f499cf 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,8 +3,8 @@
# Contributor: csllbr; Popsch <popsch@gmx.net>
pkgname=mu
-pkgver=1.2
-pkgrel=3
+pkgver=1.4
+pkgrel=1
pkgdesc="Maildir indexer/searcher and Emacs client (mu4e)"
arch=("x86_64")
url="http://www.djcbsoftware.nl/code/mu"
@@ -14,7 +14,7 @@ makedepends=("emacs")
optdepends=("guile: guile support"
"emacs: mu4e support")
source=("mu-$pkgver.tar.gz::https://github.com/djcb/mu/archive/$pkgver.tar.gz")
-md5sums=('5e7d7c3549b9428ec0b5ea7d374b6d0d')
+md5sums=('7a679ca4cec44a40654def96c776f0db')
prepare() {
cd "$pkgname-$pkgver"
diff --git a/mu.install b/mu.install
deleted file mode 100644
index 0893726051c3..000000000000
--- a/mu.install
+++ /dev/null
@@ -1,34 +0,0 @@
-# -*- mode: sh; -*-
-infodir=usr/share/info
-filelist=(mu-guile.info.gz mu4e.info.gz)
-
-install_info() {
- [ -x usr/bin/install-info ] || return 0
- if [ -f $infodir/mu-guile.info.gz ]; then install-info $infodir/mu-guile.info.gz $infodir/dir 2> /dev/null; fi
- if [ -f $infodir/mu4e.info.gz ]; then install-info $infodir/mu4e.info.gz $infodir/dir 2> /dev/null; fi
-}
-
-post_install() {
- install_info
- echo ''
- echo 'Set the default maildir: "export MAILDIR=~/YourMaildir"'
- echo 'If MAILDIR is empty, mu will use ~/Mail by default'
- echo 'You can also specify a maildir with the --maildir option'
- echo ''
- echo 'First run: "mu index" (it may take a while if you have lots of mail)'
- echo 'Sample cron entry: "0 12 * * * mu index" (add the --maildir option if needed)'
- echo ''
-}
-
-post_upgrade() {
- install_info
- echo ''
- echo 'You might need to execute "mu index --rebuild" after the upgrade'
- echo ''
-}
-
-pre_remove() {
- [ -x usr/bin/install-info ] || return 0
- if [ -f $infodir/mu-guile.info.gz ]; then install-info --delete $infodir/mu-guile.info.gz $infodir/dir 2> /dev/null; fi
- if [ -f $infodir/mu4e.info.gz ]; then install-info --delete $infodir/mu4e.info.gz $infodir/dir 2> /dev/null; fi
-}