public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Justin Lecher" <jlec@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/packaging/, dev-python/packaging/files/
Date: Fri, 28 Aug 2015 06:40:03 +0000 (UTC)	[thread overview]
Message-ID: <1440744002.a64b133d87d3ef9ac3952c2738c5e5a87d8cf676.jlec@gentoo> (raw)

commit:     a64b133d87d3ef9ac3952c2738c5e5a87d8cf676
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 28 06:33:22 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Fri Aug 28 06:40:02 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a64b133d

dev-python/packaging: Allow installation without setuptools

Package-Manager: portage-2.2.20.1
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>

 .../files/packaging-15.3-setuptools.patch          | 30 ++++++++++++++++++++
 dev-python/packaging/packaging-15.3-r1.ebuild      | 33 ++++++++++++++++++++++
 2 files changed, 63 insertions(+)

diff --git a/dev-python/packaging/files/packaging-15.3-setuptools.patch b/dev-python/packaging/files/packaging-15.3-setuptools.patch
new file mode 100644
index 0000000..abb0662
--- /dev/null
+++ b/dev-python/packaging/files/packaging-15.3-setuptools.patch
@@ -0,0 +1,30 @@
+ setup.py | 9 +++++++--
+ 1 file changed, 7 insertions(+), 2 deletions(-)
+
+diff --git a/setup.py b/setup.py
+index 13c9dad..9d68590 100644
+--- a/setup.py
++++ b/setup.py
+@@ -15,7 +15,12 @@
+ from __future__ import absolute_import, division, print_function
+ 
+ import os
+-import setuptools
++
++try:
++    from setuptools import setup
++except ImportError:
++    from distutils.core import setup
++
+ 
+ 
+ base_dir = os.path.dirname(__file__)
+@@ -31,7 +36,7 @@ with open(os.path.join(base_dir, "CHANGELOG.rst")) as f:
+     long_description = "\n".join([long_description, f.read()])
+ 
+ 
+-setuptools.setup(
++setup(
+     name=about["__title__"],
+     version=about["__version__"],
+ 

diff --git a/dev-python/packaging/packaging-15.3-r1.ebuild b/dev-python/packaging/packaging-15.3-r1.ebuild
new file mode 100644
index 0000000..f43c596
--- /dev/null
+++ b/dev-python/packaging/packaging-15.3-r1.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_{3,4} pypy pypy3  )
+
+inherit distutils-r1
+
+DESCRIPTION="Core utilities for Python packages"
+HOMEPAGE="https://github.com/pypa/packaging https://pypi.python.org/pypi/packaging"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+SLOT="0"
+LICENSE="Apache-2.0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+
+RDEPEND=""
+DEPEND="${RDEPEND}
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	test? (
+		dev-python/pretend[${PYTHON_USEDEP}]
+		dev-python/pytest[${PYTHON_USEDEP}]
+	)
+"
+
+PATCHES=( "${FILESDIR}"/${P}-setuptools.patch )
+
+python_test() {
+	py.test --capture=no --strict -v || die
+}


             reply	other threads:[~2015-08-28  6:40 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-08-28  6:40 Justin Lecher [this message]
  -- strict thread matches above, loose matches on Subject: below --
2015-10-20  3:10 [gentoo-commits] repo/gentoo:master commit in: dev-python/packaging/, dev-python/packaging/files/ Mike Gilbert
2020-12-31  8:50 Michał Górny

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1440744002.a64b133d87d3ef9ac3952c2738c5e5a87d8cf676.jlec@gentoo \
    --to=jlec@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox