From ad07c30bd95ecc0dedb78552a285af658efa8118 Mon Sep 17 00:00:00 2001 From: Stefano Cotta Ramusino Date: Fri, 5 Jan 2024 16:30:21 +0100 Subject: [PATCH] package created using the webbuild interface [release 0.7.3-1mamba;Thu Jan 30 2014] --- README.md | 2 ++ python-pysmell.spec | 45 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+) create mode 100644 python-pysmell.spec diff --git a/README.md b/README.md index f1a2c86..9bbb329 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-pysmell +PySmell is a python IDE completion helper. + diff --git a/python-pysmell.spec b/python-pysmell.spec new file mode 100644 index 0000000..a020503 --- /dev/null +++ b/python-pysmell.spec @@ -0,0 +1,45 @@ +Name: python-pysmell +Version: 0.7.3 +Release: 1mamba +Summary: Autocomplete helper for Python +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Stefano Cotta Ramusino +URL: https://code.google.com/p/pysmell/ +Source: https://pypi.python.org/packages/source/p/pysmell/pysmell-%{version}.zip +License: BSD +## AUTOBUILDREQ-BEGIN +BuildRequires: libpython-devel +## AUTOBUILDREQ-END +Requires: python >= %python_version +BuildArch: noarch +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +PySmell is a python IDE completion helper. + +%prep +%setup -q -n pysmell-%{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) +%doc AUTHORS README.markdown + +%changelog +* Thu Jan 30 2014 Stefano Cotta Ramusino 0.7.3-1mamba +- package created using the webbuild interface