jer         14/12/08 23:20:01

  Modified:             ChangeLog
  Added:                icewmcp-3.2-r4.ebuild
  Removed:              icewmcp-3.2-r3.ebuild
  Log:
  Fix shebangs to match compatible python version (bug #532004).
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  Changes    Path
1.16                 x11-misc/icewmcp/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/icewmcp/ChangeLog?rev=1.16&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/icewmcp/ChangeLog?rev=1.16&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/icewmcp/ChangeLog?r1=1.15&r2=1.16

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/icewmcp/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog   1 Oct 2011 06:20:23 -0000       1.15
+++ ChangeLog   8 Dec 2014 23:20:01 -0000       1.16
@@ -1,6 +1,12 @@
 # ChangeLog for x11-misc/icewmcp
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/icewmcp/ChangeLog,v 1.15 
2011/10/01 06:20:23 vapier Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/icewmcp/ChangeLog,v 1.16 
2014/12/08 23:20:01 jer Exp $
+
+*icewmcp-3.2-r4 (08 Dec 2014)
+
+  08 Dec 2014; Jeroen Roovers <j...@gentoo.org> -icewmcp-3.2-r3.ebuild,
+  +icewmcp-3.2-r4.ebuild:
+  Fix shebangs to match compatible python version (bug #532004).
 
 *icewmcp-3.2-r3 (01 Oct 2011)
 



1.1                  x11-misc/icewmcp/icewmcp-3.2-r4.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/icewmcp/icewmcp-3.2-r4.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/icewmcp/icewmcp-3.2-r4.ebuild?rev=1.1&content-type=text/plain

Index: icewmcp-3.2-r4.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/icewmcp/icewmcp-3.2-r4.ebuild,v 1.1 
2014/12/08 23:20:01 jer Exp $

EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit multilib python-single-r1

MY_PN=IceWMControlPanel
DESCRIPTION="A complete control panel for IceWM using gtk & python"
HOMEPAGE="http://icesoundmanager.sourceforge.net/index.php";
SRC_URI="mirror://sourceforge/icesoundmanager/${MY_PN}-${PV}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"

DEPEND="
        dev-python/pygtk:2
        x11-libs/gtk+:2
        x11-wm/icewm
"
RDEPEND="${DEPEND}"

S=${WORKDIR}/INSTALL-IceWMCP

src_prepare() {
        rm -rf licenses
        mv doc .. || die
}

src_install() {
        local dest="/usr/$(get_libdir)/${P}"
        insinto ${dest}
        doins -r *

        local w wraps=(
                "IceWMCP.py IceWMCP"
                "IceWMCPKeyboard.py IceWMCP-Keyboard"
                "IceWMCPMouse.py IceWMCP-Mouse"
                "pyspool.py IceWMCP-PySpool"
                "IceWMCPWallpaper.py IceWMCP-Wallpaper"
                "IceWMCPWinOptions.py IceWMCP-WinOptions"
                "phrozenclock.py PhrozenClock"
                "icesound.py IceSoundManager"
                "IceWMCP_GtkPCCard.py GtkPCCard"
                "IceMe.py iceme"
                "icepref.py icepref"
                "icepref_td.py icepref_td"
                "IceWMCPGtkIconSelection.py IceWMCP-Icons"
                "IceWMCPEnergyStar.py IceWMCP-EnergyStar"
        )
        for w in "${wraps[@]}" ; do
                set -- ${w}
                printf '#!/bin/sh\nexec %s %s/%s\n' "${EPYTHON}" "${dest}" "$1" 
> "${T}"/$2
                dobin "${T}"/$2 || die
        done

        dodoc ../doc/*.txt
        dohtml ../doc/*.html
        python_optimize "${D}/${dest}"
}




Reply via email to