From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1034814-garchives=archives.gentoo.org@lists.gentoo.org> 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 C1AD0138334 for <garchives@archives.gentoo.org>; Sat, 7 Jul 2018 08:48:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 689BDE0991; Sat, 7 Jul 2018 08:48:33 +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-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 30096E0991 for <gentoo-commits@lists.gentoo.org>; Sat, 7 Jul 2018 08:48:32 +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 876BD335C81 for <gentoo-commits@lists.gentoo.org>; Sat, 7 Jul 2018 08:48:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 53A99354 for <gentoo-commits@lists.gentoo.org>; Sat, 7 Jul 2018 08:48:28 +0000 (UTC) From: "Michał Górny" <mgorny@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" <mgorny@gentoo.org> Message-ID: <1530953296.08b8740bec421709995f59b1167bd2add5efef93.mgorny@gentoo> Subject: [gentoo-commits] proj/qa-scripts:master commit in: / X-VCS-Repository: proj/qa-scripts X-VCS-Files: portcommit portdel portqa X-VCS-Directories: / X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 08b8740bec421709995f59b1167bd2add5efef93 X-VCS-Branch: master Date: Sat, 7 Jul 2018 08:48:28 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 7e639177-d739-44b2-97b4-c764dddb4cee X-Archives-Hash: b621f7334b65b5cc91223cfd7a8570a2 commit: 08b8740bec421709995f59b1167bd2add5efef93 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Sat Jul 7 08:48:16 2018 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Sat Jul 7 08:48:16 2018 +0000 URL: https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=08b8740b Remove obsolete port* scripts portcommit | 6 ------ portdel | 7 ------- portqa | 31 ------------------------------- 3 files changed, 44 deletions(-) diff --git a/portcommit b/portcommit deleted file mode 100755 index f7b201c..0000000 --- a/portcommit +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh -# Created by Tomáš Chvátal <scarabeus@gentoo.org> -# License WTFPL-2.0 - -echangelog $@ -repoman commit -m "$@" diff --git a/portdel b/portdel deleted file mode 100755 index bbfc497..0000000 --- a/portdel +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/bash -# Created by Tomáš Chvátal <scarabeus@gentoo.org> -# License WTFPL-2.0 - -[[ -z $1 ]] || cvs delete -f $@ > /dev/null -echangelog "rm old" > /dev/null -repoman commit -m "rm old" > /dev/null diff --git a/portqa b/portqa deleted file mode 100755 index 5bf48e2..0000000 --- a/portqa +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/bash -# Created by Tomáš Chvátal <scarabeus@gentoo.org> -# License WTFPL-2.0 - -[[ -z $1 ]] && exit 1 - -if [[ $1 == help || $1 == --help ]]; then - echo "Usage: $0 herd-or-maintainer-to-checkup" - exit 0 -fi - -if [[ $1 = *@* ]]; then - target="--maintainer=$1" -else - target="--herd=$1" -fi - -#-c pkgcore_checks.imlate \ -pushd "$(portageq get_repo_path / gentoo)" > /dev/null -package=$(pquery ${target} --repo=portdir --no-version | tr '\n' ' ') -pcheck -c pkgcore_checks.deprecated \ - -c pkgcore_checks.whitespace \ - -c pkgcore_checks.pkgdir_checks \ - -c pkgcore_checks.metadata_checks \ - -c pkgcore_checks.codingstyle \ - -c pkgcore_checks.visibility \ - -c pkgcore_checks.cleanup \ - ${package} \ - --repo=portdir \ - --disable-arches=mips,x86-fbsd,m68k,ppc-macos -popd > /dev/null