From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 6A11F138252 for ; Thu, 12 May 2016 11:40:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 28CFCE07DD; Thu, 12 May 2016 11:40:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 196F8E0802 for ; Thu, 12 May 2016 11:40: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-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4CE3F340943 for ; Thu, 12 May 2016 11:40:13 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8629F976 for ; Thu, 12 May 2016 11:40:08 +0000 (UTC) From: "Ian Delaney" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ian Delaney" Message-ID: <1463053176.6ad373dafa68673e4caf71514bd57abc1e22fb58.idella4@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/guessit/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/guessit/guessit-1.0.3.ebuild X-VCS-Directories: dev-python/guessit/ X-VCS-Committer: idella4 X-VCS-Committer-Name: Ian Delaney X-VCS-Revision: 6ad373dafa68673e4caf71514bd57abc1e22fb58 X-VCS-Branch: master Date: Thu, 12 May 2016 11:40:08 +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: ca7e6b4d-d6fe-4686-b047-c71525b6de19 X-Archives-Hash: ad25fc11e371cce878457b6d184f16d5 commit: 6ad373dafa68673e4caf71514bd57abc1e22fb58 Author: Ilya Tumaykin gmail com> AuthorDate: Wed May 11 04:58:17 2016 +0000 Commit: Ian Delaney gentoo org> CommitDate: Thu May 12 11:39:36 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ad373da dev-python/guessit: remove old Package-Manager: portage-2.2.28 Signed-off-by: Ian Delaney gentoo.org> dev-python/guessit/guessit-1.0.3.ebuild | 43 --------------------------------- 1 file changed, 43 deletions(-) diff --git a/dev-python/guessit/guessit-1.0.3.ebuild b/dev-python/guessit/guessit-1.0.3.ebuild deleted file mode 100644 index 83f23cb..0000000 --- a/dev-python/guessit/guessit-1.0.3.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="5" -PYTHON_COMPAT=( python{2_7,3_3,3_4} ) - -if [[ ${PV} == "9999" ]] ; then - EGIT_REPO_URI="https://github.com/wackou/guessit.git" - inherit git-r3 -else - SRC_URI="https://github.com/wackou/guessit/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86" -fi - -inherit distutils-r1 - -DESCRIPTION="library for guessing information from video files" -HOMEPAGE="http://guessit.readthedocs.org https://github.com/wackou/guessit https://pypi.python.org/pypi/guessit" - -LICENSE="LGPL-3" -SLOT="0" -IUSE="test" - -RDEPEND=" - >=dev-python/babelfish-0.5.5[${PYTHON_USEDEP}] - >=dev-python/stevedore-0.14[${PYTHON_USEDEP}] - dev-python/requests[${PYTHON_USEDEP}] - >=dev-python/python-dateutil-2.1[${PYTHON_USEDEP}] -" -DEPEND="${RDEPEND} - test? ( - >=dev-python/pytest-2.7.3[${PYTHON_USEDEP}] - dev-python/pytest-capturelog[${PYTHON_USEDEP}] - dev-python/pyyaml[${PYTHON_USEDEP}] - ) - dev-python/pytest-runner[${PYTHON_USEDEP}] - dev-python/setuptools[${PYTHON_USEDEP}] -" - -python_test() { - esetup.py test -}