From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id BB1CB13800E for ; Sun, 29 Jul 2012 05:38:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D5FC0E02F0; Sun, 29 Jul 2012 05:38:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 8D010E02F0 for ; Sun, 29 Jul 2012 05:38:44 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 880CC1B4015 for ; Sun, 29 Jul 2012 05:38:43 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 765) id 32A5B2004B; Sun, 29 Jul 2012 05:38:42 +0000 (UTC) From: "Akinori Hattori (hattya)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, hattya@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog subversion.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: ChangeLog subversion.eclass X-VCS-Directories: eclass X-VCS-Committer: hattya X-VCS-Committer-Name: Akinori Hattori Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20120729053842.32A5B2004B@flycatcher.gentoo.org> Date: Sun, 29 Jul 2012 05:38:42 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: f0713733-0c09-4537-ab52-2b7365e09a99 X-Archives-Hash: 7c906dab9acb38176b8de5919b84e7ec hattya 12/07/29 05:38:42 Modified: ChangeLog subversion.eclass Log: replace built_with_use by USE deps wrt bug #242100 Revision Changes Path 1.360 eclass/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.360&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.360&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.359&r2=1.360 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v retrieving revision 1.359 retrieving revision 1.360 diff -u -r1.359 -r1.360 --- ChangeLog 29 Jul 2012 04:26:10 -0000 1.359 +++ ChangeLog 29 Jul 2012 05:38:42 -0000 1.360 @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.359 2012/07/29 04:26:10 hattya Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.360 2012/07/29 05:38:42 hattya Exp $ + + 29 Jul 2012; Akinori Hattori subversion.eclass: + replace built_with_use by USE deps wrt bug #242100 29 Jul 2012; Akinori Hattori subversion.eclass: remove obsolete workaround (ESVN_DISABLE_DEPENDENCIES) 1.82 eclass/subversion.eclass file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/subversion.eclass?rev=1.82&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/subversion.eclass?rev=1.82&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/subversion.eclass?r1=1.81&r2=1.82 Index: subversion.eclass =================================================================== RCS file: /var/cvsroot/gentoo-x86/eclass/subversion.eclass,v retrieving revision 1.81 retrieving revision 1.82 diff -u -r1.81 -r1.82 --- subversion.eclass 29 Jul 2012 04:26:10 -0000 1.81 +++ subversion.eclass 29 Jul 2012 05:38:42 -0000 1.82 @@ -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/eclass/subversion.eclass,v 1.81 2012/07/29 04:26:10 hattya Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/subversion.eclass,v 1.82 2012/07/29 05:38:42 hattya Exp $ # @ECLASS: subversion.eclass # @MAINTAINER: @@ -19,14 +19,15 @@ case "${EAPI:-0}" in 0|1) EXPORT_FUNCTIONS src_unpack pkg_preinst + DEPEND="dev-vcs/subversion" ;; *) EXPORT_FUNCTIONS src_unpack src_prepare pkg_preinst + DEPEND="|| ( dev-vcs/subversion[webdav-neon] dev-vcs/subversion[webdav-serf] )" ;; esac -DEPEND="dev-vcs/subversion - net-misc/rsync" +DEPEND+=" net-misc/rsync" # @ECLASS-VARIABLE: ESVN_STORE_DIR # @DESCRIPTION: @@ -191,14 +192,6 @@ local protocol="${repo_uri%%:*}" case "${protocol}" in http|https) - if ! built_with_use -o dev-vcs/subversion webdav-neon webdav-serf; then - echo - eerror "In order to emerge this package, you need to" - eerror "reinstall Subversion with support for WebDAV." - eerror "Subversion requires either Neon or Serf to support WebDAV." - echo - die "${ESVN}: reinstall Subversion with support for WebDAV." - fi ;; svn|svn+ssh) ;;