Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package reuse for openSUSE:Factory checked in at 2023-04-11 13:51:23 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/reuse (Old) and /work/SRC/openSUSE:Factory/.reuse.new.19717 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "reuse" Tue Apr 11 13:51:23 2023 rev:12 rq:1078361 version:1.1.2 Changes: -------- --- /work/SRC/openSUSE:Factory/reuse/reuse.changes 2022-12-20 20:21:34.050233517 +0100 +++ /work/SRC/openSUSE:Factory/.reuse.new.19717/reuse.changes 2023-04-11 13:51:40.947542561 +0200 @@ -1,0 +2,54 @@ +Wed Apr 5 00:22:48 UTC 2023 - Antoine Belvire <antoine.belv...@opensuse.org> + +- Update to 1.1.2: + * It is now possible/easier to use the `build` module to build this module. + Previously, there was a namespace conflict (gh#fsfe/reuse-tool#640). +- Changes of 1.1.1: + * Don't include documentation files (e.g. `README.md`) in top-level (i.e., + `site-packages/`) (gh#fsfe/reuse-tool#657). + * Include documentation directory in sdist + (gh#fsfe/reuse-tool#657). +- Changes of 1.1.0: + * Added support for Python 3.11 (gh#fsfe/reuse-tool#603). + * More file types are recognised: + + Kotlin script (`.kts`) + + Android Interface Definition Language (`.aidl`) + + Certificate files (`.pem`) + * Added comment styles: + + Apache Velocity Template (Extensions: `.vm`, `.vtl`) + (gh#fsfe/reuse-tool#554). + + XQuery comment style (Extensions: `.xq(l|m|y|uery|)`) + (gh#fsfe/reuse-tool#610). + * Some special endings are always stripped from copyright and + licensing statements (gh#fsfe/reuse-tool#602): + + `">` (and variations such as `'>`, `" >`, and `"/>`) + + `] ::` + * Removed `setup.py` and replaced it with a Poetry configuration + (gh#fsfe/reuse-tool#600). + * Updated PyPI development status to 'production/stable' + (gh#fsfe/reuse-tool#381). + * The pre-commit hook now passes `lint` as an overridable argument + (gh#fsfe/reuse-tool#574). + * `addheader` has been renamed to `annotate`. The functionality remains the + same (gh#fsfe/reuse-tool#550). + * Bumped SPDX license list to v3.19. + * `addheader` has been deprecated. It still works, but is now undocumented + (gh#fsfe/reuse-tool#550). + * Releases to PyPI are no longer GPG-signed. Support for this is not present + in Poetry and not planned (gh#fsfe/reuse-tool#600). + * Dependency on `requests` removed; using `urllib.request` from the standard + library instead (gh#fsfe/reuse-tool#600). + * Repair tests related to CVE-2022-39253 changes in upstream Git. New + versions of Git no longer allow `git submodule add repository path` where + repository is a file. A flag was added to explicitly allow this in the test + framework (gh#fsfe/reuse-tool#619). + * Sanitize xargs input in scripts documentation (gh#fsfe/reuse-tool#525). + * License identifiers in comments with symmetrical ASCII art frames are now + properly detected (gh#fsfe/reuse-tool#560) + * Fixed an error where copyright statements contained within a multi-line + comment style on a single line could not be parsed (gh#fsfe/reuse-tool#593). + * In PHP files, add header after `<?php` (gh#fsfe/reuse-tool#543). +- Adapt spec file to poetry. +- Update URL. + +------------------------------------------------------------------- Old: ---- reuse-1.0.0.tar.gz New: ---- reuse-1.1.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ reuse.spec ++++++ --- /var/tmp/diff_new_pack.5Y6IJO/_old 2023-04-11 13:51:41.563546129 +0200 +++ /var/tmp/diff_new_pack.5Y6IJO/_new 2023-04-11 13:51:41.563546129 +0200 @@ -1,7 +1,7 @@ # # spec file for package reuse # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2023 SUSE LLC # Copyright (c) 2017 Free Software Foundation Europe e.V. # # All modifications and additions to the file contributed by third parties @@ -18,38 +18,34 @@ Name: reuse -Version: 1.0.0 -Release: 1%{?dist} +Version: 1.1.2 +Release: 0 Summary: A tool for compliance with the REUSE recommendations License: Apache-2.0 AND CC-BY-SA-4.0 AND GPL-3.0-or-later AND CC0-1.0 Group: Development/Languages/Python -URL: https://git.fsfe.org/reuse/reuse +URL: https://git.fsfe.org/reuse/tool Source: https://files.pythonhosted.org/packages/source/r/reuse/reuse-%{version}.tar.gz BuildRequires: fdupes BuildRequires: gettext BuildRequires: git BuildRequires: python-rpm-macros -BuildRequires: python3 >= 3.6 +BuildRequires: python3 >= 3.7 BuildRequires: python3-Jinja2 BuildRequires: python3-binaryornot BuildRequires: python3-boolean.py BuildRequires: python3-debian -BuildRequires: python3-devel BuildRequires: python3-license-expression +BuildRequires: python3-pip +BuildRequires: python3-poetry BuildRequires: python3-pytest -BuildRequires: python3-requests -BuildRequires: python3-setuptools -BuildRequires: python3-setuptools_scm -Requires: python3 >= 3.6 +Requires: python3 >= 3.7 Requires: python3-Jinja2 Requires: python3-binaryornot Requires: python3-boolean.py Requires: python3-debian Requires: python3-license-expression -Requires: python3-requests Requires: python3-setuptools Recommends: git -BuildArch: noarch %description A tool for compliance with the REUSE recommendations. Essentially, @@ -60,22 +56,19 @@ %setup -q -n reuse-%{version} %build -%python3_build +%python3_pyproject_wheel %install -%python3_install -%fdupes %{buildroot}%{$python3_sitelib} +%python3_pyproject_install +%fdupes %{buildroot}%{python3_sitearch} %check -# Lower security requirements of git -git config --global protocol.file.allow always -PYTHONDONTWRITEBYTECODE=1 LC_ALL=C.UTF-8 LANG=C.UTF-8 PYTHONPATH=%{buildroot}%{python3_sitelib} py.test tests/ +PYTHONDONTWRITEBYTECODE=1 LC_ALL=C.UTF-8 LANG=C.UTF-8 py.test tests/ %files -%defattr(-,root,root,-) %doc README.md CHANGELOG.md %license LICENSES/* %{_bindir}/reuse -%{python3_sitelib}/* +%{python3_sitearch}/* %changelog ++++++ reuse-1.0.0.tar.gz -> reuse-1.1.2.tar.gz ++++++ ++++ 21791 lines of diff (skipped)