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 DC728158091 for ; Tue, 31 May 2022 18:49:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1AFA3E0863; Tue, 31 May 2022 18:49:15 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id F41ACE0863 for ; Tue, 31 May 2022 18:49:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B8C5D341AFB for ; Tue, 31 May 2022 18:49:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 972873C3 for ; Tue, 31 May 2022 18:49:11 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1654022823.f0141627b12f5068355e50cb7683c02aec74f666.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/nikola/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-apps/nikola/nikola-8.2.2.ebuild X-VCS-Directories: www-apps/nikola/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: f0141627b12f5068355e50cb7683c02aec74f666 X-VCS-Branch: master Date: Tue, 31 May 2022 18:49:11 +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: 7adcc00b-79aa-47f2-84e5-41c458b4c66c X-Archives-Hash: 40b0496f64ec0b732ea5ebee2292f0d1 commit: f0141627b12f5068355e50cb7683c02aec74f666 Author: Ulrich Müller gentoo org> AuthorDate: Tue May 31 18:46:47 2022 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Tue May 31 18:47:03 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0141627 www-apps/nikola: Drop dependency on dev-python/webassets Add python3_10 to PYTHON_COMPAT. Closes: https://bugs.gentoo.org/846479 Signed-off-by: Ulrich Müller gentoo.org> www-apps/nikola/nikola-8.2.2.ebuild | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/www-apps/nikola/nikola-8.2.2.ebuild b/www-apps/nikola/nikola-8.2.2.ebuild index 6aa7aff76bbf..73526f2513a7 100644 --- a/www-apps/nikola/nikola-8.2.2.ebuild +++ b/www-apps/nikola/nikola-8.2.2.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=8 -PYTHON_COMPAT=( python3_{8,9} ) +PYTHON_COMPAT=( python3_{8,9,10} ) DISTUTILS_USE_SETUPTOOLS=rdepend inherit distutils-r1 @@ -18,7 +18,7 @@ S="${WORKDIR}/${MY_P}" LICENSE="MIT Apache-2.0 CC0-1.0 public-domain" SLOT="0" KEYWORDS="~amd64 ~riscv" -IUSE="assets charts hyphenation ipython jinja server watchdog webmedia" +IUSE="charts hyphenation ipython jinja server watchdog webmedia" REQUIRED_USE="server? ( watchdog )" RESTRICT="test" # needs coveralls @@ -40,7 +40,6 @@ RDEPEND="${DEPEND} >=dev-python/yapsy-1.11.223[${PYTHON_USEDEP}] dev-python/pillow[jpeg,${PYTHON_USEDEP}] dev-python/cloudpickle[${PYTHON_USEDEP}] - assets? ( >=dev-python/webassets-0.10.1[${PYTHON_USEDEP}] ) charts? ( >=dev-python/pygal-2.0.1[${PYTHON_USEDEP}] ) hyphenation? ( >=dev-python/pyphen-0.9.1[${PYTHON_USEDEP}] ) ipython? ( >=dev-python/ipython-2.0.0[notebook,${PYTHON_USEDEP}] )