diff options
author | Alad Wenter | 2021-12-01 13:13:26 +0100 |
---|---|---|
committer | Alad Wenter | 2021-12-01 13:13:26 +0100 |
commit | 09bb584ac7898835333064f5b839bcc005651691 (patch) | |
tree | 41a94a5fb8263169f64abb2b6f0d434f83ea394d | |
parent | 62034828eefe94267b9d7c5a00817a371605a373 (diff) | |
download | aur-09bb584ac7898835333064f5b839bcc005651691.tar.gz |
astroid-git: remove outdated patch, add w3m to checkdepends
-rw-r--r-- | .SRCINFO | 6 | ||||
-rw-r--r-- | PKGBUILD | 16 | ||||
-rw-r--r-- | test_compose.patch | 42 |
3 files changed, 6 insertions, 58 deletions
@@ -1,12 +1,13 @@ pkgbase = astroid-git pkgdesc = a graphical threads-with-tags style, lightweight and fast, email client for notmuch, inspired by sup and others - pkgver = v0.15.r13.gb675b42 + pkgver = v0.16.r1.g4d6b06a pkgrel = 1 url = https://github.com/astroidmail/astroid arch = x86_64 arch = i686 license = GPL checkdepends = notmuch-runtime + checkdepends = w3m makedepends = cmake makedepends = ninja makedepends = git @@ -32,9 +33,6 @@ pkgbase = astroid-git provides = astroid conflicts = astroid source = git+https://github.com/astroidmail/astroid.git - source = test_compose.patch md5sums = SKIP - md5sums = 75188a53e85c7d80f7553d2cc38d5bb3 pkgname = astroid-git - @@ -2,7 +2,7 @@ # Maintainer: Alad Wenter <alad@archlinux.org> pkgname=astroid-git _pkgname=astroid -pkgver=v0.15.r13.gb675b42 +pkgver=v0.16.r1.g4d6b06a pkgrel=1 pkgdesc="a graphical threads-with-tags style, lightweight and fast, email client for notmuch, inspired by sup and others" arch=('x86_64' 'i686') @@ -11,23 +11,15 @@ license=('GPL') depends=('notmuch' 'boost' 'boost-libs' 'gmime' 'gtkmm3' 'webkit2gtk' 'libsass' 'libpeas' 'gobject-introspection' 'protobuf' 'gtk-update-icon-cache') makedepends=('cmake' 'ninja' 'git' 'pkg-config' 'python-gobject' 'cmark' 'ruby-ronn') -checkdepends=('notmuch-runtime') +checkdepends=('notmuch-runtime' 'w3m') optdepends=('gvim: default editor' 'emacs: can be used as editor' 'vte3: for drop-down terminal' 'cmark: for markdown to html composition') provides=('astroid') conflicts=('astroid') -source=("git+https://github.com/astroidmail/astroid.git" - "test_compose.patch") -md5sums=('SKIP' - '75188a53e85c7d80f7553d2cc38d5bb3') - -prepare() { - cd "$_pkgname" - patch -p2 < "$srcdir"/test_compose.patch -} - +source=("git+https://github.com/astroidmail/astroid.git") +md5sums=('SKIP') pkgver() { cd "$_pkgname" diff --git a/test_compose.patch b/test_compose.patch deleted file mode 100644 index d116f1a92a34..000000000000 --- a/test_compose.patch +++ /dev/null @@ -1,42 +0,0 @@ -diff --unified --recursive --text src.old/astroid-0.15/tests/test_composed_message.cc src.new/astroid-0.15/tests/test_composed_message.cc ---- src.old/astroid-0.15/tests/test_composed_message.cc 2019-07-17 13:25:08.000000000 +0200 -+++ src.new/astroid-0.15/tests/test_composed_message.cc 2019-07-19 11:58:45.275305696 +0200 -@@ -12,6 +12,8 @@ - - BOOST_AUTO_TEST_SUITE(Composing) - -+ ustring newline = "\n"; -+ - BOOST_AUTO_TEST_CASE(compose_read_test) - { - using Astroid::ComposeMessage; -@@ -47,6 +49,9 @@ - - ustring rbdy = m.plain_text (false); - -+ // Fixme: hotfix -+ bdy += newline; -+ - BOOST_CHECK_MESSAGE (bdy == rbdy, "message reading produces the same output as compose message input"); - - unlink (fn.c_str ()); -@@ -81,6 +86,9 @@ - - ustring rbdy = m.plain_text (false); - -+ // Fixme: hotfix -+ bdy += newline; -+ - BOOST_CHECK_MESSAGE (bdy == rbdy, "message reading produces the same output as compose message input"); - - teardown (); -@@ -208,6 +216,9 @@ - - ustring rbdy = m.plain_text (false); - -+ // Fixme: hotfix -+ bdy += newline; -+ - BOOST_CHECK_MESSAGE (bdy == rbdy, "message reading produces the same output as compose message input"); - - unlink (fn.c_str ()); |