From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6F5D51395E2 for ; Tue, 22 Nov 2016 04:17:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 12716E0C1E; Tue, 22 Nov 2016 04:17:31 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EBC50E0C1E for ; Tue, 22 Nov 2016 04:17:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0EA343411FA for ; Tue, 22 Nov 2016 04:17:29 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CC11448B for ; Tue, 22 Nov 2016 04:17:24 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1479788234.22417b13f9a19ec1172bac1dcb2d9a0916416c29.robbat2@gentoo> Subject: [gentoo-commits] proj/rbot-gentoo:master commit in: / X-VCS-Repository: proj/rbot-gentoo X-VCS-Files: gentoo-data.rb X-VCS-Directories: / X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: 22417b13f9a19ec1172bac1dcb2d9a0916416c29 X-VCS-Branch: master Date: Tue, 22 Nov 2016 04:17:24 +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: 53794be4-97c9-4c7c-bfe5-c2b92fd5ef9e X-Archives-Hash: fe30e229b418a807c85dbf4aac973346 commit: 22417b13f9a19ec1172bac1dcb2d9a0916416c29 Author: Robin H. Johnson gentoo org> AuthorDate: Tue Nov 22 04:17:14 2016 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Tue Nov 22 04:17:14 2016 +0000 URL: https://gitweb.gentoo.org/proj/rbot-gentoo.git/commit/?id=22417b13 bug#423207: support devs with periods in nick. Signed-off-by: Robin H. Johnson gentoo.org> gentoo-data.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gentoo-data.rb b/gentoo-data.rb index 57cf6e6..f536e44 100644 --- a/gentoo-data.rb +++ b/gentoo-data.rb @@ -400,7 +400,7 @@ plugin.default_auth( 'modify', false ) plugin.default_auth( 'view', true ) REGEX_CP = /^(?:[-[:alnum:]]+\/)?[-+_[:alnum:]]+$/ -REGEX_DEV = /^[-_[:alnum:]]+$/ +REGEX_DEV = /^[-._[:alnum:]]+$/ REGEX_PROJECT = /^[-_@.[:alnum:]]+$/ REGEX_GLSA = /^[-1234567890]+$/