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 5629D138359 for ; Mon, 3 Aug 2020 19:31:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B311EE0B7D; Mon, 3 Aug 2020 19:30:59 +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 8C632E0B89 for ; Mon, 3 Aug 2020 19:30:59 +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 A748534F051 for ; Mon, 3 Aug 2020 19:30:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E51D1317 for ; Mon, 3 Aug 2020 19:30:51 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1596482532.6ed68deea863db94942da1fd487850bbe401b980.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/doins.py X-VCS-Directories: bin/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 6ed68deea863db94942da1fd487850bbe401b980 X-VCS-Branch: master Date: Mon, 3 Aug 2020 19:30:51 +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: 12b3ebce-f0cd-42c2-91c1-bb0e76e7d846 X-Archives-Hash: 1916fa89cbf4f7ea3413770cf9396848 commit: 6ed68deea863db94942da1fd487850bbe401b980 Author: Aaron Bauman gentoo org> AuthorDate: Mon Aug 3 19:05:56 2020 +0000 Commit: Zac Medico gentoo org> CommitDate: Mon Aug 3 19:22:12 2020 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=6ed68dee bin/doins.py: drop unused-import * Drop unused-import * Update copyright Signed-off-by: Aaron Bauman gentoo.org> Signed-off-by: Zac Medico gentoo.org> bin/doins.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/bin/doins.py b/bin/doins.py index 4929cb90a..5bbf92635 100644 --- a/bin/doins.py +++ b/bin/doins.py @@ -1,5 +1,5 @@ #!/usr/bin/python -b -# Copyright 2017 Gentoo Foundation +# Copyright 2017-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # # Copyright 2017 The Chromium OS Authors. All rights reserved. @@ -11,7 +11,6 @@ This script is designed to be executed by ebuild-helpers/doins. """ - from __future__ import print_function import argparse @@ -20,7 +19,6 @@ import grp import logging import os import pwd -import re import shlex import shutil import stat