From 5f334b6de23074a8162b5928243e366b34ae95d1 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 5 Jan 2024 16:35:39 +0100 Subject: [PATCH] package created using the webbuild interface [release 0.10.2-1mamba;Wed Oct 07 2015] --- README.md | 2 ++ python-rope.spec | 49 ++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 51 insertions(+) create mode 100644 python-rope.spec diff --git a/README.md b/README.md index 5f72727..6d042e2 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-rope +A python refactoring library. + diff --git a/python-rope.spec b/python-rope.spec new file mode 100644 index 0000000..aa4968e --- /dev/null +++ b/python-rope.spec @@ -0,0 +1,49 @@ +Name: python-rope +Version: 0.10.2 +Release: 1mamba +Summary: A python refactoring library +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://github.com/python-rope/rope +Source: https://pypi.python.org/packages/source/r/rope/rope-%{version}.tar.gz +License: GPL +## AUTOBUILDREQ-BEGIN +BuildRequires: libpython-devel +## AUTOBUILDREQ-END +Requires: python >= %python_version +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +%{summary}. + +%prep +%setup -q -n rope-%{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) +## note: this list is just an example; modify as required +# %{python_sitearch}/%{name}.py* +# %{python_sitearch}/%{name}.so +%doc COPYING +## note: eventually add the remaining documents (if any) +# %doc README.rst + +%changelog +* Wed Oct 07 2015 Silvan Calarco 0.10.2-1mamba +- package created using the webbuild interface