diff options
author | Mark Loeser <halcy0n@gentoo.org> | 2009-10-12 16:51:50 +0000 |
---|---|---|
committer | Mark Loeser <halcy0n@gentoo.org> | 2009-10-12 16:51:50 +0000 |
commit | ed985dbb40097e979cc56efbb03eb59307f12b3a (patch) | |
tree | 3f28962f18e6c5a1b6b8cdba02d237440730eec6 /app-arch/torrentzip | |
parent | QA fixes; redundant "cd " (diff) | |
download | gentoo-2-ed985dbb40097e979cc56efbb03eb59307f12b3a.tar.gz gentoo-2-ed985dbb40097e979cc56efbb03eb59307f12b3a.tar.bz2 gentoo-2-ed985dbb40097e979cc56efbb03eb59307f12b3a.zip |
QA fixes; unquoted variables
(Portage version: 2.2_rc45/cvs/Linux x86_64)
Diffstat (limited to 'app-arch/torrentzip')
-rw-r--r-- | app-arch/torrentzip/ChangeLog | 7 | ||||
-rw-r--r-- | app-arch/torrentzip/torrentzip-0.2-r1.ebuild | 10 |
2 files changed, 10 insertions, 7 deletions
diff --git a/app-arch/torrentzip/ChangeLog b/app-arch/torrentzip/ChangeLog index 04a8841123ae..376b6afa121c 100644 --- a/app-arch/torrentzip/ChangeLog +++ b/app-arch/torrentzip/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-arch/torrentzip -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/torrentzip/ChangeLog,v 1.3 2008/06/04 18:02:29 flameeyes Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/torrentzip/ChangeLog,v 1.4 2009/10/12 16:51:50 halcy0n Exp $ + + 12 Oct 2009; Mark Loeser <halcy0n@gentoo.org> torrentzip-0.2-r1.ebuild: + QA fixes; unquoted variables 04 Jun 2008; Diego Pettenò <flameeyes@gentoo.org> torrentzip-0.2-r1.ebuild: diff --git a/app-arch/torrentzip/torrentzip-0.2-r1.ebuild b/app-arch/torrentzip/torrentzip-0.2-r1.ebuild index 8cbfc17dc5ad..eae6f3b08c76 100644 --- a/app-arch/torrentzip/torrentzip-0.2-r1.ebuild +++ b/app-arch/torrentzip/torrentzip-0.2-r1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/torrentzip/torrentzip-0.2-r1.ebuild,v 1.2 2008/06/04 18:02:29 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/torrentzip/torrentzip-0.2-r1.ebuild,v 1.3 2009/10/12 16:51:50 halcy0n Exp $ inherit versionator eutils autotools @@ -10,7 +10,7 @@ HOMEPAGE="https://sourceforge.net/projects/trrntzip" MY_PN=trrntzip MY_PV="$(replace_version_separator 1 '')" MY_P=${MY_PN}_v${MY_PV} -S=${WORKDIR}/${MY_PN} +S="${WORKDIR}"/${MY_PN} SRC_URI="mirror://sourceforge/trrntzip/${MY_P}_src.tar.gz" LICENSE="GPL-2" @@ -23,9 +23,9 @@ S=${WORKDIR}/trrntzip src_unpack() { unpack ${A} - cd ${S} + cd "${S}" - epatch ${FILESDIR}/fix-perms.patch + epatch "${FILESDIR}"/fix-perms.patch eautoreconf } |