aidecoe 14/08/07 19:05:49 Modified: ChangeLog Added: alot-0.3.6.ebuild Log: Version bump. NEWS ~~~~ * implement vim-style "move last" command (bound to G) * fixes in reply/forwarding * add option "--tags" to taglist command to display only a subset of the tags * fix: safely interrumpt a command sequence * use suffix ".eml" for temporary email files when editing * interpret "compose mailto:foo@bar" commands * new "tomorrow" colour theme * Add some Emacs keybindings for prompts (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key F0134531E1DBFAB5)
Revision Changes Path 1.21 mail-client/alot/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/alot/ChangeLog?rev=1.21&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/alot/ChangeLog?rev=1.21&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/alot/ChangeLog?r1=1.20&r2=1.21 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/mail-client/alot/ChangeLog,v retrieving revision 1.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- ChangeLog 16 Feb 2014 15:11:21 -0000 1.20 +++ ChangeLog 7 Aug 2014 19:05:49 -0000 1.21 @@ -1,6 +1,22 @@ # ChangeLog for mail-client/alot # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/mail-client/alot/ChangeLog,v 1.20 2014/02/16 15:11:21 aidecoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-client/alot/ChangeLog,v 1.21 2014/08/07 19:05:49 aidecoe Exp $ + +*alot-0.3.6 (07 Aug 2014) + + 07 Aug 2014; Amadeusz Żołnowski <[email protected]> +alot-0.3.6.ebuild: + Version bump. + + NEWS + ~~~~ + * implement vim-style "move last" command (bound to G) + * fixes in reply/forwarding + * add option "--tags" to taglist command to display only a subset of the tags + * fix: safely interrumpt a command sequence + * use suffix ".eml" for temporary email files when editing + * interpret "compose mailto:foo@bar" commands + * new "tomorrow" colour theme + * Add some Emacs keybindings for prompts 16 Feb 2014; Amadeusz Żołnowski <[email protected]> -alot-0.3.2.ebuild, -alot-0.3.3.ebuild, -alot-0.3.4.ebuild: 1.1 mail-client/alot/alot-0.3.6.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/alot/alot-0.3.6.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/alot/alot-0.3.6.ebuild?rev=1.1&content-type=text/plain Index: alot-0.3.6.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/mail-client/alot/alot-0.3.6.ebuild,v 1.1 2014/08/07 19:05:49 aidecoe Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 ) inherit distutils-r1 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[${PYTHON_USEDEP}] ) " RDEPEND=" >=dev-python/configobj-4.6.0[${PYTHON_USEDEP}] dev-python/pygpgme[${PYTHON_USEDEP}] >=dev-python/twisted-core-10.2.0 >=dev-python/urwid-1.1.0[${PYTHON_USEDEP}] net-mail/mailbase >=net-mail/notmuch-0.13[crypt,python] sys-apps/file[python] " ALOT_UPDATE="" pkg_setup() { python-r1_pkg_setup if has_version "<${CATEGORY}/${PN}-0.3.2"; then ALOT_UPDATE="yes" fi } src_prepare() { find "${S}" -name '*.py' -print0 | xargs -0 -- sed \ -e '1i# -*- coding: utf-8 -*-' -i || die distutils-r1_src_prepare local md for md in *.md; do mv "${md}" "${md%.md}" done } src_compile() { distutils-r1_src_compile if use doc; then pushd docs || die emake html popd || die fi } src_install() { distutils-r1_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 }
