[arch-commits] Commit in notmuch/repos (3 files)
Evangelos Foutras
foutrelis at archlinux.org
Sat Oct 26 14:56:59 UTC 2019
Date: Saturday, October 26, 2019 @ 14:56:58
Author: foutrelis
Revision: 520381
archrelease: copy trunk to community-staging-x86_64
Added:
notmuch/repos/community-staging-x86_64/
notmuch/repos/community-staging-x86_64/PKGBUILD
(from rev 520380, notmuch/trunk/PKGBUILD)
notmuch/repos/community-staging-x86_64/notmuch.install
(from rev 520380, notmuch/trunk/notmuch.install)
-----------------+
PKGBUILD | 106 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
notmuch.install | 8 ++++
2 files changed, 114 insertions(+)
Copied: notmuch/repos/community-staging-x86_64/PKGBUILD (from rev 520380, notmuch/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2019-10-26 14:56:58 UTC (rev 520381)
@@ -0,0 +1,106 @@
+# Maintainer: Lukas Fleischer <lfleischer at archlinux.org>
+# Contributor: Daniel Wallace <danielwallace at gtmanfred dot com>
+# Contributor: fauno <fauno at kiwwwi.com.ar>
+# Contributor: Olivier Ramonat <olivier at ramonat dot fr>
+# Contributor: Richard Murri <admin at richardmurri.com>
+
+pkgbase=notmuch
+pkgname=('notmuch' 'notmuch-vim' 'notmuch-mutt' 'notmuch-runtime')
+pkgver=0.29.1
+pkgrel=2
+arch=('x86_64')
+url="https://notmuchmail.org/"
+license=('GPL3')
+makedepends=('python2' 'python' 'python-sphinx' 'emacs' 'gnupg' 'ruby' 'pkgconfig' 'xapian-core' 'gmime3' 'talloc')
+options=(!distcc !makeflags)
+source=("https://notmuchmail.org/releases/${pkgname}-${pkgver}.tar.xz")
+md5sums=('d45bc3f5177a0fa63d7469bb98ee5f45')
+
+prepare(){
+ cp -dpr --no-preserve=ownership "$srcdir/${pkgname}-$pkgver"/bindings/python{,2}
+ find "$srcdir/${pkgname}-${pkgver}/bindings/python" -name '*.py' -exec sed -i -e '1s,python$,python3,' {} +
+ find "$srcdir/${pkgname}-${pkgver}/bindings/python2" -name '*.py' -exec sed -i -e '1s,python$,python2,' {} +
+}
+
+build() {
+ cd "$srcdir/$pkgbase-$pkgver"
+
+ ./configure --prefix=/usr --sysconfdir=/etc --includedir=/usr/include --zshcompletiondir=/usr/share/zsh/site-functions
+ make
+
+ make -C "contrib/${pkgbase}-mutt"
+
+ make ruby-bindings
+
+ cd "$srcdir/$pkgbase-$pkgver/bindings/python"
+ python setup.py build
+
+ cd "$srcdir/$pkgbase-$pkgver/bindings/python2"
+ python2 setup.py build
+}
+
+package_notmuch-runtime(){
+ pkgdesc="Runtime for notmuch and notmuch-mutt"
+ depends=('xapian-core' 'gmime3' 'talloc')
+
+ cd "$srcdir/$pkgbase-$pkgver"
+
+ make DESTDIR="$pkgdir/" LIBDIR_IN_LDCONFIG=0 WITH_EMACS=0 install
+ make DESTDIR="$pkgdir/" WITH_BASH=1 install-completion
+
+ # Install manpages
+ make DESTDIR="$pkgdir" install-man
+
+ # this is provided both with and without a statically included libnotmuch.so ???
+ install -Dm755 notmuch-shared "$pkgdir/usr/bin/notmuch"
+}
+
+
+package_notmuch-vim(){
+ pkgdesc="Vim plugins for notmuch"
+ depends=('notmuch-runtime')
+
+ make -C "$srcdir/$pkgbase-$pkgver/vim" DESTDIR="$pkgdir" prefix="/usr/share/vim/vimfiles" install
+}
+
+
+package_notmuch(){
+ pkgdesc="Notmuch is not much of an email program"
+ depends=('notmuch-runtime')
+ optdepends=('emacs: for using the emacs interface'
+ 'vim: for using the vim interface'
+ 'python2: for using the python2 bindings'
+ 'ruby: for using the ruby bindings'
+ 'gnupg: for email encryption')
+ install=notmuch.install
+
+ cd "$srcdir/$pkgbase-$pkgver"
+
+ # Install emacs parts
+ make DESTDIR="$pkgdir/" install-emacs
+
+
+ # Install ruby bindings
+ sed -i 's:INSTALL = .*[^D]$:& -D:' bindings/ruby/Makefile
+ make -C bindings/ruby exec_prefix=$pkgdir/usr install
+
+ # Install python bindings
+ cd "$srcdir/$pkgbase-$pkgver/bindings/python"
+ python setup.py install --root="$pkgdir" --optimize=1
+
+ cd "$srcdir/$pkgbase-$pkgver/bindings/python2"
+ python2 setup.py install --root="$pkgdir" --optimize=1
+
+ # Remove mimeinfo.cache (fixes FS#53629).
+ rm "$pkgdir/usr/share/applications/mimeinfo.cache"
+}
+
+package_notmuch-mutt(){
+ pkgdesc="The mail indexer"
+ depends=('notmuch-runtime' 'perl-mailtools' 'perl-mail-box' 'perl-term-readline-gnu' 'perl-string-shellquote' 'perl-file-which')
+
+ cd "$srcdir/$pkgbase-$pkgver"
+
+ install -Dm755 "contrib/$pkgname/$pkgname" "$pkgdir/usr/bin/$pkgname"
+ install -Dm644 "contrib/$pkgname/${pkgname}.1" "${pkgdir}/usr/share/man/man1/${pkgname}.1"
+}
Copied: notmuch/repos/community-staging-x86_64/notmuch.install (from rev 520380, notmuch/trunk/notmuch.install)
===================================================================
--- community-staging-x86_64/notmuch.install (rev 0)
+++ community-staging-x86_64/notmuch.install 2019-10-26 14:56:58 UTC (rev 520381)
@@ -0,0 +1,8 @@
+post_upgrade() {
+ if (( $(vercmp $2 0.20) < 0 )); then
+ cat <<"EOF"
+==> notmuch-deliver was removed in notmuch 0.20.
+==> Please use `notmuch insert` instead.
+EOF
+ fi
+}
More information about the arch-commits
mailing list