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 E8192138334 for ; Sun, 22 Jul 2018 00:15:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 97E50E07D8; Sun, 22 Jul 2018 00:15:24 +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 45652E07D8 for ; Sun, 22 Jul 2018 00:15:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 B3660335CA6 for ; Sun, 22 Jul 2018 00:15:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4ADBD365 for ; Sun, 22 Jul 2018 00:15:19 +0000 (UTC) From: "Virgil Dupras" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Virgil Dupras" Message-ID: <1532218491.474f6aca10f75a2afd805fbc07cda3b37dfe1dc3.vdupras@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/django-tastypie/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/django-tastypie/django-tastypie-0.13.3-r1.ebuild X-VCS-Directories: dev-python/django-tastypie/ X-VCS-Committer: vdupras X-VCS-Committer-Name: Virgil Dupras X-VCS-Revision: 474f6aca10f75a2afd805fbc07cda3b37dfe1dc3 X-VCS-Branch: master Date: Sun, 22 Jul 2018 00:15:19 +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: 9a6cc1c3-b524-44f1-8b38-16583f4534e8 X-Archives-Hash: d090fe8cfc7bc323d07af3cf2c36ee5e commit: 474f6aca10f75a2afd805fbc07cda3b37dfe1dc3 Author: Virgil Dupras gentoo org> AuthorDate: Sun Jul 22 00:14:51 2018 +0000 Commit: Virgil Dupras gentoo org> CommitDate: Sun Jul 22 00:14:51 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=474f6aca dev-python/django-tastypie: remove py36 compat This package depends on django 1.8 which explicitly doesn't support python 3.6. Removing from compat. Additionally: * Bump to EAPI 6 * Fix repoman warnings about '=' in dependencies Package-Manager: Portage-2.3.43, Repoman-2.3.10 .../django-tastypie-0.13.3-r1.ebuild | 81 ++++++++++++++++++++++ 1 file changed, 81 insertions(+) diff --git a/dev-python/django-tastypie/django-tastypie-0.13.3-r1.ebuild b/dev-python/django-tastypie/django-tastypie-0.13.3-r1.ebuild new file mode 100644 index 00000000000..3407e9d7e4f --- /dev/null +++ b/dev-python/django-tastypie/django-tastypie-0.13.3-r1.ebuild @@ -0,0 +1,81 @@ +# 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} ) + +inherit distutils-r1 + +DESCRIPTION="A flexible and capable API layer for django utilising serialisers" +HOMEPAGE="https://pypi.org/project/django-tastypie/ https://github.com/toastdriven/django-tastypie" +SRC_URI="https://github.com/toastdriven/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +KEYWORDS="~amd64 ~x86" +IUSE="bip doc test" + +LICENSE="BSD" +SLOT="0" + +COMMON_DEPEND=">=dev-python/mimeparse-0.1.4[${PYTHON_USEDEP}] + !~dev-python/mimeparse-1.5[${PYTHON_USEDEP}] + >=dev-python/python-dateutil-1.5[${PYTHON_USEDEP}] + !~dev-python/python-dateutil-2.0[${PYTHON_USEDEP}] + >=dev-python/django-1.7[${PYTHON_USEDEP}] +