Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package jupyter for openSUSE:Factory checked 
in at 2021-11-18 10:33:03
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/jupyter (Old)
 and      /work/SRC/openSUSE:Factory/.jupyter.new.1895 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "jupyter"

Thu Nov 18 10:33:03 2021 rev:6 rq:931632 version:1.0.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/jupyter/jupyter-filesystem.changes       
2021-02-02 14:24:37.123293557 +0100
+++ /work/SRC/openSUSE:Factory/.jupyter.new.1895/jupyter-filesystem.changes     
2021-11-18 10:33:12.795872766 +0100
@@ -1,0 +2,9 @@
+Sun Nov 14 16:27:05 UTC 2021 - Ben Greiner <c...@bnavigator.de>
+
+- Update to 20211114
+  * move/keep distribution provided jupyter config to/in
+    %_distconfdir
+  * add macro for jupyterlab3 extensions dir
+  * make package noarch
+
+-------------------------------------------------------------------
--- /work/SRC/openSUSE:Factory/jupyter/jupyter.changes  2021-02-02 
14:24:37.271293787 +0100
+++ /work/SRC/openSUSE:Factory/.jupyter.new.1895/jupyter.changes        
2021-11-18 10:33:12.827872796 +0100
@@ -1,0 +2,5 @@
+Sun Nov 14 18:14:37 UTC 2021 - Ben Greiner <c...@bnavigator.de>
+
+- Require python(abi) in order to silence rpmlint 
+
+-------------------------------------------------------------------

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ jupyter-filesystem.spec ++++++
--- /var/tmp/diff_new_pack.2NKsWj/_old  2021-11-18 10:33:15.087874899 +0100
+++ /var/tmp/diff_new_pack.2NKsWj/_new  2021-11-18 10:33:15.095874907 +0100
@@ -19,7 +19,7 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           jupyter-filesystem
 URL:            https://jupyter.org/
-Version:        20190823
+Version:        20211114
 Release:        0
 %define tar_ver 1.0.0
 Summary:        Common directories shared by Jupyter packages
@@ -30,6 +30,7 @@
 Source11:       macros.jupyter_notebook
 Source12:       macros.jupyterlab
 BuildRequires:  python-rpm-macros
+BuildArch:      noarch
 
 %description
 This package provides common directories and macros used by many 
@@ -51,7 +52,7 @@
 
 %define _jupyter_prefix          %{_datadir}/jupyter/
 %define _jupyter_kernel_dir      %{_jupyter_prefix}/kernels/
-%define _jupyter_confdir         %{_sysconfdir}/jupyter/
+%define _jupyter_confdir         %{_distconfdir}/jupyter/
 
 %package     -n jupyter-notebook-filesystem
 Summary:        Common directories shared by Jupyter notebook packages
@@ -106,6 +107,7 @@
 
 %define _jupyter_lab_dir            %{_jupyter_prefix}/lab/
 %define _jupyter_labextensions_dir  %{_jupyter_lab_dir}/extensions/
+%define _jupyter_labextensions_dir3  %{_jupyter_prefix}/labextensions/
 
 %prep
 %setup -q -n jupyter-%{tar_ver}
@@ -145,6 +147,7 @@
 # jupyterlab directories
 mkdir -p %{buildroot}%{_jupyter_lab_dir}
 mkdir -p %{buildroot}%{_jupyter_labextensions_dir}
+mkdir -p %{buildroot}%{_jupyter_labextensions_dir3}
 
 %files -n jupyter-jupyter_core-filesystem
 %license LICENSE
@@ -177,5 +180,6 @@
 %{_rpmmacrodir}/macros.jupyterlab
 %dir %{_jupyter_lab_dir}
 %dir %{_jupyter_labextensions_dir}
+%dir %{_jupyter_labextensions_dir3}
 
 %changelog

++++++ jupyter.spec ++++++
--- /var/tmp/diff_new_pack.2NKsWj/_old  2021-11-18 10:33:15.111874921 +0100
+++ /var/tmp/diff_new_pack.2NKsWj/_new  2021-11-18 10:33:15.115874925 +0100
@@ -16,6 +16,7 @@
 #
 
 
+%define plainpython python
 Name:           jupyter
 Version:        1.0.0
 Release:        0
@@ -46,6 +47,7 @@
 Requires:       python-nbconvert
 Requires:       python-notebook
 Requires:       python-qtconsole
+Requires:       %plainpython(abi) = %{python_version}
 %if "%{python_flavor}" == "python3" || "%{python_provides}" == "python3"
 Provides:       jupyter = %{version}-%{release}
 Obsoletes:      jupyter < %{version}-%{release}


++++++ macros.jupyter_core ++++++
--- /var/tmp/diff_new_pack.2NKsWj/_old  2021-11-18 10:33:15.155874962 +0100
+++ /var/tmp/diff_new_pack.2NKsWj/_new  2021-11-18 10:33:15.159874966 +0100
@@ -1,11 +1,13 @@
 %_jupyter_prefix          %{_datadir}/jupyter/
 %_jupyter_kernel_dir      %{_jupyter_prefix}/kernels/
-%_jupyter_confdir         %{_sysconfdir}/jupyter/
+%_jupyter_confdir         %{_distconfdir}/jupyter/
+
+%_jupyter_distconfig 1
 
 %jupyter_move_config \
-    %if "$(dirname %{_prefix}/etc/jupyter)" != "$(dirname 
%{_jupyter_confdir})" \
-    mkdir -p %{buildroot}%{_sysconfdir} \
+  if [ "$(dirname %{_prefix}/etc/jupyter/)" != "$(dirname 
%{_jupyter_confdir})" ]; then \
+    mkdir -p %{buildroot}%{_distconfdir} \
     mv %{buildroot}%{_prefix}/etc/jupyter %{buildroot}%{_jupyter_confdir} \
     rm -d %{buildroot}%{_prefix}/etc \
-    %endif \
+  fi \
 %{nil}

++++++ macros.jupyterlab ++++++
--- /var/tmp/diff_new_pack.2NKsWj/_old  2021-11-18 10:33:15.183874989 +0100
+++ /var/tmp/diff_new_pack.2NKsWj/_new  2021-11-18 10:33:15.187874992 +0100
@@ -1,2 +1,3 @@
 %_jupyter_lab_dir            %{_jupyter_prefix}/lab/
 %_jupyter_labextensions_dir  %{_jupyter_lab_dir}/extensions/
+%_jupyter_labextensions_dir3  %{_jupyter_prefix}/labextensions/

Reply via email to