commit python-asdf-transform-schemas for openSUSE:Factory

2024-02-18 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-asdf-transform-schemas for 
openSUSE:Factory checked in at 2024-02-18 20:25:05

Comparing /work/SRC/openSUSE:Factory/python-asdf-transform-schemas (Old)
 and  /work/SRC/openSUSE:Factory/.python-asdf-transform-schemas.new.1815 
(New)


Package is "python-asdf-transform-schemas"

Sun Feb 18 20:25:05 2024 rev:5 rq:1147429 version:0.4.0

Changes:

--- 
/work/SRC/openSUSE:Factory/python-asdf-transform-schemas/python-asdf-transform-schemas.changes
  2023-12-02 17:13:58.431108832 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-asdf-transform-schemas.new.1815/python-asdf-transform-schemas.changes
2024-02-18 20:25:39.331391005 +0100
@@ -1,0 +2,6 @@
+Sun Feb 18 13:00:11 UTC 2024 - Ben Greiner 
+
+- Tests require asdf-astropy and scipy which got lost as transitive
+  dependencies -- gh#asdf-format/asdf-transform-schemas#106
+
+---



Other differences:
--
++ python-asdf-transform-schemas.spec ++
--- /var/tmp/diff_new_pack.cWAkqE/_old  2024-02-18 20:25:39.783407283 +0100
+++ /var/tmp/diff_new_pack.cWAkqE/_new  2024-02-18 20:25:39.787407427 +0100
@@ -1,7 +1,7 @@
 #
-# spec file
+# spec file for package python-asdf-transform-schemas
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -44,9 +44,11 @@
 Requires:   python-importlib_resources >= 3
 %endif
 %if %{with test}
+BuildRequires:  %{python_module asdf-astropy}
 BuildRequires:  %{python_module asdf-transform-schemas = %{version}}
 BuildRequires:  %{python_module asdf}
 BuildRequires:  %{python_module pytest}
+BuildRequires:  %{python_module scipy}
 %endif
 Provides:   python-asdf_transform_schemas = %{version}-%{release}
 BuildArch:  noarch
@@ -72,7 +74,7 @@
 
 %if %{with test}
 %check
-%pytest
+%pytest -v
 %endif
 
 %if !%{with test}


commit python-asdf-transform-schemas for openSUSE:Factory

2023-12-02 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-asdf-transform-schemas for 
openSUSE:Factory checked in at 2023-12-02 17:13:31

Comparing /work/SRC/openSUSE:Factory/python-asdf-transform-schemas (Old)
 and  /work/SRC/openSUSE:Factory/.python-asdf-transform-schemas.new.25432 
(New)


Package is "python-asdf-transform-schemas"

Sat Dec  2 17:13:31 2023 rev:4 rq:1130451 version:0.4.0

Changes:

--- 
/work/SRC/openSUSE:Factory/python-asdf-transform-schemas/python-asdf-transform-schemas.changes
  2022-10-28 19:30:40.134973917 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-asdf-transform-schemas.new.25432/python-asdf-transform-schemas.changes
   2023-12-02 17:13:58.431108832 +0100
@@ -1,0 +2,7 @@
+Sat Nov 25 12:53:44 UTC 2023 - Dirk Müller 
+
+- update to 0.4.0:
+  * Move root-level $ref in schemas to an allOf combiner. [#87]
+  * Fix URI fragment format in transform-1.2 schema. [#88]
+
+---

Old:

  asdf_transform_schemas-0.3.0.tar.gz

New:

  asdf_transform_schemas-0.4.0.tar.gz



Other differences:
--
++ python-asdf-transform-schemas.spec ++
--- /var/tmp/diff_new_pack.x7r3tc/_old  2023-12-02 17:13:58.871124957 +0100
+++ /var/tmp/diff_new_pack.x7r3tc/_new  2023-12-02 17:13:58.875125103 +0100
@@ -1,7 +1,7 @@
 #
 # spec file
 #
-# Copyright (c) 2022 SUSE LLC
+# Copyright (c) 2023 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -26,7 +26,7 @@
 %endif
 
 Name:   python-asdf-transform-schemas%{psuffix}
-Version:0.3.0
+Version:0.4.0
 Release:0
 Summary:ASDF schemas for transforms
 License:BSD-3-Clause

++ asdf_transform_schemas-0.3.0.tar.gz -> 
asdf_transform_schemas-0.4.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/asdf_transform_schemas-0.3.0/.flake8 
new/asdf_transform_schemas-0.4.0/.flake8
--- old/asdf_transform_schemas-0.3.0/.flake81970-01-01 01:00:00.0 
+0100
+++ new/asdf_transform_schemas-0.4.0/.flake82023-10-19 20:00:45.0 
+0200
@@ -0,0 +1,5 @@
+# this file exists to support an editable PEP517 install and for `flake8` 
(https://github.com/PyCQA/flake8/issues/234)
+[flake8]
+max-line-length = 120
+extend-ignore = E203
+exclude = .git, __pycache__, build, dist, eggs, *.egg, .tox
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/asdf_transform_schemas-0.3.0/.github/workflows/ci.yml 
new/asdf_transform_schemas-0.4.0/.github/workflows/ci.yml
--- old/asdf_transform_schemas-0.3.0/.github/workflows/ci.yml   2022-08-23 
00:06:57.0 +0200
+++ new/asdf_transform_schemas-0.4.0/.github/workflows/ci.yml   2023-10-19 
20:00:45.0 +0200
@@ -4,7 +4,7 @@
   workflow_dispatch:
   push:
 branches:
-  - master
+  - main
 tags:
   - "*"
   pull_request:
@@ -82,14 +82,12 @@
 with:
   fetch-depth: 0
   repository: astropy/astropy
-  ref: main
   path: astropy
   - name: Checkout asdf-astropy dev
 uses: actions/checkout@v2
 with:
   fetch-depth: 0
   repository: astropy/asdf-astropy
-  ref: main
   path: asdf-astropy
   - name: Set up Python 3.9
 uses: actions/setup-python@v2
@@ -107,5 +105,3 @@
 run: cd asdf-transform-schemas && pytest
   - name: Run asdf-astropy development tests
 run: cd asdf-astropy && pytest
-  - name: Run astropy development tests
-run: cd astropy && pytest astropy/io/misc/asdf
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/asdf_transform_schemas-0.3.0/.github/workflows/downstream.yml 
new/asdf_transform_schemas-0.4.0/.github/workflows/downstream.yml
--- old/asdf_transform_schemas-0.3.0/.github/workflows/downstream.yml   
2022-08-23 00:06:57.0 +0200
+++ new/asdf_transform_schemas-0.4.0/.github/workflows/downstream.yml   
2023-10-19 20:00:45.0 +0200
@@ -25,7 +25,7 @@
 
 jobs:
   common:
-name: ${{ matrix.package_name }}@${{ matrix.ref }} unit tests
+name: ${{ matrix.package_name }} unit tests
 runs-on: ubuntu-latest
 if: (github.repository == 'asdf-format/asdf-transform-schemas' && 
(github.event_name == 'schedule' || github.event_name == 'push' || 
github.event_name == 'workflow_dispatch' || 
contains(github.event.pull_request.labels.*.name, 'Downstream CI')))
 strategy:
@@ -34,62 +34,50 @@
 include:
   - package_name: astropy
 repository: astropy/astropy
-  

commit python-asdf-transform-schemas for openSUSE:Factory

2022-10-28 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-asdf-transform-schemas for 
openSUSE:Factory checked in at 2022-10-28 19:30:16

Comparing /work/SRC/openSUSE:Factory/python-asdf-transform-schemas (Old)
 and  /work/SRC/openSUSE:Factory/.python-asdf-transform-schemas.new.2275 
(New)


Package is "python-asdf-transform-schemas"

Fri Oct 28 19:30:16 2022 rev:3 rq:1031586 version:0.3.0

Changes:

--- 
/work/SRC/openSUSE:Factory/python-asdf-transform-schemas/python-asdf-transform-schemas.changes
  2022-03-16 21:15:30.770853547 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-asdf-transform-schemas.new.2275/python-asdf-transform-schemas.changes
2022-10-28 19:30:40.134973917 +0200
@@ -1,0 +2,17 @@
+Thu Oct 27 16:48:41 UTC 2022 - Ben Greiner 
+
+- Update to v0.3.0
+  * Add schemas to properly support bounding_box and
+compound_bounding_box.
+  * Add fixed and bounds to base transform schema to properly
+document them.
+  * Add input_units_equivalencies to base transform schema to
+properly document it.
+  * Update spline1d schema.
+  * Add Schechter1D schema.
+  * Fix fix_inputs tag bug.
+  * Create docs for package.
+  * Move packaging configuration to pyproject.toml.
+  * Remove unnecessary tag: entry from all schemas.
+
+---

Old:

  asdf_transform_schemas-0.2.2.tar.gz

New:

  asdf_transform_schemas-0.3.0.tar.gz



Other differences:
--
++ python-asdf-transform-schemas.spec ++
--- /var/tmp/diff_new_pack.s5W9tY/_old  2022-10-28 19:30:40.638976444 +0200
+++ /var/tmp/diff_new_pack.s5W9tY/_new  2022-10-28 19:30:40.642976464 +0200
@@ -25,17 +25,18 @@
 %bcond_with test
 %endif
 
-%{?!python_module:%define python_module() python3-%{**}}
-%define skip_python2 1
 Name:   python-asdf-transform-schemas%{psuffix}
-Version:0.2.2
+Version:0.3.0
 Release:0
 Summary:ASDF schemas for transforms
 License:BSD-3-Clause
 URL:https://github.com/asdf-format/asdf-transform-schemas
 Source: 
https://files.pythonhosted.org/packages/source/a/asdf-transform-schemas/asdf_transform_schemas-%{version}.tar.gz
-BuildRequires:  %{python_module setuptools_scm}
-BuildRequires:  %{python_module setuptools}
+BuildRequires:  %{python_module base >= 3.8}
+BuildRequires:  %{python_module pip}
+BuildRequires:  %{python_module setuptools >= 42}
+BuildRequires:  %{python_module setuptools_scm >= 3.4}
+BuildRequires:  %{python_module wheel}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
 Requires:   python-asdf-standard >= 1.0.1
@@ -47,6 +48,7 @@
 BuildRequires:  %{python_module asdf}
 BuildRequires:  %{python_module pytest}
 %endif
+Provides:   python-asdf_transform_schemas = %{version}-%{release}
 BuildArch:  noarch
 %python_subpackages
 
@@ -55,13 +57,16 @@
 
 %prep
 %setup -q -n asdf_transform_schemas-%{version}
+sed -i "/addopts = '--color=yes'/d" pyproject.toml
 
+%if !%{with test}
 %build
-%python_build
+%pyproject_wheel
+%endif
 
 %if !%{with test}
 %install
-%python_install
+%pyproject_install
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
 %endif
 

++ asdf_transform_schemas-0.2.2.tar.gz -> 
asdf_transform_schemas-0.3.0.tar.gz ++
 5134 lines of diff (skipped)


commit python-asdf-transform-schemas for openSUSE:Factory

2022-03-16 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-asdf-transform-schemas for 
openSUSE:Factory checked in at 2022-03-16 21:15:27

Comparing /work/SRC/openSUSE:Factory/python-asdf-transform-schemas (Old)
 and  /work/SRC/openSUSE:Factory/.python-asdf-transform-schemas.new.25692 
(New)


Package is "python-asdf-transform-schemas"

Wed Mar 16 21:15:27 2022 rev:2 rq:961494 version:0.2.2

Changes:

--- 
/work/SRC/openSUSE:Factory/python-asdf-transform-schemas/python-asdf-transform-schemas.changes
  2021-12-30 15:56:10.472689424 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-asdf-transform-schemas.new.25692/python-asdf-transform-schemas.changes
   2022-03-16 21:15:30.770853547 +0100
@@ -1,0 +2,12 @@
+Sun Mar 13 09:04:01 UTC 2022 - Ben Greiner 
+
+- Update to v0.2.2
+  * Add inputs and outputs to base transform schema to properly
+document them. [#33]
+  * Add spline1d schema. [#41]
+  * Add cosine, tangent, arcsine, arccosine, and arctangent
+schemas. [#40]
+  * Fix circular build dependencies for asdf. [#38]
+- Make _multibuild in order to avoid build cycles
+
+---

Old:

  asdf_transform_schemas-0.2.0.tar.gz

New:

  _multibuild
  asdf_transform_schemas-0.2.2.tar.gz



Other differences:
--
++ python-asdf-transform-schemas.spec ++
--- /var/tmp/diff_new_pack.bk0TOo/_old  2022-03-16 21:15:32.386854433 +0100
+++ /var/tmp/diff_new_pack.bk0TOo/_new  2022-03-16 21:15:32.390854434 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package python-asdf_transform_schemas
+# spec file
 #
-# Copyright (c) 2021 SUSE LLC
+# Copyright (c) 2022 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,29 +16,37 @@
 #
 
 
+%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-asdf-transform-schemas
-Version:0.2.0
+Name:   python-asdf-transform-schemas%{psuffix}
+Version:0.2.2
 Release:0
 Summary:ASDF schemas for transforms
 License:BSD-3-Clause
 URL:https://github.com/asdf-format/asdf-transform-schemas
 Source: 
https://files.pythonhosted.org/packages/source/a/asdf-transform-schemas/asdf_transform_schemas-%{version}.tar.gz
-BuildRequires:  python-rpm-macros
-BuildRequires:  %{python_module setuptools}
 BuildRequires:  %{python_module setuptools_scm}
-BuildRequires:  %{python_module asdf >= 2.8.0}
-BuildRequires:  %{python_module importlib_resources >= 3 if %python-base < 3.9}
+BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
-Requires:   python-asdf >= 2.8.0
+BuildRequires:  python-rpm-macros
+Requires:   python-asdf-standard >= 1.0.1
 %if 0%{?python_version_nodots} < 39
 Requires:   python-importlib_resources >= 3
 %endif
-# SECTION test requirements
+%if %{with test}
+BuildRequires:  %{python_module asdf-transform-schemas = %{version}}
+BuildRequires:  %{python_module asdf}
 BuildRequires:  %{python_module pytest}
-# /SECTION
+%endif
 BuildArch:  noarch
 %python_subpackages
 
@@ -51,15 +59,21 @@
 %build
 %python_build
 
+%if !%{with test}
 %install
 %python_install
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
+%endif
 
+%if %{with test}
 %check
 %pytest
+%endif
 
+%if !%{with test}
 %files %{python_files}
 %{python_sitelib}/asdf_transform_schemas
 %{python_sitelib}/asdf_transform_schemas-%{version}*-info
+%endif
 
 %changelog

++ _multibuild ++

  test


++ asdf_transform_schemas-0.2.0.tar.gz -> 
asdf_transform_schemas-0.2.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/asdf_transform_schemas-0.2.0/.gitattributes 
new/asdf_transform_schemas-0.2.2/.gitattributes
--- old/asdf_transform_schemas-0.2.0/.gitattributes 1970-01-01 
01:00:00.0 +0100
+++ new/asdf_transform_schemas-0.2.2/.gitattributes 2022-02-25 
00:20:14.0 +0100
@@ -0,0 +1,5 @@
+* text eol=lf
+
+# Don't mess with these files
+*.asdf binary
+*.png binary
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/asdf_transform_schemas-0.2.0/.github/workflows/changelog.yml 
new/asdf_transform_schemas-0.2.2/.github/workflows/changelog.yml
--- old/asdf_transform_schemas-0.2.0/.github/workflows/changelog.yml
1970-01-01 01:00:00.0 +0100
+++