From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by mail.openembedded.org (Postfix) with ESMTP id 07AC7787C3 for ; Fri, 8 Dec 2017 22:46:07 +0000 (UTC) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 08 Dec 2017 14:46:08 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.45,379,1508828400"; d="scan'208";a="1307006" Received: from wrath.jf.intel.com ([10.54.70.11]) by orsmga008.jf.intel.com with ESMTP; 08 Dec 2017 14:46:08 -0800 From: Tim Orling To: openembedded-core@lists.openembedded.org Date: Fri, 8 Dec 2017 14:45:30 -0800 Message-Id: <16f287ab759ca405427eed652d180be9a59b5d22.1512765771.git.timothy.t.orling@linux.intel.com> X-Mailer: git-send-email 2.13.6 In-Reply-To: References: Subject: [PATCH v2 18/19] python3-iniparse: use pypi.bbclass X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Dec 2017 22:46:07 -0000 * Simplify recipe using pypi.bbclass Signed-off-by: Tim Orling --- meta/recipes-devtools/python/python3-iniparse_0.4.bb | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/meta/recipes-devtools/python/python3-iniparse_0.4.bb b/meta/recipes-devtools/python/python3-iniparse_0.4.bb index f51ce647c9b..7ab9fe3b386 100644 --- a/meta/recipes-devtools/python/python3-iniparse_0.4.bb +++ b/meta/recipes-devtools/python/python3-iniparse_0.4.bb @@ -4,17 +4,14 @@ LICENSE = "MIT & PSF" LIC_FILES_CHKSUM = "file://LICENSE-PSF;md5=1c78a5bb3584b353496d5f6f34edb4b2 \ file://LICENSE;md5=52f28065af11d69382693b45b5a8eb54" -SRC_URI = "https://files.pythonhosted.org/packages/source/i/iniparse/iniparse-${PV}.tar.gz \ - file://0001-Add-python-3-compatibility.patch " +SRC_URI = "file://0001-Add-python-3-compatibility.patch" SRC_URI[md5sum] = "5e573e9e9733d97623881ce9bbe5eca6" SRC_URI[sha256sum] = "abc1ee12d2cfb2506109072d6c21e40b6c75a3fe90a9c924327d80bc0d99c054" -UPSTREAM_CHECK_URI = "https://pypi.python.org/pypi/iniparse/" -inherit distutils3 +inherit pypi distutils3 -RDEPENDS_${PN} += "python3-core python3-six" DEPENDS += "python3-six" -BBCLASSEXTEND = "native nativesdk" +RDEPENDS_${PN} += "python3-core python3-six" -S = "${WORKDIR}/iniparse-${PV}" +BBCLASSEXTEND = "native nativesdk" -- 2.13.6