Gentoo Archives: gentoo-commits

From: Rick Farina <zerochaos@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/inotify/
Date: Tue, 26 Oct 2021 17:48:26
Message-Id: 1635270499.b29cdf3024a8de39f3dd86ad0b8a5bbf1a1ad32f.zerochaos@gentoo
1 commit: b29cdf3024a8de39f3dd86ad0b8a5bbf1a1ad32f
2 Author: Rick Farina <zerochaos <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 26 01:20:11 2021 +0000
4 Commit: Rick Farina <zerochaos <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 26 17:48:19 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b29cdf30
7
8 dev-python/inotify: initial import
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Rick Farina <zerochaos <AT> gentoo.org>
12
13 dev-python/inotify/Manifest | 1 +
14 dev-python/inotify/inotify-0.2.10.ebuild | 25 +++++++++++++++++++++++++
15 dev-python/inotify/metadata.xml | 11 +++++++++++
16 3 files changed, 37 insertions(+)
17
18 diff --git a/dev-python/inotify/Manifest b/dev-python/inotify/Manifest
19 new file mode 100644
20 index 00000000000..462a220ab3a
21 --- /dev/null
22 +++ b/dev-python/inotify/Manifest
23 @@ -0,0 +1 @@
24 +DIST inotify-0.2.10.tar.gz 18774 BLAKE2B 51b35541d70d8855b7b5a2d52abf8d1667334a02cb1623d30f7f74ca8a15dc5f70728b465dae91cca687a94b485eba1caf8e0735387cbb3ff0d15ad95d97f693 SHA512 1c8e78e1787f30d8dd0fae73b02f03c0b89f7feab3ab122bff56d7e7bcb2f752da6f167731b2d60b179a696d8ed935b8071587c873d9f8618869f6615f316d5f
25
26 diff --git a/dev-python/inotify/inotify-0.2.10.ebuild b/dev-python/inotify/inotify-0.2.10.ebuild
27 new file mode 100644
28 index 00000000000..68db6e6b324
29 --- /dev/null
30 +++ b/dev-python/inotify/inotify-0.2.10.ebuild
31 @@ -0,0 +1,25 @@
32 +# Copyright 2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +PYTHON_COMPAT=( python3_9 )
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="an efficient and elegant inotify"
41 +HOMEPAGE="https://github.com/dsoprea/PyInotify"
42 +SRC_URI="https://github.com/dsoprea/PyInotify/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="GPL-2+"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +
48 +DEPEND=""
49 +RDEPEND="${DEPEND}"
50 +BDEPEND=""
51 +
52 +S="${WORKDIR}/PyInotify-${PV}"
53 +
54 +#tests don't work and I don't care
55 +RESTRICT="test"
56 +distutils_enable_tests pytest
57
58 diff --git a/dev-python/inotify/metadata.xml b/dev-python/inotify/metadata.xml
59 new file mode 100644
60 index 00000000000..922ce76ec7b
61 --- /dev/null
62 +++ b/dev-python/inotify/metadata.xml
63 @@ -0,0 +1,11 @@
64 +<?xml version="1.0" encoding="UTF-8"?>
65 +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
66 +<pkgmetadata>
67 + <maintainer type="project">
68 + <email>python@g.o</email>
69 + </maintainer>
70 + <maintainer type="person">
71 + <email>zerochaos@g.o</email>
72 + <name>Rick Farina (Zero_Chaos)</name>
73 + </maintainer>
74 +</pkgmetadata>