public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Patrick Lauer" <patrick@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/cffi/
Date: Sun, 17 Jul 2016 17:48:19 +0000 (UTC)	[thread overview]
Message-ID: <1468777695.672464c7ec456241a5a0bb747cb6c8fe6836b246.patrick@gentoo> (raw)

commit:     672464c7ec456241a5a0bb747cb6c8fe6836b246
Author:     Patrick Lauer <patrick <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 17 17:48:02 2016 +0000
Commit:     Patrick Lauer <patrick <AT> gentoo <DOT> org>
CommitDate: Sun Jul 17 17:48:15 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=672464c7

dev-python/cffi: Bump

Package-Manager: portage-2.3.0

 dev-python/cffi/Manifest          |  1 +
 dev-python/cffi/cffi-1.7.0.ebuild | 50 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 51 insertions(+)

diff --git a/dev-python/cffi/Manifest b/dev-python/cffi/Manifest
index bb0d5ba..5eea68f 100644
--- a/dev-python/cffi/Manifest
+++ b/dev-python/cffi/Manifest
@@ -1,3 +1,4 @@
 DIST cffi-1.2.1.tar.gz 335778 SHA256 eab571deb0a152e2f53c404c08a94870a131526896cad08cd43bf86ce3771e3d SHA512 26ab695d34ef1895f38c735b2c6400cbf6325d622ce93799513130791365bb71d656288e991b86861ac8e899872504c1f4368d27104c4ac9b881c83c7f8dad88 WHIRLPOOL a8bbe3c24be660946c1f31fbb8b1f50810f78b9485a32aadfb091a624b5386641bde71981c58792f8e95e8e77cfce7d9959eb197c417464cf5351e568aa6336d
 DIST cffi-1.5.2.tar.gz 388793 SHA256 da9bde99872e46f7bb5cff40a9b1cc08406765efafb583c704de108b6cb821dd SHA512 3c707db85032bc13287beec0211d85a7b9f9dfcb87844adba3a86b23211acd495e88072ec23f22e7c7626d25cadd5b9843c34255d4080eefb171020ad0a2d552 WHIRLPOOL 35cfd86d06dcc2bb2a0e8e196f06d5df0eeaa6dd65d13dc4489284108fa596a88f46918c5b70e38584965290d141f5cbf0e2bcb469c3316cd1962109d77889dd
 DIST cffi-1.6.0.tar.gz 397024 SHA256 a7f75c4ef2362c0a0e54657add0a6c509fecbfa3b3807bc0925f5cb1c9f927db SHA512 95dc7fbca624b5474ff0182ff6e1d1c6b8b34ad19c4c22cabf847f7be6c47dc32a96b23165da1c28438a46a1e9f681341fe8b7304ba5618744c595c4ae364466 WHIRLPOOL a4faef6dfaa078a09abadbe2af6d589dcd36d94bcf07eb47cda1e18ae1d60a3d62d0d66240f717f09564b97565b495e71b77390fe4278afb978fa2c62d341684
+DIST cffi-1.7.0.tar.gz 400251 SHA256 6ed5dd6afd8361f34819c68aaebf9e8fc12b5a5893f91f50c9e50c8886bb60df SHA512 ce9439a219248b06a6f2d019324f4150576b5e4d853025d61d470105f95af2a6c2387080bfd0308c063ad756f34feead9a5958187d626524594dfe9a3adf7462 WHIRLPOOL 1d10ba1d5fe2dadfe239c2111e9eb08beeddb7b796e966dae642fbfef0d590737018e27e3036817a1b2f43d76d2526642022b0d2ebe97ce8fcf4a49c8006ea26

diff --git a/dev-python/cffi/cffi-1.7.0.ebuild b/dev-python/cffi/cffi-1.7.0.ebuild
new file mode 100644
index 0000000..c54b5e6
--- /dev/null
+++ b/dev-python/cffi/cffi-1.7.0.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+# 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}
+	doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+	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() {
+	einfo "$PYTHONPATH"
+	$PYTHON -c "import _cffi_backend as backend" || die
+	PYTHONPATH="${PYTHONPATH}" \
+	py.test -x -v \
+		--ignore testing/test_zintegration.py \
+		--ignore testing/embedding \
+		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:[~2016-07-17 17:48 UTC|newest]

Thread overview: 212+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-07-17 17:48 Patrick Lauer [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-10-30 20:31 [gentoo-commits] repo/gentoo:master commit in: dev-python/cffi/ Michał Górny
2024-10-30 20:03 Sam James
2024-10-30 20:03 Sam James
2024-10-30 20:03 Sam James
2024-09-24 11:52 Sam James
2024-09-21 11:39 Arthur Zamarin
2024-09-21 11:08 Arthur Zamarin
2024-09-21 11:08 Arthur Zamarin
2024-09-21 10:41 Arthur Zamarin
2024-09-05  2:21 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-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 16:28 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=1468777695.672464c7ec456241a5a0bb747cb6c8fe6836b246.patrick@gentoo \
    --to=patrick@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