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 95332139696 for ; Sat, 15 Jul 2017 02:29:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EB6511FC00F; Sat, 15 Jul 2017 02:29:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C0C611FC00F for ; Sat, 15 Jul 2017 02:29:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6E3E13418D9 for ; Sat, 15 Jul 2017 02:29:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 11B8D7489 for ; Sat, 15 Jul 2017 02:29:30 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1500085543.18a8f9d992bb108e4456d7797f2872884e3dc160.dolsen@gentoo> Subject: [gentoo-commits] proj/portage:repoman commit in: repoman/pym/repoman/modules/scan/ebuild/ X-VCS-Repository: proj/portage X-VCS-Files: repoman/pym/repoman/modules/scan/ebuild/errors.py X-VCS-Directories: repoman/pym/repoman/modules/scan/ebuild/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 18a8f9d992bb108e4456d7797f2872884e3dc160 X-VCS-Branch: repoman Date: Sat, 15 Jul 2017 02:29:30 +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: 5c41ffe5-49c8-4df1-80cc-8eb537b61b02 X-Archives-Hash: 3195d246806291d0e83b6dd8b05e6113 commit: 18a8f9d992bb108e4456d7797f2872884e3dc160 Author: Brian Dolbec gentoo org> AuthorDate: Sat Jul 15 00:04:32 2017 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Sat Jul 15 02:25:43 2017 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=18a8f9d9 repoman: Move errors data to repo metadata/repoman/linechecks.yaml repoman/pym/repoman/modules/scan/ebuild/errors.py | 53 ----------------------- 1 file changed, 53 deletions(-) diff --git a/repoman/pym/repoman/modules/scan/ebuild/errors.py b/repoman/pym/repoman/modules/scan/ebuild/errors.py deleted file mode 100644 index 22547f4d5..000000000 --- a/repoman/pym/repoman/modules/scan/ebuild/errors.py +++ /dev/null @@ -1,53 +0,0 @@ -# -*- coding:utf-8 -*- -# repoman: Error Messages -# Copyright 2007-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -from __future__ import unicode_literals - -COPYRIGHT_ERROR = ( - 'Invalid Gentoo Copyright on line: %d') -LICENSE_ERROR = ( - 'Invalid Gentoo/GPL License on line: %d') -ID_HEADER_ERROR = ( - 'Stale CVS header on line: %d') -NO_BLANK_LINE_ERROR = ( - 'Non-blank line after header on line: %d') -LEADING_SPACES_ERROR = ( - 'Ebuild contains leading spaces on line: %d') -TRAILING_WHITESPACE_ERROR = ( - 'Trailing whitespace error on line: %d') -READONLY_ASSIGNMENT_ERROR = ( - 'Ebuild contains assignment to read-only variable on line: %d') -MISSING_QUOTES_ERROR = ( - 'Unquoted Variable on line: %d') -NESTED_DIE_ERROR = ( - 'Ebuild calls die in a subshell on line: %d') -PATCHES_ERROR = ( - 'PATCHES is not a bash array on line: %d') -REDUNDANT_CD_S_ERROR = ( - 'Ebuild has redundant cd ${S} statement on line: %d') -EMAKE_PARALLEL_DISABLED = ( - 'Upstream parallel compilation bug (ebuild calls emake -j1 on line: %d)') -EMAKE_PARALLEL_DISABLED_VIA_MAKEOPTS = ( - 'Upstream parallel compilation bug (MAKEOPTS=-j1 on line: %d)') -DEPRECATED_BINDNOW_FLAGS = ( - 'Deprecated bindnow-flags call on line: %d') -EAPI_DEFINED_AFTER_INHERIT = ( - 'EAPI defined after inherit on line: %d') -NO_AS_NEEDED = ( - 'Upstream asneeded linking bug (no-as-needed on line: %d)') -PRESERVE_OLD_LIB = ( - 'Ebuild calls deprecated preserve_old_lib on line: %d') -BUILT_WITH_USE = ( - 'built_with_use on line: %d') -NO_OFFSET_WITH_HELPERS = ( - "Helper function is used with D, ROOT, ED, EROOT or EPREFIX on line :%d") -SANDBOX_ADDPREDICT = ( - 'Ebuild calls addpredict on line: %d') -USEQ_ERROR = ( - 'Ebuild calls deprecated useq function on line: %d') -HASQ_ERROR = ( - 'Ebuild calls deprecated hasq function on line: %d') -URI_HTTPS = ( - 'Ebuild uses http:// but should use https:// on line: %d')