Hello community, here is the log from the commit of package python-openqa_review for openSUSE:Factory checked in at 2016-09-28 11:30:51 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-openqa_review (Old) and /work/SRC/openSUSE:Factory/.python-openqa_review.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-openqa_review" Changes: -------- New Changes file: --- /dev/null 2016-09-15 12:42:18.240042505 +0200 +++ /work/SRC/openSUSE:Factory/.python-openqa_review.new/python-openqa_review.changes 2016-09-28 11:30:52.000000000 +0200 @@ -0,0 +1,67 @@ +------------------------------------------------------------------- +Tue Sep 20 15:24:45 UTC 2016 - opensuse-packag...@opensuse.org + +- Update to version 1.1.0: + * Get objects up into the main function (#22) + * Fix arch matching (#23) + * Treat incomplete->failed as new failures + +------------------------------------------------------------------- +Mon Sep 19 15:00:14 UTC 2016 - opensuse-packag...@opensuse.org + +- Update to version 1.0.0: + * Simplify script usage (#13) + * Add Browser cache (#15) + * Be more strict about bugrefs read on openQA webpages + * Use Objects to handle Issues and ArchReport + * Add .swp files to .gitignore + * Fix soft failed: Use new 'result_softfailed' str + * TODO: Add idea about bug reporting links + * Add ArchReports and IssueEntry obj (#19) + * '-r' and '-T' are not mutually exclusive anymore + * Get objects up into the main function (#22) + +------------------------------------------------------------------- +Tue Sep 13 11:05:47 UTC 2016 - opensuse-packag...@opensuse.org + +- Update to version 0.8.1: + * Fix 'missing architectures' entry not yielding proper table row + * Fix D403 style issues + * Prevent flake8 check running on existing .tox dir + * Ensure proper python2+3 testing on different distributions + * TODO: DONE "Using labels …" with commit fd1b373 + * TODO: DONE "package for openSUSE" + +------------------------------------------------------------------- +Mon Sep 12 21:08:50 UTC 2016 - opensuse-packag...@opensuse.org + +- Update to version 0.8.0: + * Read Bugzilla issue status & subject (#8) + * Fix config parsing for python2 (#9) + * Fix insecure ssl warning (#10) + * TODO: Add reference to mass bug filing tool + * Let --query-issue-status" arg implie --bugrefs (#11) + * Extract Browser into module + * Extract report generator object for 'new issue' + * Use absolute imports for python2 + +------------------------------------------------------------------- +Thu Aug 25 09:29:41 UTC 2016 - opensuse-packag...@opensuse.org + +- Update to version 0.7.1: + * .travis.yml: Add pypi deploy commands + * Correct name in setup.py to 'openqa_review' + * Add reference for pypi deploy to .travis.yml + * Accept 'not enough finished builds' as expected behaviour + * Prevent inactive job groups showing up in openQA >= 4.4 + * Add wrapper script for SLES/HA review + * Correct markdown syntax of code segments + * Handle download errors graciously + * Correct log message for saving files in Browser + * Fix 'KeyError TODO' with builds having only bugref'd jobs + +------------------------------------------------------------------- +Sun Jan 24 12:16:00 UTC 2016 - ok...@suse.de + +- initial package + New: ---- _service _update.sh python-openqa_review-1.1.0.tar.gz python-openqa_review.changes python-openqa_review.spec ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-openqa_review.spec ++++++ # # spec file for package python-openqa_review # # Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed # upon. The license for this file, and modifications and additions to the # file, is the same license as for the pristine package itself (unless the # license for the pristine package is not an Open Source License, in which # case the license is the MIT License). An "Open Source License" is a # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. # Please submit bugfixes or comments via http://bugs.opensuse.org/ # %define short_name openqa_review Name: python-%{short_name} Version: 1.1.0 Release: 0 Summary: A review helper script for openQA License: MIT Group: Development/Languages/Python Source: https://github.com/okurz/%{short_name}/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz Url: https://github.com/okurz/%{short_name} BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: python-setuptools Requires: python-PyYAML Requires: python-beautifulsoup4 Requires: python-future Requires: python-humanfriendly Requires: python-requests Requires: python-setuptools Requires: python-sortedcontainers BuildArch: noarch %description A review helper script for openQA. For more details look into the README file. %prep %setup -q -n %{short_name}-%{version} %build python setup.py build %install python setup.py install --prefix=%{_prefix} --root=%{buildroot} %files %defattr(-,root,root,-) %doc LICENSE README.md %{python_sitelib} %attr(755, -, -) %{_bindir}/openqa-review %attr(755, -, -) %{_bindir}/openqa-review-sles-ha %attr(755, -, -) %{_bindir}/tumblesle-release %changelog ++++++ _service ++++++ <services> <service name="tar_scm" mode="disabled"> <param name="filename">python-openqa_review</param> <param name="versionformat">@PARENT_TAG@</param> <param name="url">git://github.com/okurz/openqa_review.git</param> <param name="scm">git</param> <param name="revision">master</param> <param name="changesgenerate">enable</param> </service> <service name="recompress" mode="disabled"> <param name="compression">xz</param> <param name="file">*.tar</param> </service> <service name="set_version" mode="disabled"/> </services> ++++++ _update.sh ++++++ #!/bin/sh -e osc service disabledrun version=$(osc diff | sed -n 's/^.*Update to version \([0-9.]\+\):/\1/p') sed -i -e "s/^\(Version:\s*\)[0-9.]\+/\1$version/g" python-openqa_review.spec rm *.tar.xz osc rm *.tar.gz osc service localrun download_files osc add *.tar.gz *.changes *.spec osc ci -m "Update to $version"