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/peewee/
Date: Sun, 25 Feb 2018 07:28:24 +0000 (UTC)	[thread overview]
Message-ID: <1519543700.862d7cd8ac5600f85760044e120335df28e7969f.patrick@gentoo> (raw)

commit:     862d7cd8ac5600f85760044e120335df28e7969f
Author:     Patrick Lauer <patrick <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 25 07:14:20 2018 +0000
Commit:     Patrick Lauer <patrick <AT> gentoo <DOT> org>
CommitDate: Sun Feb 25 07:28:20 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=862d7cd8

dev-python/peewee: Bump

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-python/peewee/Manifest            |  1 +
 dev-python/peewee/peewee-3.1.0.ebuild | 48 +++++++++++++++++++++++++++++++++++
 2 files changed, 49 insertions(+)

diff --git a/dev-python/peewee/Manifest b/dev-python/peewee/Manifest
index 20e175ad366..e83f4649a39 100644
--- a/dev-python/peewee/Manifest
+++ b/dev-python/peewee/Manifest
@@ -1,3 +1,4 @@
 DIST peewee-2.7.4.tar.gz 608818 BLAKE2B 3749b84b903240851f4f765a1d19d9629600563991b4474027e69f134bdd176abed322b37de69ce99412ecfa19bef78d6d8a52b3629481a99a0e762841d8a1f3 SHA512 c72391316c8bd1f712bcb26d4d6e5ef386a415da536d78cade35d42bbb9c8c6d7b0494bf329bd67e3ac5b91a2d76e97365376b0e91a5c6a5b78ab1696f7576cb
 DIST peewee-2.8.3.tar.gz 639529 BLAKE2B 2d7bd7745b406e2b512a277667cf4c393cdc8ccf193af719d49e9c7e39bce1da3a634c0ef39efda8dbbdb5bdeb9ed5084abf8a304766f4f0216b1bf9abed2936 SHA512 03a2a24acc12c024d9ffc2ccdc70e763e4879f65221b44cda7ee41083e85e8fa5ffa39227a20baa32368d6bd1f104621bb431740430ef6eb0457225fc78e76e4
 DIST peewee-2.8.4.tar.gz 644430 BLAKE2B cbfc829a7abef3ccbbdc863efa9a04d2ad07f052fad11d0e26d8c4902c60c01ad532ae127166ca253f0f656fe9c69d1f1044779d3d9e612e5348c72c10582b1d SHA512 1fa421d3622c63f42901e1673ed1fb47676030861df9758bed801afbcc4ab3e793650fce30e79c7b39d7388a0a2230bfe1a378e43e9b7eafbb29d4bd354ee057
+DIST peewee-3.1.0.tar.gz 705099 BLAKE2B 1dc528082337ae509fc9f91c521d7bf036179ad6b1a5a93e113d594ce819d3a9cdbb7e687b51acacdaf242d542dad138ce2a21f9dcc19483c7361788329a53ed SHA512 628eea27d51017a6ab87aae9ae851d749b0f437fe1806957b23408ad3c97bbb93e5b84c66c5e70bfb7b55c9f29a0c517b84e65adc0f979da450987d670661e84

diff --git a/dev-python/peewee/peewee-3.1.0.ebuild b/dev-python/peewee/peewee-3.1.0.ebuild
new file mode 100644
index 00000000000..2a0505fdaa2
--- /dev/null
+++ b/dev-python/peewee/peewee-3.1.0.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+PYTHON_REQ_USE="sqlite(+)"
+
+inherit distutils-r1
+
+DESCRIPTION="Small python ORM"
+HOMEPAGE="https://github.com/coleifer/peewee/"
+SRC_URI="https://github.com/coleifer/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc examples"
+
+DEPEND="dev-python/cython[${PYTHON_USEDEP}]
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
+# Req'd to ensure a unique tmp.db for each python impl running the testsuite.
+DISTUTILS_IN_SOURCE_BUILD=1
+
+python_prepare_all() {
+	sed -i -e "s#test_suite='tests',##g;" ./setup.py || die
+	distutils-r1_python_prepare_all
+}
+
+python_compile() {
+	python_is_python3 || local -x CFLAGS="${CFLAGS} -fno-strict-aliasing"
+	distutils-r1_python_compile
+}
+
+python_compile_all() {
+	use doc && emake -C docs html
+}
+
+python_test() {
+	# Testsuite run using runtests.py does not require deps listed in previous ebuild
+	"${PYTHON}" ./runtests.py || die "tests failed under ${EPYTHON}"
+}
+
+python_install_all() {
+	use doc && local HTML_DOCS=( docs/_build/html/. )
+	use examples && DOCS=( examples/ )
+	distutils-r1_python_install_all
+}


             reply	other threads:[~2018-02-25  7:28 UTC|newest]

Thread overview: 116+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-02-25  7:28 Patrick Lauer [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-11-13  6:55 [gentoo-commits] repo/gentoo:master commit in: dev-python/peewee/ Michał Górny
2024-11-02 12:50 Michał Górny
2024-11-02 12:08 Arthur Zamarin
2024-11-02  8:49 Michał Górny
2024-10-16  4:54 Michał Górny
2024-07-27 10:06 Michał Górny
2024-07-27  9:08 Arthur Zamarin
2024-07-27  7:05 Arthur Zamarin
2024-07-22 14:08 Michał Górny
2024-07-22 14:08 Michał Górny
2024-07-06 19:11 Arthur Zamarin
2024-06-15 17:33 Michał Górny
2024-05-25  6:33 Michał Górny
2024-05-25  6:22 Sam James
2024-05-25  6:08 Arthur Zamarin
2024-05-11  5:19 Michał Górny
2024-05-04 11:32 Michał Górny
2024-05-04  9:48 Arthur Zamarin
2024-05-04  7:57 Arthur Zamarin
2024-04-18  5:34 Michał Górny
2024-04-17 13:52 Michał Górny
2024-02-20 14:13 Michał Górny
2024-02-20 14:06 Jakov Smolić
2024-02-20  7:45 Sam James
2024-02-06  3:07 Michał Górny
2023-11-15 21:10 Michał Górny
2023-11-15 17:40 Sam James
2023-11-15 16:34 Arthur Zamarin
2023-10-14  6:29 Michał Górny
2023-09-02  3:30 Sam James
2023-09-02  3:30 Sam James
2023-09-01 12:16 Sam James
2023-08-14 14:55 Michał Górny
2023-08-14 14:55 Michał Górny
2023-07-30 12:46 Sam James
2023-07-30 12:44 Sam James
2023-05-23 18:38 Michał Górny
2023-05-23 17:48 Arthur Zamarin
2023-05-23 15:54 Arthur Zamarin
2023-04-22  6:17 Michał Górny
2023-04-19  6:16 Michał Górny
2023-03-30 16:47 Michał Górny
2023-03-30 16:42 Sam James
2023-03-30 16:29 Arthur Zamarin
2023-02-28  4:31 Sam James
2023-02-27 17:49 Michał Górny
2022-12-17  7:08 Michał Górny
2022-12-16 21:24 Arthur Zamarin
2022-12-16 20:04 Arthur Zamarin
2022-11-12  7:33 Michał Górny
2022-10-25  9:33 Michał Górny
2022-10-25  9:28 Sam James
2022-10-25  8:52 Sam James
2022-09-26  6:15 Michał Górny
2022-09-25 23:58 Sam James
2022-09-22 12:15 Michał Górny
2022-08-26 16:01 Arthur Zamarin
2022-07-25  7:14 Michał Górny
2022-07-25  7:07 Agostino Sarubbo
2022-07-12 15:48 Michał Górny
2022-06-18  6:47 Michał Górny
2022-06-04  7:42 Michał Górny
2022-04-16 15:58 Michał Górny
2022-04-16  7:38 Sam James
2022-04-16  7:38 Sam James
2022-03-24 22:50 Jakov Smolić
2022-03-09 18:26 Arthur Zamarin
2021-12-03  8:42 Michał Górny
2021-12-03  7:57 Arthur Zamarin
2021-12-02  8:54 Jakov Smolić
2021-10-28 20:51 Michał Górny
2021-10-28  7:00 Michał Górny
2021-06-04 14:40 Michał Górny
2021-04-22 15:07 Michał Górny
2021-04-22 12:11 Sam James
2021-04-22 12:08 Sam James
2021-04-11 11:23 Michał Górny
2021-04-11 11:06 Sam James
2021-04-07  6:22 Sam James
2021-03-20  7:22 Michał Górny
2021-03-15 15:03 Michał Górny
2021-03-15 13:43 Sam James
2021-03-15  6:30 Sam James
2021-03-11 22:59 Michał Górny
2021-03-04 22:21 Michał Górny
2021-03-02  9:06 Michał Górny
2021-03-02  7:39 Sam James
2021-03-02  7:38 Sam James
2021-02-08  8:44 Michał Górny
2020-12-31  6:26 Sam James
2020-12-31  6:07 Sam James
2020-08-02  8:36 Michał Górny
2020-07-15  5:58 Michał Górny
2020-05-12  6:39 Agostino Sarubbo
2020-05-12  6:31 Agostino Sarubbo
2020-04-26 16:53 Michał Górny
2020-04-25  8:49 Michał Górny
2020-04-25  8:48 Michał Górny
2018-06-24  9:40 Mikle Kolyada
2018-02-25  7:28 Patrick Lauer
2017-09-29 17:06 Patrick Lauer
2017-09-16 18:06 Patrick Lauer
2017-05-15 13:49 Manuel Rüger
2017-05-02 17:43 Michał Górny
2016-07-21  7:00 Tiziano Müller
2016-03-15 15:27 Agostino Sarubbo
2016-03-06 12:58 Agostino Sarubbo
2016-02-18  9:18 Patrice Clement
2016-02-18  9:18 Patrice Clement
2016-02-18  9:18 Patrice Clement
2016-01-05 11:20 Patrick Lauer
2015-12-02  9:33 Patrice Clement
2015-09-20 10:50 Justin Lecher
2015-08-26 11:00 Agostino Sarubbo
2015-08-10 10:22 Ian Delaney

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=1519543700.862d7cd8ac5600f85760044e120335df28e7969f.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