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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C42EF158015 for ; Wed, 20 Dec 2023 09:10:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E3FD42BC031; Wed, 20 Dec 2023 09:10:06 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BFCDF2BC035 for ; Wed, 20 Dec 2023 09:10:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 809A23406C2 for ; Wed, 20 Dec 2023 09:10:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B4B3D14C6 for ; Wed, 20 Dec 2023 09:10:01 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1703004730.3cbe303f7d019363c62877a4d5fbab3af9d1e484.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-python/rpmautospec-core/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/rpmautospec-core/Manifest dev-python/rpmautospec-core/metadata.xml dev-python/rpmautospec-core/rpmautospec-core-0.1.2.ebuild X-VCS-Directories: dev-python/rpmautospec-core/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: 3cbe303f7d019363c62877a4d5fbab3af9d1e484 X-VCS-Branch: master Date: Wed, 20 Dec 2023 09:10:01 +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: c70d319f-5fa1-451e-9129-95bd3a988bec X-Archives-Hash: 0216a3be4fc611c4d45c5115073aa8ef commit: 3cbe303f7d019363c62877a4d5fbab3af9d1e484 Author: Takuya Wakazono gmail com> AuthorDate: Tue Dec 19 16:52:10 2023 +0000 Commit: David Roman gmail com> CommitDate: Tue Dec 19 16:52:10 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3cbe303f dev-python/rpmautospec-core: new package, add 0.1.2 Signed-off-by: Takuya Wakazono gmail.com> dev-python/rpmautospec-core/Manifest | 1 + dev-python/rpmautospec-core/metadata.xml | 12 ++++++++++ .../rpmautospec-core/rpmautospec-core-0.1.2.ebuild | 26 ++++++++++++++++++++++ 3 files changed, 39 insertions(+) diff --git a/dev-python/rpmautospec-core/Manifest b/dev-python/rpmautospec-core/Manifest new file mode 100644 index 0000000000..59d8ede7dc --- /dev/null +++ b/dev-python/rpmautospec-core/Manifest @@ -0,0 +1 @@ +DIST rpmautospec_core-0.1.2.tar.gz 6605 BLAKE2B eabe5ab6115234692fc5c628de22bf060ea1704f7866249a2a5ccdc868a39abb3cbddfac74df966971b2168dd808c161b6438d2cb1067c4e92377b0f8a8bac52 SHA512 adbc1c9b7749a6a3ae9fa615416c1083ef7c298fc3396c54231d170f7d113aacc3c1fb6cf3e4cb52ce42f2384cb4d95294bdff318facc9d9c62886a88fecb007 diff --git a/dev-python/rpmautospec-core/metadata.xml b/dev-python/rpmautospec-core/metadata.xml new file mode 100644 index 0000000000..ac03bc73df --- /dev/null +++ b/dev-python/rpmautospec-core/metadata.xml @@ -0,0 +1,12 @@ + + + + + pastalian46@gmail.com + Takuya Wakazono + + + fedora-infra/rpmautospec-core + rpmautospec-core + + diff --git a/dev-python/rpmautospec-core/rpmautospec-core-0.1.2.ebuild b/dev-python/rpmautospec-core/rpmautospec-core-0.1.2.ebuild new file mode 100644 index 0000000000..f7566921f0 --- /dev/null +++ b/dev-python/rpmautospec-core/rpmautospec-core-0.1.2.ebuild @@ -0,0 +1,26 @@ +# Copyright 2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=poetry +PYTHON_COMPAT=( python3_{11..12} ) + +inherit distutils-r1 pypi + +DESCRIPTION="Core functionality used by rpmautospec" +HOMEPAGE=" + https://github.com/fedora-infra/rpmautospec-core/ + https://pypi.org/project/rpmautospec-core/ +" + +SLOT="0" +LICENSE="MIT" +KEYWORDS="~amd64" + +distutils_enable_tests pytest + +python_test() { + # Disable pytest-cov + epytest -o addopts= +}