commit python-django-sekizai for openSUSE:Factory

2020-09-11 Thread root
Hello community,

here is the log from the commit of package python-django-sekizai for 
openSUSE:Factory checked in at 2020-09-12 00:11:30

Comparing /work/SRC/openSUSE:Factory/python-django-sekizai (Old)
 and  /work/SRC/openSUSE:Factory/.python-django-sekizai.new.4249 (New)


Package is "python-django-sekizai"

Sat Sep 12 00:11:30 2020 rev:4 rq:833763 version:2.0.0

Changes:

--- 
/work/SRC/openSUSE:Factory/python-django-sekizai/python-django-sekizai.changes  
2020-02-20 14:59:39.814792323 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-django-sekizai.new.4249/python-django-sekizai.changes
2020-09-12 00:12:10.133194408 +0200
@@ -1,0 +2,11 @@
+Fri Sep 11 11:34:31 UTC 2020 - Marketa Calabkova 
+
+- Update to 2.0.0
+  * Added support for Django 3.1
+  * Dropped support for Python 2.7 and Python 3.4
+  * Dropped support for Django < 2.2
+  * Replaced pep8 with flake8
+  * Adapted documentation
+- Drop django-sekizai-pycodestyle.patch
+
+---

Old:

  1.1.0.tar.gz
  django-sekizai-pycodestyle.patch

New:

  2.0.0.tar.gz



Other differences:
--
++ python-django-sekizai.spec ++
--- /var/tmp/diff_new_pack.mQXPYh/_old  2020-09-12 00:12:12.789196950 +0200
+++ /var/tmp/diff_new_pack.mQXPYh/_new  2020-09-12 00:12:12.793196953 +0200
@@ -17,14 +17,14 @@
 
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
+%define skip_python2 1
 Name:   python-django-sekizai
-Version:1.1.0
+Version:2.0.0
 Release:0
 Summary:Django Template Blocks with extra functionality
 License:MIT
 URL:https://github.com/ojii/django-sekizai
 Source: 
https://github.com/divio/django-sekizai/archive/%{version}.tar.gz
-Patch0: django-sekizai-pycodestyle.patch
 BuildRequires:  %{python_module Django >= 1.11}
 BuildRequires:  %{python_module django-classy-tags >= 0.3.1}
 BuildRequires:  %{python_module pycodestyle}
@@ -41,7 +41,6 @@
 
 %prep
 %setup -q -n django-sekizai-%{version}
-%autopatch -p1
 
 %build
 %python_build

++ 1.1.0.tar.gz -> 2.0.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-sekizai-1.1.0/.travis.yml 
new/django-sekizai-2.0.0/.travis.yml
--- old/django-sekizai-1.1.0/.travis.yml2020-01-22 10:39:39.0 
+0100
+++ new/django-sekizai-2.0.0/.travis.yml2020-08-26 11:20:48.0 
+0200
@@ -1,7 +1,6 @@
 language: python
 
 dist: xenial
-sudo: false
 
 matrix:
   include:
@@ -9,37 +8,24 @@
   env: TOX_ENV='flake8'
 - python: 3.5
   env: TOX_ENV='isort'
-  # Django 1.11
-- python: 2.7
-  env: DJANGO='dj111'
-- python: 3.4
-  env: DJANGO='dj111'
+# Django 2.2, run all supported versions for LTS releases
 - python: 3.5
-  env: DJANGO='dj111'
-- python: 3.6
-  env: DJANGO='dj111'
-# Django 2.1
-- python: 3.6
-  env: DJANGO='dj21'
-# Django 2.2
+  env: DJANGO='dj22'
 - python: 3.6
   env: DJANGO='dj22'
 - python: 3.7
   env: DJANGO='dj22'
 - python: 3.8
   env: DJANGO='dj22'
-# Django 3.0
+# Django 3.0, always run the lowest supported version
 - python: 3.6
   env: DJANGO='dj30'
-- python: 3.7
-  env: DJANGO='dj30'
-- python: 3.8
-  env: DJANGO='dj30'
+# Django 3.1, always run the lowest supported version
+- python: 3.6
+  env: DJANGO='dj31'
 
 install:
-  - pip install coverage isort tox pep8
-  - "if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then export PY_VER=py27; fi"
-  - "if [[ $TRAVIS_PYTHON_VERSION == '3.4' ]]; then export PY_VER=py34; fi"
+  - pip install coverage isort tox
   - "if [[ $TRAVIS_PYTHON_VERSION == '3.5' ]]; then export PY_VER=py35; fi"
   - "if [[ $TRAVIS_PYTHON_VERSION == '3.6' ]]; then export PY_VER=py36; fi"
   - "if [[ $TRAVIS_PYTHON_VERSION == '3.7' ]]; then export PY_VER=py37; fi"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-sekizai-1.1.0/CHANGELOG.rst 
new/django-sekizai-2.0.0/CHANGELOG.rst
--- old/django-sekizai-1.1.0/CHANGELOG.rst  2020-01-22 10:39:39.0 
+0100
+++ new/django-sekizai-2.0.0/CHANGELOG.rst  2020-08-26 11:20:48.0 
+0200
@@ -3,6 +3,16 @@
 =
 
 
+2.0.0 (2020-08-26)
+==
+
+* Added support for Django 3.1
+* Dropped support for Python 2.7 and Python 3.4
+* Dropped support for Django < 2.2
+* Replaced pep8 with flake8
+* Adapted documentation
+
+
 1.1.0 (2020-01-22)
 ==
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-sekizai-1.1.0/README.rst 
new/django-sekizai-2.0.0/README.rst
--- old/djan

commit python-django-sekizai for openSUSE:Factory

2020-02-20 Thread root
Hello community,

here is the log from the commit of package python-django-sekizai for 
openSUSE:Factory checked in at 2020-02-20 14:59:34

Comparing /work/SRC/openSUSE:Factory/python-django-sekizai (Old)
 and  /work/SRC/openSUSE:Factory/.python-django-sekizai.new.26092 (New)


Package is "python-django-sekizai"

Thu Feb 20 14:59:34 2020 rev:3 rq:777604 version:1.1.0

Changes:

--- 
/work/SRC/openSUSE:Factory/python-django-sekizai/python-django-sekizai.changes  
2019-05-24 11:33:28.073364903 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-django-sekizai.new.26092/python-django-sekizai.changes
   2020-02-20 14:59:39.814792323 +0100
@@ -1,0 +2,12 @@
+Thu Feb 20 09:00:29 UTC 2020 - Tomáš Chvátal 
+
+- Update to 1.1.0:
+  * Added support for Django 3.0
+  * Added support for Python 3.8
+  * Extended test matrix
+  * Added isort and adapted imports
+  * Adapted code base to align with other supported addons
+  * Adapted README.rst instructions
+- Rebase patch django-sekizai-pycodestyle.patch
+
+---

Old:

  1.0.0.tar.gz

New:

  1.1.0.tar.gz



Other differences:
--
++ python-django-sekizai.spec ++
--- /var/tmp/diff_new_pack.KE0jNv/_old  2020-02-20 14:59:40.434793539 +0100
+++ /var/tmp/diff_new_pack.KE0jNv/_new  2020-02-20 14:59:40.438793548 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-django-sekizai
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,11 +18,10 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-django-sekizai
-Version:1.0.0
+Version:1.1.0
 Release:0
 Summary:Django Template Blocks with extra functionality
 License:MIT
-Group:  Development/Languages/Python
 URL:https://github.com/ojii/django-sekizai
 Source: 
https://github.com/divio/django-sekizai/archive/%{version}.tar.gz
 Patch0: django-sekizai-pycodestyle.patch
@@ -52,10 +51,10 @@
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
 
 %check
-%python_exec runtests.py
+%python_exec setup.py test
 
 %files %{python_files}
-%license LICENSE
+%license LICENSE.txt
 %doc README.rst
 %{python_sitelib}/*
 

++ 1.0.0.tar.gz -> 1.1.0.tar.gz ++
 2606 lines of diff (skipped)

++ django-sekizai-pycodestyle.patch ++
--- /var/tmp/diff_new_pack.KE0jNv/_old  2020-02-20 14:59:40.494793657 +0100
+++ /var/tmp/diff_new_pack.KE0jNv/_new  2020-02-20 14:59:40.494793657 +0100
@@ -1,16 +1,17 @@
-Index: django-sekizai-0.10.0/sekizai/tests.py
+Index: django-sekizai-1.1.0/tests/test_core.py
 ===
 django-sekizai-0.10.0.orig/sekizai/tests.py
-+++ django-sekizai-0.10.0/sekizai/tests.py
-@@ -9,7 +9,6 @@ from django import template
- from django.conf import settings
- from django.template.loader import render_to_string
+--- django-sekizai-1.1.0.orig/tests/test_core.py
 django-sekizai-1.1.0/tests/test_core.py
+@@ -8,8 +8,6 @@ from django.conf import settings
  from django.template.engine import Engine
--import pep8
+ from django.template.loader import render_to_string
  
+-import pep8
+-
  from sekizai import context_processors
  from sekizai.context import SekizaiContext
-@@ -212,17 +211,6 @@ class SekizaiTestCase(TestCase):
+ from sekizai.helpers import (
+@@ -212,17 +210,6 @@ class SekizaiTestCase(TestCase):
  self.assertTrue(result.status, result.message)
  return rendered
  




commit python-django-sekizai for openSUSE:Factory

2019-05-24 Thread root
Hello community,

here is the log from the commit of package python-django-sekizai for 
openSUSE:Factory checked in at 2019-05-24 11:33:26

Comparing /work/SRC/openSUSE:Factory/python-django-sekizai (Old)
 and  /work/SRC/openSUSE:Factory/.python-django-sekizai.new.5148 (New)


Package is "python-django-sekizai"

Fri May 24 11:33:26 2019 rev:2 rq:705177 version:1.0.0

Changes:

--- 
/work/SRC/openSUSE:Factory/python-django-sekizai/python-django-sekizai.changes  
2019-01-11 14:04:35.551854179 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-django-sekizai.new.5148/python-django-sekizai.changes
2019-05-24 11:33:28.073364903 +0200
@@ -1,0 +2,9 @@
+Fri May 24 07:17:38 UTC 2019 - Tomáš Chvátal 
+
+- Update to 1.0.0:
+  * Fixes for new djangos/python releases
+- Remove merged patches:
+  * django-sekizai-py37.patch
+  * django-sekizai-django2.patch
+
+---

Old:

  0.10.0.tar.gz
  django-sekizai-django2.patch
  django-sekizai-py37.patch

New:

  1.0.0.tar.gz



Other differences:
--
++ python-django-sekizai.spec ++
--- /var/tmp/diff_new_pack.7ULQBO/_old  2019-05-24 11:33:28.941364572 +0200
+++ /var/tmp/diff_new_pack.7ULQBO/_new  2019-05-24 11:33:28.945364570 +0200
@@ -18,16 +18,14 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-django-sekizai
-Version:0.10.0
+Version:1.0.0
 Release:0
 Summary:Django Template Blocks with extra functionality
 License:MIT
 Group:  Development/Languages/Python
 URL:https://github.com/ojii/django-sekizai
 Source: 
https://github.com/divio/django-sekizai/archive/%{version}.tar.gz
-Patch0: django-sekizai-django2.patch
-Patch1: django-sekizai-pycodestyle.patch
-Patch2: django-sekizai-py37.patch
+Patch0: django-sekizai-pycodestyle.patch
 BuildRequires:  %{python_module Django >= 1.11}
 BuildRequires:  %{python_module django-classy-tags >= 0.3.1}
 BuildRequires:  %{python_module pycodestyle}
@@ -44,9 +42,7 @@
 
 %prep
 %setup -q -n django-sekizai-%{version}
-%patch0 -p1
-%patch1 -p1
-%patch2 -p1
+%autopatch -p1
 
 %build
 %python_build

++ 0.10.0.tar.gz -> 1.0.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-sekizai-0.10.0/.travis.yml 
new/django-sekizai-1.0.0/.travis.yml
--- old/django-sekizai-0.10.0/.travis.yml   2016-08-28 06:25:48.0 
+0200
+++ new/django-sekizai-1.0.0/.travis.yml2019-04-11 14:03:34.0 
+0200
@@ -1,19 +1,17 @@
+dist: xenial
 language: python
 sudo: false
 python:
  - 2.7
- - 3.3
  - 3.4
  - 3.5
+ - 3.6
+ - 3.7
 env:
- - DJANGO='django>=1.3,<1.4'
- - DJANGO='django>=1.4,<1.5'
- - DJANGO='django>=1.5,<1.6'
- - DJANGO='django>=1.6,<1.7'
- - DJANGO='django>=1.7,<1.8'
- - DJANGO='django>=1.8,<1.9'
- - DJANGO='django>=1.9,<1.10'
- - DJANGO='django>=1.10,<1.11'
+ - DJANGO='django>=1.11,<2.0'
+ - DJANGO='django>=2.0,<2.1'
+ - DJANGO='django>=2.1,<2.2'
+ - DJANGO='django>=2.2a1,<3.0'
 install:
  - pip install $DJANGO django-classy-tags pep8 backport-collections
 script: python runtests.py
@@ -21,25 +19,13 @@
   email: false
 matrix:
   exclude:
-- python: 3.3
-  env: DJANGO='django>=1.3,<1.4'
-- python: 3.3
-  env: DJANGO='django>=1.4,<1.5'
-- python: 3.3
-  env: DJANGO='django>=1.9,<1.10'
-- python: 3.3
-  env: DJANGO='django>=1.10,<1.11'
+- python: 2.7
+  env: DJANGO='django>=2.0,<2.1'
+- python: 2.7
+  env: DJANGO='django>=2.1,<2.2'
+- python: 2.7
+  env: DJANGO='django>=2.2a1,<3.0'
 - python: 3.4
-  env: DJANGO='django>=1.3,<1.4'
+  env: DJANGO='django>=2.1,<2.2'
 - python: 3.4
-  env: DJANGO='django>=1.4,<1.5'
-- python: 3.5
-  env: DJANGO='django>=1.3,<1.4'
-- python: 3.5
-  env: DJANGO='django>=1.4,<1.5'
-- python: 3.5
-  env: DJANGO='django>=1.5,<1.6'
-- python: 3.5
-  env: DJANGO='django>=1.6,<1.7'
-- python: 3.5
-  env: DJANGO='django>=1.7,<1.8'
+  env: DJANGO='django>=2.2a1,<3.0'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-sekizai-0.10.0/README.rst 
new/django-sekizai-1.0.0/README.rst
--- old/django-sekizai-0.10.0/README.rst2016-08-28 06:25:48.0 
+0200
+++ new/django-sekizai-1.0.0/README.rst 2019-04-11 14:03:34.0 +0200
@@ -7,7 +7,7 @@
 forms in django, but really that doesn't work that well. Usually the frontend
 guys want to decide on css and javascript files to be included and they don't
 want to have to edit Python files to change that neither did I want them to
-change my Python files. Therefor ther