Gentoo Archives: gentoo-commits

From: Horea Christian <horea.christ@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: dev-python/grabbit/
Date: Wed, 23 May 2018 00:25:07
Message-Id: 1527034962.e17cf9a4deb90f442de5ab60d0fff1c5c3b31cf7.chymera@gentoo
1 commit: e17cf9a4deb90f442de5ab60d0fff1c5c3b31cf7
2 Author: Horea Christian <horea.christ <AT> yandex <DOT> com>
3 AuthorDate: Wed May 23 00:22:42 2018 +0000
4 Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
5 CommitDate: Wed May 23 00:22:42 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=e17cf9a4
7
8 dev-python/grabbit: new package (pybids dependency)
9
10 Package-Manager: Portage-2.3.38, Repoman-2.3.9
11
12 dev-python/grabbit/grabbit-0.1.1.ebuild | 27 +++++++++++++++++++++++++++
13 dev-python/grabbit/metadata.xml | 21 +++++++++++++++++++++
14 2 files changed, 48 insertions(+)
15
16 diff --git a/dev-python/grabbit/grabbit-0.1.1.ebuild b/dev-python/grabbit/grabbit-0.1.1.ebuild
17 new file mode 100644
18 index 000000000..cceee888e
19 --- /dev/null
20 +++ b/dev-python/grabbit/grabbit-0.1.1.ebuild
21 @@ -0,0 +1,27 @@
22 +# Copyright 1999-2018 Gentoo Foundation
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=6
26 +
27 +PYTHON_COMPAT=( python{2_7,3_4,3_5} )
28 +
29 +inherit distutils-r1
30 +
31 +DESCRIPTION="Get grabby with file trees"
32 +HOMEPAGE="https://github.com/grabbles/grabbit"
33 +SRC_URI="https://github.com/grabbles/grabbit/archive/${PV}.tar.gz -> ${P}.tar.gz"
34 +
35 +LICENSE="MIT"
36 +SLOT="0"
37 +KEYWORDS="~amd64"
38 +IUSE="test"
39 +
40 +DEPEND="
41 + dev-python/setuptools[${PYTHON_USEDEP}]
42 + test? ( >=dev-python/pytest-3.4.1[${PYTHON_USEDEP}] )
43 + "
44 +RDEPEND=""
45 +
46 +python_test() {
47 + py.test -v || die
48 +}
49
50 diff --git a/dev-python/grabbit/metadata.xml b/dev-python/grabbit/metadata.xml
51 new file mode 100644
52 index 000000000..f297bae41
53 --- /dev/null
54 +++ b/dev-python/grabbit/metadata.xml
55 @@ -0,0 +1,21 @@
56 +<?xml version="1.0" encoding="UTF-8"?>
57 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
58 +<pkgmetadata>
59 + <maintainer type="person">
60 + <email>horea.christ@×××××.com</email>
61 + <name>Horea Christian</name>
62 + </maintainer>
63 + <maintainer type="project">
64 + <email>sci@g.o</email>
65 + <name>Gentoo Science Project</name>
66 + </maintainer>
67 + <longdescription lang="en">
68 + Grabbit is a lightweight Python 3 package for simple queries over filenames
69 + within a project. It's geared towards projects or applications with highly
70 + structured filenames that allow useful queries to be performed without having
71 + to inspect the file metadata or contents.
72 + </longdescription>
73 + <upstream>
74 + <remote-id type="github">grabbles/grabbit</remote-id>
75 + </upstream>
76 +</pkgmetadata>