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 88925139085 for ; Sun, 8 Jan 2017 15:33:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BAF47E0C41; Sun, 8 Jan 2017 15:33:07 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 9A0F1E0C41 for ; Sun, 8 Jan 2017 15:33:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 81C5F340F43 for ; Sun, 8 Jan 2017 15:33:06 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2DDFC261B for ; Sun, 8 Jan 2017 15:33:04 +0000 (UTC) From: "Magnus Granberg" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Magnus Granberg" Message-ID: <1483889569.9ea28d6fc2bc00eaf64739cf6739ff52bbfe1056.zorry@gentoo> Subject: [gentoo-commits] proj/tinderbox-cluster:master commit in: pym/tbc/ X-VCS-Repository: proj/tinderbox-cluster X-VCS-Files: pym/tbc/sync.py X-VCS-Directories: pym/tbc/ X-VCS-Committer: zorry X-VCS-Committer-Name: Magnus Granberg X-VCS-Revision: 9ea28d6fc2bc00eaf64739cf6739ff52bbfe1056 X-VCS-Branch: master Date: Sun, 8 Jan 2017 15:33:04 +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: 51214fca-8832-488b-8255-5ac456dcdce2 X-Archives-Hash: 6e5b0db5df91f61715a337f17fd7de93 commit: 9ea28d6fc2bc00eaf64739cf6739ff52bbfe1056 Author: Magnus Granberg gentoo org> AuthorDate: Sun Jan 8 15:32:49 2017 +0000 Commit: Magnus Granberg gentoo org> CommitDate: Sun Jan 8 15:32:49 2017 +0000 URL: https://gitweb.gentoo.org/proj/tinderbox-cluster.git/commit/?id=9ea28d6f add header.txt to ignore files pym/tbc/sync.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pym/tbc/sync.py b/pym/tbc/sync.py index a93b84f..8488c50 100644 --- a/pym/tbc/sync.py +++ b/pym/tbc/sync.py @@ -72,7 +72,7 @@ def git_sync_main(session): # check git diffs witch get updated and pass that to a dict # fetch and merge the repo repo_cp_dict = {} - search_list = [ '^metadata', '^eclass', '^licenses', '^profiles', '^scripts', '^skel.', ] + search_list = [ '^metadata', '^eclass', '^licenses', '^profiles', '^scripts', '^skel.', '^header.txt'] for repo_dir in git_repos_list(myportdb): reponame = myportdb.getRepositoryName(repo_dir) repo = git.Repo(repo_dir)