Hello community,
here is the log from the commit of package python-dephell_changelogs for
openSUSE:Factory checked in at 2020-03-25 23:45:01
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-dephell_changelogs (Old)
and /work/SRC/openSUSE:Factory/.python-dephell_changelogs.new.3160 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-dephell_changelogs"
Wed Mar 25 23:45:01 2020 rev:4 rq:787828 version:0.0.1
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-dephell_changelogs/python-dephell_changelogs.changes
2020-03-10 14:05:57.887403240 +0100
+++
/work/SRC/openSUSE:Factory/.python-dephell_changelogs.new.3160/python-dephell_changelogs.changes
2020-03-25 23:46:27.176055552 +0100
@@ -1,0 +2,5 @@
+Mon Mar 23 18:13:44 UTC 2020 - Matej Cepl <[email protected]>
+
+- Add macro %dephell_genspec to generate setup.py
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-dephell_changelogs.spec ++++++
--- /var/tmp/diff_new_pack.1hUEbo/_old 2020-03-25 23:46:29.112056185 +0100
+++ /var/tmp/diff_new_pack.1hUEbo/_new 2020-03-25 23:46:29.140056194 +0100
@@ -26,7 +26,7 @@
License: MIT
URL: https://github.com/dephell/dephell_changelogs
Source0:
https://github.com/dephell/%{modname}/archive/v.%{version}.tar.gz#/%{modname}-%{version}.tar.gz
-# Temporary measure, until dephell in %%prep actually works
+# Temporary measure, until dephell in %%prep actually works
gh#dephell/dephell_changelogs#5
Source1: setup.py
# PATCH-FIX-UPSTREAM add_network_markers.patch gh#dephell/dephell_changelogs#4
[email protected]
# add markers for test cases requiring network connection
@@ -37,10 +37,12 @@
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
+BuildRequires: python-dephell-rpm-macros
BuildRequires: python-rpm-macros
Requires: python-attrs
BuildArch: noarch
# SECTION test requirements
+BuildRequires: %{python_module pytest-xdist}
BuildRequires: %{python_module pytest}
# /SECTION
%python_subpackages
@@ -50,8 +52,10 @@
%prep
%autosetup -p1 -n %{modname}-v.%{version}
-# Doesn’t work ATM
-# dephell deps convert --traceback --level=DEBUG --from pyproject.toml --to
setup.py
+
+%define dephell_loglevel DEBUG
+# Temporarily switched off because of gh#dephell/dephell_changelogs#5
+# %%dephell_gensetup
cp -p %{SOURCE1} .
%build
++++++ setup.py ++++++
--- /var/tmp/diff_new_pack.1hUEbo/_old 2020-03-25 23:46:29.320056254 +0100
+++ /var/tmp/diff_new_pack.1hUEbo/_new 2020-03-25 23:46:29.324056255 +0100
@@ -1,3 +1,4 @@
+
# -*- coding: utf-8 -*-
# DO NOT EDIT THIS FILE!
@@ -9,6 +10,7 @@
except ImportError:
from distutils.core import setup
+
import os.path
readme = ''
@@ -18,6 +20,7 @@
with open(readme_path, 'rb') as stream:
readme = stream.read().decode('utf8')
+
setup(
long_description=readme,
name='dephell_changelogs',
@@ -28,15 +31,15 @@
author='Gram (@orsinium)',
author_email='[email protected]',
classifiers=[
- 'Development Status :: 5 - Production/Stable', 'Environment ::
Console',
- 'Intended Audience :: Developers',
+ 'Development Status :: 5 - Production/Stable',
+ 'Environment :: Console', 'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
- 'Programming Language :: Python :: 3', 'Programming Language ::
Python',
- 'Topic :: Software Development :: Libraries :: Python Modules'
- ],
+ 'Programming Language :: Python :: 3',
+ 'Programming Language :: Python',
+ 'Topic :: Software Development :: Libraries :: Python Modules'],
packages=['dephell_changelogs'],
package_dir={"": "."},
package_data={},