From owner-svn-src-user@freebsd.org Tue Jan 12 22:47:17 2016 Return-Path: Delivered-To: svn-src-user@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E2839A6D607 for ; Tue, 12 Jan 2016 22:47:17 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B78231D62; Tue, 12 Jan 2016 22:47:17 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u0CMlGri099803; Tue, 12 Jan 2016 22:47:16 GMT (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0CMlGZw099802; Tue, 12 Jan 2016 22:47:16 GMT (envelope-from glebius@FreeBSD.org) Message-Id: <201601122247.u0CMlGZw099802@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: glebius set sender to glebius@FreeBSD.org using -f From: Gleb Smirnoff Date: Tue, 12 Jan 2016 22:47:16 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r293785 - user/cperciva/freebsd-update-build/scripts X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Jan 2016 22:47:18 -0000 Author: glebius Date: Tue Jan 12 22:47:16 2016 New Revision: 293785 URL: https://svnweb.freebsd.org/changeset/base/293785 Log: Switch to perl regexps in applypatches(). We need to match +++ lines from diffs generated by different sources. At the security officer repo, there is already a script that has a good regexp to match that by des@. Take the regexp from there and adjust it a little bit. Modified: user/cperciva/freebsd-update-build/scripts/build.subr Modified: user/cperciva/freebsd-update-build/scripts/build.subr ============================================================================== --- user/cperciva/freebsd-update-build/scripts/build.subr Tue Jan 12 22:44:23 2016 (r293784) +++ user/cperciva/freebsd-update-build/scripts/build.subr Tue Jan 12 22:47:16 2016 (r293785) @@ -401,8 +401,8 @@ applypatches () { while read PATCH; do patch -p0 < ${PATCHDIR}/${PATCH} # Remove ".orig" files created by patch(1) and empty files - for file in $(sed -Ene \ - 's/^--- (.*)(\.orig$|[[:space:]]*)?/\1/p' < \ + for file in $(perl -ne \ + 'print("$1\n") if /^\+\+\+ (?:b\/|\.\/)?(\S+)(?:\s+[(0-9].*)?$/' < \ ${PATCHDIR}/${PATCH}); do echo ${file}.orig if [ ! -s ${file} ]; then