mirror of
https://abf.rosa.ru/djam/python-sphinxcontrib-log-cabinet.git
synced 2025-02-23 16:02:51 +00:00
v.1.0.1
This commit is contained in:
commit
32f27c9bf7
2 changed files with 75 additions and 0 deletions
3
.abf.yml
Normal file
3
.abf.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
sources:
|
||||
iniparse-0.5.tar.gz: eecb8fc113c4fc5930fea7eebf0eb796229c0ebc
|
||||
sphinxcontrib-log-cabinet-1.0.1.tar.gz: 020e7556b0217a293afba4ea2a2498d20a119495
|
72
python-sphinxcontrib-log-cabinet.spec
Normal file
72
python-sphinxcontrib-log-cabinet.spec
Normal file
|
@ -0,0 +1,72 @@
|
|||
%define oname sphinxcontrib-log-cabinet
|
||||
|
||||
Summary: Organize changelogs generated by versionadded etc.
|
||||
Name: python-%oname
|
||||
Version: 1.0.1
|
||||
Release: 1
|
||||
Url: https://github.com/davidism/sphinxcontrib-log-cabinet
|
||||
Source0: https://files.pythonhosted.org/packages/75/26/0687391e10c605a4d0c7ebe118c57c51ecc687128bcdae5803d9b96def81/sphinxcontrib-log-cabinet-1.0.1.tar.gz
|
||||
License: BSD
|
||||
Group: Development/Python
|
||||
BuildArch: noarch
|
||||
BuildRequires: python2-devel
|
||||
BuildRequires: pythonegg(setuptools)
|
||||
|
||||
%description
|
||||
Organize changelogs generated by versionadded, versionchanged, deprecated
|
||||
directives. The log will be sorted by newest to oldest version. For HTML docs,
|
||||
older versions will be collapsed by default.
|
||||
|
||||
#==============================================================================
|
||||
%package -n python2-%oname
|
||||
Summary: Organize changelogs generated by versionadded etc.
|
||||
|
||||
%description -n python2-%oname
|
||||
Organize changelogs generated by versionadded, versionchanged, deprecated
|
||||
directives. The log will be sorted by newest to oldest version. For HTML docs,
|
||||
older versions will be collapsed by default.
|
||||
|
||||
%files -n python2-%oname
|
||||
%doc Changelog LICENSE README.md
|
||||
%{python2_sitelib}/%{oname}*
|
||||
|
||||
#==============================================================================
|
||||
|
||||
%package -n python3-%oname
|
||||
Summary: Organize changelogs generated by versionadded etc.
|
||||
BuildRequires: python3-devel
|
||||
BuildRequires: python3egg(setuptools)
|
||||
|
||||
%description -n python3-%oname
|
||||
Organize changelogs generated by versionadded, versionchanged, deprecated
|
||||
directives. The log will be sorted by newest to oldest version. For HTML docs,
|
||||
older versions will be collapsed by default.
|
||||
|
||||
%files -n python3-%oname
|
||||
%doc Changelog LICENSE README.md
|
||||
%{python3_sitelib}/%{oname}*
|
||||
|
||||
#==============================================================================
|
||||
|
||||
%prep
|
||||
%setup -qc -n %oname-%{version}
|
||||
mv %oname-%{version} python2
|
||||
cp -r python2 python3
|
||||
|
||||
%build
|
||||
pushd python2
|
||||
%py2_build
|
||||
popd
|
||||
|
||||
pushd python3
|
||||
%py3_build
|
||||
popd
|
||||
|
||||
%install
|
||||
pushd python3
|
||||
%py3_install
|
||||
popd
|
||||
|
||||
pushd python2
|
||||
%py2_install
|
||||
popd
|
Loading…
Add table
Reference in a new issue