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 4AC5A158094 for ; Sat, 8 Oct 2022 10:38:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5B106E09E8; Sat, 8 Oct 2022 10:38:37 +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 2FC70E09E8 for ; Sat, 8 Oct 2022 10:38:37 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2C940340E04 for ; Sat, 8 Oct 2022 10:38:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 616B85F8 for ; Sat, 8 Oct 2022 10:38:34 +0000 (UTC) From: "Pascal Jäger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pascal Jäger" Message-ID: <1665223771.7d5fb486d4afa64b633decd45a16beea8126613e.pascal.jaeger@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/material-color-utilities/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/material-color-utilities/Manifest dev-python/material-color-utilities/material-color-utilities-0.1.5.ebuild dev-python/material-color-utilities/material-color-utilities-9999.ebuild dev-python/material-color-utilities/metadata.xml X-VCS-Directories: dev-python/material-color-utilities/ X-VCS-Committer: pascal.jaeger X-VCS-Committer-Name: Pascal Jäger X-VCS-Revision: 7d5fb486d4afa64b633decd45a16beea8126613e X-VCS-Branch: dev Date: Sat, 8 Oct 2022 10:38:34 +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: 65425035-55f5-4082-8808-e0d8e27faebe X-Archives-Hash: c4cacfefe3be7f5355c738817bde3abe commit: 7d5fb486d4afa64b633decd45a16beea8126613e Author: Pascal Jäger leimstift de> AuthorDate: Sat Oct 8 10:09:31 2022 +0000 Commit: Pascal Jäger leimstift de> CommitDate: Sat Oct 8 10:09:31 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7d5fb486 dev-python/material-color-utilities: new package, v 0.1.5 & live ebuild Signed-off-by: Pascal Jäger leimstift.de> dev-python/material-color-utilities/Manifest | 1 + .../material-color-utilities-0.1.5.ebuild | 23 ++++++++++++++++++++++ .../material-color-utilities-9999.ebuild | 21 ++++++++++++++++++++ dev-python/material-color-utilities/metadata.xml | 8 ++++++++ 4 files changed, 53 insertions(+) diff --git a/dev-python/material-color-utilities/Manifest b/dev-python/material-color-utilities/Manifest new file mode 100644 index 000000000..5a202bca6 --- /dev/null +++ b/dev-python/material-color-utilities/Manifest @@ -0,0 +1 @@ +DIST material-color-utilities-python-0.1.5.tar.gz 25702 BLAKE2B cf444831fec962caae3a1871b8331dcdd055f186754631185140842e49e1dc5526c5aedc021d28cd5e192e6f593774abce34e4a2853049e9ded2cf3ca9b79e3f SHA512 f3987da2723f9bc0a383d544868bd48b79c815c1ef3b601cf7daf711ae66ba2e20c38d272fff34b8fef724d202cdb71431d885d0fc86cf6b459a8735cd0751a4 diff --git a/dev-python/material-color-utilities/material-color-utilities-0.1.5.ebuild b/dev-python/material-color-utilities/material-color-utilities-0.1.5.ebuild new file mode 100644 index 000000000..b29eb06e5 --- /dev/null +++ b/dev-python/material-color-utilities/material-color-utilities-0.1.5.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..11} ) +DISTUTILS_USE_PEP517=poetry +inherit distutils-r1 + +DESCRIPTION="Python port of material-color-utilities used for Material You colors" +HOMEPAGE="https://python-telegram-bot.org https://github.com/python-telegram-bot/python-telegram-bot" +SRC_URI="https://files.pythonhosted.org/packages/source/${PN::1}/${PN}-python/${PN}-python-${PV}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +S=${WORKDIR}/${PN}-python-${PV} +BDEPEND=" + ${PYTHON_DEPS} + dev-python/poetry-core +" diff --git a/dev-python/material-color-utilities/material-color-utilities-9999.ebuild b/dev-python/material-color-utilities/material-color-utilities-9999.ebuild new file mode 100644 index 000000000..4ed22ecc3 --- /dev/null +++ b/dev-python/material-color-utilities/material-color-utilities-9999.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..11} ) +DISTUTILS_USE_PEP517=poetry +inherit distutils-r1 git-r3 + +DESCRIPTION="Python port of material-color-utilities used for Material You colors" +HOMEPAGE="https://python-telegram-bot.org https://github.com/python-telegram-bot/python-telegram-bot" +EGIT_REPO_URI="https://github.com/avanishsubbiah/material-color-utilities-python" + +LICENSE="Apache-2.0" +SLOT="0" +IUSE="" + +BDEPEND=" + ${PYTHON_DEPS} + dev-python/poetry-core +" diff --git a/dev-python/material-color-utilities/metadata.xml b/dev-python/material-color-utilities/metadata.xml new file mode 100644 index 000000000..3771874aa --- /dev/null +++ b/dev-python/material-color-utilities/metadata.xml @@ -0,0 +1,8 @@ + + + + + pascal.jaeger@leimstift.de + Pascal Jaeger + +