From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1QJ97S-0006ij-5D for garchives@archives.gentoo.org; Sun, 08 May 2011 18:54:18 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5A9571C028; Sun, 8 May 2011 18:54:10 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 2ABD71C028 for ; Sun, 8 May 2011 18:54:10 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A662F1B4081 for ; Sun, 8 May 2011 18:54:09 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 7E2CA45C54 for ; Sun, 8 May 2011 18:54:08 +0000 (UTC) From: "Gilles Dartiguelongue" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Gilles Dartiguelongue" Message-ID: Subject: [gentoo-commits] proj/gnome:master commit in: eclass/ X-VCS-Repository: proj/gnome X-VCS-Files: eclass/gnome2-python.eclass X-VCS-Directories: eclass/ X-VCS-Committer: eva X-VCS-Committer-Name: Gilles Dartiguelongue X-VCS-Revision: faa18cfe82826a0b77ce6188cce4124191bb0d97 Date: Sun, 8 May 2011 18:54:08 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 7b03f14c3d363177b26932714c8c1f2e commit: faa18cfe82826a0b77ce6188cce4124191bb0d97 Author: Gilles Dartiguelongue gentoo org> AuthorDate: Sun May 8 18:53:19 2011 +0000 Commit: Gilles Dartiguelongue gentoo org> CommitDate: Sun May 8 18:53:59 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/gnome.git;a=3D= commit;h=3Dfaa18cfe eclass/gnome2-python: drop pkg_{postinst,postrm} until a better idea come= s out --- eclass/gnome2-python.eclass | 15 +-------------- 1 files changed, 1 insertions(+), 14 deletions(-) diff --git a/eclass/gnome2-python.eclass b/eclass/gnome2-python.eclass index 90df4ac..7b05342 100644 --- a/eclass/gnome2-python.eclass +++ b/eclass/gnome2-python.eclass @@ -14,7 +14,7 @@ inherit gnome2 python =20 # Stolen from git.eclass -EXPORTED_FUNCTIONS=3D"pkg_setup src_compile src_test src_install pkg_pos= tinst pkg_postrm" +EXPORTED_FUNCTIONS=3D"pkg_setup src_compile src_test src_install" case "${EAPI:-0}" in 2|3) EXPORTED_FUNCTIONS=3D"${EXPORTED_FUNCTIONS} src_prepare src_con= figure" ;; 0|1) ;; @@ -53,20 +53,7 @@ gnome2-python_src_test() { python_execute_function -s -d } =20 - gnome2-python_src_install() { python_execute_function -s gnome2_src_install python_clean_installation_image } - - -gnome2-python_pkg_postinst() { - gnome2_pkg_postinst - python_mod_optimize ${GNOME_ORG_MODULE} -} - - -gnome2-python_pkg_postrm() { - gnome2_pkg_postrm - python_mod_cleanup ${GNOME_ORG_MODULE} -}