Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/filebus/
Date: Tue, 01 Jun 2021 05:51:56
Message-Id: 1622526468.259fc4b16932e16760aba01554ca501060e7a632.zmedico@gentoo
1 commit: 259fc4b16932e16760aba01554ca501060e7a632
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jun 1 05:47:48 2021 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 1 05:47:48 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=259fc4b1
7
8 app-misc/filebus: Initial import
9
10 Package-Manager: Portage-3.0.19, Repoman-3.0.3
11 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
12
13 app-misc/filebus/Manifest | 1 +
14 app-misc/filebus/filebus-0.0.1.ebuild | 25 +++++++++++++++++++++++++
15 app-misc/filebus/metadata.xml | 11 +++++++++++
16 3 files changed, 37 insertions(+)
17
18 diff --git a/app-misc/filebus/Manifest b/app-misc/filebus/Manifest
19 new file mode 100644
20 index 00000000000..1aa0e6b6080
21 --- /dev/null
22 +++ b/app-misc/filebus/Manifest
23 @@ -0,0 +1 @@
24 +DIST filebus-0.0.1.tar.gz 6472 BLAKE2B 5c6a86e0bd7e879e64cef6b590401b7c5e6c093df65c9154aa20ee4f9f4a47d340730dda5c6139fcd34c7d6e393c94fc18c915de8fecbe6903be30513d396431 SHA512 26221db5e5d1e2f23aed5aa7522af46470ea828618e961333befb95c114eab216efd8c8d5fbebccfffaa316c5518a4c103c79a2379744a43010bd93f66cd7145
25
26 diff --git a/app-misc/filebus/filebus-0.0.1.ebuild b/app-misc/filebus/filebus-0.0.1.ebuild
27 new file mode 100644
28 index 00000000000..e92d77e8729
29 --- /dev/null
30 +++ b/app-misc/filebus/filebus-0.0.1.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=7
36 +PYTHON_COMPAT=( python3_{7,8,9} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Multicast communication channels based on regular files"
41 +HOMEPAGE="https://github.com/zmedico/filebus"
42 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 +
44 +LICENSE="Apache-2.0"
45 +KEYWORDS="~amd64"
46 +SLOT="0"
47 +IUSE="+inotify test"
48 +RESTRICT="!test? ( test )"
49 +RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
50 + dev-python/filelock[${PYTHON_USEDEP}]
51 + inotify? ( dev-python/watchdog[${PYTHON_USEDEP}] )"
52 +BDEPEND="${RDEPEND}"
53 +
54 +python_test() {
55 + esetup.py test || die "tests failed for ${EPYTHON}"
56 +}
57
58 diff --git a/app-misc/filebus/metadata.xml b/app-misc/filebus/metadata.xml
59 new file mode 100644
60 index 00000000000..e83dcf85167
61 --- /dev/null
62 +++ b/app-misc/filebus/metadata.xml
63 @@ -0,0 +1,11 @@
64 +<?xml version="1.0" encoding="UTF-8"?>
65 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
66 +<pkgmetadata>
67 + <upstream>
68 + <remote-id type="github">zmedico/filebus</remote-id>
69 + <remote-id type="pypi">filebus</remote-id>
70 + </upstream>
71 + <maintainer type="person">
72 + <email>zmedico@g.o</email>
73 + </maintainer>
74 +</pkgmetadata>