Gentoo Archives: gentoo-commits

From: Brian Dolbec <dolsen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/cbor/
Date: Wed, 31 Aug 2016 01:18:35
Message-Id: 1472606260.857befe88a57c0f16dad6ef500145ac3aeff8756.dolsen@gentoo
1 commit: 857befe88a57c0f16dad6ef500145ac3aeff8756
2 Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 31 00:00:53 2016 +0000
4 Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 31 01:17:40 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=857befe8
7
8 dev-python/cbor: New pkg, new dep of dev-python/autobahn-0.16.0
9
10 Package-Manager: portage-2.3.0
11
12 dev-python/cbor/Manifest | 1 +
13 dev-python/cbor/cbor-1.0.0.ebuild | 20 ++++++++++++++++++++
14 dev-python/cbor/metadata.xml | 28 ++++++++++++++++++++++++++++
15 3 files changed, 49 insertions(+)
16
17 diff --git a/dev-python/cbor/Manifest b/dev-python/cbor/Manifest
18 new file mode 100644
19 index 00000000..ad16dcf
20 --- /dev/null
21 +++ b/dev-python/cbor/Manifest
22 @@ -0,0 +1 @@
23 +DIST cbor-1.0.0.tar.gz 20096 SHA256 13225a262ddf5615cbd9fd55a76a0d53069d18b07d2e9f19c39e6acb8609bbb6 SHA512 996b61c7d16cbe8bd7b056d09286a17f3a6a29cb97ef9e5ca1d1bfe8c53393ae3d2b7565c937a283cb78f377af14c070bd663aabbce995dc7e5b9d2f69a6ba73 WHIRLPOOL 5384cf292f08edb15e53d35ab86feeac6e25c967a5a3a0e1e21d3f0a7460feca4b2e27d3ace58a05c4a0d751b0f5719a24d174e5d899818c6890ad139e1cbd36
24
25 diff --git a/dev-python/cbor/cbor-1.0.0.ebuild b/dev-python/cbor/cbor-1.0.0.ebuild
26 new file mode 100644
27 index 00000000..3554f03
28 --- /dev/null
29 +++ b/dev-python/cbor/cbor-1.0.0.ebuild
30 @@ -0,0 +1,20 @@
31 +# Copyright 1999-2016 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI=6
36 +PYTHON_COMPAT=( python2_7 python3_{4,5})
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="RFC 7049 - Concise Binary Object Representation"
41 +HOMEPAGE="https://bitbucket.org/bodhisnarkva/cbor https://pypi.python.org/pypi/cbor"
42 +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
43 +
44 +LICENSE="Apache-2.0"
45 +SLOT="0"
46 +KEYWORDS="~amd64"
47 +IUSE=""
48 +
49 +DEPEND=""
50 +RDEPEND="${DEPEND}"
51
52 diff --git a/dev-python/cbor/metadata.xml b/dev-python/cbor/metadata.xml
53 new file mode 100644
54 index 00000000..297c81e
55 --- /dev/null
56 +++ b/dev-python/cbor/metadata.xml
57 @@ -0,0 +1,28 @@
58 +<?xml version="1.0" encoding="UTF-8"?>
59 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
60 +<pkgmetadata>
61 + <maintainer type="person">
62 + <email>dol-sen@g.o</email>
63 + <description>Primary maintainer</description>
64 + </maintainer>
65 + <maintainer type="project">
66 + <email>python@g.o</email>
67 + <name>Python</name>
68 + </maintainer>
69 + <upstream>
70 + <maintainer>
71 + <email>bolson@××××××.org</email>
72 + <name>Brian Olson</name>
73 + </maintainer>
74 + <remote-id type="pypi">cbor</remote-id>
75 + </upstream>
76 + <longdescription>An implementation of RFC 7049 - Concise Binary Object
77 + Representation (CBOR). CBOR is comparable to JSON, has a superset of
78 + JSON's ability, but serializes to a binary format which is smaller and
79 + faster to generate and parse. The two primary functions are
80 + cbor.loads() and cbor.dumps(). This library includes a C implementation
81 + which runs 3-5 times faster than the Python standard library's
82 + C-accelerated implementanion of JSON. This is also includes a 100%
83 + Python implementation.
84 + </longdescription>
85 +</pkgmetadata>