From 3d69302eda7c30cba1439fef888420b7dd5935a660eb8f86d968a76a79863351 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Chv=C3=A1tal?= Date: Tue, 19 Feb 2019 14:36:33 +0000 Subject: [PATCH] osc copypac from project:devel:languages:python:misc package:python-aspectlib revision:1 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-aspectlib?expand=0&rev=1 --- .gitattributes | 23 ++++++++++++ .gitignore | 1 + aspectlib-1.4.2.tar.gz | 3 ++ python-aspectlib.changes | 4 +++ python-aspectlib.spec | 78 ++++++++++++++++++++++++++++++++++++++++ 5 files changed, 109 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 aspectlib-1.4.2.tar.gz create mode 100644 python-aspectlib.changes create mode 100644 python-aspectlib.spec diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/aspectlib-1.4.2.tar.gz b/aspectlib-1.4.2.tar.gz new file mode 100644 index 0000000..98e7f6e --- /dev/null +++ b/aspectlib-1.4.2.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09f159766ce8ca7d96b857101729c344d70360141d5b3274ba5554a3d46fd940 +size 159730 diff --git a/python-aspectlib.changes b/python-aspectlib.changes new file mode 100644 index 0000000..54ce985 --- /dev/null +++ b/python-aspectlib.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +Thu Oct 19 00:30:47 UTC 2017 - toddrme2178@gmail.com + +- Initial version diff --git a/python-aspectlib.spec b/python-aspectlib.spec new file mode 100644 index 0000000..3539cb3 --- /dev/null +++ b/python-aspectlib.spec @@ -0,0 +1,78 @@ +# +# spec file for package python-aspectlib +# +# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via http://bugs.opensuse.org/ + + +%{?!python_module:%define python_module() python-%{**} python3-%{**}} +# Test requires network connection +%bcond_with test +%define oldpython python +Name: python-aspectlib +Version: 1.4.2 +Release: 0 +License: BSD-2-Clause +Summary: Aspect-oriented programming +Url: https://github.com/ionelmc/python-aspectlib +Group: Development/Languages/Python +Source: https://files.pythonhosted.org/packages/source/a/aspectlib/aspectlib-%{version}.tar.gz +BuildRequires: python-rpm-macros +BuildRequires: %{python_module devel} +BuildRequires: %{python_module setuptools} +%if %{with test} +BuildRequires: %{python_module fields} +BuildRequires: %{python_module process-tests} +BuildRequires: %{python_module pytest} +BuildRequires: %{python_module tornado} +BuildRequires: python-mock +BuildRequires: python-trollius +%endif +BuildRequires: fdupes +Requires: python-fields +Recommends: python-tornado +%ifpython2 +Requires: %{oldpython}-trollius +%endif +BuildArch: noarch + +%python_subpackages + +%description +Aspectlib is an aspect-oriented programming, monkey-patch and +decorators library. It is useful when changing behavior in +existing code is desired. It includes tools for debugging and +testing: simple mock/record and a complete capture/replay +framework. + +%prep +%setup -q -n aspectlib-%{version} + +%build +%python_build + +%install +%python_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} + +%if %{with test} +%check +%python_expand py.test-%{$python_bin_suffix} -vv --ignore=src +%endif + +%files %{python_files} +%defattr(-,root,root,-) +%doc AUTHORS.rst CHANGELOG.rst LICENSE README.rst +%{python_sitelib}/* + +%changelog