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 B2678158092 for ; Fri, 17 Sep 2021 10:01:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EFD4DE0821; Fri, 17 Sep 2021 10:01:23 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B13D0E0821 for ; Fri, 17 Sep 2021 10:01:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 05AD1342C44 for ; Fri, 17 Sep 2021 10:01:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 97D2FCF for ; Fri, 17 Sep 2021 10:01:20 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1631872868.385af3ca29089662c40f1a0e0ca7fa1823086820.arthurzam@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: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 385af3ca29089662c40f1a0e0ca7fa1823086820 X-VCS-Branch: master Date: Fri, 17 Sep 2021 10:01:20 +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: 1cc7bf6f-985f-4c70-8711-9c36a513a922 X-Archives-Hash: c27e2870a0ff42206a3d5bcb70766bc5 commit: 385af3ca29089662c40f1a0e0ca7fa1823086820 Author: Arthur Zamarin gentoo org> AuthorDate: Fri Sep 17 10:01:08 2021 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Fri Sep 17 10:01:08 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=385af3ca dev-python/jsmin: add 3.0.0, EAPI=8, use d_e_t Closes: https://bugs.gentoo.org/812227 Signed-off-by: Arthur Zamarin gentoo.org> dev-python/jsmin/Manifest | 1 + dev-python/jsmin/jsmin-3.0.0.ebuild | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/dev-python/jsmin/Manifest b/dev-python/jsmin/Manifest index 4fb8f5e4959..d3064141947 100644 --- a/dev-python/jsmin/Manifest +++ b/dev-python/jsmin/Manifest @@ -1 +1,2 @@ DIST jsmin-2.2.2.tar.gz 12705 BLAKE2B ff14d28c753443c4a17e19b7205b739d5a177eeb8074e4b16c7ae7e5f816758e1f54e07ceddf90dde70cc2752f9dadee0dc71754b2de3343256f3b1695187bba SHA512 e4fea940d7b5e1c0d7dacad70d90a242a8ba178423c886eb60ed7a36b1fba9ca67b5118f26e9a96058b86d3f612d40a21e62cdccd5858a2012a8f222fad3277d +DIST jsmin-3.0.0.tar.gz 11519 BLAKE2B 192a3c8e325e9c3f56b39be983272a7f5d0c6e241bfff41ce3b064cfb60541d150041ee58e7c033b0afb56252573c3a6f10ff6e74658a9e7647e06672308c86f SHA512 46c42d1306fbda1d37324b514650e1ede50db40219dcb54b9b845bc91c23eeb865b2fcfec70cb44ade61439d1c4f96d35bfb15279ec25e0e39ab6023ef58c4cf diff --git a/dev-python/jsmin/jsmin-3.0.0.ebuild b/dev-python/jsmin/jsmin-3.0.0.ebuild new file mode 100644 index 00000000000..69b299b6537 --- /dev/null +++ b/dev-python/jsmin/jsmin-3.0.0.ebuild @@ -0,0 +1,23 @@ +# 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 ~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 +}