summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Schiffbauer <mschiff@gentoo.org>2014-02-02 23:32:38 +0000
committerMarc Schiffbauer <mschiff@gentoo.org>2014-02-02 23:32:38 +0000
commitd652b70da40713b1dcb7d1433721da20b7ab5b1d (patch)
tree4fa3df863dda1b0fb4bd31b5e133d038023a4582 /net-mail
parentBump version, Remove old version. Fixes bug #499918. Thanks to Rolf Eike Beer (diff)
downloadgentoo-2-d652b70da40713b1dcb7d1433721da20b7ab5b1d.tar.gz
gentoo-2-d652b70da40713b1dcb7d1433721da20b7ab5b1d.tar.bz2
gentoo-2-d652b70da40713b1dcb7d1433721da20b7ab5b1d.zip
Remove Version 0.10.0. Fixes bug #496642. Thanks to Rolf Eike Beer.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x296C6CCA35A64134)
Diffstat (limited to 'net-mail')
-rw-r--r--net-mail/automx/ChangeLog5
-rw-r--r--net-mail/automx/automx-0.10.0.ebuild62
2 files changed, 4 insertions, 63 deletions
diff --git a/net-mail/automx/ChangeLog b/net-mail/automx/ChangeLog
index c26c1eef1f8b..022cb1f5b7dd 100644
--- a/net-mail/automx/ChangeLog
+++ b/net-mail/automx/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-mail/automx
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/automx/ChangeLog,v 1.11 2014/02/02 23:28:34 mschiff Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/automx/ChangeLog,v 1.12 2014/02/02 23:32:38 mschiff Exp $
+
+ 02 Feb 2014; Marc Schiffbauer <mschiff@gentoo.org> -automx-0.10.0.ebuild:
+ Remove Version 0.10.0. Fixes bug #496642. Thanks to Rolf Eike Beer.
*automx-0.10.1 (02 Feb 2014)
diff --git a/net-mail/automx/automx-0.10.0.ebuild b/net-mail/automx/automx-0.10.0.ebuild
deleted file mode 100644
index f9d13a6f7ad1..000000000000
--- a/net-mail/automx/automx-0.10.0.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/automx/automx-0.10.0.ebuild,v 1.2 2014/01/01 18:53:57 mschiff Exp $
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_6,2_7} )
-
-inherit distutils-r1
-
-DESCRIPTION="A mail user agent auto configuration service"
-HOMEPAGE="http://www.automx.org"
-SRC_URI="https://github.com/sys4/${PN}/archive/v${PV}.tar.gz -> automx-${PV}.tgz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="ldap memcached sql +tools"
-
-DEPEND="${PYTHON_DEPS}"
-RDEPEND="
- ${DEPEND}
- dev-python/ipaddr[${PYTHON_USEDEP}]
- dev-python/lxml[${PYTHON_USEDEP}]
- dev-python/python-dateutil[${PYTHON_USEDEP}]
- || ( www-apache/mod_wsgi[${PYTHON_USEDEP}] www-servers/uwsgi )
- ldap? ( dev-python/python-ldap[${PYTHON_USEDEP}] )
- memcached? ( dev-python/python-memcached )
- sql? ( dev-python/sqlalchemy[${PYTHON_USEDEP}] )
- tools? ( net-dns/bind-tools net-misc/wget )
- "
-
-src_prepare() {
- sed -i '/py_modules=/d' setup.py
-}
-
-src_install() {
- distutils-r1_src_install
-
- dodoc INSTALL CREDITS CHANGES BASIC_CONFIGURATION_README
- dohtml -r doc/html/*
-
- docinto examples
- dodoc src/conf/*example*
-
- doman doc/man/man5/*
-
- if use tools; then
- exeinto /usr/bin
- doexe src/automx-test
- doman doc/man/man1/automx-test.1
- fi
-
- exeinto /usr/lib/${PN}
- doexe src/automx_wsgi.py
-}
-
-pkg_postinst() {
- einfo
- einfo "See /usr/share/doc/${PF}/INSTALL.bz2 for setup instructions"
- einfo
-}