-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update python-dephell_changelogs to rev 4 via SR 787828
https://build.opensuse.org/request/show/787828 by user mcepl + dimstar_suse - Add macro %dephell_genspec to generate setup.py (temporarily switched of because of gh#dephell/dephell_changelogs#5)
- Loading branch information
1 parent
6f56500
commit 4e11bca
Showing
3 changed files
with
20 additions
and
8 deletions.
There are no files selected for viewing
5 changes: 5 additions & 0 deletions
5
packages/p/python-dephell_changelogs/python-dephell_changelogs.changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
------------------------------------------------------------------- | ||
Mon Mar 23 18:13:44 UTC 2020 - Matej Cepl <[email protected]> | ||
|
||
- Add macro %dephell_genspec to generate setup.py | ||
|
||
------------------------------------------------------------------- | ||
Tue Mar 10 12:29:31 UTC 2020 - Tomáš Chvátal <[email protected]> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ Summary: Pathlib for changelogss | |
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 requests} | |
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 @@ Dephell library providing pathlib for changelogss. | |
|
||
%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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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={}, | ||
|