From 654b9a6d66e9475daa6cc085e356265535bf56e9 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 6 Jan 2024 11:11:38 +0100 Subject: [PATCH] package created using the webbuild interface [release 1.10.0-1mamba;Tue Jul 28 2015] --- README.md | 2 ++ python-geopy.spec | 49 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 51 insertions(+) create mode 100644 python-geopy.spec diff --git a/README.md b/README.md index e3db213..4b728f8 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-geopy +Python Geocoding Toolbox. + diff --git a/python-geopy.spec b/python-geopy.spec new file mode 100644 index 0000000..42db88f --- /dev/null +++ b/python-geopy.spec @@ -0,0 +1,49 @@ +Name: python-geopy +Version: 1.10.0 +Release: 1mamba +Summary: Python Geocoding Toolbox +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://github.com/geopy/geopy +Source: https://pypi.python.org/packages/source/g/geopy/geopy-%{version}.tar.gz +License: MIT +## AUTOBUILDREQ-BEGIN +## AUTOBUILDREQ-END +BuildRequires: libpython-devel +Requires: python >= %python_version +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +%{summary}. + +%if "%{?with_pyver}" +%pyver_package +%endif + +%prep +%setup -q -n geopy-%{version} + +%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 + +sed -i "\,\.egg-info/,d;s,.*/man/.*,&.gz," %{name}.filelist + +%files %{?pyappend} -f %{name}.filelist +%defattr(-,root,root) +%doc LICENSE + + +%changelog +* Tue Jul 28 2015 Silvan Calarco 1.10.0-1mamba +- package created using the webbuild interface