public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Andrew Ammerlaan" <andrewammerlaan@riseup.net>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/uvicorn/
Date: Fri, 18 Dec 2020 14:15:39 +0000 (UTC)	[thread overview]
Message-ID: <1608297924.acef8a4e406f55f12818e52ba3864c0b057e0a26.andrewammerlaan@gentoo> (raw)
Message-ID: <20201218141539.erRuUWKmpenkIeXrXkuYL38AhEPafM-ZF75JIElHUOE@z> (raw)

commit:     acef8a4e406f55f12818e52ba3864c0b057e0a26
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Fri Dec 18 13:25:24 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Fri Dec 18 13:25:24 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=acef8a4e

dev-python/uvicorn: version bump 0.13.1

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

 dev-python/uvicorn/Manifest                        |  3 +-
 dev-python/uvicorn/uvicorn-0.12.2.ebuild           | 61 ----------------------
 ...uvicorn-0.12.3.ebuild => uvicorn-0.13.1.ebuild} |  1 -
 3 files changed, 1 insertion(+), 64 deletions(-)

diff --git a/dev-python/uvicorn/Manifest b/dev-python/uvicorn/Manifest
index 7eca0da2..08b4b84a 100644
--- a/dev-python/uvicorn/Manifest
+++ b/dev-python/uvicorn/Manifest
@@ -1,2 +1 @@
-DIST uvicorn-0.12.2.tar.gz 503530 BLAKE2B ab2b4e0a256127430f19f75431ca15652ad28d7d525e1ae00dc6c4d61a4c5affec6800e5ad4823954996d3d390c339f63502d9002fd9e5a8377055e0ee86e9ca SHA512 cc94f9482f4417c6cc79283c0ae1b9d658df9131f3d70d52ae4f1c03fdd7aef28ed902a722827529cb97e302f90bfe208d966546f6484bc01762e8f691121c49
-DIST uvicorn-0.12.3.tar.gz 505606 BLAKE2B 852ca5f624842680fc514fb1db4b62605aa31aca801efdb25e460ff4b5c49e22a58b732778f35e6f606d14cd8cab962c5426f01617d573934daa62167553acf3 SHA512 72f823ad0f16738b23e796f02916627908c6619b41c931a33aeef60d7929479f863f97da2f60b0a4265ce57b7397af4f4019f0ae784319cc44c178dfecc2f07c
+DIST uvicorn-0.13.1.tar.gz 506827 BLAKE2B bded67c6bbf0e4be456acc0f4303ad29160002bc38e8ebef2fe545f0204d80dbdc813983169c1c42bb78251e4e0f585ac67b8a10a0f740b95731836c8ebb3d1f SHA512 a8ad800c6fc96137bb8cc444fd55d2bea3b7f63c3cee9db6662c73be9a01437805342ae909029bd5b9163643ce1648ee447264b2c51fd1706aa00a0fea089185

diff --git a/dev-python/uvicorn/uvicorn-0.12.2.ebuild b/dev-python/uvicorn/uvicorn-0.12.2.ebuild
deleted file mode 100644
index 181ee989..00000000
--- a/dev-python/uvicorn/uvicorn-0.12.2.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8} )
-
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-DOCS_BUILDER="mkdocs"
-DOCS_DEPEND="dev-python/mkdocs-material"
-
-inherit distutils-r1 docs optfeature
-
-DESCRIPTION="The lightning-fast ASGI server"
-HOMEPAGE="https://www.uvicorn.org/
-	https://github.com/encode/uvicorn"
-SRC_URI="https://github.com/encode/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-KEYWORDS="~amd64 ~x86"
-SLOT="0"
-
-RDEPEND="
-	dev-python/click[${PYTHON_USEDEP}]
-	dev-python/h11[${PYTHON_USEDEP}]
-	dev-python/typing-extensions[${PYTHON_USEDEP}]
-"
-
-BDEPEND="test? (
-	dev-python/colorama[${PYTHON_USEDEP}]
-	dev-python/pytest-mock[${PYTHON_USEDEP}]
-	dev-python/python-dotenv[${PYTHON_USEDEP}]
-	dev-python/pyyaml[${PYTHON_USEDEP}]
-	dev-python/trustme[${PYTHON_USEDEP}]
-	>=dev-python/uvloop-0.14.0[${PYTHON_USEDEP}]
-	>=dev-python/websockets-8.0[${PYTHON_USEDEP}]
-	dev-python/httptools[${PYTHON_USEDEP}]
-	>=dev-python/watchgod-0.6[${PYTHON_USEDEP}]
-	dev-python/wsproto[${PYTHON_USEDEP}]
-)"
-
-distutils_enable_tests pytest
-
-python_prepare_all() {
-	# do not install LICENSE to /usr/
-	sed -i -e '/data_files/d' setup.py || die
-
-	# Remove pytest-cov dep
-	sed -i -e '21,22d' setup.cfg || die
-
-	distutils-r1_python_prepare_all
-}
-
-pkg_postinst() {
-	optfeature "asyncio event loop on top of libuv" dev-python/uvloop
-	optfeature "websockets support using wsproto" dev-python/wsproto
-	optfeature "websockets support using websockets" dev-python/websockets
-	optfeature "httpstools package for http protocol" dev-python/httptools
-	optfeature "efficient debug reload" dev-python/watchgod
-}

diff --git a/dev-python/uvicorn/uvicorn-0.12.3.ebuild b/dev-python/uvicorn/uvicorn-0.13.1.ebuild
similarity index 99%
rename from dev-python/uvicorn/uvicorn-0.12.3.ebuild
rename to dev-python/uvicorn/uvicorn-0.13.1.ebuild
index 33587188..3cd9c7e2 100644
--- a/dev-python/uvicorn/uvicorn-0.12.3.ebuild
+++ b/dev-python/uvicorn/uvicorn-0.13.1.ebuild
@@ -4,7 +4,6 @@
 EAPI=7
 
 PYTHON_COMPAT=( python3_{7,8} )
-
 DISTUTILS_USE_SETUPTOOLS=rdepend
 
 DOCS_BUILDER="mkdocs"


             reply	other threads:[~2020-12-18 14:15 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-12-18 14:15 Andrew Ammerlaan [this message]
2020-12-18 14:15 ` [gentoo-commits] repo/proj/guru:dev commit in: dev-python/uvicorn/ Andrew Ammerlaan
  -- strict thread matches above, loose matches on Subject: below --
2021-02-19 10:14 [gentoo-commits] repo/proj/guru:master " Michał Górny
2021-02-07  8:24 [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2021-02-07  8:24 ` [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2021-01-03 14:29 [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2021-01-03 14:29 ` [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-11-28 13:57 Andrew Ammerlaan
2020-10-22 14:39 [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-10-22 14:41 ` [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-10-18  9:03 Andrew Ammerlaan
2020-09-24 12:50 [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-09-24 13:01 ` [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-08-14 18:35 Andrew Ammerlaan
2020-07-31 17:58 [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-07-31 17:58 ` [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-07-28 14:32 [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-07-28 14:32 ` [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-07-17 14:44 [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-07-17 14:44 ` [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-06-30 19:19 [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-06-30 19:43 ` [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-04-29 10:59 [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-04-29 11:12 ` [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-04-28 17:30 [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-04-29 11:12 ` [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-03-28 11:00 [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-03-28 11:08 ` [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-03-24 16:37 Michał Górny
2020-03-24 16:37 Michał Górny
2020-03-13 17:45 Andrew Ammerlaan
2020-03-13 17:45 Andrew Ammerlaan
2020-03-09 17:55 Andrew Ammerlaan

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=1608297924.acef8a4e406f55f12818e52ba3864c0b057e0a26.andrewammerlaan@gentoo \
    --to=andrewammerlaan@riseup.net \
    --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