From patchwork Fri May 1 00:36:53 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 3641 Return-Path: Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 797CA603F5 for ; Fri, 1 May 2020 02:36:59 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="PCbZtPxl"; dkim-atps=neutral Received: from pendragon.bb.dnainternet.fi (81-175-216-236.bb.dnainternet.fi [81.175.216.236]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 371F772C for ; Fri, 1 May 2020 02:36:58 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1588293419; bh=EvnIJJBLNeR7zkbVbOBCedWDKQhmQjf/VZDJiFq7oeg=; h=From:To:Subject:Date:From; b=PCbZtPxlwrvnNJZPgAMkel5QWP9PLOLmYKpcGfL5b6E6zVNKfKRUf2HSVOX3EYpYF YdBA9nVNcjOPihMLPaQixqU+x34AJhGhQiY0UKol8k5XaTeUPfSu8/DwvF0huoy3zE 2+AXXJrIG/WSDtXvvolANFUNdmDCCgLZDC9cPOng= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Date: Fri, 1 May 2020 03:36:53 +0300 Message-Id: <20200501003653.9217-1-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.25.3 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] libcamera: Add Python cache and compiled files to .gitignore X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 May 2020 00:36:59 -0000 To prepare for more widespread use of Python in libcamera, ignore Python cache and compiled files produced when importing modules directly from the source tree. Signed-off-by: Laurent Pinchart Reviewed-by: Niklas Söderlund --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index e00516aaa716..f989dee3bcb0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ +__pycache__/ build/ patches/ *.patch +*.pyc