public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Justin Lecher" <jlec@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/cffi/
Date: Thu, 17 Dec 2015 16:28:21 +0000 (UTC)	[thread overview]
Message-ID: <1450369694.651a0265e6740ad9b1374dd606343160d180fe4c.jlec@gentoo> (raw)

commit:     651a0265e6740ad9b1374dd606343160d180fe4c
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 17 16:28:10 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Thu Dec 17 16:28:14 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=651a0265

dev-python/cffi: Version Bump

Package-Manager: portage-2.2.26
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>

 dev-python/cffi/Manifest          |  1 +
 dev-python/cffi/cffi-1.4.1.ebuild | 42 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 43 insertions(+)

diff --git a/dev-python/cffi/Manifest b/dev-python/cffi/Manifest
index 6a12be1..938d551 100644
--- a/dev-python/cffi/Manifest
+++ b/dev-python/cffi/Manifest
@@ -3,3 +3,4 @@ DIST cffi-1.2.1.tar.gz 335778 SHA256 eab571deb0a152e2f53c404c08a94870a131526896c
 DIST cffi-1.3.0.tar.gz 347342 SHA256 9daa53aff0b5cf64c85c10eab7ce6776880d0ee71b78cedeae196ae82b6734e9 SHA512 2ea789d67782b2f23501bea4480f42f79e312d047e2d8c777aab8113400cfa136585aa92c0a51608a0da35cd6734bc24914fcccfc5bbdad3041aad2e9f784400 WHIRLPOOL 5daea22a7ad04a68aea0f962de8ff08c96b41d45539c43d2157ebc7f26799cf75f251b6b5c54901bc4f8e988791cc3ddefc52528b1c0ab3d3163adc56dea452a
 DIST cffi-1.3.1.tar.gz 351300 SHA256 d45dd39a770b4afb591c82555f6a8bbc1ac7eb019eda9b621eee1a0a72201220 SHA512 b89fe1b98a2e1492e05a9e69407104a5d5057dbe2730852fb91fae1db66751d35db53186d2f03dc950eb10dd9cecc83e44eb3e6954381dfd80d79519c7938288 WHIRLPOOL 37ea487ae7e5474a903cd259bac3428d04dc8f0ab0623edf8e12979e666d0779a04135e150073deb608a46b63084e51f66023e618637d3f71cc54f2eac84fdb9
 DIST cffi-1.4.0.tar.gz 365067 SHA256 afeb3ce1c1e200aeb70313bc0bd94ebba4f2f37b2ae7ce00cabb648f548359eb SHA512 56b446a7635afff3cf33fea97451c98eb102589e19c5c2e249e3f751a38972152c4bcde901fa2a06703d5e01f10d994c5d9bc98af48f8278a8981de2522e45cc WHIRLPOOL 8b41807d02f203132b930247d9f4755e8c5e8c0e2594105cad8f46a902be013947d45420f7389ef34483673516e7ee58bce31f615ae582d4f445d344115fe4dc
+DIST cffi-1.4.1.tar.gz 365194 SHA256 61fa9e32cc91744b92b3ec96f74c5910aa6c2f0a9fbba939fbad71dab558b974 SHA512 d58012af471aff5b8d8de84f837bf7f683928dcd4efb11e1b3d54e276e0eb0db143675e42c34ae757710817b9c0795ba97626734bf2e0930c93af055b1009ea6 WHIRLPOOL 74ca6952e3833441dd662b4a9f51c66a5746c74fa98cac5283492ddcfe17bf9314a79c5f4c0acf1592787d29f686e6e78d2a5f20334ca572d64e13d13875e272

diff --git a/dev-python/cffi/cffi-1.4.1.ebuild b/dev-python/cffi/cffi-1.4.1.ebuild
new file mode 100644
index 0000000..ce2896f
--- /dev/null
+++ b/dev-python/cffi/cffi-1.4.1.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+# DO NOT ADD pypy to PYTHON_COMPAT
+# pypy bundles a modified version of cffi. Use python_gen_cond_dep instead.
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
+
+inherit distutils-r1
+
+DESCRIPTION="Foreign Function Interface for Python calling C code"
+HOMEPAGE="http://cffi.readthedocs.org/ https://pypi.python.org/pypi/cffi"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0/${PV}"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris"
+IUSE="doc test"
+
+RDEPEND="
+	virtual/libffi
+	dev-python/pycparser[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+	test? (	dev-python/pytest[${PYTHON_USEDEP}] )"
+
+# Avoid race on _configtest.c (distutils/command/config.py:_gen_temp_sourcefile)
+DISTUTILS_IN_SOURCE_BUILD=1
+
+python_compile_all() {
+	use doc && emake -C doc html
+}
+
+python_test() {
+	py.test -x -v --ignore testing/test_zintegration.py c/ testing/ || die "Testing failed with ${EPYTHON}"
+}
+
+python_install_all() {
+	use doc && local HTML_DOCS=( doc/build/html/. )
+	distutils-r1_python_install_all
+}


             reply	other threads:[~2015-12-17 16:28 UTC|newest]

Thread overview: 203+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-12-17 16:28 Justin Lecher [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-09-05  2:21 [gentoo-commits] repo/gentoo:master commit in: dev-python/cffi/ Michał Górny
2024-08-31  4:48 Sam James
2024-08-28 10:39 Michał Górny
2024-08-28  3:47 Michał Górny
2024-08-24 13:12 Michał Górny
2024-08-24 10:40 Arthur Zamarin
2024-08-24 10:03 Arthur Zamarin
2024-08-24 10:01 Sam James
2024-08-24  9:59 Arthur Zamarin
2024-08-24  9:24 Arthur Zamarin
2024-08-07 14:10 Michał Górny
2024-07-13 15:51 Arthur Zamarin
2024-07-13 14:35 Sam James
2024-07-13 12:10 Arthur Zamarin
2024-07-13 10:27 Arthur Zamarin
2024-07-13 10:27 Arthur Zamarin
2024-07-13  9:58 Arthur Zamarin
2024-07-13  9:54 Arthur Zamarin
2024-05-24  4:03 Michał Górny
2024-05-10 18:38 Michał Górny
2023-10-28 16:48 Arthur Zamarin
2023-10-27 21:29 Sam James
2023-10-27 19:55 Arthur Zamarin
2023-10-27 19:55 Arthur Zamarin
2023-09-29  4:50 Michał Górny
2023-09-27  9:12 Michał Górny
2023-09-27  9:12 Michał Górny
2023-09-27  6:39 Sam James
2023-07-10  1:25 Michał Górny
2023-07-09 17:04 Arthur Zamarin
2023-07-09 17:04 Arthur Zamarin
2023-07-09 17:04 Arthur Zamarin
2023-07-09 17:03 Arthur Zamarin
2023-07-09 16:51 Arthur Zamarin
2023-07-09 16:51 Arthur Zamarin
2023-07-09 16:51 Arthur Zamarin
2023-07-09 16:51 Arthur Zamarin
2023-05-25  4:32 Sam James
2023-05-24  8:12 Sam James
2023-04-25 15:00 Michał Górny
2023-04-25 11:36 Arthur Zamarin
2023-04-25  2:05 Sam James
2023-04-25  1:30 Sam James
2023-04-25  1:30 Sam James
2023-04-25  1:30 Sam James
2023-04-25  1:30 Sam James
2023-04-25  1:30 Sam James
2023-04-25  1:02 Sam James
2023-04-22  7:15 Michał Górny
2023-04-09  1:41 Sam James
2023-03-16  3:47 Michał Górny
2022-08-27 18:15 Michał Górny
2022-08-27 18:05 Arthur Zamarin
2022-08-04  0:13 Sam James
2022-08-03  7:49 Agostino Sarubbo
2022-08-03  4:38 Arthur Zamarin
2022-08-02 20:27 Sam James
2022-08-02 20:27 Sam James
2022-08-02 20:27 Sam James
2022-08-02 19:59 Arthur Zamarin
2022-07-01  6:53 Michał Górny
2022-06-14  8:13 Michał Górny
2022-06-14  7:11 Agostino Sarubbo
2022-06-14  7:11 Agostino Sarubbo
2022-06-14  5:54 Jakov Smolić
2022-06-13 21:00 Jakov Smolić
2022-06-13 10:22 Agostino Sarubbo
2022-06-12 11:55 Sam James
2022-06-12 11:55 Sam James
2022-06-12 11:53 Sam James
2022-05-11  6:19 Michał Górny
2022-05-11  6:19 Michał Górny
2022-05-10 21:52 Michał Górny
2021-11-27  7:24 Sam James
2021-11-22  8:05 Sam James
2021-11-22  8:05 Sam James
2021-11-22  8:03 Sam James
2021-11-22  8:03 Sam James
2021-11-22  7:51 Agostino Sarubbo
2021-11-22  7:49 Agostino Sarubbo
2021-11-21 18:39 Jakov Smolić
2021-10-14  7:51 Michał Górny
2021-08-19 11:57 Michał Górny
2021-08-19 11:22 Sam James
2021-08-19  5:16 Agostino Sarubbo
2021-08-19  1:29 Agostino Sarubbo
2021-08-19  1:08 Sam James
2021-08-17 21:39 Sam James
2021-08-16 12:05 Agostino Sarubbo
2021-08-16 12:04 Agostino Sarubbo
2021-08-16  5:20 Agostino Sarubbo
2021-08-13  6:58 Michał Górny
2021-07-09  7:26 Michał Górny
2021-05-05 19:14 Michał Górny
2021-04-06  6:21 Michał Górny
2021-03-27 19:27 Sam James
2021-03-22 18:17 Sergei Trofimovich
2021-03-15 16:18 Agostino Sarubbo
2021-03-15  3:50 Sam James
2021-03-15  3:50 Sam James
2021-03-15  2:28 Sam James
2021-03-15  1:40 Thomas Deutschmann
2021-03-14 22:33 Sam James
2021-02-12  9:09 Michał Górny
2021-01-31 16:33 Sergei Trofimovich
2021-01-18 14:53 Sam James
2021-01-08 12:20 Sam James
2021-01-08 10:36 Sam James
2021-01-07  1:12 Sam James
2021-01-07  1:08 Sam James
2021-01-06 10:59 Sam James
2021-01-05 21:00 Sam James
2020-12-07  0:33 Sam James
2020-12-05 23:48 Sam James
2020-12-05 23:48 Sam James
2020-09-20 14:15 Michał Górny
2020-05-28  8:20 Michał Górny
2020-05-25 19:27 Michał Górny
2020-05-04 10:23 Michał Górny
2020-04-16  8:06 Mart Raudsepp
2020-04-05 19:01 Sergei Trofimovich
2020-03-11 19:44 Michał Górny
2020-03-05  8:19 Sergei Trofimovich
2020-02-24 12:50 Agostino Sarubbo
2020-02-24 11:43 Agostino Sarubbo
2020-02-24 11:31 Agostino Sarubbo
2020-02-24 11:28 Agostino Sarubbo
2020-02-24 10:07 Agostino Sarubbo
2020-02-24 10:04 Agostino Sarubbo
2020-02-24  9:02 Agostino Sarubbo
2020-02-21 16:44 Michał Górny
2020-02-21 16:44 Michał Górny
2020-02-21 16:44 Michał Górny
2019-12-04  6:48 Aaron Bauman
2019-11-29 19:03 Michał Górny
2019-11-16 23:00 Michał Górny
2019-11-16 23:00 Michał Górny
2019-06-22 21:02 Tim Harder
2019-02-18 15:19 Matthew Thode
2019-01-10 21:21 James Le Cuirot
2018-11-19 21:15 Fabian Groffen
2018-10-01 12:40 Thomas Deutschmann
2018-07-21 17:13 Mikle Kolyada
2018-06-20  1:14 Virgil Dupras
2018-02-21 20:18 Michał Górny
2018-02-19  0:54 Matt Thode
2017-10-19  8:20 Tim Harder
2017-09-03  3:07 Tim Harder
2017-05-23 16:07 Mike Gilbert
2017-05-19 13:37 Michael Weber
2017-05-03 11:02 Michał Górny
2017-04-12 12:34 Tim Harder
2017-02-25  7:40 Markus Meier
2017-01-25 13:26 Tobias Klausmann
2017-01-24 11:46 Agostino Sarubbo
2017-01-23  6:30 Jeroen Roovers
2017-01-21 17:27 Agostino Sarubbo
2017-01-21 17:16 Agostino Sarubbo
2016-11-26 23:05 Lars Wendler
2016-11-26 23:05 Lars Wendler
2016-10-01 13:40 Jeroen Roovers
2016-09-18 15:51 Tim Harder
2016-09-15  0:25 Tim Harder
2016-07-17 17:48 Patrick Lauer
2016-06-21  2:47 Mike Frysinger
2016-05-27 14:06 Tobias Klausmann
2016-05-16  8:57 Dirkjan Ochtman
2016-05-16  8:57 Dirkjan Ochtman
2016-04-01 19:18 Markus Meier
2016-03-20 15:43 Agostino Sarubbo
2016-02-14 17:54 Justin Lecher
2016-01-22 12:03 Justin Lecher
2016-01-21  8:33 Justin Lecher
2016-01-11 10:16 Justin Lecher
2016-01-11  9:07 Agostino Sarubbo
2015-12-24  9:24 Justin Lecher
2015-12-17 14:56 Justin Lecher
2015-11-20 11:29 Justin Lecher
2015-11-20 11:29 Justin Lecher
2015-11-20 11:29 Justin Lecher
2015-11-05 10:58 Agostino Sarubbo
2015-11-04 14:48 Agostino Sarubbo
2015-10-21 15:17 Justin Lecher
2015-10-19 12:48 Justin Lecher
2015-10-19 12:06 Justin Lecher
2015-10-18 16:48 Mikle Kolyada
2015-10-17 10:57 Markus Meier
2015-09-30  3:36 Jeroen Roovers
2015-09-28 15:27 Tobias Klausmann
2015-09-27  5:25 Jeroen Roovers
2015-09-25 14:13 Agostino Sarubbo
2015-09-25  6:00 Justin Lecher
2015-09-24 13:03 Agostino Sarubbo
2015-09-24 11:50 Justin Lecher
2015-09-24 10:36 Agostino Sarubbo
2015-09-20  9:30 Agostino Sarubbo
2015-08-25  5:38 Jeroen Roovers
2015-08-23  3:08 Mike Gilbert
2015-08-23  3:08 Mike Gilbert
2015-08-21 16:46 Markus Meier
2015-08-21  9:35 Justin Lecher
2015-08-16 18:01 Mikle Kolyada

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1450369694.651a0265e6740ad9b1374dd606343160d180fe4c.jlec@gentoo \
    --to=jlec@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox