From: "Patrick Lauer" <patrick@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/flask-sqlalchemy/
Date: Sun, 14 Feb 2016 18:56:20 +0000 (UTC) [thread overview]
Message-ID: <1455476127.6093169c9e8f601fbcd9945c64980b7ef2740a0c.patrick@gentoo> (raw)
commit: 6093169c9e8f601fbcd9945c64980b7ef2740a0c
Author: Patrick Lauer <patrick <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 14 18:40:38 2016 +0000
Commit: Patrick Lauer <patrick <AT> gentoo <DOT> org>
CommitDate: Sun Feb 14 18:55:27 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6093169c
dev-python/flask-sqlalchemy: Bump
Package-Manager: portage-2.2.27
dev-python/flask-sqlalchemy/Manifest | 1 +
.../flask-sqlalchemy/flask-sqlalchemy-2.1.ebuild | 47 ++++++++++++++++++++++
2 files changed, 48 insertions(+)
diff --git a/dev-python/flask-sqlalchemy/Manifest b/dev-python/flask-sqlalchemy/Manifest
index a3b927f..58cf9b5 100644
--- a/dev-python/flask-sqlalchemy/Manifest
+++ b/dev-python/flask-sqlalchemy/Manifest
@@ -1,3 +1,4 @@
DIST Flask-SQLAlchemy-0.16.tar.gz 97968 SHA256 eaffc4252657229bb8da7447726e9e74b83087b96a3b8990121361b322985b6f SHA512 a6a8f5043aba14fb7fc2c59631d76ec0277d1a01f8b6bd4890271a59f9480ed40665747630194a43a5c19f694e932f86e56b1dfe4a3060176941c82c310ea5fa WHIRLPOOL c3f5fc30c956d39518229289cf7017b589392e18b448d2ec9d5650ed21d5d26309e1f2a60e4bc0e4e5f5cc8fc943f51f0cdc9e8f99d801ab6bfcb6c9600499c6
DIST Flask-SQLAlchemy-1.0.tar.gz 92063 SHA256 7f0e218fa9066b34b73fdc470386a37ee117b8a862db98c1bca8236d8cffe7a1 SHA512 0ab84f4f5a0709c25d6177431787898f13543bd5a97fc67da9a376be66bfb27d1d7437d28a73e5052b5d20cab237b22a16add91159efaabdd133ca2f546fa5b4 WHIRLPOOL b0b394354975943d216d9fd690012cfd32c3b263ade0d85d92ebee856905fddbb523b3db5e6ec74574ddff0de57ec3162884db6e1563f9a5b71b1223279a7b0e
DIST Flask-SQLAlchemy-2.0.tar.gz 93413 SHA256 990387d2cff83df7feb40e9d6b286f2679144258480249cbd47b88dc0939e886 SHA512 7a1962764a5481d0f7ce0ec0beb260dfbd930e76cc426e3f645cdd436f920ebb01ef8bb369c29d2e0bf4a4db29f4a660de8f44ea9110c95e440c0506922c8690 WHIRLPOOL f2c4966262d27f56e48a0a35f9b38595c95327eb7fa5cf6296d4d913ec2d933fc6092d6e08a705643e62210b5b03bda2857c6b9a939f9212f142bcb8b0c40243
+DIST Flask-SQLAlchemy-2.1.tar.gz 95967 SHA256 c5244de44cc85d2267115624d83faef3f9e8f088756788694f305a5d5ad137c5 SHA512 023f3dd011a57768e921928dd3df791a54c64bb8a0cc1bb545dbb8e16dda263b730da74a0d400e5a057819830dd4cd014a642098a081c956a7ea8a2d37ec112a WHIRLPOOL 8acda8985dadde8f14157e9462c3d34220e0bed8b571797aa11f3f415dfee287bfb412142a94dfe725c1d6aab17e241bead90cd1b5128d29ee9905422e58b769
diff --git a/dev-python/flask-sqlalchemy/flask-sqlalchemy-2.1.ebuild b/dev-python/flask-sqlalchemy/flask-sqlalchemy-2.1.ebuild
new file mode 100644
index 0000000..0b58296
--- /dev/null
+++ b/dev-python/flask-sqlalchemy/flask-sqlalchemy-2.1.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
+
+inherit distutils-r1
+
+MY_PN="Flask-SQLAlchemy"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="SQLAlchemy support for Flask applications"
+HOMEPAGE="https://pypi.python.org/pypi/Flask-SQLAlchemy"
+SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc"
+
+RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+ >=dev-python/flask-0.10[${PYTHON_USEDEP}]
+ dev-python/sqlalchemy[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+ doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
+
+# Patch out un-needed d'loading of obj.inv files in doc build
+PATCHES=( "${FILESDIR}"/mapping.patch )
+
+# Req'd for tests in py3
+DISTUTILS_IN_SOURCE_BUILD=1
+
+S="${WORKDIR}/${MY_P}"
+
+python_compile_all() {
+ use doc && esetup.py build_sphinx
+}
+
+python_test() {
+ esetup.py test
+}
+
+python_install_all() {
+ use doc && HTML_DOCS=( "${BUILD_DIR}"/sphinx/html/. )
+ distutils-r1_python_install_all
+}
next reply other threads:[~2016-02-14 18:56 UTC|newest]
Thread overview: 57+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-02-14 18:56 Patrick Lauer [this message]
-- strict thread matches above, loose matches on Subject: below --
2016-04-17 11:39 [gentoo-commits] repo/gentoo:master commit in: dev-python/flask-sqlalchemy/ Ian Delaney
2017-01-17 16:22 Agostino Sarubbo
2017-01-18 11:57 Agostino Sarubbo
2018-07-09 1:29 Thomas Deutschmann
2018-07-09 18:58 Mikle Kolyada
2019-10-18 0:24 Aaron W. Swenson
2019-12-03 3:02 Aaron Bauman
2019-12-03 21:36 Aaron Bauman
2019-12-28 19:38 Louis Sautier
2019-12-28 19:38 Louis Sautier
2020-03-17 19:52 Michał Górny
2020-03-27 9:16 Michał Górny
2020-03-27 9:16 Michał Górny
2020-03-27 9:16 Michał Górny
2020-06-12 15:40 Michał Górny
2020-06-12 15:40 Michał Górny
2020-07-15 5:04 Michał Górny
2020-07-30 19:39 Sam James
2020-07-30 20:03 Sam James
2020-07-30 20:41 Michał Górny
2020-08-18 5:28 Sam James
2021-03-18 23:28 Michał Górny
2021-03-18 23:28 Michał Górny
2021-04-22 12:08 Sam James
2021-04-22 15:07 Michał Górny
2021-04-22 15:07 Michał Górny
2021-08-01 21:12 Michał Górny
2022-01-28 18:41 Arthur Zamarin
2022-05-18 14:22 Andrew Ammerlaan
2022-05-18 16:15 Andrew Ammerlaan
2022-10-05 5:20 Arthur Zamarin
2022-10-05 5:53 Arthur Zamarin
2022-10-07 7:03 Michał Górny
2022-10-12 11:18 Michał Górny
2022-10-14 16:22 Arthur Zamarin
2022-10-17 19:47 Sam James
2022-11-06 3:59 Sam James
2022-11-19 9:05 Sam James
2022-11-19 9:06 Arthur Zamarin
2023-01-31 19:09 Arthur Zamarin
2023-03-03 18:50 Arthur Zamarin
2023-03-03 19:16 Michał Górny
2023-03-03 19:16 Michał Górny
2023-03-03 19:16 Michał Górny
2023-05-20 7:15 Michał Górny
2023-05-20 7:15 Michał Górny
2023-06-07 9:27 Sam James
2023-06-20 5:38 Michał Górny
2023-06-22 5:08 Michał Górny
2023-07-24 12:32 Jakov Smolić
2023-07-24 12:40 Michał Górny
2023-09-12 5:50 Michał Górny
2023-10-14 16:52 Arthur Zamarin
2023-10-14 18:40 Michał Górny
2023-11-24 14:34 Michał Górny
2024-06-18 19:10 Michał Górny
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=1455476127.6093169c9e8f601fbcd9945c64980b7ef2740a0c.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