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 823F0138334 for ; Thu, 28 Jun 2018 18:35:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8726DE0855; Thu, 28 Jun 2018 18:35:28 +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 4018DE0855 for ; Thu, 28 Jun 2018 18:35:28 +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 51BE4335C39 for ; Thu, 28 Jun 2018 18:35:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C5D262FA for ; Thu, 28 Jun 2018 18:35:24 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1530210919.8d11ba0a0801f6c46662e19f2c91000fe3875dad.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/Kivy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/Kivy/Kivy-1.10.1.ebuild dev-python/Kivy/Manifest X-VCS-Directories: dev-python/Kivy/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 8d11ba0a0801f6c46662e19f2c91000fe3875dad X-VCS-Branch: master Date: Thu, 28 Jun 2018 18:35:24 +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: 78f117ae-f9f4-4dd9-9318-2d0173fa606d X-Archives-Hash: ea836cd633b533cbc0354461f59c748d commit: 8d11ba0a0801f6c46662e19f2c91000fe3875dad Author: Pacho Ramos gentoo org> AuthorDate: Thu Jun 28 18:34:26 2018 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Thu Jun 28 18:35:19 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d11ba0a dev-python/Kivy: Version bump (#655512) Package-Manager: Portage-2.3.41, Repoman-2.3.9 dev-python/Kivy/Kivy-1.10.1.ebuild | 71 ++++++++++++++++++++++++++++++++++++++ dev-python/Kivy/Manifest | 1 + 2 files changed, 72 insertions(+) diff --git a/dev-python/Kivy/Kivy-1.10.1.ebuild b/dev-python/Kivy/Kivy-1.10.1.ebuild new file mode 100644 index 00000000000..56c72416555 --- /dev/null +++ b/dev-python/Kivy/Kivy-1.10.1.ebuild @@ -0,0 +1,71 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} ) + +inherit distutils-r1 + +DISTUTILS_IN_SOURCE_BUILD=1 + +DESCRIPTION="Library for rapid development of hardware-accelerated multitouch applications" +HOMEPAGE="https://kivy.org/" +SRC_URI="https://github.com/kivy/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="cairo camera doc examples garden gstreamer +sdl spell test" + +RDEPEND=" + dev-python/pillow[${PYTHON_USEDEP}] + cairo? ( dev-python/pycairo[${PYTHON_USEDEP}] ) + camera? ( media-libs/opencv:0/2.4[$(python_gen_usedep 'python2_7')] ) + garden? ( dev-python/kivy-garden[${PYTHON_USEDEP}] ) + gstreamer? ( dev-python/gst-python:1.0[${PYTHON_USEDEP}] ) + sdl? ( media-libs/libsdl2 + media-libs/sdl2-ttf + media-libs/sdl2-image + media-libs/sdl2-mixer ) + !sdl? ( dev-python/pygame[${PYTHON_USEDEP}] ) + spell? ( dev-python/pyenchant[${PYTHON_USEDEP}] )" +DEPEND="${RDEPEND} + dev-python/cython[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}] + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) + test? ( dev-python/nose[${PYTHON_USEDEP}] )" + +S="${WORKDIR}/${P,,}" + +python_prepare_all() { +# sed -e '/data_files=/d' -i "${S}/setup.py" || die +# sed -e 's/PYTHON = python/PYTHON ?= python/' -i Makefile || die + + export USE_SDL2=$(usex sdl 1 0) + export USE_GSTREAMER=$(usex gstreamer 1 0) + export KIVY_USE_SETUPTOOLS=1 + distutils-r1_python_prepare_all +} + +python_compile() { + esetup.py build_ext --inplace + esetup.py build +} + +python_compile_all() { + use doc && emake html +} + +python_test() { + emake test PYTHON="${PYTHON}" +} + +python_install_all() { + use doc && HTML_DOCS=( doc/build/html/. ) + if use examples; then + insinto "/usr/share/doc/${PF}/examples/${f}/" + doins "${S}/examples"/* "${S}/examples"/*/* + fi + distutils-r1_python_install_all +} diff --git a/dev-python/Kivy/Manifest b/dev-python/Kivy/Manifest index 658e6e8744c..2956c4e2c16 100644 --- a/dev-python/Kivy/Manifest +++ b/dev-python/Kivy/Manifest @@ -1,2 +1,3 @@ DIST Kivy-1.10.0.tar.gz 24266702 BLAKE2B 3f1dab7c69e322d5856d1772d0902eaf5d4598957df1573e0c617ca872afa446797266f1ecd4a99da81bc7dcc40a051294d96c11e51a7fe2c505224bf0edaa42 SHA512 8049c92407e464558ecff913ff076c1b8f125b85a35b9eba64af49b35df545402ec2bac907ee545265a368b8cdbb33e02d74429dce13c53dd6feac735ace9cb4 +DIST Kivy-1.10.1.tar.gz 24318169 BLAKE2B 3032034717ad580af437eb280ad8474f057e1ab9f797edf3358db1073eda6e65ee8765862e39e77818debdf0a2a972ce3701b305ddfba307d9a8bfe2ce8edbc5 SHA512 2208e1a148dd1a7c507336419e7388de87d2ab340db055e09fce99837d50639e2e38f275e383503e5bdfc4b9d3def8176d758a80bf3455467604a4219c19d642 DIST kivy-1.9.1.tar.gz 16363833 BLAKE2B 1f81ab0688e9ddc617da5e7d56523568e396f010587c971285996ca5544367a4f63bb6493f279ea66f6606b2808394614c25a96e97018ef0ae1e70d74eb9cd7e SHA512 1ae3ff3979a89e41c0af6493b7523835c1d01ee36fcd524f15d329b8fa875c6ca9bd25db3a844597fbc5370ff86b55ce177d3e66cc169223b02eb114c88c9989