public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in mail-client/alot: ChangeLog alot-0.3.4.ebuild
@ 2013-04-18 13:15 Amadeusz Zolnowski (aidecoe)
  0 siblings, 0 replies; only message in thread
From: Amadeusz Zolnowski (aidecoe) @ 2013-04-18 13:15 UTC (permalink / raw
  To: gentoo-commits

aidecoe     13/04/18 13:15:13

  Modified:             ChangeLog
  Added:                alot-0.3.4.ebuild
  Log:
  Version bump.
  
  NEWS
  ~~~~
  
  * thread mode: add "tags" pseudo header to message display
  * case insensitive matching in Addressbook completion
  * compose: interpret "attach" pseudo header
  * compose: set initial message tags
  * envelope: completion for 'From'
  * reply/forward: more flexible construction of "From" headers (hello
    plussing!)
  * thread mode: added bounce command for direct redirection w/o an envelope
    buffer
  * thread mode: more robust "pipeto" command
  * add config option "prefer_plaintext"
  * prevent multiple 'index locked' notifications
  * kill some zombies! (#325)
  * search mode: bulk tagging
  * less annoying multi-key bindings
  * add global "move" command for scriptable cursor movement
  * support for encrypted outgoing mails using PGP/MIME
  
  (Portage version: 2.1.11.62/cvs/Linux x86_64, signed Manifest commit with key F0134531E1DBFAB5)

Revision  Changes    Path
1.16                 mail-client/alot/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/alot/ChangeLog?rev=1.16&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/alot/ChangeLog?rev=1.16&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/alot/ChangeLog?r1=1.15&r2=1.16

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-client/alot/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog	10 Sep 2012 14:33:36 -0000	1.15
+++ ChangeLog	18 Apr 2013 13:15:13 -0000	1.16
@@ -1,7 +1,32 @@
 # ChangeLog for mail-client/alot
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-client/alot/ChangeLog,v 1.15 2012/09/10 14:33:36 aidecoe Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/mail-client/alot/ChangeLog,v 1.16 2013/04/18 13:15:13 aidecoe Exp $
 
+*alot-0.3.4 (18 Apr 2013)
+
+  18 Apr 2013; Amadeusz Żołnowski <aidecoe@gentoo.org> +alot-0.3.4.ebuild:
+  Version bump.
+
+  NEWS
+  ~~~~
+
+  * thread mode: add "tags" pseudo header to message display
+  * case insensitive matching in Addressbook completion
+  * compose: interpret "attach" pseudo header
+  * compose: set initial message tags
+  * envelope: completion for 'From'
+  * reply/forward: more flexible construction of "From" headers (hello
+    plussing!)
+  * thread mode: added bounce command for direct redirection w/o an envelope
+    buffer
+  * thread mode: more robust "pipeto" command
+  * add config option "prefer_plaintext"
+  * prevent multiple 'index locked' notifications
+  * kill some zombies! (#325)
+  * search mode: bulk tagging
+  * less annoying multi-key bindings
+  * add global "move" command for scriptable cursor movement
+  * support for encrypted outgoing mails using PGP/MIME
 
 *alot-0.3.3 (10 Sep 2012)
 



1.1                  mail-client/alot/alot-0.3.4.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/alot/alot-0.3.4.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/alot/alot-0.3.4.ebuild?rev=1.1&content-type=text/plain

Index: alot-0.3.4.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-client/alot/alot-0.3.4.ebuild,v 1.1 2013/04/18 13:15:13 aidecoe Exp $

EAPI=4

PYTHON_DEPEND="2:2.7"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="2.[456] 3.*"

inherit distutils eutils vcs-snapshot

DESCRIPTION="Experimental terminal UI for net-mail/notmuch written in Python"
HOMEPAGE="https://github.com/pazz/alot"
SRC_URI="${HOMEPAGE}/tarball/${PV} -> ${P}.tar.gz"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"

DEPEND="
	doc? ( dev-python/sphinx )
	"
RDEPEND="
	>=dev-python/configobj-4.6.0
	dev-python/pygpgme
	>=dev-python/twisted-10.2.0
	>=dev-python/urwid-1.1.0
	net-mail/mailbase
	>=net-mail/notmuch-0.13[crypt,python]
	sys-apps/file[python]
	"

ALOT_UPDATE=""

pkg_setup() {
	python_pkg_setup

	if has_version "<${CATEGORY}/${PN}-0.3.2"; then
		ALOT_UPDATE="yes"
	fi
}

src_prepare() {
	#epatch "${FILESDIR}/${PV}-subject-fix.patch"
	find "${S}" -name '*.py' -print0 | xargs -0 -- sed \
		-e '1i# -*- coding: utf-8 -*-' -i || die

	distutils_src_prepare

	local md
	for md in *.md; do
		mv "${md}" "${md%.md}"
	done
}

src_compile() {
	distutils_src_compile

	if use doc; then
		pushd docs || die
		emake html
		popd || die
	fi
}

src_install() {
	distutils_src_install

	dodir /usr/share/alot
	insinto /usr/share/alot
	doins -r extra

	if use doc; then
		dohtml -r docs/build/html/*
	fi
}

pkg_postinst() {
	if [[ ${ALOT_UPDATE} = yes ]]; then
		ewarn "The syntax of theme-files and custom tags-sections of the config"
		ewarn "has been changed.  You have to revise your config.  There are"
		ewarn "converter scripts in /usr/share/alot/extra to help you out with"
		ewarn "this:"
		ewarn ""
		ewarn "  * tagsections_convert.py for your ~/.config/alot/config"
		ewarn "  * theme_convert.py to update your custom theme files"
	fi
}





^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2013-04-18 13:15 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-18 13:15 [gentoo-commits] gentoo-x86 commit in mail-client/alot: ChangeLog alot-0.3.4.ebuild Amadeusz Zolnowski (aidecoe)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox