From owner-svn-src-projects@FreeBSD.ORG Sat Dec 22 20:05:42 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DC61A990; Sat, 22 Dec 2012 20:05:42 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id C1DB98FC15; Sat, 22 Dec 2012 20:05:42 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBMK5g4w043224; Sat, 22 Dec 2012 20:05:42 GMT (envelope-from linimon@svn.freebsd.org) Received: (from linimon@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBMK5gom043223; Sat, 22 Dec 2012 20:05:42 GMT (envelope-from linimon@svn.freebsd.org) Message-Id: <201212222005.qBMK5gom043223@svn.freebsd.org> From: Mark Linimon Date: Sat, 22 Dec 2012 20:05:42 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r244597 - projects/portbuild/scripts X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Dec 2012 20:05:42 -0000 Author: linimon (doc,ports committer) Date: Sat Dec 22 20:05:42 2012 New Revision: 244597 URL: http://svnweb.freebsd.org/changeset/base/244597 Log: Revert the first change in 244314 for further testing. This needs to go away exactly when buildproxy goes away and not before. Modified: projects/portbuild/scripts/buildproxy Modified: projects/portbuild/scripts/buildproxy ============================================================================== --- projects/portbuild/scripts/buildproxy Sat Dec 22 19:16:00 2012 (r244596) +++ projects/portbuild/scripts/buildproxy Sat Dec 22 20:05:42 2012 (r244597) @@ -25,6 +25,11 @@ def validate(uid, arch): if uid == 0: return True + # old theory + if getuidbyname("ports-%s" % arch) == uid: + return True + + # new theory if getuidbyname(portbuild_uid) == uid: return True