summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2015-07-22 22:46:06 +0000
committerManuel Rüger <mrueg@gentoo.org>2015-07-22 22:46:06 +0000
commit591fba156fcb47a5932e0847e8028d44a5c6b805 (patch)
tree033aa0c06ad217585d281705c5e3ab1f691d7141 /app-portage
parentRemove old. (diff)
downloadgentoo-2-591fba156fcb47a5932e0847e8028d44a5c6b805.tar.gz
gentoo-2-591fba156fcb47a5932e0847e8028d44a5c6b805.tar.bz2
gentoo-2-591fba156fcb47a5932e0847e8028d44a5c6b805.zip
Remove old.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'app-portage')
-rw-r--r--app-portage/etc-proposals/ChangeLog5
-rw-r--r--app-portage/etc-proposals/etc-proposals-1.4.3-r2.ebuild49
2 files changed, 4 insertions, 50 deletions
diff --git a/app-portage/etc-proposals/ChangeLog b/app-portage/etc-proposals/ChangeLog
index 93c687727494..381fa90059a5 100644
--- a/app-portage/etc-proposals/ChangeLog
+++ b/app-portage/etc-proposals/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-portage/etc-proposals
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-portage/etc-proposals/ChangeLog,v 1.24 2015/06/09 12:03:08 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-portage/etc-proposals/ChangeLog,v 1.25 2015/07/22 22:46:06 mrueg Exp $
+
+ 22 Jul 2015; Manuel Rüger <mrueg@gentoo.org> -etc-proposals-1.4.3-r2.ebuild:
+ Remove old.
09 Jun 2015; Justin Lecher <jlec@gentoo.org> metadata.xml:
Updating remote-id in metadata.xml
diff --git a/app-portage/etc-proposals/etc-proposals-1.4.3-r2.ebuild b/app-portage/etc-proposals/etc-proposals-1.4.3-r2.ebuild
deleted file mode 100644
index f80f1c231e7d..000000000000
--- a/app-portage/etc-proposals/etc-proposals-1.4.3-r2.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-portage/etc-proposals/etc-proposals-1.4.3-r2.ebuild,v 1.5 2011/01/15 16:00:40 maekke Exp $
-
-EAPI=3
-
-PYTHON_DEPEND="2:2.5"
-
-inherit distutils
-
-DESCRIPTION="a set of tools for updating gentoo config files"
-HOMEPAGE="http://developer.berlios.de/projects/etc-proposals/"
-SRC_URI="mirror://berlios/${PN}/${P}.tar.gz"
-
-IUSE="gtk qt4"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc ~sparc x86"
-
-DEPEND="gtk? ( >=dev-python/pygtk-2.10 )
- qt4? ( >=dev-python/PyQt4-4.1.1[X] )"
-RDEPEND="${DEPEND}"
-
-PYTHON_MODNAME="etcproposals"
-
-pkg_setup() {
- python_set_active_version 2
- python_pkg_setup
-}
-
-src_install(){
- distutils_src_install
- dosbin "${D}"/usr/bin/etc-proposals
- rm -rf "${D}"/usr/bin
-
- # Bug 308725: Filter out the "PreferedFrontends" based on USE Flags:
- use qt4 || sed -i -e '/^PreferedFrontends=/ s/qt4,//' "${D}"/etc/etc-proposals.conf
- use gtk || sed -i -e '/^PreferedFrontends=/ s/gtk2,//' "${D}"/etc/etc-proposals.conf
-}
-
-pkg_postinst() {
- distutils_pkg_postinst
- elog "The configuration file has been installed to /etc/etc-proposals.conf"
- elog "If you are installing etc-proposals for the first time or updating"
- elog "from a version < 1.3 you should run the following command once:"
- elog "etc-proposals --init-db"
- ewarn "A full backup of /etc and other files managed by CONFIG_PROTECT"
- ewarn "is highly advised before testing this tool!"
-}