diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2004-09-03 01:28:33 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2004-09-03 01:28:33 +0000 |
commit | 4b37511515d06602948845469b9e8e68e69f1bbd (patch) | |
tree | 9991bb74d1e1e8c735474ad43e388f2bced7b81c /dev-python | |
parent | Added to ~ppc (Manifest recommit) (diff) | |
download | gentoo-2-4b37511515d06602948845469b9e8e68e69f1bbd.tar.gz gentoo-2-4b37511515d06602948845469b9e8e68e69f1bbd.tar.bz2 gentoo-2-4b37511515d06602948845469b9e8e68e69f1bbd.zip |
don't use sed in the global scope
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/skunkweb/ChangeLog | 6 | ||||
-rw-r--r-- | dev-python/skunkweb/skunkweb-3.4_beta5.ebuild | 5 |
2 files changed, 8 insertions, 3 deletions
diff --git a/dev-python/skunkweb/ChangeLog b/dev-python/skunkweb/ChangeLog index 52d478d61443..1ae4979eda39 100644 --- a/dev-python/skunkweb/ChangeLog +++ b/dev-python/skunkweb/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-python/skunkweb # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/skunkweb/ChangeLog,v 1.6 2004/07/29 01:35:53 liquidx Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/skunkweb/ChangeLog,v 1.7 2004/09/03 01:28:33 seemant Exp $ + + 02 Sep 2004; Seemant Kulleen <seemant@gentoo.org> skunkweb-3.4_beta5.ebuild: + remove sed from version calculation, it's + sooooooooooooooooooooooooooooooooooooo not necessary 28 Jul 2004; Alastair Tse <liquidx@gentoo.org> skunkweb-3.4_beta5.ebuild: fix enewuser enewgroup issues (#58526) diff --git a/dev-python/skunkweb/skunkweb-3.4_beta5.ebuild b/dev-python/skunkweb/skunkweb-3.4_beta5.ebuild index acf289c9bbc0..757b7cf06f3a 100644 --- a/dev-python/skunkweb/skunkweb-3.4_beta5.ebuild +++ b/dev-python/skunkweb/skunkweb-3.4_beta5.ebuild @@ -1,12 +1,13 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/skunkweb/skunkweb-3.4_beta5.ebuild,v 1.6 2004/07/29 01:35:53 liquidx Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/skunkweb/skunkweb-3.4_beta5.ebuild,v 1.7 2004/09/03 01:28:33 seemant Exp $ inherit eutils DESCRIPTION="robust Python web application server" HOMEPAGE="http://skunkweb.sourceforge.net/" -NEWP=`echo ${P} | sed -e 's|_beta|b|'` +#NEWP=`echo ${P} | sed -e 's|_beta|b|'` +NEWP=${P/_beta/b} S=${WORKDIR}/${NEWP} SRC_URI="mirror://sourceforge/skunkweb/${NEWP}.tar.gz" LICENSE="GPL-2 BSD" |