Пакет python-module-ctypesgen: Specfile

%define _unpackaged_files_terminate_build 1
%define oname ctypesgen

%def_without python3
%def_disable check

Name: python-module-%oname
Version: 0.r125
Release: alt2
Summary: Python wrapper generator for ctypes
License: BSD
Group: Development/Python
Url: https://pypi.python.org/pypi/ctypesgen/
BuildArch: noarch

# https://github.com/davidjamesca/ctypesgen.git
Source: %{oname}-%{version}.tar

# Based on changes from https://trac.osgeo.org/grass/ticket/3331 and https://trac.osgeo.org/grass/changeset/71219
Patch1: ctypesgen-alt-float.patch

BuildRequires: python-devel python-module-setuptools
BuildRequires: python-module-nose
BuildRequires: python-modules-json python-modules-logging
%if_with python3
BuildRequires(pre): rpm-build-python3
BuildRequires: python3-devel python3-module-setuptools
BuildRequires: python3-module-nose
BuildRequires: python-tools-2to3
%endif

%py_provides %oname
%py_requires json logging

%description
ctypesgen is a pure-python ctypes wrapper generator. It can also
output JSON, which can be used with Mork, which generates bindings for
Lua, using the alien module (which binds libffi to Lua).

%if_with python3
%package -n python3-module-%oname
Summary: Python wrapper generator for ctypes
Group: Development/Python3
%py3_provides %oname

%description -n python3-module-%oname
ctypesgen is a pure-python ctypes wrapper generator. It can also
output JSON, which can be used with Mork, which generates bindings for
Lua, using the alien module (which binds libffi to Lua).
%endif

%prep
%setup -q -n %{oname}-%{version}
%patch1 -p2

%if_with python3
cp -fR . ../python3
find ../python3 -type f -name '*.py' -exec 2to3 -w -n '{}' +
%endif

%build
%python_build_debug

%if_with python3
pushd ../python3
%python3_build_debug
popd
%endif

%install
%if_with python3
pushd ../python3
%python3_install
popd
pushd %buildroot%_bindir
for i in $(ls); do
	mv $i ${i}3
done
popd
%endif

%python_install

%check
python setup.py test
%if_with python3
pushd ../python3
python3 setup.py test
popd
%endif

%files
%doc PKG-INFO
%_bindir/*
%if_with python3
%exclude %_bindir/*.py3
%endif
%python_sitelibdir/*

%if_with python3
%files -n python3-module-%oname
%doc PKG-INFO
%_bindir/*.py3
%python3_sitelibdir/*
%endif

%changelog
* Mon Mar 05 2018 Aleksei Nikiforov <darktemplar@altlinux.org> 0.r125-alt2
- Fixed floating-point numbers definitions processing.

* Fri Feb 02 2018 Stanislav Levin <slev@altlinux.org> 0.r125-alt1.1
- (NMU) Fix Requires and BuildRequires to python-setuptools

* Tue Jan 17 2017 Igor Vlasenko <viy@altlinux.ru> 0.r125-alt1
- automated PyPI update

* Mon Mar 16 2015 Eugeny A. Rostovtsev (REAL) <real at altlinux.org> 0.0.r151-alt1.git20130821
- Initial build for Sisyphus