From e82adc915dd5bf6dc9905f7e5e0d58229204d22c Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 6 Jan 2024 10:38:55 +0100 Subject: [PATCH] package created using the webbuild interface [release 1.9.2-1mamba;Sat Mar 05 2016] --- README.md | 2 ++ pyicu.spec | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 pyicu.spec diff --git a/README.md b/README.md index edc7298..637d953 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # pyicu +A Python extension wrapping IBM's International Components for Unicode C++ library (ICU). + diff --git a/pyicu.spec b/pyicu.spec new file mode 100644 index 0000000..988986f --- /dev/null +++ b/pyicu.spec @@ -0,0 +1,52 @@ +Name: pyicu +Version: 1.9.2 +Release: 1mamba +Summary: A Python extension wrapping IBM's International Components for Unicode C++ library (ICU) +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://github.com/ovalhub/pyicu +Source: https://pypi.python.org/packages/source/P/PyICU/PyICU-%{version}.tar.gz +License: OSI Approved +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libgcc +BuildRequires: libicu-devel +BuildRequires: libpython-devel +BuildRequires: libpython27-devel +BuildRequires: libstdc++6-devel +## AUTOBUILDREQ-END +BuildRequires: libpython-devel +Requires: python >= %python_version +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +%{summary}. + +%prep +%setup -q -n PyICU-%{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 -f %{name}.filelist +%defattr(-,root,root) +%dir %{python_sitearch}/PyICU-%{version}-py*.egg-info +%{python_sitearch}/PyICU-%{version}-py*.egg-info/* +%doc CREDITS LICENSE + +%changelog +* Sat Mar 05 2016 Silvan Calarco 1.9.2-1mamba +- package created using the webbuild interface