Gentoo Archives: gentoo-commits

From: gerion <gerion.entrup@×××××.de>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/user/gerislay:master commit in: dev-python/lifxlan/
Date: Thu, 09 Jan 2020 19:57:14
Message-Id: 1578599800.2e7b97b95c53f45b5792c1eb28a22cc76927f854.gerion@gentoo
1 commit: 2e7b97b95c53f45b5792c1eb28a22cc76927f854
2 Author: Gerion Entrup <gerion.entrup <AT> flump <DOT> de>
3 AuthorDate: Thu Jan 9 19:56:21 2020 +0000
4 Commit: gerion <gerion.entrup <AT> flump <DOT> de>
5 CommitDate: Thu Jan 9 19:56:40 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/user/gerislay.git/commit/?id=2e7b97b9
7
8 dev-python/lifxlan: add 9999 package
9
10 Signed-off-by: Gerion Entrup <gerion.entrup <AT> flump.de>
11
12 dev-python/lifxlan/Manifest | 1 +
13 dev-python/lifxlan/lifxlan-9999.ebuild | 24 ++++++++++++++++++++++++
14 2 files changed, 25 insertions(+)
15
16 diff --git a/dev-python/lifxlan/Manifest b/dev-python/lifxlan/Manifest
17 new file mode 100644
18 index 0000000..2713d95
19 --- /dev/null
20 +++ b/dev-python/lifxlan/Manifest
21 @@ -0,0 +1 @@
22 +EBUILD lifxlan-9999.ebuild 551 BLAKE2B 660992953d61dd78a218a4ad5cebe11f096ea5c8b86a05a8cdab1a091c0ce87bfdce41e2311aff838e73bc06c110809c253209dc5654e33f7cd5e614480e372e SHA512 43fa65174ca0ca725fbef39e5f88fbb3da99e558c3540bfce72a82067b44ca8df76f303b2427da6cb868bdc05ca1b271493e0c40a1f3fdd401ceb65dba24eb78
23
24 diff --git a/dev-python/lifxlan/lifxlan-9999.ebuild b/dev-python/lifxlan/lifxlan-9999.ebuild
25 new file mode 100644
26 index 0000000..1c431c9
27 --- /dev/null
28 +++ b/dev-python/lifxlan/lifxlan-9999.ebuild
29 @@ -0,0 +1,24 @@
30 +# Copyright 2020 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +PYTHON_COMPAT=( python2_7 python3_{6,7,8} )
36 +inherit distutils-r1 git-r3
37 +
38 +DESCRIPTION="Python library for accessing LIFX devices using the official LIFX LAN protocol."
39 +HOMEPAGE="https://github.com/mclarkk/lifxlan"
40 +EGIT_REPO_URI="https://github.com/mclarkk/lifxlan.git"
41 +
42 +LICENSE="MIT"
43 +SLOT="0"
44 +IUSE=""
45 +
46 +DEPEND="
47 + dev-python/bitstring[${PYTHON_USEDEP}]
48 + dev-python/netifaces[${PYTHON_USEDEP}]
49 +"
50 +RDEPEND="${DEPEND}"
51 +BDEPEND=""
52 +
53 +DOCS=( README.md )