From 582b807df48052d7be45f89811e3be6b1f3bf2dc Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 6 Jan 2024 11:28:01 +0100 Subject: [PATCH] package created using the webbuild interface [release 1.3.0-1mamba;Sat Dec 05 2015] --- README.md | 2 ++ python-mock.spec | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 48 insertions(+) create mode 100644 python-mock.spec diff --git a/README.md b/README.md index 4267097..1f6810d 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-mock +Rolling backport of unittest.mock for all Pythons. + diff --git a/python-mock.spec b/python-mock.spec new file mode 100644 index 0000000..b31baaf --- /dev/null +++ b/python-mock.spec @@ -0,0 +1,46 @@ +Name: python-mock +Version: 1.3.0 +Release: 1mamba +Summary: Rolling backport of unittest.mock for all Pythons +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://github.com/testing-cabal/mock +Source: https://pypi.python.org/packages/source/m/mock/mock-%{version}.tar.gz +License: BSD +## AUTOBUILDREQ-BEGIN +BuildRequires: libpython-devel +## AUTOBUILDREQ-END +Requires: python >= %python_version +Requires: python-pbr +Requires: python-funcsigs +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +%{summary}. + +%prep +%setup -q -n mock-%{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 + +%changelog +* Sat Dec 05 2015 Silvan Calarco 1.3.0-1mamba +- package created using the webbuild interface