From 667a36e6f252089f310522a94805b395b4e7d04e Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 6 Jan 2024 11:03:13 +0100 Subject: [PATCH] package created using the webbuild interface [release 20121119-1mamba;Fri Aug 07 2015] --- README.md | 2 ++ python-diff-match-patch.spec | 53 ++++++++++++++++++++++++++++++++++++ 2 files changed, 55 insertions(+) create mode 100644 python-diff-match-patch.spec diff --git a/README.md b/README.md index 78ee66f..a234c74 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-diff-match-patch +Robust algorithms to perform the operations required for synchronizing plain text. + diff --git a/python-diff-match-patch.spec b/python-diff-match-patch.spec new file mode 100644 index 0000000..44f68e5 --- /dev/null +++ b/python-diff-match-patch.spec @@ -0,0 +1,53 @@ +Name: python-diff-match-patch +Version: 20121119 +Release: 1mamba +Summary: Robust algorithms to perform the operations required for synchronizing plain text +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://pypi.python.org/pypi/diff-match-patch/ +Source: https://pypi.python.org/packages/source/d/diff-match-patch/diff-match-patch-%{version}.tar.gz +License: Apache License 2.0 +## AUTOBUILDREQ-BEGIN +BuildRequires: libpython-devel +## AUTOBUILDREQ-END +Requires: python >= %python_version +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +%{summary}. + +%if "%{?with_pyver}" +%pyver_package +%endif + +%prep +%setup -q -n diff-match-patch-%{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) +## note: this list is just an example; modify as required +# %{python_sitearch}/%{name}.py* +# %{python_sitearch}/%{name}.so +%doc LICENCE +## note: eventually add the remaining documents (if any) +# %doc README.original.txt README.rst + +%changelog +* Fri Aug 07 2015 Silvan Calarco 20121119-1mamba +- package created using the webbuild interface