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 7D71E138350 for ; Thu, 19 Mar 2020 07:10:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BE52FE0A9B; Thu, 19 Mar 2020 07:10:26 +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 5BEC8E0A9B for ; Thu, 19 Mar 2020 07:10:26 +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 B38C834F2AB for ; Thu, 19 Mar 2020 07:10:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 20689161 for ; Thu, 19 Mar 2020 07:10:23 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1584601818.8706c49730afb7e095cacd1a609b54ec59782319.zlogene@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 dev-python/Kivy/metadata.xml X-VCS-Directories: dev-python/Kivy/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: 8706c49730afb7e095cacd1a609b54ec59782319 X-VCS-Branch: master Date: Thu, 19 Mar 2020 07:10:23 +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: cf17278d-52a4-4162-951d-0f111dd79dec X-Archives-Hash: d9bb6a24636fd656803f6692402f7460 commit: 8706c49730afb7e095cacd1a609b54ec59782319 Author: Mikle Kolyada gentoo org> AuthorDate: Thu Mar 19 07:09:58 2020 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Thu Mar 19 07:10:18 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8706c497 dev-python/Kivy: remove last-rited pkg Signed-off-by: Mikle Kolyada gentoo.org> dev-python/Kivy/Kivy-1.10.1.ebuild | 72 -------------------------------------- dev-python/Kivy/Manifest | 1 - dev-python/Kivy/metadata.xml | 13 ------- 3 files changed, 86 deletions(-) diff --git a/dev-python/Kivy/Kivy-1.10.1.ebuild b/dev-python/Kivy/Kivy-1.10.1.ebuild deleted file mode 100644 index fef777e0c34..00000000000 --- a/dev-python/Kivy/Kivy-1.10.1.ebuild +++ /dev/null @@ -1,72 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_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 doc examples garden gstreamer +sdl spell test" -RESTRICT="!test? ( test )" - -RDEPEND=" - media-libs/mesa[gles2] - dev-python/pillow[${PYTHON_USEDEP}] - cairo? ( dev-python/pycairo[${PYTHON_USEDEP}] ) - 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 deleted file mode 100644 index 5fc86976a87..00000000000 --- a/dev-python/Kivy/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST Kivy-1.10.1.tar.gz 24318169 BLAKE2B 3032034717ad580af437eb280ad8474f057e1ab9f797edf3358db1073eda6e65ee8765862e39e77818debdf0a2a972ce3701b305ddfba307d9a8bfe2ce8edbc5 SHA512 2208e1a148dd1a7c507336419e7388de87d2ab340db055e09fce99837d50639e2e38f275e383503e5bdfc4b9d3def8176d758a80bf3455467604a4219c19d642 diff --git a/dev-python/Kivy/metadata.xml b/dev-python/Kivy/metadata.xml deleted file mode 100644 index 91807a2b42c..00000000000 --- a/dev-python/Kivy/metadata.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - Install garden tool to manage user maintained widgets - - - - Kivy - -