From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D5BD01382C5 for ; Fri, 2 Mar 2018 12:22:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DFC2CE092C; Fri, 2 Mar 2018 12:22:26 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BFD22E092C for ; Fri, 2 Mar 2018 12:22:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B4744335C06 for ; Fri, 2 Mar 2018 12:22:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 119071E7 for ; Fri, 2 Mar 2018 12:22:24 +0000 (UTC) From: "Aaron Swenson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Swenson" Message-ID: <1519993334.e6c8c21753cb547e90f879bf57c96b9994f31af4.titanofold@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/flask-gravatar/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/flask-gravatar/Manifest dev-python/flask-gravatar/flask-gravatar-0.5.0.ebuild X-VCS-Directories: dev-python/flask-gravatar/ X-VCS-Committer: titanofold X-VCS-Committer-Name: Aaron Swenson X-VCS-Revision: e6c8c21753cb547e90f879bf57c96b9994f31af4 X-VCS-Branch: master Date: Fri, 2 Mar 2018 12:22:24 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: e80e18bf-166d-44a0-87d4-2405b2c4fb67 X-Archives-Hash: b41702e675e74e13526d8e71701e6c69 commit: e6c8c21753cb547e90f879bf57c96b9994f31af4 Author: Aaron W. Swenson gentoo org> AuthorDate: Fri Mar 2 12:22:14 2018 +0000 Commit: Aaron Swenson gentoo org> CommitDate: Fri Mar 2 12:22:14 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6c8c217 dev-python/flask-gravatar: Bump to 0.5.0 Package-Manager: Portage-2.3.19, Repoman-2.3.6 dev-python/flask-gravatar/Manifest | 1 + .../flask-gravatar/flask-gravatar-0.5.0.ebuild | 24 ++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/dev-python/flask-gravatar/Manifest b/dev-python/flask-gravatar/Manifest index 9afe9b526b6..701d4a6920b 100644 --- a/dev-python/flask-gravatar/Manifest +++ b/dev-python/flask-gravatar/Manifest @@ -1 +1,2 @@ DIST Flask-Gravatar-0.4.2.tar.gz 14216 BLAKE2B 3dd270e620c047990a099315b8273e60ffeac01cc2dcf152a30203027623a209bc4f895ad3c8a2320a0f0eddeb8c84765e46a601c99dbace8f6983914175bd16 SHA512 9f18faff3dc0b3a5fae4abd538b690c8000fe17e3ed0a9417d6b28e5a40f34143530916bc35c1bb302ed8a72e15bb8e0f98116e5bf7270f9671f8cbbf7671ba1 +DIST Flask-Gravatar-0.5.0.tar.gz 17299 BLAKE2B 7dc16c609cdfbf690a39fbb3bd2810398030bd5c7a54394468902dd131116509da8de448a55907e4738fc984ef422f3c7970b8453b27971eadb106cbb8648562 SHA512 bb4ff064489a030fd763a46fc045109104535474d115aaabdf5c4d1a82a1e3303ee34f590a3f1203a9d009307fc8c45c37af7c30e76a4fb10bc46dd684d37751 diff --git a/dev-python/flask-gravatar/flask-gravatar-0.5.0.ebuild b/dev-python/flask-gravatar/flask-gravatar-0.5.0.ebuild new file mode 100644 index 00000000000..8f378afff7e --- /dev/null +++ b/dev-python/flask-gravatar/flask-gravatar-0.5.0.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +MY_PN="Flask-Gravatar" +MY_P=${MY_PN}-${PV} + +PYTHON_COMPAT=( python2_7 python3_{4,5,6} ) +inherit distutils-r1 + +DESCRIPTION="Small extension for Flask to make usage of Gravatar service easy" +HOMEPAGE="https://github.com/zzzsochi/Flask-Gravatar/" +SRC_URI="mirror://pypi/F/${MY_PN}/${MY_P}.tar.gz" + +LICENSE="BSD" + +SLOT="0" + +KEYWORDS="~amd64 ~x86" + +RDEPEND="dev-python/flask[${PYTHON_USEDEP}]" + +S=${WORKDIR}/${MY_P}