From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1253746-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 BBC451382C5 for <garchives@archives.gentoo.org>; Sun, 21 Feb 2021 22:34:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D68EAE0900; Sun, 21 Feb 2021 22:34:42 +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 BF703E0900 for <gentoo-commits@lists.gentoo.org>; Sun, 21 Feb 2021 22:34:42 +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 ABFF1340FAF for <gentoo-commits@lists.gentoo.org>; Sun, 21 Feb 2021 22:34:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4BA504E9 for <gentoo-commits@lists.gentoo.org>; Sun, 21 Feb 2021 22:34:40 +0000 (UTC) From: "William Hubbs" <williamh@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, "William Hubbs" <williamh@gentoo.org> Message-ID: <1613946860.c178f87feae5f16e9113ae88a8ae85f64f8fe741.williamh@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyhcl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyhcl/metadata.xml dev-python/pyhcl/pyhcl-0.4.4.ebuild X-VCS-Directories: dev-python/pyhcl/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: c178f87feae5f16e9113ae88a8ae85f64f8fe741 X-VCS-Branch: master Date: Sun, 21 Feb 2021 22:34:40 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 2cb88028-8e05-413c-8e0e-e5de41e46c03 X-Archives-Hash: 62eb85901c2da2cb72f01e98d59c5462 commit: c178f87feae5f16e9113ae88a8ae85f64f8fe741 Author: William Hubbs <williamh <AT> gentoo <DOT> org> AuthorDate: Sun Feb 21 21:56:58 2021 +0000 Commit: William Hubbs <williamh <AT> gentoo <DOT> org> CommitDate: Sun Feb 21 22:34:20 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c178f87f dev-python/pyhcl: several fixes - add python 3.9 - fix indentation - allow allarches stabilization Signed-off-by: William Hubbs <williamh <AT> gentoo.org> dev-python/pyhcl/metadata.xml | 17 +++++++++-------- dev-python/pyhcl/pyhcl-0.4.4.ebuild | 2 +- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/dev-python/pyhcl/metadata.xml b/dev-python/pyhcl/metadata.xml index 409cc48acd7..aeca96839a4 100644 --- a/dev-python/pyhcl/metadata.xml +++ b/dev-python/pyhcl/metadata.xml @@ -1,12 +1,13 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> -<maintainer type="person"> - <email>williamh@gentoo.org</email> - <name>William Hubbs</name> -</maintainer> -<maintainer type="person"> - <email>chutzpah@gentoo.org</email> - <name>Patrick McLean</name> -</maintainer> + <maintainer type="person"> + <email>williamh@gentoo.org</email> + <name>William Hubbs</name> + </maintainer> + <maintainer type="person"> + <email>chutzpah@gentoo.org</email> + <name>Patrick McLean</name> + </maintainer> + <stabilize-allarches/> </pkgmetadata> diff --git a/dev-python/pyhcl/pyhcl-0.4.4.ebuild b/dev-python/pyhcl/pyhcl-0.4.4.ebuild index 3930cbe915e..f3342b15ce5 100644 --- a/dev-python/pyhcl/pyhcl-0.4.4.ebuild +++ b/dev-python/pyhcl/pyhcl-0.4.4.ebuild @@ -6,7 +6,7 @@ EAPI=7 # tag: # git describe --tags --long LONG_VERSION=0.4.4-0-g314cd32 -PYTHON_COMPAT=( python3_8 ) +PYTHON_COMPAT=( python3_8 python3_9 ) inherit distutils-r1 DESCRIPTION="HCL configuration parser for python"