Hello community, here is the log from the commit of package python-sphinxcontrib-github-alt for openSUSE:Factory checked in at 2020-07-28 17:29:47 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-sphinxcontrib-github-alt (Old) and /work/SRC/openSUSE:Factory/.python-sphinxcontrib-github-alt.new.3592 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-sphinxcontrib-github-alt" Tue Jul 28 17:29:47 2020 rev:5 rq:823178 version:1.2 Changes: -------- --- /work/SRC/openSUSE:Factory/python-sphinxcontrib-github-alt/python-sphinxcontrib-github-alt.changes 2019-05-03 22:46:39.707801615 +0200 +++ /work/SRC/openSUSE:Factory/.python-sphinxcontrib-github-alt.new.3592/python-sphinxcontrib-github-alt.changes 2020-07-28 17:30:55.526285076 +0200 @@ -1,0 +2,7 @@ +Tue Jul 28 09:33:03 UTC 2020 - Marketa Calabkova <mcalabk...@suse.com> + +- update to version 1.2 + * Actions: Cover installation and module import + * pyproject.toml: Add missing dependencies + +------------------------------------------------------------------- Old: ---- sphinxcontrib_github_alt-1.1.tar.gz New: ---- sphinxcontrib_github_alt-1.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-sphinxcontrib-github-alt.spec ++++++ --- /var/tmp/diff_new_pack.scor9g/_old 2020-07-28 17:30:56.570286261 +0200 +++ /var/tmp/diff_new_pack.scor9g/_new 2020-07-28 17:30:56.574286266 +0200 @@ -1,7 +1,7 @@ # # spec file for package python-sphinxcontrib-github-alt # -# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2020 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -19,20 +19,21 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} %bcond_with test Name: python-sphinxcontrib-github-alt -Version: 1.1 +Version: 1.2 Release: 0 Summary: Sphinx extension to link to GitHub issues, pull requests, commits and users License: BSD-2-Clause Group: Development/Languages/Python -Url: http://github.com/Calysto/octave_kernel +URL: https://github.com/Calysto/octave_kernel Source0: https://files.pythonhosted.org/packages/source/s/sphinxcontrib_github_alt/sphinxcontrib_github_alt-%{version}.tar.gz +BuildRequires: %{python_module Sphinx} +BuildRequires: %{python_module docutils} BuildRequires: %{python_module setuptools} BuildRequires: fdupes BuildRequires: python-rpm-macros Requires: python-Sphinx Requires: python-docutils BuildArch: noarch - %python_subpackages %description @@ -52,6 +53,10 @@ %python_install %python_expand %fdupes %{buildroot}%{$python_sitelib} +%check +# the only test upstream has +%python_exec -c 'import sphinxcontrib_github_alt' + %files %{python_files} %license COPYING.md %doc README.rst ++++++ sphinxcontrib_github_alt-1.1.tar.gz -> sphinxcontrib_github_alt-1.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinxcontrib_github_alt-1.1/.github/workflows/venv_install.yml new/sphinxcontrib_github_alt-1.2/.github/workflows/venv_install.yml --- old/sphinxcontrib_github_alt-1.1/.github/workflows/venv_install.yml 1970-01-01 01:00:00.000000000 +0100 +++ new/sphinxcontrib_github_alt-1.2/.github/workflows/venv_install.yml 2020-04-27 11:07:58.725353000 +0200 @@ -0,0 +1,28 @@ +name: Cover installation and module import + +on: +- pull_request +- push + +jobs: + pip_detect_outdated: + name: Cover installation and module import + runs-on: ubuntu-18.04 + steps: + - uses: actions/checkout@v2 + + - name: Set up Python 3.8 + uses: actions/setup-python@v1.1.1 + with: + python-version: 3.8 + + - name: Install build dependencies + run: |- + sudo apt-get install --yes --no-install-recommends virtualenv + + - name: Install and import with fresh virtualenv + run: |- + set -e + virtualenv --python=python3 venv + venv/bin/pip install . + venv/bin/python -c 'import sphinxcontrib_github_alt' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinxcontrib_github_alt-1.1/PKG-INFO new/sphinxcontrib_github_alt-1.2/PKG-INFO --- old/sphinxcontrib_github_alt-1.1/PKG-INFO 1970-01-01 01:00:00.000000000 +0100 +++ new/sphinxcontrib_github_alt-1.2/PKG-INFO 1970-01-01 01:00:00.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: sphinxcontrib_github_alt -Version: 1.1 +Version: 1.2 Summary: Link to GitHub issues, pull requests, commits and users from Sphinx docs. Home-page: https://github.com/jupyter/sphinxcontrib_github_alt Author: Jupyter Development Team diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinxcontrib_github_alt-1.1/pyproject.toml new/sphinxcontrib_github_alt-1.2/pyproject.toml --- old/sphinxcontrib_github_alt-1.1/pyproject.toml 2019-03-26 12:52:18.238899700 +0100 +++ new/sphinxcontrib_github_alt-1.2/pyproject.toml 2020-04-27 11:04:20.346285000 +0200 @@ -1,6 +1,6 @@ [build-system] -requires = ["flit"] -build-backend = "flit.buildapi" +requires = ["flit_core >=2,<4"] +build-backend = "flit_core.buildapi" [tool.flit.metadata] module = "sphinxcontrib_github_alt" @@ -8,6 +8,10 @@ author-email = "jupy...@googlegroups.com" home-page = "https://github.com/jupyter/sphinxcontrib_github_alt" description-file = "README.rst" +requires = [ + "docutils", + "sphinx", +] classifiers = [ "Framework :: Sphinx :: Extension", "License :: OSI Approved :: BSD License", diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinxcontrib_github_alt-1.1/setup.py new/sphinxcontrib_github_alt-1.2/setup.py --- old/sphinxcontrib_github_alt-1.1/setup.py 1970-01-01 01:00:00.000000000 +0100 +++ new/sphinxcontrib_github_alt-1.2/setup.py 1970-01-01 01:00:00.000000000 +0100 @@ -3,12 +3,15 @@ from distutils.core import setup +install_requires = \ +['docutils', 'sphinx'] setup(name='sphinxcontrib_github_alt', - version='1.1', + version='1.2', description='Link to GitHub issues, pull requests, commits and users from Sphinx docs.', author='Jupyter Development Team', author_email='jupy...@googlegroups.com', url='https://github.com/jupyter/sphinxcontrib_github_alt', py_modules=['sphinxcontrib_github_alt'], + install_requires=install_requires, ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinxcontrib_github_alt-1.1/sphinxcontrib_github_alt.py new/sphinxcontrib_github_alt-1.2/sphinxcontrib_github_alt.py --- old/sphinxcontrib_github_alt-1.1/sphinxcontrib_github_alt.py 2019-03-27 14:45:15.077878000 +0100 +++ new/sphinxcontrib_github_alt-1.2/sphinxcontrib_github_alt.py 2020-04-27 11:00:14.384022000 +0200 @@ -13,7 +13,7 @@ # Copyright (c) 2010- Doug Hellmann & Jupyter Development Team. All rights reserved. # Distributed under the 2-clause BSD license: see COPYING.md for license text. -__version__ = '1.1' +__version__ = '1.2' from docutils import nodes, utils from docutils.parsers.rst.roles import set_classes