Hello community,

here is the log from the commit of package python-pbr for openSUSE:Factory 
checked in at 2014-03-30 07:55:34
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-pbr (Old)
 and      /work/SRC/openSUSE:Factory/.python-pbr.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-pbr"

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-pbr/python-pbr.changes    2014-03-27 
06:10:48.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.python-pbr.new/python-pbr.changes       
2014-03-30 12:25:46.000000000 +0200
@@ -1,0 +2,9 @@
+Fri Mar 28 08:25:25 UTC 2014 - speili...@suse.com
+
+- Update to version 0.8.0:
+  * Use unicode_literals import instead of u'unicode' notation
+  * Remove pip version specifier
+  * Make tools/integration.sh take a branch
+  * Fixes blocking issue on Windows
+
+-------------------------------------------------------------------

Old:
----
  pbr-0.7.0.tar.gz

New:
----
  pbr-0.8.0.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-pbr.spec ++++++
--- /var/tmp/diff_new_pack.AAIcEC/_old  2014-03-30 12:25:47.000000000 +0200
+++ /var/tmp/diff_new_pack.AAIcEC/_new  2014-03-30 12:25:47.000000000 +0200
@@ -21,7 +21,7 @@
 %bcond_with test
 
 Name:           python-pbr
-Version:        0.7.0
+Version:        0.8.0
 Release:        0
 Summary:        Python Build Reasonableness
 License:        Apache-2.0

++++++ pbr-0.7.0.tar.gz -> pbr-0.8.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pbr-0.7.0/ChangeLog new/pbr-0.8.0/ChangeLog
--- old/pbr-0.7.0/ChangeLog     2014-03-18 15:08:29.000000000 +0100
+++ new/pbr-0.8.0/ChangeLog     2014-03-27 23:09:03.000000000 +0100
@@ -1,6 +1,14 @@
 CHANGES
 =======
 
+0.8.0
+-----
+
+* Use unicode_literals import instead of u'unicode' notation
+* Remove pip version specifier
+* Make tools/integration.sh take a branch
+* Fixes blocking issue on Windows
+
 0.7.0
 -----
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pbr-0.7.0/PKG-INFO new/pbr-0.8.0/PKG-INFO
--- old/pbr-0.7.0/PKG-INFO      2014-03-18 15:08:30.000000000 +0100
+++ new/pbr-0.8.0/PKG-INFO      2014-03-27 23:09:03.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: pbr
-Version: 0.7.0
+Version: 0.8.0
 Summary: Python Build Reasonableness
 Home-page: http://pypi.python.org/pypi/pbr
 Author: OpenStack
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pbr-0.7.0/pbr/packaging.py 
new/pbr-0.8.0/pbr/packaging.py
--- old/pbr-0.7.0/pbr/packaging.py      2014-03-18 15:08:07.000000000 +0100
+++ new/pbr-0.8.0/pbr/packaging.py      2014-03-27 23:08:42.000000000 +0100
@@ -87,9 +87,11 @@
     for link in links:
         cmd.append("-f")
         cmd.append(link)
+
+    # NOTE(ociuhandu): popen on Windows does not accept unicode strings
     _run_shell_command(
         cmd + requires,
-        throw_on_error=True, buffer=False, env=dict(PIP_USE_WHEEL="true"))
+        throw_on_error=True, buffer=False, env=dict(PIP_USE_WHEEL=b"true"))
 
 
 def _any_existing(file_list):
@@ -280,7 +282,7 @@
 
                         underline = len(tag) * '-'
                         if not first_line:
-                            changelog_file.write(u'\n')
+                            changelog_file.write('\n')
                         changelog_file.write(
                             ("%(tag)s\n%(underline)s\n\n" %
                              dict(tag=tag,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pbr-0.7.0/pbr.egg-info/PKG-INFO 
new/pbr-0.8.0/pbr.egg-info/PKG-INFO
--- old/pbr-0.7.0/pbr.egg-info/PKG-INFO 2014-03-18 15:08:30.000000000 +0100
+++ new/pbr-0.8.0/pbr.egg-info/PKG-INFO 2014-03-27 23:09:03.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: pbr
-Version: 0.7.0
+Version: 0.8.0
 Summary: Python Build Reasonableness
 Home-page: http://pypi.python.org/pypi/pbr
 Author: OpenStack
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pbr-0.7.0/pbr.egg-info/requires.txt 
new/pbr-0.8.0/pbr.egg-info/requires.txt
--- old/pbr-0.7.0/pbr.egg-info/requires.txt     2014-03-18 15:08:30.000000000 
+0100
+++ new/pbr-0.8.0/pbr.egg-info/requires.txt     2014-03-27 23:09:03.000000000 
+0100
@@ -1 +1 @@
-pip>=1.4
\ No newline at end of file
+pip
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pbr-0.7.0/requirements.txt 
new/pbr-0.8.0/requirements.txt
--- old/pbr-0.7.0/requirements.txt      2014-03-18 15:08:07.000000000 +0100
+++ new/pbr-0.8.0/requirements.txt      2014-03-27 23:08:41.000000000 +0100
@@ -1 +1 @@
-pip>=1.4
+pip
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pbr-0.7.0/tools/integration.sh 
new/pbr-0.8.0/tools/integration.sh
--- old/pbr-0.7.0/tools/integration.sh  2014-03-18 15:08:07.000000000 +0100
+++ new/pbr-0.8.0/tools/integration.sh  2014-03-27 23:08:41.000000000 +0100
@@ -106,6 +106,8 @@
 sudo a2ensite pypi
 sudo service apache2 reload
 
+#BRANCH
+BRANCH=${OVERRIDE_ZUUL_BRANCH=:-master}
 # PROJECTS is a list of projects that we're testing
 PROJECTS=$*
 
@@ -117,7 +119,7 @@
 # --no-update is passed as well. The one thing the -b
 # does give us is it makes run-mirror install dependencies
 # once instead of over and over for all branches it can find.
-$pypimirrorvenv/bin/run-mirror -b remotes/origin/master --no-update --verbose 
-c $tmpdir/mirror.yaml --no-process --export=$HOME/mirror_package_list.txt
+$pypimirrorvenv/bin/run-mirror -b remotes/origin/$BRANCH --no-update --verbose 
-c $tmpdir/mirror.yaml --no-process --export=$HOME/mirror_package_list.txt
 # Compare packages in the mirror with the list of requirements
 gen_bare_package_list "$REPODIR/requirements/global-requirements.txt 
$REPODIR/requirements/dev-requirements.txt" > bare_all_requirements.txt
 gen_bare_package_list $HOME/mirror_package_list.txt > 
bare_mirror_package_list.txt
@@ -130,7 +132,7 @@
 $pypimirrorvenv/bin/pip install -i http://pypi.python.org/simple -d 
$tmpdownload/pip/openstack -r requirements.txt
 $pypimirrorvenv/bin/python setup.py sdist -d $tmpdownload/pip/openstack
 
-$pypimirrorvenv/bin/run-mirror -b remotes/origin/master --no-update --verbose 
-c $tmpdir/mirror.yaml --no-download
+$pypimirrorvenv/bin/run-mirror -b remotes/origin/$BRANCH --no-update --verbose 
-c $tmpdir/mirror.yaml --no-download
 
 find $pypidir -type f -name '*.html' -delete
 find $pypidir

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to