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 0B1BD138359 for ; Wed, 16 Sep 2020 12:29:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 316BBE084E; Wed, 16 Sep 2020 12:29:14 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 15D21E084E for ; Wed, 16 Sep 2020 12:29:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 E3C72340E95 for ; Wed, 16 Sep 2020 12:29:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 956BE33A for ; Wed, 16 Sep 2020 12:29:11 +0000 (UTC) From: "Hanno Böck" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hanno Böck" Message-ID: <1600259343.78e0d02bcb4b42adc66e5ece303c6fae0770c324.hanno@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/rjsmin/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/rjsmin/Manifest dev-python/rjsmin/metadata.xml dev-python/rjsmin/rjsmin-1.1.0.ebuild X-VCS-Directories: dev-python/rjsmin/ X-VCS-Committer: hanno X-VCS-Committer-Name: Hanno Böck X-VCS-Revision: 78e0d02bcb4b42adc66e5ece303c6fae0770c324 X-VCS-Branch: master Date: Wed, 16 Sep 2020 12:29: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: 620785eb-45b4-40d9-aca4-8df006c814ce X-Archives-Hash: 490e3416ed7251ae68c805bc20558291 commit: 78e0d02bcb4b42adc66e5ece303c6fae0770c324 Author: Hanno Böck gentoo org> AuthorDate: Wed Sep 16 12:29:03 2020 +0000 Commit: Hanno Böck gentoo org> CommitDate: Wed Sep 16 12:29:03 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78e0d02b dev-python/rjsmin: Initial commit. Needed for mailman 3. Signed-off-by: Hanno Böck gentoo.org> Package-Manager: Portage-3.0.7, Repoman-3.0.1 dev-python/rjsmin/Manifest | 1 + dev-python/rjsmin/metadata.xml | 8 ++++++++ dev-python/rjsmin/rjsmin-1.1.0.ebuild | 15 +++++++++++++++ 3 files changed, 24 insertions(+) diff --git a/dev-python/rjsmin/Manifest b/dev-python/rjsmin/Manifest new file mode 100644 index 00000000000..c217598e199 --- /dev/null +++ b/dev-python/rjsmin/Manifest @@ -0,0 +1 @@ +DIST rjsmin-1.1.0.tar.gz 412426 BLAKE2B ac4aed389359b27c6506890da8ec7874536835befff6868b556542489deaadb5557caf688fd959cd2dff1b25d312a8b738ea5f73e00fbb1f705ddeeaea021dd2 SHA512 e89641666f4235e5125e33a8da727a204bd0f263c101833849d8368edb7522a184b0f6d87da39690b7e8c1dad0ae8a40508b019e971393a3ad99440ad8ccc3fc diff --git a/dev-python/rjsmin/metadata.xml b/dev-python/rjsmin/metadata.xml new file mode 100644 index 00000000000..c36c37139fa --- /dev/null +++ b/dev-python/rjsmin/metadata.xml @@ -0,0 +1,8 @@ + + + + + williamh@gentoo.org + William Hubbs + + diff --git a/dev-python/rjsmin/rjsmin-1.1.0.ebuild b/dev-python/rjsmin/rjsmin-1.1.0.ebuild new file mode 100644 index 00000000000..241f8ac3f89 --- /dev/null +++ b/dev-python/rjsmin/rjsmin-1.1.0.ebuild @@ -0,0 +1,15 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8,9} ) +inherit distutils-r1 + +DESCRIPTION="Javascript minifier written in python." +HOMEPAGE="http://opensource.perlig.de/rjsmin/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64"