diff --git a/pyodbc-4.0.32.tar.gz b/pyodbc-4.0.32.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..25a285b6e8a7d42a7b8dcdeab9106418dcdc9ea3 Binary files /dev/null and b/pyodbc-4.0.32.tar.gz differ diff --git a/python-pyodbc.spec b/python-pyodbc.spec new file mode 100644 index 0000000000000000000000000000000000000000..1eb6a7893a7ba3d1d5653264cacb371f0337a0e2 --- /dev/null +++ b/python-pyodbc.spec @@ -0,0 +1,84 @@ +%global _empty_manifest_terminate_build 0 +Name: python-pyodbc +Version: 4.0.32 +Release: 1 +Summary: DB API Module for ODBC +License: MIT +URL: https://github.com/mkleehammer/pyodbc +Source0: https://files.pythonhosted.org/packages/d1/21/755f5fa373d01d1803d992c7611799dc4e9fcbb5db7d0852990d6ab3c9ad/pyodbc-4.0.32.tar.gz +%description +pyodbc is an open source Python module that makes accessing ODBC databases +simple. It implements the DB API 2.0 specification but is packed with even more +Pythonic convenience. + +%package -n python3-pyodbc +Summary: DB API Module for ODBC +Provides: python-pyodbc +# Base build requires +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pbr +BuildRequires: python3-pip +BuildRequires: python3-wheel +# General requires +BuildRequires: gcc-c++ +BuildRequires: unixODBC-devel +%description -n python3-pyodbc +pyodbc is an open source Python module that makes accessing ODBC databases +simple. It implements the DB API 2.0 specification but is packed with even more +Pythonic convenience. + +%package help +Summary: DB API Module for ODBC +Provides: python3-pyodbc-doc +%description help +pyodbc is an open source Python module that makes accessing ODBC databases +simple. It implements the DB API 2.0 specification but is packed with even more +Pythonic convenience. + +%prep +%autosetup -n pyodbc-%{version} + +%build +%py3_build + +%install +%py3_install + +install -d -m755 %{buildroot}/%{_pkgdocdir} +if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi +if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi +if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi +if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi +pushd %{buildroot} +if [ -d usr/lib ]; then + find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/lib64 ]; then + find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/bin ]; then + find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/sbin ]; then + find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst +fi +touch doclist.lst +if [ -d usr/share/man ]; then + find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst +fi +popd +mv %{buildroot}/filelist.lst . +mv %{buildroot}/doclist.lst . + +%files -n python3-pyodbc -f filelist.lst +%dir %{python3_sitearch}/* +/usr/pyodbc.pyi + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Wed Jul 13 2022 OpenStack_SIG - 4.0.32-1 +- Init package python3-pyodbc of version 4.0.32 +