2024-01-06 10:44:52 +01:00
|
|
|
%define pkgver %(echo %version | tr _ -)
|
2024-01-06 10:44:52 +01:00
|
|
|
Name: python-apsw
|
2024-01-06 10:44:52 +01:00
|
|
|
Version: 3.28.0_r1
|
2024-01-06 10:44:52 +01:00
|
|
|
Release: 1mamba
|
|
|
|
Summary: Another Python SQLite Wrapper
|
|
|
|
Group: System/Libraries
|
|
|
|
Vendor: openmamba
|
|
|
|
Distribution: openmamba
|
2024-01-06 10:44:52 +01:00
|
|
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
2024-01-06 10:44:52 +01:00
|
|
|
URL: https://code.google.com/p/apsw/
|
2024-01-06 10:44:52 +01:00
|
|
|
Source: https://github.com/rogerbinns/apsw.git/%{pkgver}/apsw-%{version}.tar.bz2
|
|
|
|
#Source: https://apsw.googlecode.com/files/apsw-%{version}-r1.zip
|
2024-01-06 10:44:52 +01:00
|
|
|
License: GPL
|
|
|
|
## AUTOBUILDREQ-BEGIN
|
|
|
|
## note: run 'autospec -u -a6 python-apsw' to get the list of build requirements.
|
|
|
|
## AUTOBUILDREQ-END
|
|
|
|
BuildRequires: libpython-devel
|
|
|
|
Requires: python >= %python_version
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
|
|
|
|
|
|
|
%description
|
|
|
|
%{summary} for the SQLite embedded relational database engine. In contrast to other wrappers such as pysqlite it focuses on being a minimal layer over SQLite attempting just to translate the complete SQLite API into Python. The documentation has a section on the differences between APSW and pysqlite. APSW supports CPython 2.3 onwards and CPython 3.1 onwards.
|
|
|
|
|
|
|
|
%prep
|
2024-01-06 10:44:52 +01:00
|
|
|
%setup -q -n apsw-%{version}
|
2024-01-06 10:44:52 +01:00
|
|
|
|
|
|
|
%build
|
|
|
|
CFLAGS="%{optflags}" %{__python} setup.py build
|
|
|
|
|
|
|
|
%install
|
|
|
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
|
|
|
%{__python} setup.py install \
|
|
|
|
-O1 --skip-build \
|
|
|
|
--root="%{buildroot}" \
|
|
|
|
--install-headers=%{_includedir}/python \
|
|
|
|
--install-lib=%{python_sitearch} \
|
|
|
|
--record=%{name}.filelist
|
|
|
|
|
2024-01-06 10:44:52 +01:00
|
|
|
#sed -i "\,\.egg-info/,d;s,.*/man/.*,&.gz," %{name}.filelist
|
2024-01-06 10:44:52 +01:00
|
|
|
|
|
|
|
%files -f %{name}.filelist
|
|
|
|
%defattr(-,root,root)
|
|
|
|
## note: this list is just an example; modify as required
|
|
|
|
# %{python_sitearch}/%{name}.py*
|
|
|
|
# %{python_sitearch}/%{name}.so
|
|
|
|
|
|
|
|
## note: eventually add the remaining documents (if any)
|
|
|
|
#
|
|
|
|
|
|
|
|
%changelog
|
2024-01-06 10:44:52 +01:00
|
|
|
* Sun Aug 18 2019 Silvan Calarco <silvan.calarco@mambasoft.it> 3.28.0_r1-1mamba
|
|
|
|
- update to 3.28.0_r1
|
|
|
|
|
2024-01-06 10:44:52 +01:00
|
|
|
* Sun Jul 31 2016 Silvan Calarco <silvan.calarco@mambasoft.it> 3.13.0_r1-1mamba
|
|
|
|
- update to 3.13.0_r1
|
|
|
|
|
2024-01-06 10:44:52 +01:00
|
|
|
* Thu Jul 10 2014 Silvan Calarco <silvan.calarco@mambasoft.it> 3.8.5_r1-1mamba
|
|
|
|
- update to 3.8.5_r1
|
|
|
|
|
2024-01-06 10:44:52 +01:00
|
|
|
* Sat Mar 01 2014 Automatic Build System <autodist@mambasoft.it> 3.8.1-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
|
|
* Mon Oct 07 2013 openmamba WebBuild System <webbuild@openmamba.org> 3.8.0.2-1mamba
|
|
|
|
- package created by ercolinux using the webbuild interface
|