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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E6E1B158089 for ; Wed, 8 Nov 2023 15:39:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6C8BC2BC02D; Wed, 8 Nov 2023 15:39:57 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 573B92BC02D for ; Wed, 8 Nov 2023 15:39:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A06B9335D7F for ; Wed, 8 Nov 2023 15:39:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DBC31133C for ; Wed, 8 Nov 2023 15:39:53 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1699457987.afe5a0ae298569c580eae18b2563188b2601272c.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/livereload/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/livereload/Manifest dev-python/livereload/livereload-2.6.3-r1.ebuild X-VCS-Directories: dev-python/livereload/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: afe5a0ae298569c580eae18b2563188b2601272c X-VCS-Branch: master Date: Wed, 8 Nov 2023 15:39:53 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c3e45157-3bcf-4bd8-b1d7-e9587797aad9 X-Archives-Hash: 83e4220d784a9531810324b9a037b293 commit: afe5a0ae298569c580eae18b2563188b2601272c Author: Michał Górny gentoo org> AuthorDate: Wed Nov 8 15:25:12 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Nov 8 15:39:47 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afe5a0ae dev-python/livereload: EAPI 8, PEP517, py3.12 Signed-off-by: Michał Górny gentoo.org> dev-python/livereload/Manifest | 1 + dev-python/livereload/livereload-2.6.3-r1.ebuild | 49 ++++++++++++++++++++++++ 2 files changed, 50 insertions(+) diff --git a/dev-python/livereload/Manifest b/dev-python/livereload/Manifest index 3a64923b8c01..f63cedbe64d4 100644 --- a/dev-python/livereload/Manifest +++ b/dev-python/livereload/Manifest @@ -1 +1,2 @@ DIST livereload-2.6.3.tar.gz 29407 BLAKE2B 39f030dbc21bec1b132fd9d43f9072f4c35d23ccdca56819e2c6b35277e9eac9caeeff7052fc766359e34bf415319f809ebd45927bd2cc223be7ac88594feef7 SHA512 ccccb17cb4d835eb9e812f8076f871164f6afb2fdc1aee9e35c5ef2d75be2c0403cee51d4eb30b029d7b35522f357ee8c3e9df926fd93511ba7d010ed2a69e8e +DIST python-livereload-2.6.3.gh.tar.gz 29407 BLAKE2B 39f030dbc21bec1b132fd9d43f9072f4c35d23ccdca56819e2c6b35277e9eac9caeeff7052fc766359e34bf415319f809ebd45927bd2cc223be7ac88594feef7 SHA512 ccccb17cb4d835eb9e812f8076f871164f6afb2fdc1aee9e35c5ef2d75be2c0403cee51d4eb30b029d7b35522f357ee8c3e9df926fd93511ba7d010ed2a69e8e diff --git a/dev-python/livereload/livereload-2.6.3-r1.ebuild b/dev-python/livereload/livereload-2.6.3-r1.ebuild new file mode 100644 index 000000000000..82ff825a724f --- /dev/null +++ b/dev-python/livereload/livereload-2.6.3-r1.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..12} ) + +inherit distutils-r1 + +MY_P=python-livereload-${PV} +DESCRIPTION="livereload server in Python" +HOMEPAGE=" + https://github.com/lepture/python-livereload/ + https://pypi.org/project/livereload/ +" +SRC_URI=" + https://github.com/lepture/python-livereload/archive/${PV}.tar.gz + -> ${MY_P}.gh.tar.gz +" +S=${WORKDIR}/${MY_P} + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="examples" + +RDEPEND=" + dev-python/six[${PYTHON_USEDEP}] + dev-python/tornado[${PYTHON_USEDEP}] +" + +distutils_enable_tests pytest +distutils_enable_sphinx docs \ + dev-python/flask-sphinx-themes + +EPYTEST_DESELECT=( + tests/test_watcher.py::TestWatcher::test_watch_multiple_dirs +) + +python_install_all() { + if use examples; then + docinto examples + dodoc -r example/. + docompress -x /usr/share/doc/${PF}/examples + fi + + distutils-r1_python_install_all +}