Gentoo Archives: gentoo-commits

From: Ian Delaney <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/dominate/
Date: Fri, 29 Apr 2016 07:10:17
Message-Id: 1461913784.402a716ea4b4225934f487e55d028c9d00fe96b9.idella4@gentoo
1 commit: 402a716ea4b4225934f487e55d028c9d00fe96b9
2 Author: Louis Sautier <sautier.louis <AT> gmail <DOT> com>
3 AuthorDate: Mon Apr 25 22:16:54 2016 +0000
4 Commit: Ian Delaney <idella4 <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 29 07:09:44 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=402a716e
7
8 dev-python/dominate: new package, dependency of flask-bootstrap, vn. 2.2.0
9
10 Package-Manager: portage-2.2.28
11 Closes: https://github.com/gentoo/gentoo/pull/1353
12
13 Signed-off-by: Ian Delaney <idella4 <AT> gentoo.org>
14
15 dev-python/dominate/Manifest | 1 +
16 dev-python/dominate/dominate-2.2.0.ebuild | 33 +++++++++++++++++++++++++++++++
17 dev-python/dominate/metadata.xml | 20 +++++++++++++++++++
18 3 files changed, 54 insertions(+)
19
20 diff --git a/dev-python/dominate/Manifest b/dev-python/dominate/Manifest
21 new file mode 100644
22 index 0000000..745db7c
23 --- /dev/null
24 +++ b/dev-python/dominate/Manifest
25 @@ -0,0 +1 @@
26 +DIST dominate-2.2.0.tar.gz 23320 SHA256 318063a9b600cdc13f84592ad515db0fd3a2816a2433e2a2fad55a5398ae05da SHA512 416fa8ac56856aa06d547a307cdf46ca71b3a29caf36103e78a2522973e407cab90c0163a34fd8ed724586a6121bbd8f4822da78dbf1f77c18e9106aab112e74 WHIRLPOOL 9d5e8516d90b947c88c76e39b0ca73ff07737e36dd9336bd70f73fe5f3836d0fc43f28a7c1343e880367a449a117a1fdfa7e48c8b35f502ba20950b328f62c3b
27
28 diff --git a/dev-python/dominate/dominate-2.2.0.ebuild b/dev-python/dominate/dominate-2.2.0.ebuild
29 new file mode 100644
30 index 0000000..764995f
31 --- /dev/null
32 +++ b/dev-python/dominate/dominate-2.2.0.ebuild
33 @@ -0,0 +1,33 @@
34 +# Copyright 1999-2016 Gentoo Foundation
35 +# Distributed under the terms of the GNU General Public License v2
36 +# $Id$
37 +
38 +EAPI=6
39 +PYTHON_COMPAT=( python{2_7,3_4,3_5} )
40 +COMMIT="acb02c7c71e353e5dfbc905d506b54908533027e"
41 +
42 +inherit distutils-r1 vcs-snapshot
43 +
44 +DESCRIPTION="Library for creating and manipulating HTML documents using an elegant DOM API"
45 +HOMEPAGE="https://github.com/Knio/dominate"
46 +# Releases aren't tagged on GitHub, tests are missing from PyPI
47 +# https://github.com/Knio/dominate/pull/69
48 +SRC_URI="https://github.com/Knio/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
49 +
50 +LICENSE="GPL-3"
51 +SLOT="0"
52 +KEYWORDS="~amd64 ~x86"
53 +IUSE="test"
54 +
55 +DEPEND="
56 + dev-python/setuptools[${PYTHON_USEDEP}]
57 + test? (
58 + dev-python/pytest-runner[${PYTHON_USEDEP}]
59 + dev-python/pytest[${PYTHON_USEDEP}]
60 + )
61 +"
62 +RDEPEND=""
63 +
64 +python_test() {
65 + py.test || die "Tests failed with ${EPYTHON}"
66 +}
67
68 diff --git a/dev-python/dominate/metadata.xml b/dev-python/dominate/metadata.xml
69 new file mode 100644
70 index 0000000..3f517fa
71 --- /dev/null
72 +++ b/dev-python/dominate/metadata.xml
73 @@ -0,0 +1,20 @@
74 +<?xml version="1.0" encoding="UTF-8"?>
75 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
76 +<pkgmetadata>
77 + <maintainer type="person">
78 + <email>sautier.louis@×××××.com</email>
79 + <name>Louis Sautier</name>
80 + </maintainer>
81 + <maintainer type="project">
82 + <email>proxy-maint@g.o</email>
83 + <name>Proxy Maintainers</name>
84 + </maintainer>
85 + <upstream>
86 + <remote-id type="pypi">dominate</remote-id>
87 + <remote-id type="github">Knio/dominate</remote-id>
88 + <bugs-to>https://github.com/Knio/dominate/issues</bugs-to>
89 + </upstream>
90 + <longdescription lang="en">
91 + Dominate is a Python library for creating and manipulating HTML documents using an elegant DOM API. It allows you to write HTML pages in pure Python very concisely, which eliminate the need to learn another template language, and to take advantage of the more powerful features of Python.
92 + </longdescription>
93 +</pkgmetadata>