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 40C2C15808C for ; Thu, 17 Feb 2022 21:52:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8F436E0849; Thu, 17 Feb 2022 21:52:36 +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 7B260E0849 for ; Thu, 17 Feb 2022 21:52:36 +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 A31E134318A for ; Thu, 17 Feb 2022 21:52:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D83502E7 for ; Thu, 17 Feb 2022 21:52:32 +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: <1645134734.44cf4a386bab0e3c7f2d3395a8057b46a3bef9ee.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jsmin/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/jsmin/Manifest dev-python/jsmin/jsmin-3.0.0.ebuild X-VCS-Directories: dev-python/jsmin/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 44cf4a386bab0e3c7f2d3395a8057b46a3bef9ee X-VCS-Branch: master Date: Thu, 17 Feb 2022 21:52:32 +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: 41a57699-cd68-4492-a97c-e4e41306be59 X-Archives-Hash: 31ba9b038ceb66a4595af4dfc75c621b commit: 44cf4a386bab0e3c7f2d3395a8057b46a3bef9ee Author: Michał Górny gentoo org> AuthorDate: Thu Feb 17 21:52:14 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Feb 17 21:52:14 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44cf4a38 dev-python/jsmin: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/jsmin/Manifest | 1 - dev-python/jsmin/jsmin-3.0.0.ebuild | 23 ----------------------- 2 files changed, 24 deletions(-) diff --git a/dev-python/jsmin/Manifest b/dev-python/jsmin/Manifest index 95348704b732..c0c1bcf9e353 100644 --- a/dev-python/jsmin/Manifest +++ b/dev-python/jsmin/Manifest @@ -1,2 +1 @@ -DIST jsmin-3.0.0.tar.gz 11519 BLAKE2B 192a3c8e325e9c3f56b39be983272a7f5d0c6e241bfff41ce3b064cfb60541d150041ee58e7c033b0afb56252573c3a6f10ff6e74658a9e7647e06672308c86f SHA512 46c42d1306fbda1d37324b514650e1ede50db40219dcb54b9b845bc91c23eeb865b2fcfec70cb44ade61439d1c4f96d35bfb15279ec25e0e39ab6023ef58c4cf DIST jsmin-3.0.1.tar.gz 13925 BLAKE2B bfce2368f622cfcc34e716f09638850c773d2381c539fb72a2aaf45830bb7eaf152dd7111f36815b0a067778f617fcec434ac19d7c5278bc963d94ea9d195285 SHA512 f65ead107ffcda67bbea1aea2070d1012139043cd1094d95c0393b1370e2e11a6c6e09af2f3af6f32ab0acc35fd702431954175d930a1898a142808fc3d57b71 diff --git a/dev-python/jsmin/jsmin-3.0.0.ebuild b/dev-python/jsmin/jsmin-3.0.0.ebuild deleted file mode 100644 index 0ae7765600f9..000000000000 --- a/dev-python/jsmin/jsmin-3.0.0.ebuild +++ /dev/null @@ -1,23 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..10} ) - -inherit distutils-r1 - -DESCRIPTION="JavaScript minifier" -HOMEPAGE="https://pypi.org/project/jsmin/ https://github.com/tikitu/jsmin/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -KEYWORDS="amd64 ~riscv x86" -LICENSE="MIT" -SLOT="0" - -distutils_enable_tests unittest - -src_prepare() { - sed -e 's/jsmin.is_3/True/' -i jsmin/test.py || die - distutils-r1_src_prepare -}