summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Trygve Kalleberg <karltk@gentoo.org>2004-07-20 23:46:40 +0000
committerKarl Trygve Kalleberg <karltk@gentoo.org>2004-07-20 23:46:40 +0000
commit0b183fc7eb283b3073ba9acf0ab8012018d7c320 (patch)
tree5d33b51726330472535b91243521cfda2d6c88a3 /x11-misc
parentinitial ebuild #57287 (Manifest recommit) (diff)
downloadgentoo-2-0b183fc7eb283b3073ba9acf0ab8012018d7c320.tar.gz
gentoo-2-0b183fc7eb283b3073ba9acf0ab8012018d7c320.tar.bz2
gentoo-2-0b183fc7eb283b3073ba9acf0ab8012018d7c320.zip
Fixes #57681.
Diffstat (limited to 'x11-misc')
-rw-r--r--x11-misc/pypanel/ChangeLog7
-rw-r--r--x11-misc/pypanel/Manifest2
-rw-r--r--x11-misc/pypanel/files/digest-pypanel-1.31
-rw-r--r--x11-misc/pypanel/pypanel-1.3.ebuild34
4 files changed, 43 insertions, 1 deletions
diff --git a/x11-misc/pypanel/ChangeLog b/x11-misc/pypanel/ChangeLog
index 02dac04389fd..8dfa5fda08e8 100644
--- a/x11-misc/pypanel/ChangeLog
+++ b/x11-misc/pypanel/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for x11-misc/pypanel
# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/pypanel/ChangeLog,v 1.11 2004/06/28 20:10:49 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/pypanel/ChangeLog,v 1.12 2004/07/20 23:46:40 karltk Exp $
+
+*pypanel-1.3 (21 Jul 2004)
+
+ 21 Jul 2004; Karl Trygve Kalleberg <karltk@gentoo.org> pypanel-1.3.ebuild:
+ Version bump, fixes #57681.
28 Jun 2004; Aron Griffis <agriffis@gentoo.org> pypanel-1.1.ebuild,
pypanel-1.2.ebuild:
diff --git a/x11-misc/pypanel/Manifest b/x11-misc/pypanel/Manifest
index c8b8e2806832..7bbbb0f68454 100644
--- a/x11-misc/pypanel/Manifest
+++ b/x11-misc/pypanel/Manifest
@@ -2,7 +2,9 @@ MD5 f81ff624a78c9d8ff4c31fe41ee5c7d3 pypanel-0.9.ebuild 927
MD5 48cfebffe04192c2824323711799a9c4 pypanel-1.2.ebuild 870
MD5 634a81554108ed890c0aa38652965c04 pypanel-1.1.ebuild 856
MD5 e95b17c3ea9270eb372218a8084be68a ChangeLog 1402
+MD5 6e6739857915cb3139143b574af35443 pypanel-1.3.ebuild 872
MD5 23a663bed0e73b6409825c841e2db1a1 metadata.xml 883
MD5 9d8d1c7d91f53d608347ae8018410394 files/digest-pypanel-0.9 62
MD5 73cd7af58de9283ac27e2e287733de99 files/digest-pypanel-1.1 62
MD5 5314e381e60bf6027fee6efc945432ef files/digest-pypanel-1.2 62
+MD5 b80903e4b9a2654f0a4543c094763683 files/digest-pypanel-1.3 62
diff --git a/x11-misc/pypanel/files/digest-pypanel-1.3 b/x11-misc/pypanel/files/digest-pypanel-1.3
new file mode 100644
index 000000000000..8387f5c71e92
--- /dev/null
+++ b/x11-misc/pypanel/files/digest-pypanel-1.3
@@ -0,0 +1 @@
+MD5 ed2af910de46abe84e967de5560d038b PyPanel-1.3.tar.gz 21545
diff --git a/x11-misc/pypanel/pypanel-1.3.ebuild b/x11-misc/pypanel/pypanel-1.3.ebuild
new file mode 100644
index 000000000000..ce78e2ab077f
--- /dev/null
+++ b/x11-misc/pypanel/pypanel-1.3.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2004 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/pypanel/pypanel-1.3.ebuild,v 1.1 2004/07/20 23:46:40 karltk Exp $
+
+inherit distutils
+
+DESCRIPTION="PyPanel is a lightweight panel/taskbar for X11 window managers."
+HOMEPAGE="http://pypanel.sourceforge.net"
+SRC_URI="mirror://sourceforge/pypanel/PyPanel-${PV}.tar.gz"
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~x86 ~ppc"
+IUSE=""
+DEPEND="virtual/x11
+ >=dev-lang/python-2.2.3-r1
+ >=dev-python/python-xlib-0.12
+ >=sys-apps/sed-4"
+S="${WORKDIR}/PyPanel-${PV}"
+
+src_unpack() {
+ unpack ${A}
+ cd ${S}
+
+ # Removing offensive material
+ sed -i -e "s/%D %I:%M %p/%Y-%m-%d %H:%M/" pypanelrc
+}
+
+src_install() {
+ distutils_src_install
+}
+
+pkg_postinst() {
+ ewarn "If you previously ran 0.8, please remove ~/.pypanelrc before starting ${PV}!"
+}