From patchwork Sun Oct 9 08:04:35 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 680014 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3ssG5f5Zx7z9ryr for ; Sun, 9 Oct 2016 19:05:26 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 6E546873A4; Sun, 9 Oct 2016 08:05:23 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id UOGcVK13XA2l; Sun, 9 Oct 2016 08:05:21 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 9535F873F6; Sun, 9 Oct 2016 08:05:01 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id 596BE1C2AE3 for ; Sun, 9 Oct 2016 08:04:49 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 5497B880A4 for ; Sun, 9 Oct 2016 08:04:49 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id lD3J8xSyN98q for ; Sun, 9 Oct 2016 08:04:48 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout04.t-online.de (mailout04.t-online.de [194.25.134.18]) by hemlock.osuosl.org (Postfix) with ESMTPS id ED7348A1EB for ; Sun, 9 Oct 2016 08:04:47 +0000 (UTC) Received: from fwd09.aul.t-online.de (fwd09.aul.t-online.de [172.20.27.151]) by mailout04.t-online.de (Postfix) with SMTP id B97E341B9412; Sun, 9 Oct 2016 10:04:45 +0200 (CEST) Received: from fli4l.lan.fli4l (rAmCJGZQZhcBQPVFCc3J9+5+WZA335t2TkFrHLB25LJR9Omwlll9yvRkLetRT96gDE@[84.191.195.181]) by fwd09.t-online.de with (TLSv1:ECDHE-RSA-AES256-SHA encrypted) esmtp id 1bt96C-2xHe640; Sun, 9 Oct 2016 10:04:44 +0200 Received: from mahler.lan.fli4l ([192.168.1.1]:39890 helo=kuhls.lan.fli4l) by fli4l.lan.fli4l with esmtp (Exim 4.87) (envelope-from ) id 1bt96B-0001Sx-M5; Sun, 09 Oct 2016 10:04:44 +0200 From: Bernd Kuhls To: buildroot@buildroot.org, Yegor Yefremov , Thomas Petazzoni Date: Sun, 9 Oct 2016 10:04:35 +0200 Message-Id: <20161009080438.4976-7-bernd.kuhls@t-online.de> X-Mailer: git-send-email 2.9.3 In-Reply-To: <20161009080438.4976-1-bernd.kuhls@t-online.de> References: <20161009080438.4976-1-bernd.kuhls@t-online.de> X-ID: rAmCJGZQZhcBQPVFCc3J9+5+WZA335t2TkFrHLB25LJR9Omwlll9yvRkLetRT96gDE X-TOI-MSGID: e0c7964e-65cf-40a7-9d3d-3bd95d750394 Cc: Bernd Kuhls Subject: [Buildroot] [PATCH v3 07/10] package/python-cssutils: new package X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Needed for upcoming python-mwscrape2slob package. Signed-off-by: Bernd Kuhls --- v3: initial version package/Config.in | 1 + package/python-cssutils/Config.in | 8 ++++++++ package/python-cssutils/python-cssutils.hash | 3 +++ package/python-cssutils/python-cssutils.mk | 14 ++++++++++++++ 4 files changed, 26 insertions(+) create mode 100644 package/python-cssutils/Config.in create mode 100644 package/python-cssutils/python-cssutils.hash create mode 100644 package/python-cssutils/python-cssutils.mk diff --git a/package/Config.in b/package/Config.in index bd2a3d8..d81b8e1 100644 --- a/package/Config.in +++ b/package/Config.in @@ -663,6 +663,7 @@ menu "External python modules" source "package/python-crossbar/Config.in" source "package/python-cryptography/Config.in" source "package/python-cssselect/Config.in" + source "package/python-cssutils/Config.in" source "package/python-daemon/Config.in" source "package/python-dataproperty/Config.in" source "package/python-dateutil/Config.in" diff --git a/package/python-cssutils/Config.in b/package/python-cssutils/Config.in new file mode 100644 index 0000000..74de742 --- /dev/null +++ b/package/python-cssutils/Config.in @@ -0,0 +1,8 @@ +config BR2_PACKAGE_PYTHON_CSSUTILS + bool "python-cssutils" + select BR2_PACKAGE_PYTHON_PYEXPAT if BR2_PACKAGE_PYTHON # runtime + select BR2_PACKAGE_PYTHON3_PYEXPAT if BR2_PACKAGE_PYTHON3 # runtime + help + A CSS Cascading Style Sheets library for Python. + + http://cthedot.de/cssutils/ diff --git a/package/python-cssutils/python-cssutils.hash b/package/python-cssutils/python-cssutils.hash new file mode 100644 index 0000000..7b188bc --- /dev/null +++ b/package/python-cssutils/python-cssutils.hash @@ -0,0 +1,3 @@ +# md5 from https://pypi.python.org/pypi/cssutils/json, sha256 locally computed +md5 7fcdf2c3e9f053136af1990146eb361d cssutils-1.0.1.tar.gz +sha256 d8a18b2848ea1011750231f1dd64fe9053dbec1be0b37563c582561e7a529063 cssutils-1.0.1.tar.gz diff --git a/package/python-cssutils/python-cssutils.mk b/package/python-cssutils/python-cssutils.mk new file mode 100644 index 0000000..3dd501a --- /dev/null +++ b/package/python-cssutils/python-cssutils.mk @@ -0,0 +1,14 @@ +################################################################################ +# +# python-cssutils +# +################################################################################ + +PYTHON_CSSUTILS_VERSION = 1.0.1 +PYTHON_CSSUTILS_SOURCE = cssutils-$(PYTHON_CSSUTILS_VERSION).tar.gz +PYTHON_CSSUTILS_SITE = https://pypi.python.org/packages/22/de/6b03e0088baf0299ab7d2e95a9e26c2092e9cb3855876b958b6a62175ca2 +PYTHON_CSSUTILS_LICENSE = LGPLv3+ +PYTHON_CSSUTILS_LICENSE_FILES = COPYING.LESSER +PYTHON_CSSUTILS_SETUP_TYPE = setuptools + +$(eval $(python-package))