summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2012-01-16 15:25:12 +0000
committerAlexis Ballier <aballier@gentoo.org>2012-01-16 15:25:12 +0000
commit01f09e3d6027fa85e130bc7e7eab5ef4d7fc24ba (patch)
tree9a2d02eaf704510a1ce74e8ec1156e9b82f2fae1 /dev-ml/camlp5
parentrevbump for previous fix (diff)
downloadgentoo-2-01f09e3d6027fa85e130bc7e7eab5ef4d7fc24ba.tar.gz
gentoo-2-01f09e3d6027fa85e130bc7e7eab5ef4d7fc24ba.tar.bz2
gentoo-2-01f09e3d6027fa85e130bc7e7eab5ef4d7fc24ba.zip
do not use seq in global scope, by Ulrich Müller, bug #398799
(Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
Diffstat (limited to 'dev-ml/camlp5')
-rw-r--r--dev-ml/camlp5/ChangeLog5
-rw-r--r--dev-ml/camlp5/camlp5-6.03.ebuild4
2 files changed, 6 insertions, 3 deletions
diff --git a/dev-ml/camlp5/ChangeLog b/dev-ml/camlp5/ChangeLog
index 29f4b7885167..e148eece9b68 100644
--- a/dev-ml/camlp5/ChangeLog
+++ b/dev-ml/camlp5/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-ml/camlp5
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlp5/ChangeLog,v 1.62 2012/01/10 13:22:35 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlp5/ChangeLog,v 1.63 2012/01/16 15:25:12 aballier Exp $
+
+ 16 Jan 2012; Alexis Ballier <aballier@gentoo.org> camlp5-6.03.ebuild:
+ do not use seq in global scope, by Ulrich Müller, bug #398799
*camlp5-6.03 (10 Jan 2012)
diff --git a/dev-ml/camlp5/camlp5-6.03.ebuild b/dev-ml/camlp5/camlp5-6.03.ebuild
index 371801d54bd1..8cc5b521ae85 100644
--- a/dev-ml/camlp5/camlp5-6.03.ebuild
+++ b/dev-ml/camlp5/camlp5-6.03.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlp5/camlp5-6.03.ebuild,v 1.1 2012/01/10 13:22:35 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlp5/camlp5-6.03.ebuild,v 1.2 2012/01/16 15:25:12 aballier Exp $
EAPI="2"
@@ -23,7 +23,7 @@ PATCHLEVEL=${PV#*_p}
PATCHLIST=""
if [ "${PATCHLEVEL}" != "${PV}" ] ; then
- for i in $(seq 1 ${PATCHLEVEL}) ; do
+ for (( i=1; i<=PATCHLEVEL; i++ )) ; do
SRC_URI="${SRC_URI}
http://pauillac.inria.fr/~ddr/camlp5/distrib/src/patch-${PV%_p*}-${i} -> ${MY_P}-patch-${i}.patch"
PATCHLIST="${PATCHLIST} ${MY_P}-patch-${i}.patch"