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 67535138359 for ; Sun, 27 Sep 2020 07:31:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7EEF5E0829; Sun, 27 Sep 2020 07:31:38 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 655D2E0829 for ; Sun, 27 Sep 2020 07:31:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 4E980340C8A for ; Sun, 27 Sep 2020 07:31:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D67EC36F for ; Sun, 27 Sep 2020 07:31:34 +0000 (UTC) From: "Dennis Lamm" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Dennis Lamm" Message-ID: <1601191887.e171311ef0de42c86e649e9f206ba181de9d7ceb.expeditioneer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pywavelets/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pywavelets/metadata.xml dev-python/pywavelets/pywavelets-1.1.1.ebuild X-VCS-Directories: dev-python/pywavelets/ X-VCS-Committer: expeditioneer X-VCS-Committer-Name: Dennis Lamm X-VCS-Revision: e171311ef0de42c86e649e9f206ba181de9d7ceb X-VCS-Branch: master Date: Sun, 27 Sep 2020 07:31:34 +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: 3f86e113-9f12-4ee1-a8d0-e69b9bb8ef84 X-Archives-Hash: cd4b32f2ed78efe328bdbf0ea67ee50b commit: e171311ef0de42c86e649e9f206ba181de9d7ceb Author: Dennis Lamm gentoo org> AuthorDate: Tue Jul 21 16:59:38 2020 +0000 Commit: Dennis Lamm gentoo org> CommitDate: Sun Sep 27 07:31:27 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e171311e sci-python/pywavelets-1.1.1: fixed QA violation Signed-off-by: Dennis Lamm gentoo.org> Closes: https://github.com/gentoo/gentoo/pull/16760 Signed-off-by: Dennis Lamm gentoo.org> dev-python/pywavelets/metadata.xml | 2 +- dev-python/pywavelets/pywavelets-1.1.1.ebuild | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/dev-python/pywavelets/metadata.xml b/dev-python/pywavelets/metadata.xml index 8a4e7121155..1b93fee9c99 100644 --- a/dev-python/pywavelets/metadata.xml +++ b/dev-python/pywavelets/metadata.xml @@ -9,7 +9,7 @@ python@gentoo.org Python - + PyWavelets is a Python wavelet transforms module that can perform: * Discrete Wavelet Transform (1D and 2D) * Inverse Discrete Wavelet Transform (1D and 2D) diff --git a/dev-python/pywavelets/pywavelets-1.1.1.ebuild b/dev-python/pywavelets/pywavelets-1.1.1.ebuild index 13958d97cf3..de07fe47ec1 100644 --- a/dev-python/pywavelets/pywavelets-1.1.1.ebuild +++ b/dev-python/pywavelets/pywavelets-1.1.1.ebuild @@ -11,7 +11,8 @@ MY_PN="${PN/pyw/PyW}" MY_P="${MY_PN}-${PV}" DESCRIPTION="Discrete Wavelet Transforms in Python" -HOMEPAGE="https://pywavelets.readthedocs.io/en/latest/" +HOMEPAGE="https://pywavelets.readthedocs.io/en/latest/ + https://github.com/PyWavelets/pywt" SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" LICENSE="MIT" @@ -45,8 +46,8 @@ python_install_all() { use doc && local HTML_DOCS=( doc/build/html/. ) distutils-r1_python_install_all if use examples; then - insinto /usr/share/doc/${PF}/examples - doins -r demo/* + docinto examples + dodoc -r demo docompress -x /usr/share/doc/${PF}/examples fi }