diff options
author | Christian Ruppert <idl0r@gentoo.org> | 2010-04-08 17:57:19 +0000 |
---|---|---|
committer | Christian Ruppert <idl0r@gentoo.org> | 2010-04-08 17:57:19 +0000 |
commit | d60e5e9903d0d0da9c7942743ab4f7065189a64e (patch) | |
tree | a8a4b2e91ee1875f95f30301e75835f05472deae /app-portage | |
parent | Set SUPPORT_PYTHON_ABIS. Fix dependencies. (diff) | |
download | gentoo-2-d60e5e9903d0d0da9c7942743ab4f7065189a64e.tar.gz gentoo-2-d60e5e9903d0d0da9c7942743ab4f7065189a64e.tar.bz2 gentoo-2-d60e5e9903d0d0da9c7942743ab4f7065189a64e.zip |
Remove old/unsupported versions.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'app-portage')
-rw-r--r-- | app-portage/portato/ChangeLog | 6 | ||||
-rw-r--r-- | app-portage/portato/portato-0.12.1.ebuild | 114 | ||||
-rw-r--r-- | app-portage/portato/portato-0.13.ebuild | 112 |
3 files changed, 5 insertions, 227 deletions
diff --git a/app-portage/portato/ChangeLog b/app-portage/portato/ChangeLog index dd37878a2c2a..cc7eb64d965f 100644 --- a/app-portage/portato/ChangeLog +++ b/app-portage/portato/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-portage/portato # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-portage/portato/ChangeLog,v 1.21 2010/03/09 19:20:30 fuzzyray Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-portage/portato/ChangeLog,v 1.22 2010/04/08 17:57:19 idl0r Exp $ + + 08 Apr 2010; Christian Ruppert <idl0r@gentoo.org> -portato-0.12.1.ebuild, + -portato-0.13.ebuild: + Remove old/unsupported versions. 09 Mar 2010; Paul Varner <fuzzyray@gentoo.org> metadata.xml: Change herd to tools-portage. diff --git a/app-portage/portato/portato-0.12.1.ebuild b/app-portage/portato/portato-0.12.1.ebuild deleted file mode 100644 index 23559cb03538..000000000000 --- a/app-portage/portato/portato-0.12.1.ebuild +++ /dev/null @@ -1,114 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-portage/portato/portato-0.12.1.ebuild,v 1.3 2009/11/06 22:40:13 ssuominen Exp $ - -EAPI="2" - -NEED_PYTHON="2.5" -inherit python eutils distutils - -DESCRIPTION="A GUI for Portage written in Python." -HOMEPAGE="http://portato.origo.ethz.ch/" -SRC_URI="http://download.origo.ethz.ch/portato/1045/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" -IUSE="kde +libnotify nls userpriv sqlite" -LANGS="ca de es_ES pl tr" -for X in $LANGS; do IUSE="${IUSE} linguas_${X}"; done - -RDEPEND="app-portage/portage-utils - x11-libs/vte[python] - >=dev-lang/python-2.5[sqlite?,threads] - dev-python/pygtksourceview:2 - >=dev-python/pygtk-2.14.0 - >=sys-apps/portage-2.1.6 - - !userpriv? ( - dev-python/shm - kde? ( kde-base/kdesu ) - !kde? ( x11-libs/gksu ) ) - - libnotify? ( dev-python/notify-python ) - nls? ( virtual/libintl )" - -# only needs gettext as build dependency -# python should be set as DEPEND in the python-eclass -DEPEND="nls? ( sys-devel/gettext )" - -S="${WORKDIR}/${PN}" -CONFIG_DIR="etc/${PN}" -DATA_DIR="usr/share/${PN}" -LOCALE_DIR="usr/share/locale" -PLUGIN_DIR="${DATA_DIR}/plugins" -ICON_DIR="${DATA_DIR}/icons" -TEMPLATE_DIR="${DATA_DIR}/templates" - -src_configure () -{ - local su="\"gksu -D 'Portato'\"" - use kde && su="\"kdesu -t -d -i '%s' -c\" % APP_ICON" - - sed -i -e "s;^\(VERSION\s*=\s*\).*;\1\"${PV}\";" \ - -e "s;^\(CONFIG_DIR\s*=\s*\).*;\1\"${ROOT}${CONFIG_DIR}/\";" \ - -e "s;^\(DATA_DIR\s*=\s*\).*;\1\"${ROOT}${DATA_DIR}/\";" \ - -e "s;^\(TEMPLATE_DIR\s*=\s*\).*;\1\"${ROOT}${TEMPLATE_DIR}/\";" \ - -e "s;^\(ICON_DIR\s*=\s*\).*;\1\"${ROOT}${ICON_DIR}/\";" \ - -e "s;^\(LOCALE_DIR\s*=\s*\).*;\1\"${ROOT}${LOCALE_DIR}/\";" \ - -e "s;^\(SU_COMMAND\s*=\s*\).*;\1$su;" \ - "${PN}"/constants.py || die "sed failed" - - if use userpriv; then - sed -i -e "s/Exec=.*/Exec=portato --no-fork/" portato.desktop || die "sed failed" - fi -} - -src_compile () -{ - if use nls; then - ./pocompile.sh -emerge ${LINGUAS} || die "pocompile failed" - fi - - distutils_src_compile -} - -src_install () -{ - dodir ${DATA_DIR} || die - - distutils_src_install - - newbin portato.py portato || die - dodoc doc/* - - # config - insinto ${CONFIG_DIR} - doins etc/* || die - - # plugins - insinto ${PLUGIN_DIR} - - # desktop - doicon icons/portato-icon.png || die - domenu portato.desktop || die - - # nls - use nls && domo i18n/mo/* -} - -pkg_postinst () -{ - distutils_pkg_postinst - python_mod_optimize "/${PLUGIN_DIR}" -} - -pkg_postrm () -{ - distutils_pkg_postrm - python_mod_cleanup "/${PLUGIN_DIR}" - - # try to remove the DATA_DIR, because it may still reside there, as it was tried - # to remove it before plugin stuff was purged - rmdir "${ROOT}"${DATA_DIR} 2> /dev/null -} diff --git a/app-portage/portato/portato-0.13.ebuild b/app-portage/portato/portato-0.13.ebuild deleted file mode 100644 index b6952cd1890b..000000000000 --- a/app-portage/portato/portato-0.13.ebuild +++ /dev/null @@ -1,112 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-portage/portato/portato-0.13.ebuild,v 1.2 2009/11/06 22:40:13 ssuominen Exp $ - -EAPI="2" - -NEED_PYTHON="2.5" -inherit python eutils distutils - -DESCRIPTION="A GUI for Portage written in Python." -HOMEPAGE="http://portato.origo.ethz.ch/" -SRC_URI="http://download.origo.ethz.ch/portato/1376/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" -IUSE="kde +libnotify nls userpriv sqlite" -LANGS="ca de es_ES pl pt_BR tr" -for X in $LANGS; do IUSE="${IUSE} linguas_${X}"; done - -RDEPEND="app-portage/portage-utils - x11-libs/vte[python] - >=dev-lang/python-2.5[sqlite?,threads] - dev-python/pygtksourceview:2 - >=dev-python/pygtk-2.14.0 - >=sys-apps/portage-2.1.6 - - !userpriv? ( - dev-python/shm - kde? ( kde-base/kdesu ) - !kde? ( || ( x11-misc/ktsuss x11-libs/gksu ) ) ) - - libnotify? ( dev-python/notify-python ) - nls? ( virtual/libintl )" - -# only needs gettext as build dependency -# python should be set as DEPEND in the python-eclass -DEPEND="nls? ( sys-devel/gettext )" - -CONFIG_DIR="etc/${PN}" -DATA_DIR="usr/share/${PN}" -LOCALE_DIR="usr/share/locale" -PLUGIN_DIR="${DATA_DIR}/plugins" -ICON_DIR="${DATA_DIR}/icons" -TEMPLATE_DIR="${DATA_DIR}/templates" - -src_configure () -{ - sed -i -e "s;^\(VERSION\s*=\s*\).*;\1\"${PV}\";" \ - -e "s;^\(CONFIG_DIR\s*=\s*\).*;\1\"${ROOT}${CONFIG_DIR}/\";" \ - -e "s;^\(DATA_DIR\s*=\s*\).*;\1\"${ROOT}${DATA_DIR}/\";" \ - -e "s;^\(TEMPLATE_DIR\s*=\s*\).*;\1\"${ROOT}${TEMPLATE_DIR}/\";" \ - -e "s;^\(ICON_DIR\s*=\s*\).*;\1\"${ROOT}${ICON_DIR}/\";" \ - -e "s;^\(LOCALE_DIR\s*=\s*\).*;\1\"${ROOT}${LOCALE_DIR}/\";" \ - "${PN}"/constants.py || die "sed failed" - - if use userpriv; then - sed -i -e "s/Exec=.*/Exec=portato --no-fork/" portato.desktop || die "sed failed" - fi -} - -src_compile () -{ - if use nls; then - ./pocompile.sh -emerge ${LINGUAS} || die "pocompile failed" - fi - - distutils_src_compile -} - -src_install () -{ - dodir ${DATA_DIR} || die - - distutils_src_install - - newbin portato.py portato || die - dodoc doc/* - - # config - insinto ${CONFIG_DIR} - doins etc/* || die - - # plugins - insinto ${PLUGIN_DIR} - - # desktop - doicon icons/portato-icon.png || die - domenu portato.desktop || die - - # nls - use nls && domo i18n/mo/* - - # man page - doman portato.1 -} - -pkg_postinst () -{ - distutils_pkg_postinst - python_mod_optimize "/${PLUGIN_DIR}" -} - -pkg_postrm () -{ - distutils_pkg_postrm - python_mod_cleanup "/${PLUGIN_DIR}" - - # try to remove the DATA_DIR, because it may still reside there, as it was tried - # to remove it before plugin stuff was purged - rmdir "${ROOT}"${DATA_DIR} 2> /dev/null -} |