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 BC361138335 for ; Tue, 21 Aug 2018 08:31:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B8D93E084A; Tue, 21 Aug 2018 08:31:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 90623E084A for ; Tue, 21 Aug 2018 08:31:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 D35A7335D7D for ; Tue, 21 Aug 2018 08:31:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A613F3B4 for ; Tue, 21 Aug 2018 08:31:12 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1534840131.9f5f5905ea66ae7be2327ccd3f8f3689fa88f79c.monsieurp@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-2.2.2.ebuild X-VCS-Directories: dev-python/jsmin/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 9f5f5905ea66ae7be2327ccd3f8f3689fa88f79c X-VCS-Branch: master Date: Tue, 21 Aug 2018 08:31:12 +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-Archives-Salt: 933865dc-e66e-4616-bab2-8a0bbf9a31fa X-Archives-Hash: fab675e25a69aaa3fbc9c0c57f677579 commit: 9f5f5905ea66ae7be2327ccd3f8f3689fa88f79c Author: Patrice Clement gentoo org> AuthorDate: Thu Aug 16 18:12:23 2018 +0000 Commit: Patrice Clement gentoo org> CommitDate: Tue Aug 21 08:28:51 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f5f5905 dev-python/jsmin: version bump. Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-python/jsmin/Manifest | 1 + dev-python/jsmin/jsmin-2.2.2.ebuild | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/dev-python/jsmin/Manifest b/dev-python/jsmin/Manifest index c9326a33a19..c75181a6838 100644 --- a/dev-python/jsmin/Manifest +++ b/dev-python/jsmin/Manifest @@ -1 +1,2 @@ DIST jsmin-2.2.1.tar.gz 12542 BLAKE2B 17586d8f9f7a5725a8fcae041a63fcf0d7a297fedc19271a1db417b1f847abfa30477d256aed474fca73e9e1484b47368458bfe2469dd5166b9b25535cbd4c10 SHA512 b70a72d5dbe37b34cac186967b151a79573bc060a1b814645b6d58499ec0e087f7a5941b00755258cb05e8a092f05b614de1253038140e773102f5312fa6a3c7 +DIST jsmin-2.2.2.tar.gz 12705 BLAKE2B ff14d28c753443c4a17e19b7205b739d5a177eeb8074e4b16c7ae7e5f816758e1f54e07ceddf90dde70cc2752f9dadee0dc71754b2de3343256f3b1695187bba SHA512 e4fea940d7b5e1c0d7dacad70d90a242a8ba178423c886eb60ed7a36b1fba9ca67b5118f26e9a96058b86d3f612d40a21e62cdccd5858a2012a8f222fad3277d diff --git a/dev-python/jsmin/jsmin-2.2.2.ebuild b/dev-python/jsmin/jsmin-2.2.2.ebuild new file mode 100644 index 00000000000..6aba296c029 --- /dev/null +++ b/dev-python/jsmin/jsmin-2.2.2.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy ) + +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" +IUSE="" +LICENSE="MIT" +SLOT="0" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" + +python_test() { + "${PYTHON}" -m ${PN}.test || die +}