From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1271763-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 5527D1382C5 for <garchives@archives.gentoo.org>; Fri, 16 Apr 2021 15:35:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6536EE0828; Fri, 16 Apr 2021 15:35:27 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 4C4ABE0827 for <gentoo-commits@lists.gentoo.org>; Fri, 16 Apr 2021 15:35:27 +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 DE749340BC9 for <gentoo-commits@lists.gentoo.org>; Fri, 16 Apr 2021 15:35:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6039E64D for <gentoo-commits@lists.gentoo.org>; Fri, 16 Apr 2021 15:35:24 +0000 (UTC) From: "Marek Szuba" <marecki@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, "Marek Szuba" <marecki@gentoo.org> Message-ID: <1618587311.6b532307b6054af97c58df0cd5f81e42c706b0ce.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/identify/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/identify/Manifest dev-python/identify/identify-2.2.3.ebuild dev-python/identify/metadata.xml X-VCS-Directories: dev-python/identify/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: 6b532307b6054af97c58df0cd5f81e42c706b0ce X-VCS-Branch: master Date: Fri, 16 Apr 2021 15:35:24 +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: cda8d5b3-a893-4f20-a4f9-eb8e15551a78 X-Archives-Hash: 6094f4100c7711ceda0ef14e9c99c207 commit: 6b532307b6054af97c58df0cd5f81e42c706b0ce Author: Marek Szuba <marecki <AT> gentoo <DOT> org> AuthorDate: Fri Apr 16 13:40:55 2021 +0000 Commit: Marek Szuba <marecki <AT> gentoo <DOT> org> CommitDate: Fri Apr 16 15:35:11 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b532307 dev-python/identify: new package Dependency of pre-commit. Signed-off-by: Marek Szuba <marecki <AT> gentoo.org> dev-python/identify/Manifest | 1 + dev-python/identify/identify-2.2.3.ebuild | 21 +++++++++++++++++++++ dev-python/identify/metadata.xml | 12 ++++++++++++ 3 files changed, 34 insertions(+) diff --git a/dev-python/identify/Manifest b/dev-python/identify/Manifest new file mode 100644 index 00000000000..82666848bde --- /dev/null +++ b/dev-python/identify/Manifest @@ -0,0 +1 @@ +DIST identify-2.2.3.tar.gz 100962 BLAKE2B 0e56b7443f19e0956b72c428b2cf4c741b10cb38e6cad3efa6fa130d3ac1ec84e351d049c58bac9098b85cd32d64459f96e2cd3f13ee43b6cf7190c1894b5a88 SHA512 44bf3b845c9ef93cc539645765af63b037fc9e421f0a97c848946399de13c1d47df86efe63b0bb50fbd54a76912d3bcc7f7f972e7f77c491933d20243492a7f1 diff --git a/dev-python/identify/identify-2.2.3.ebuild b/dev-python/identify/identify-2.2.3.ebuild new file mode 100644 index 00000000000..302310afdfe --- /dev/null +++ b/dev-python/identify/identify-2.2.3.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{8..9} ) +DISTUTILS_USE_SETUPTOOLS=rdepend + +inherit distutils-r1 + +DESCRIPTION="File identification library for Python" +HOMEPAGE="https://github.com/pre-commit/identify" +SRC_URI="https://github.com/pre-commit/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND="dev-python/editdistance-s[${PYTHON_USEDEP}]" + +distutils_enable_tests pytest diff --git a/dev-python/identify/metadata.xml b/dev-python/identify/metadata.xml new file mode 100644 index 00000000000..aac3450e825 --- /dev/null +++ b/dev-python/identify/metadata.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>marecki@gentoo.org</email> + <name>Marek Szuba</name> + </maintainer> + <upstream> + <remote-id type="github">pre-commit/identify</remote-id> + <remote-id type="pypi">identify</remote-id> + </upstream> +</pkgmetadata>