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 849A413835A for ; Fri, 19 Feb 2021 10:20:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9CD7DE0D08; Fri, 19 Feb 2021 10:20:07 +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 855D8E0D08 for ; Fri, 19 Feb 2021 10:20:07 +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 5E36B340DAE for ; Fri, 19 Feb 2021 10:20:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 540854EE for ; Fri, 19 Feb 2021 10:20:04 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1613673751.94d33fa2343d2b33f5199e0f54898c99cf7ad8de.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: scripts/ X-VCS-Repository: repo/proj/guru X-VCS-Files: scripts/check-duplicates.sh X-VCS-Directories: scripts/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 94d33fa2343d2b33f5199e0f54898c99cf7ad8de X-VCS-Branch: master Date: Fri, 19 Feb 2021 10:20: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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c34e88bc-4502-4291-a347-e9479c28dd80 X-Archives-Hash: 092064325c17e5e6e5c68ad368b52234 commit: 94d33fa2343d2b33f5199e0f54898c99cf7ad8de Author: Andrew Ammerlaan riseup net> AuthorDate: Thu Feb 18 18:41:54 2021 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Thu Feb 18 18:42:31 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=94d33fa2 scripts/check-duplicates.sh: skip categories metadata.xml Signed-off-by: Andrew Ammerlaan riseup.net> scripts/check-duplicates.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/check-duplicates.sh b/scripts/check-duplicates.sh index 85af7839..8c6743bb 100755 --- a/scripts/check-duplicates.sh +++ b/scripts/check-duplicates.sh @@ -9,12 +9,12 @@ GENTOO_DIR="/var/db/repos/gentoo" GENTOO_PACKAGES=( $(find ${GENTOO_DIR} -mindepth 2 -maxdepth 2 -printf "%P\n" \ - | sort | grep -Ev "^(.git|.github|metadata|profiles|scripts)/" + | sort | grep -Ev "^(.git|.github|metadata|profiles|scripts)/|metadata.xml" ) ) REPO_PACKAGES=( $(find . -mindepth 2 -maxdepth 2 -printf "%P\n" \ - | sort | grep -Ev "^(.git|.github|metadata|profiles|scripts)/" + | sort | grep -Ev "^(.git|.github|metadata|profiles|scripts)/|metadata.xml" ) ) 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 569671382C5 for ; Thu, 18 Feb 2021 18:42:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7FFECE08BF; Thu, 18 Feb 2021 18:42:37 +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 6190FE08BF for ; Thu, 18 Feb 2021 18:42:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 49256340CCE for ; Thu, 18 Feb 2021 18:42:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CBCF947 for ; Thu, 18 Feb 2021 18:42:34 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1613673751.94d33fa2343d2b33f5199e0f54898c99cf7ad8de.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: scripts/ X-VCS-Repository: repo/proj/guru X-VCS-Files: scripts/check-duplicates.sh X-VCS-Directories: scripts/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 94d33fa2343d2b33f5199e0f54898c99cf7ad8de X-VCS-Branch: dev Date: Thu, 18 Feb 2021 18:42:34 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d6df675a-28d5-40d4-b86d-d223b4748d83 X-Archives-Hash: 55056b76de37befc9c52d5fd48ce2d9b Message-ID: <20210218184234.laVgrei2adIfX6_FZxV1Pg9NNHyKM2kjelG0IN4FlAE@z> commit: 94d33fa2343d2b33f5199e0f54898c99cf7ad8de Author: Andrew Ammerlaan riseup net> AuthorDate: Thu Feb 18 18:41:54 2021 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Thu Feb 18 18:42:31 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=94d33fa2 scripts/check-duplicates.sh: skip categories metadata.xml Signed-off-by: Andrew Ammerlaan riseup.net> scripts/check-duplicates.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/check-duplicates.sh b/scripts/check-duplicates.sh index 85af7839..8c6743bb 100755 --- a/scripts/check-duplicates.sh +++ b/scripts/check-duplicates.sh @@ -9,12 +9,12 @@ GENTOO_DIR="/var/db/repos/gentoo" GENTOO_PACKAGES=( $(find ${GENTOO_DIR} -mindepth 2 -maxdepth 2 -printf "%P\n" \ - | sort | grep -Ev "^(.git|.github|metadata|profiles|scripts)/" + | sort | grep -Ev "^(.git|.github|metadata|profiles|scripts)/|metadata.xml" ) ) REPO_PACKAGES=( $(find . -mindepth 2 -maxdepth 2 -printf "%P\n" \ - | sort | grep -Ev "^(.git|.github|metadata|profiles|scripts)/" + | sort | grep -Ev "^(.git|.github|metadata|profiles|scripts)/|metadata.xml" ) )