[Python-modules-commits] [python-virtualenv] 08/08: Updates:
Barry Warsaw
barry at moszumanska.debian.org
Mon Feb 8 16:21:42 UTC 2016
This is an automated email from the git hooks/post-receive script.
barry pushed a commit to branch master
in repository python-virtualenv.
commit 30f993ca06c3256a684cc11d1373e5cf8e556e9a
Author: Barry Warsaw <barry at python.org>
Date: Mon Feb 8 11:21:30 2016 -0500
Updates:
- Add Built-Using field to virtualenv binary package. - Add ca-certificates to virtualenv Depends.
* wrap-and-sort -at
- Add Built-Using field to virtualenv binary package.
- Add ca-certificates to virtualenv Depends.
* wrap-and-sort -at
---
debian/changelog | 5 ++++-
debian/control | 23 ++++++++++++++---------
debian/docs | 2 +-
debian/tests/control | 1 +
debian/tests/smoketest-2 | 12 +++++++-----
debian/tests/smoketest-3 | 8 ++++++--
6 files changed, 33 insertions(+), 18 deletions(-)
diff --git a/debian/changelog b/debian/changelog
index 4d91185..854c11f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-python-virtualenv (14.0.3+ds-1) UNRELEASED; urgency=medium
+python-virtualenv (14.0.5+ds-1) UNRELEASED; urgency=medium
* New upstream release. (Closes: #784353)
* d/control:
@@ -6,6 +6,8 @@ python-virtualenv (14.0.3+ds-1) UNRELEASED; urgency=medium
- Bump debhelper Build-Depends to version 9.
- Add new test dependencies to Build-Depends-Indep.
- Only depend on the python-pip-whl package.
+ - Add Built-Using field to virtualenv binary package.
+ - Add ca-certificates to virtualenv Depends.
* d/compat: Bump to version 9.
* d/rules:
- Disable the tests since the upstream tarball does not include enough
@@ -13,6 +15,7 @@ python-virtualenv (14.0.3+ds-1) UNRELEASED; urgency=medium
- The upstream changes file has been renamed to docs/changes.rst.
* d/tests: Add DEP-8 smoketests.
* d/watch: Use pypi.debian.net redirector.
+ * wrap-and-sort -at
-- Barry Warsaw <barry at debian.org> Thu, 11 Jun 2015 17:19:27 -0400
diff --git a/debian/control b/debian/control
index 8425359..c51029c 100644
--- a/debian/control
+++ b/debian/control
@@ -5,7 +5,7 @@ Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.
Uploaders: Carl Chenet <chaica at ohmytux.com>,
Jeff Licquia <licquia at debian.org>,
Stefano Rivera <stefanor at debian.org>,
- Barry Warsaw <barry at debian.org>
+ Barry Warsaw <barry at debian.org>,
Homepage: http://pypi.python.org/pypi/virtualenv
Vcs-Git: git://anonscm.debian.org/python-modules/packages/python-virtualenv.git
Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/python-virtualenv.git
@@ -15,15 +15,15 @@ Build-Depends: debhelper (>= 9),
python-all (>=2.6.6-3~),
python3-all,
unzip,
- zip
+ zip,
Build-Depends-Indep: python-mock,
python-nose,
- python3-pip,
python-pip-whl (>= 8.0.2),
python-pytest,
python-setuptools,
python3-mock,
python3-nose,
+ python3-pip,
python3-pytest,
python3-setuptools,
python3-wheel,
@@ -37,8 +37,8 @@ Depends: python,
python-pip-whl (>= 8.0.2),
python-pkg-resources,
${misc:Depends},
- ${python3:Depends}
-Recommends: virtualenv
+ ${python3:Depends},
+Recommends: virtualenv,
Description: Python virtual environment creator
The virtualenv utility creates virtual Python instances, each invokable
with its own Python executable. Each instance can have different sets
@@ -53,7 +53,7 @@ Depends: python-pip-whl (>= 8.0.2),
python3,
python3-pkg-resources,
${misc:Depends},
- ${python3:Depends}
+ ${python3:Depends},
Description: Python virtual environment creator
The virtualenv utility creates virtual Python instances, each invokable
with its own Python executable. Each instance can have different sets
@@ -64,9 +64,14 @@ Description: Python virtual environment creator
Package: virtualenv
Architecture: all
-Depends: python3, python3-virtualenv, ${misc:Depends}
-Replaces: python-virtualenv (<< 1.11.6)
-Breaks: python-virtualenv (<< 1.11.6)
+Depends: ca-certificates,
+ python3,
+ python3-virtualenv,
+ ${misc:Depends},
+Replaces: python-virtualenv (<< 1.11.6),
+Breaks: python-virtualenv (<< 1.11.6),
+Built-Using: python-pip,
+ wheel
Description: Python virtual environment creator
The virtualenv utility creates virtual Python instances, each invokable
with its own Python executable. Each instance can have different sets
diff --git a/debian/docs b/debian/docs
index 05a892a..37c3a5f 100644
--- a/debian/docs
+++ b/debian/docs
@@ -1,2 +1,2 @@
-docs/index.rst
AUTHORS.txt
+docs/index.rst
diff --git a/debian/tests/control b/debian/tests/control
index ed04a63..e24e2f8 100644
--- a/debian/tests/control
+++ b/debian/tests/control
@@ -1 +1,2 @@
Tests: smoketest-2, smoketest-3
+Restrictions: allow-stderr
\ No newline at end of file
diff --git a/debian/tests/smoketest-2 b/debian/tests/smoketest-2
index 0ce7f70..a139b88 100644
--- a/debian/tests/smoketest-2
+++ b/debian/tests/smoketest-2
@@ -1,8 +1,10 @@
#!/bin/sh
-set -x
-echo $ADTTMP
+virtualenv -p python2 $ADTTMP/p2a
+$ADTTMP/p2a/bin/pip install world
+$ADTTMP/p2a/bin/world it
-virtualenv -p python2 $ADTTMP/p2
-$ADTTMP/p2/bin/pip install world
-$ADTTMP/p2/bin/world it
+virtualenv -p python2 $ADTTMP/p2b
+. $ADTTMP/p2b/bin/activate
+pip install world
+world it
diff --git a/debian/tests/smoketest-3 b/debian/tests/smoketest-3
index ac196de..bd0baac 100644
--- a/debian/tests/smoketest-3
+++ b/debian/tests/smoketest-3
@@ -1,6 +1,10 @@
#!/bin/sh
-virtualenv -p python3 $ADTTMP/p3
-source $ADTTMP/p3/bin/activate
+virtualenv -p python3 $ADTTMP/p3a
+$ADTTMP/p3a/bin/pip install world
+$ADTTMP/p3a/bin/world it
+
+virtualenv -p python3 $ADTTMP/p3b
+. $ADTTMP/p3b/bin/activate
pip install world
world it
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-virtualenv.git
More information about the Python-modules-commits
mailing list