Date: Wed, 26 Nov 2014 13:09:49 +0000 (UTC) From: Mathieu Arnold <mat@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-svnadmin@freebsd.org Subject: svn commit: r373449 - svnadmin/hooks Message-ID: <201411261309.sAQD9n3b038217@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: mat Date: Wed Nov 26 13:09:49 2014 New Revision: 373449 URL: https://svnweb.freebsd.org/changeset/ports/373449 QAT: https://qat.redports.org/buildarchive/r373449/ Log: Put all those hooks back on. Approved by: portmgr (implicit) Sponsored by: Absolight Modified: svnadmin/hooks/pre-commit Modified: svnadmin/hooks/pre-commit ============================================================================== --- svnadmin/hooks/pre-commit Wed Nov 26 13:08:24 2014 (r373448) +++ svnadmin/hooks/pre-commit Wed Nov 26 13:09:49 2014 (r373449) @@ -64,15 +64,15 @@ TXN="$2" #crash.sh || exit 1 # Check for "Approved by" requirements first -#approvecheck.pl "$REPO" "$TXN" || exit 1 +approvecheck.pl "$REPO" "$TXN" || exit 1 # Require that commits only touch valid paths. -#pathcheck.pl "$REPO" "$TXN" || exit 1 +pathcheck.pl "$REPO" "$TXN" || exit 1 # Safety belt size check. The seatbelt is 1MB. # People will hit this regularly. # Exclusion list is in svnadmin/conf/sizelimit.conf -#sizelimit.py "$REPO" "$TXN" 1024000 || exit 1 +sizelimit.py "$REPO" "$TXN" 1024000 || exit 1 # POLICY: mime-type must be unset, text/*, application/* or image/* @@ -84,34 +84,34 @@ TXN="$2" # POLICY: If a file has text/*, then it must have eol-style # POLICY: no svn:executable outside of Tools and svnadmin # POLICY: file replacement is not allowed -#verify.py "$REPO" -t "$TXN" || exit 1 +verify.py "$REPO" -t "$TXN" || exit 1 # check for forbidden file names -#deny-filenames.sh "$REPO" "$TXN" || exit 1 +deny-filenames.sh "$REPO" "$TXN" || exit 1 # check for misplaced mergeinfo -#mergeinfo.sh "$REPO" "$TXN" || exit 1 +mergeinfo.sh "$REPO" "$TXN" || exit 1 # check NO_STAGE in commits -#stage-only.sh "$REPO" "$TXN" || exit 1 +stage-only.sh "$REPO" "$TXN" || exit 1 # check commits to vulk.xml don't have other files -#vulnxml-unique.sh "$REPO" "$TXN" || exit 1 +vulnxml-unique.sh "$REPO" "$TXN" || exit 1 # check for filenames with invalid chars -#detect-filename.sh "$REPO" "$TXN" || exit 1 +detect-filename.sh "$REPO" "$TXN" || exit 1 # check for merge debris -#detect-merge-conflicts.sh "$REPO" "$TXN" || exit 1 +detect-merge-conflicts.sh "$REPO" "$TXN" || exit 1 # check for newline at end of file -#detect-nonewline-at-eof.sh "$REPO" "$TXN" || exit 1 +detect-nonewline-at-eof.sh "$REPO" "$TXN" || exit 1 # check for empty files and directories -#detect-empty.sh "$REPO" "$TXN" || exit 1 +detect-empty.sh "$REPO" "$TXN" || exit 1 # check for upper/lowercase filename conflicts on clients -#case-insensitive.py "$REPO" "$TXN" || exit 1 +case-insensitive.py "$REPO" "$TXN" || exit 1 # fix log message. log-police.py -t "$TXN" "$REPO" || exit 1
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201411261309.sAQD9n3b038217>