diff options
author | 2004-03-25 08:16:07 +0000 | |
---|---|---|
committer | 2004-03-25 08:16:07 +0000 | |
commit | 1bb6d48641880b641b2863f95779756c4b7782af (patch) | |
tree | 2367439761654002ba3cd4df93fc812c03624419 | |
parent | Marked stable on mips. (Manifest recommit) (diff) | |
download | gentoo-2-1bb6d48641880b641b2863f95779756c4b7782af.tar.gz gentoo-2-1bb6d48641880b641b2863f95779756c4b7782af.tar.bz2 gentoo-2-1bb6d48641880b641b2863f95779756c4b7782af.zip |
don't use deprecated ? : use syntax
-rw-r--r-- | dev-python/skunkweb/ChangeLog | 8 | ||||
-rw-r--r-- | dev-python/skunkweb/skunkweb-3.4_beta5.ebuild | 7 | ||||
-rw-r--r-- | sys-devel/gcc/ChangeLog | 7 | ||||
-rw-r--r-- | sys-devel/gcc/gcc-3.2.2-r2.ebuild | 5 | ||||
-rw-r--r-- | sys-devel/gcc/gcc-3.2.2.ebuild | 7 | ||||
-rw-r--r-- | sys-devel/gcc/gcc-3.2.3-r2.ebuild | 5 | ||||
-rw-r--r-- | sys-devel/gcc/gcc-3.2.3-r3.ebuild | 5 | ||||
-rw-r--r-- | sys-devel/gcc/gcc-3.2.3-r4.ebuild | 5 | ||||
-rw-r--r-- | sys-devel/gcc/gcc-3.3.ebuild | 5 |
9 files changed, 36 insertions, 18 deletions
diff --git a/dev-python/skunkweb/ChangeLog b/dev-python/skunkweb/ChangeLog index 4ee24084cad9..e32839ee0d8b 100644 --- a/dev-python/skunkweb/ChangeLog +++ b/dev-python/skunkweb/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-python/skunkweb -# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/skunkweb/ChangeLog,v 1.1 2003/10/25 03:31:05 pythonhead Exp $ +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/skunkweb/ChangeLog,v 1.2 2004/03/25 08:16:07 mr_bones_ Exp $ + + 25 Mar 2004; Michael Sterrett <mr_bones_@gentoo.org> + skunkweb-3.4_beta5.ebuild: + don't use deprecated ? : use syntax *skunkweb-3.4_beta5 (24 Oct 2003) diff --git a/dev-python/skunkweb/skunkweb-3.4_beta5.ebuild b/dev-python/skunkweb/skunkweb-3.4_beta5.ebuild index 900c035d3737..8a630cbebf6c 100644 --- a/dev-python/skunkweb/skunkweb-3.4_beta5.ebuild +++ b/dev-python/skunkweb/skunkweb-3.4_beta5.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. +# Copyright 1999-2004 Gentoo Technologies, Inc. # 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.1 2003/10/25 03:31:05 pythonhead Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/skunkweb/skunkweb-3.4_beta5.ebuild,v 1.2 2004/03/25 08:16:07 mr_bones_ Exp $ DESCRIPTION="robust Python web application server" @@ -14,7 +14,8 @@ KEYWORDS="~x86" IUSE="${IUSE} apache1 apache2" DEPEND=">=dev-lang/python-2.2 >=dev-python/egenix-mx-base-2.0.4 - apache2? ( >=net-www/apache-2.0.47 ) : ( apache1? ( <=net-www/apache-2 ) )" + apache2? ( >=net-www/apache-2.0.47 ) + !apache2? ( apache1? ( <=net-www/apache-2 ) )" pkg_setup() { diff --git a/sys-devel/gcc/ChangeLog b/sys-devel/gcc/ChangeLog index 98aa0e139cc4..dad3064001d6 100644 --- a/sys-devel/gcc/ChangeLog +++ b/sys-devel/gcc/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-devel/gcc # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/ChangeLog,v 1.196 2004/03/24 00:04:11 lu_zero Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/ChangeLog,v 1.197 2004/03/25 08:12:54 mr_bones_ Exp $ + + 25 Mar 2004; Michael Sterrett <mr_bones_@gentoo.org> gcc-3.2.2-r2.ebuild, + gcc-3.2.2.ebuild, gcc-3.2.3-r2.ebuild, gcc-3.2.3-r3.ebuild, + gcc-3.2.3-r4.ebuild, gcc-3.3.ebuild: + don't use deprecated ? : use syntax 24 Mar 2004; Luca Barbato <lu_zero@gentoo.org> gcc-3.3.3_pre20040322.ebuild: Fixed SRC_URI diff --git a/sys-devel/gcc/gcc-3.2.2-r2.ebuild b/sys-devel/gcc/gcc-3.2.2-r2.ebuild index 70406a4b8f2a..3992df0ca9a2 100644 --- a/sys-devel/gcc/gcc-3.2.2-r2.ebuild +++ b/sys-devel/gcc/gcc-3.2.2-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/gcc-3.2.2-r2.ebuild,v 1.10 2004/02/23 00:20:14 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/gcc-3.2.2-r2.ebuild,v 1.11 2004/03/25 08:12:54 mr_bones_ Exp $ IUSE="static nls bootstrap java build" @@ -99,7 +99,8 @@ else fi DEPEND="virtual/glibc - mips? >=sys-devel/binutils-2.13.90.0.16 : >=sys-devel/binutils-2.13.90.0.18 + mips? ( >=sys-devel/binutils-2.13.90.0.16 ) + !mips? ( >=sys-devel/binutils-2.13.90.0.18 ) >=sys-devel/gcc-config-1.3.1 !build? ( >=sys-libs/ncurses-5.2-r2 nls? ( sys-devel/gettext ) )" diff --git a/sys-devel/gcc/gcc-3.2.2.ebuild b/sys-devel/gcc/gcc-3.2.2.ebuild index b9bd8732acbf..215d58d2440c 100644 --- a/sys-devel/gcc/gcc-3.2.2.ebuild +++ b/sys-devel/gcc/gcc-3.2.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/gcc-3.2.2.ebuild,v 1.24 2004/02/23 00:20:14 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/gcc-3.2.2.ebuild,v 1.25 2004/03/25 08:12:54 mr_bones_ Exp $ IUSE="static nls bootstrap java build" @@ -98,7 +98,10 @@ else fi DEPEND="virtual/glibc - !hppa? ( mips? ( >=sys-devel/binutils-2.13.90.0.16 : >=sys-devel/binutils-2.13.90.0.18 ) ) + !hppa? ( + mips? ( >=sys-devel/binutils-2.13.90.0.16 ) + !mips? ( >=sys-devel/binutils-2.13.90.0.18 ) + ) hppa? ( >=sys-devel/binutils-2.13.90.0.16 ) >=sys-devel/gcc-config-1.3.1 !build? ( !arm? ( >=sys-libs/ncurses-5.2-r2 ) diff --git a/sys-devel/gcc/gcc-3.2.3-r2.ebuild b/sys-devel/gcc/gcc-3.2.3-r2.ebuild index 703a982400d7..6a048e41a8ba 100644 --- a/sys-devel/gcc/gcc-3.2.3-r2.ebuild +++ b/sys-devel/gcc/gcc-3.2.3-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/gcc-3.2.3-r2.ebuild,v 1.9 2004/03/02 15:29:32 iggy Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/gcc-3.2.3-r2.ebuild,v 1.10 2004/03/25 08:12:54 mr_bones_ Exp $ IUSE="static nls bootstrap java build" @@ -107,7 +107,8 @@ else fi DEPEND="virtual/glibc - mips? >=sys-devel/binutils-2.13.90.0.16 : >=sys-devel/binutils-2.13.90.0.18 + mips? ( >=sys-devel/binutils-2.13.90.0.16 ) + !mips? ( >=sys-devel/binutils-2.13.90.0.18 ) >=sys-devel/gcc-config-1.3.1 !build? ( >=sys-libs/ncurses-5.2-r2 nls? ( sys-devel/gettext ) )" diff --git a/sys-devel/gcc/gcc-3.2.3-r3.ebuild b/sys-devel/gcc/gcc-3.2.3-r3.ebuild index dcfe254d7a23..36fbee7c3a7e 100644 --- a/sys-devel/gcc/gcc-3.2.3-r3.ebuild +++ b/sys-devel/gcc/gcc-3.2.3-r3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/gcc-3.2.3-r3.ebuild,v 1.7 2004/03/02 15:29:32 iggy Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/gcc-3.2.3-r3.ebuild,v 1.8 2004/03/25 08:12:54 mr_bones_ Exp $ IUSE="static nls bootstrap java build" @@ -111,7 +111,8 @@ else fi DEPEND="!arm? ( >=sys-libs/glibc-2.3.2-r3 ) - mips? >=sys-devel/binutils-2.13.90.0.16 : >=sys-devel/binutils-2.13.90.0.18 + mips? ( >=sys-devel/binutils-2.13.90.0.16 ) + !mips? ( >=sys-devel/binutils-2.13.90.0.18 ) >=sys-devel/gcc-config-1.3.1 !build? ( !arm? ( >=sys-libs/ncurses-5.2-r2 ) nls? ( sys-devel/gettext ) )" diff --git a/sys-devel/gcc/gcc-3.2.3-r4.ebuild b/sys-devel/gcc/gcc-3.2.3-r4.ebuild index 8cc5262cc0fc..94030368882f 100644 --- a/sys-devel/gcc/gcc-3.2.3-r4.ebuild +++ b/sys-devel/gcc/gcc-3.2.3-r4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/gcc-3.2.3-r4.ebuild,v 1.4 2004/03/02 15:29:32 iggy Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/gcc-3.2.3-r4.ebuild,v 1.5 2004/03/25 08:12:54 mr_bones_ Exp $ IUSE="static nls bootstrap java build" @@ -111,7 +111,8 @@ else fi DEPEND="!arm? ( >=sys-libs/glibc-2.3.2-r3 ) - mips? >=sys-devel/binutils-2.13.90.0.16 : >=sys-devel/binutils-2.13.90.0.18 + mips? ( >=sys-devel/binutils-2.13.90.0.16 ) + !mips? ( >=sys-devel/binutils-2.13.90.0.18 ) >=sys-devel/gcc-config-1.3.1 !build? ( !arm? ( >=sys-libs/ncurses-5.2-r2 ) nls? ( sys-devel/gettext ) )" diff --git a/sys-devel/gcc/gcc-3.3.ebuild b/sys-devel/gcc/gcc-3.3.ebuild index 19e48c801ab1..462b85675e2d 100644 --- a/sys-devel/gcc/gcc-3.3.ebuild +++ b/sys-devel/gcc/gcc-3.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/gcc-3.3.ebuild,v 1.12 2004/01/08 19:53:24 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/gcc-3.3.ebuild,v 1.13 2004/03/25 08:12:54 mr_bones_ Exp $ IUSE="static nls bootstrap java build X" @@ -116,7 +116,8 @@ else fi DEPEND="virtual/glibc - mips? >=sys-devel/binutils-2.13.90.0.16 : >=sys-devel/binutils-2.13.90.0.18 + mips? ( >=sys-devel/binutils-2.13.90.0.16 ) + !mips? ( >=sys-devel/binutils-2.13.90.0.18 ) >=sys-devel/gcc-config-1.3.1 !build? ( >=sys-libs/ncurses-5.2-r2 nls? ( sys-devel/gettext ) )" |