From cd45ab192f6f4f855181f78d549f0cc1a3ac403dc269c50dadc3233e44d20910 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mark=C3=A9ta=20Machov=C3=A1?= Date: Mon, 28 Jun 2021 12:59:40 +0000 Subject: [PATCH] Accepting request 902539 from home:bnavigator:branches:devel:languages:python:jupyter New requirement for ipython and ipykernel OBS-URL: https://build.opensuse.org/request/show/902539 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:jupyter/python-matplotlib-inline?expand=0&rev=1 --- .gitattributes | 24 ++++++++++ .gitignore | 4 ++ _multibuild | 3 ++ matplotlib-inline-0.1.2.tar.gz | 3 ++ python-matplotlib-inline.changes | 7 +++ python-matplotlib-inline.spec | 79 ++++++++++++++++++++++++++++++++ 6 files changed, 120 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 _multibuild create mode 100644 matplotlib-inline-0.1.2.tar.gz create mode 100644 python-matplotlib-inline.changes create mode 100644 python-matplotlib-inline.spec diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..37a8eaa --- /dev/null +++ b/.gitattributes @@ -0,0 +1,24 @@ +*.changes merge=merge-changes +*.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 +*.tar 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..8b731c3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +*.obscpio +*.osc +_build.* +.pbuild diff --git a/_multibuild b/_multibuild new file mode 100644 index 0000000..fcc7b97 --- /dev/null +++ b/_multibuild @@ -0,0 +1,3 @@ + + test + diff --git a/matplotlib-inline-0.1.2.tar.gz b/matplotlib-inline-0.1.2.tar.gz new file mode 100644 index 0000000..df7c2fb --- /dev/null +++ b/matplotlib-inline-0.1.2.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f41d5ff73c9f5385775d5c0bc13b424535c8402fe70ea8210f93e11f3683993e +size 7480 diff --git a/python-matplotlib-inline.changes b/python-matplotlib-inline.changes new file mode 100644 index 0000000..f54bbe8 --- /dev/null +++ b/python-matplotlib-inline.changes @@ -0,0 +1,7 @@ +------------------------------------------------------------------- +Sat Jun 26 15:13:49 UTC 2021 - Ben Greiner + +- initial specfile for version 0.2 +- new requirement for IPython 7.25 and IPyKernel 6 +- multibuild for rudimentary test in order to avoid depcycle with + ipython diff --git a/python-matplotlib-inline.spec b/python-matplotlib-inline.spec new file mode 100644 index 0000000..0e2baea --- /dev/null +++ b/python-matplotlib-inline.spec @@ -0,0 +1,79 @@ +# +# spec file for package python-matplotlib-inline +# +# Copyright (c) 2021 SUSE LLC +# +# 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 https://bugs.opensuse.org/ +# + + +%global flavor @BUILD_FLAVOR@%{nil} +%if "%{flavor}" == "test" +%define psuffix -test +%bcond_without test +%else +%define psuffix %{nil} +%bcond_with test +%endif +%{?!python_module:%define python_module() python3-%{**}} +%define skip_python2 1 +%define skip_python36 1 +Name: python-matplotlib-inline%{psuffix} +Version: 0.1.2 +Release: 0 +Summary: Inline Matplotlib backend for Jupyter +License: BSD-3-Clause +URL: https://github.com/ipython/matplotlib-inline +Source: https://files.pythonhosted.org/packages/source/m/matplotlib-inline/matplotlib-inline-%{version}.tar.gz +BuildRequires: python-rpm-macros +BuildRequires: %{python_module setuptools} +BuildRequires: %{python_module traitlets} +%if %{with test} +BuildRequires: %{python_module matplotlib} +BuildRequires: %{python_module ipython} +%endif +BuildRequires: fdupes +Requires: python-traitlets +BuildArch: noarch +%python_subpackages + +%description +Matplotlib Inline Back-end for IPython and Jupyter + +%prep +%setup -q -n matplotlib-inline-%{version} + +%build +%python_build + + +%install +%if ! %{with test} +%python_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} +%endif + +%if %{with test} +%check +# this is upstream's only CI check either +%python_exec -B -c 'from matplotlib_inline.backend_inline import show' +%endif + +%if ! %{with test} +%files %{python_files} +%doc README.md +%license LICENSE +%{python_sitelib}/matplotlib_inline +%{python_sitelib}/matplotlib_inline-%{version}*-info +%endif + +%changelog