summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmadeusz Piotr Żołnowski <aidecoe@gentoo.org>2012-08-01 10:37:48 +0000
committerAmadeusz Piotr Żołnowski <aidecoe@gentoo.org>2012-08-01 10:37:48 +0000
commitdf90eb9c0c24ebc2fbf0317246e6fb5af4b44f20 (patch)
treeaee3d1543c804c7b0871c412ec20d4c03cbaa4c0 /mail-client/alot
parentRemove obsolete warnings from 0.3 and 0.3.1. (diff)
downloadgentoo-2-df90eb9c0c24ebc2fbf0317246e6fb5af4b44f20.tar.gz
gentoo-2-df90eb9c0c24ebc2fbf0317246e6fb5af4b44f20.tar.bz2
gentoo-2-df90eb9c0c24ebc2fbf0317246e6fb5af4b44f20.zip
Removed oldest version: 0.3.
(Portage version: 2.1.11.9/cvs/Linux x86_64)
Diffstat (limited to 'mail-client/alot')
-rw-r--r--mail-client/alot/ChangeLog5
-rw-r--r--mail-client/alot/alot-0.3.ebuild59
2 files changed, 4 insertions, 60 deletions
diff --git a/mail-client/alot/ChangeLog b/mail-client/alot/ChangeLog
index b64850523492..912e26f4c2a9 100644
--- a/mail-client/alot/ChangeLog
+++ b/mail-client/alot/ChangeLog
@@ -1,6 +1,9 @@
# 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.13 2012/08/01 10:35:11 aidecoe Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-client/alot/ChangeLog,v 1.14 2012/08/01 10:37:48 aidecoe Exp $
+
+ 01 Aug 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> -alot-0.3.ebuild:
+ Removed oldest version: 0.3.
01 Aug 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> alot-0.3.ebuild,
alot-0.3.1.ebuild:
diff --git a/mail-client/alot/alot-0.3.ebuild b/mail-client/alot/alot-0.3.ebuild
deleted file mode 100644
index fe6fedba51bd..000000000000
--- a/mail-client/alot/alot-0.3.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-client/alot/alot-0.3.ebuild,v 1.5 2012/08/01 10:35:11 aidecoe Exp $
-
-EAPI=4
-
-PYTHON_DEPEND="2:2.7"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="2.[456] 3.*"
-
-inherit distutils 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/twisted-10.2.0
- >=dev-python/urwid-1.0.0
- net-mail/mailbase
- >=net-mail/notmuch-0.12[crypt,python]
- sys-apps/file[python]
- "
-
-src_prepare() {
- 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
-
- if use doc; then
- dohtml -r docs/build/html/*
- fi
-}