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 E47C4158015 for ; Mon, 25 Dec 2023 06:43:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CA94E2BC017; Mon, 25 Dec 2023 06:43:11 +0000 (UTC) Received: from smtp.gentoo.org (dev.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B36962BC017 for ; Mon, 25 Dec 2023 06:43:11 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D38F733E3A9 for ; Mon, 25 Dec 2023 06:43:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 24A571331 for ; Mon, 25 Dec 2023 06:43:09 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1703485976.c277fca85531d6caa7563042f9f957077f64af88.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pypugjs/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pypugjs/pypugjs-5.9.12.ebuild X-VCS-Directories: dev-python/pypugjs/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c277fca85531d6caa7563042f9f957077f64af88 X-VCS-Branch: master Date: Mon, 25 Dec 2023 06:43:09 +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: a62fc594-c96f-4b8a-aca6-a3d2285a0b86 X-Archives-Hash: a3cd63a8011e6d25826d301722bb7ba6 commit: c277fca85531d6caa7563042f9f957077f64af88 Author: Sam James gentoo org> AuthorDate: Mon Dec 25 06:32:56 2023 +0000 Commit: Sam James gentoo org> CommitDate: Mon Dec 25 06:32:56 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c277fca8 dev-python/pypugjs: drop 5.9.12 Closes: https://bugs.gentoo.org/888257 Signed-off-by: Sam James gentoo.org> dev-python/pypugjs/pypugjs-5.9.12.ebuild | 48 -------------------------------- 1 file changed, 48 deletions(-) diff --git a/dev-python/pypugjs/pypugjs-5.9.12.ebuild b/dev-python/pypugjs/pypugjs-5.9.12.ebuild deleted file mode 100644 index e10bf787887f..000000000000 --- a/dev-python/pypugjs/pypugjs-5.9.12.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=poetry -PYTHON_COMPAT=( python3_{9..11} ) - -inherit distutils-r1 optfeature - -DESCRIPTION="Pug (Jade) syntax adapter for Django, Jinja2 and Mako templates" -HOMEPAGE="https://github.com/kakulukia/pypugjs" -SRC_URI=" - https://github.com/kakulukia/pypugjs/archive/v${PV}.tar.gz - -> ${P}.gh.tar.gz -" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~arm64 ~riscv" - -RDEPEND=" - >=dev-python/six-1.15.0[${PYTHON_USEDEP}] - >=dev-python/chardet-4.0.0[${PYTHON_USEDEP}] -" -BDEPEND=" - test? ( - dev-python/django[${PYTHON_USEDEP}] - >=dev-python/jinja-3.1.1[${PYTHON_USEDEP}] - >=dev-python/mako-1.1.3[${PYTHON_USEDEP}] - >=dev-python/tornado-6.0.4[${PYTHON_USEDEP}] - ) -" - -distutils_enable_tests nose - -src_prepare() { - # Remove pyramid backend as pyramid isn't packaged - rm -r pypugjs/ext/pyramid || die - distutils-r1_src_prepare -} - -pkg_postinst() { - optfeature "converting to Django output" dev-python/django - optfeature "converting to Jinja2 output" dev-python/jinja - optfeature "converting to Mako output" dev-python/mako - optfeature "converting to Tornado output" dev-python/tornado -}