summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorKr1ss2020-12-09 20:32:00 +0100
committerKr1ss2020-12-09 20:32:00 +0100
commit165d1f438220ae60e1844328621ef320904cc8a2 (patch)
tree7caeac2a040c1f3ff34817a2eac5e7afe44056ae
parentce9538a0af21266a5158796920eaf2475fb960af (diff)
downloadaur-165d1f438220ae60e1844328621ef320904cc8a2.tar.gz
update: getmail6-git 1:6.11.r435.4699143-1
upstream release
-rw-r--r--.SRCINFO6
-rw-r--r--CHANGELOG7
-rw-r--r--PKGBUILD11
3 files changed, 18 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index d639efb3c219..0f36e94fb8bb 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = getmail6-git
pkgdesc = POP3 mail retriever with reliable Maildir and command delivery; Python 3 port
- pkgver = 6.10.r0.9652214
- pkgrel = 2
+ pkgver = 6.11.r435.4699143
+ pkgrel = 1
epoch = 1
url = http://getmail6.org
changelog = CHANGELOG
@@ -11,7 +11,7 @@ pkgbase = getmail6-git
depends = python-chardet
optdepends = python-keyring: secure password store
optdepends = python-keyrings-alt: alternative backends
- provides = getmail=6.10.r0.9652214
+ provides = getmail=6.11.r435.4699143
provides = getmail6
conflicts = getmail
source = git+https://github.com/getmail6/getmail6.git
diff --git a/CHANGELOG b/CHANGELOG
index b9eb19715d49..22ff1cd137d5 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,10 @@
+Version 6.11
+TODO
+ - comply more closely with the XDG basedir specification: allow an
+ unset XDG_CONFIG_HOME environment variable.
+ - Simplify the documentation around the location of the configuration directory.
+ - fix #49: "'utf-8' codec can't decode" for mbox
+
Version 6.10
28 November 2020
- fix #48: handle Header in address_no_brackets using Header.__str__
diff --git a/PKGBUILD b/PKGBUILD
index 5eb18bafce22..7a8911549fbc 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,9 +5,14 @@ pkgname=getmail6-git
_pkgname="${pkgname%-git}"
epoch=1
-pkgver() { git -C "$_pkgname" describe --tags --long | sed 's/^v//;s/-/.r/;s/-g/./'; }
-pkgver=6.10.r0.9652214
-pkgrel=2
+pkgver() {
+ cd "$_pkgname"
+ printf '%s.r%s.%s' \
+ "$(git tag -l | sed -r 's/v?([0-9\.]+)(-.+)?/\1/g' | sort -Vr | sed 1q)" \
+ "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
+}
+pkgver=6.11.r435.4699143
+pkgrel=1
pkgdesc='POP3 mail retriever with reliable Maildir and command delivery; Python 3 port'
arch=('any')