commit python-djvulibre for openSUSE:Factory

2019-11-06 Thread root
Hello community,

here is the log from the commit of package python-djvulibre for 
openSUSE:Factory checked in at 2019-11-06 14:04:52

Comparing /work/SRC/openSUSE:Factory/python-djvulibre (Old)
 and  /work/SRC/openSUSE:Factory/.python-djvulibre.new.2990 (New)


Package is "python-djvulibre"

Wed Nov  6 14:04:52 2019 rev:21 rq:745320 version:0.8.5

Changes:

--- /work/SRC/openSUSE:Factory/python-djvulibre/python-djvulibre.changes
2019-09-18 13:10:48.684697831 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-djvulibre.new.2990/python-djvulibre.changes  
2019-11-06 14:04:56.492712902 +0100
@@ -1,0 +2,8 @@
+Mon Nov  4 13:13:44 UTC 2019 - Kyrill Detinov 
+
+- Update to 0.8.5.
+  * Improve the setup script:
++ Use the current Python interpreter for running Cython.
++ Improve error handling.
+
+---

Old:

  python-djvulibre-0.8.4.tar.gz
  python-djvulibre-0.8.4.tar.gz.asc

New:

  python-djvulibre-0.8.5.tar.gz
  python-djvulibre-0.8.5.tar.gz.asc



Other differences:
--
++ python-djvulibre.spec ++
--- /var/tmp/diff_new_pack.edkMfs/_old  2019-11-06 14:04:56.984713417 +0100
+++ /var/tmp/diff_new_pack.edkMfs/_new  2019-11-06 14:04:56.984713417 +0100
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-djvulibre
-Version:0.8.4
+Version:0.8.5
 Release:0
 Summary:Python Support for the DjVu Image Format
 License:GPL-2.0-only
@@ -61,8 +61,6 @@
 %prep
 %setup -q
 chmod -x examples/*
-# https://github.com/jwilk/python-djvulibre/pull/11
-sed -i "s/'python'/sys.executable/" setup.py
 
 %build
 export CFLAGS="%{optflags} -fno-strict-aliasing"

++ python-djvulibre-0.8.4.tar.gz -> python-djvulibre-0.8.5.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-djvulibre-0.8.4/PKG-INFO 
new/python-djvulibre-0.8.5/PKG-INFO
--- old/python-djvulibre-0.8.4/PKG-INFO 2019-03-11 17:00:39.0 +0100
+++ new/python-djvulibre-0.8.5/PKG-INFO 2019-09-23 18:56:00.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: python-djvulibre
-Version: 0.8.4
+Version: 0.8.5
 Summary: Python support for the DjVu image format
 Home-page: http://jwilk.net/software/python-djvulibre
 Author: Jakub Wilk
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-djvulibre-0.8.4/doc/changelog 
new/python-djvulibre-0.8.5/doc/changelog
--- old/python-djvulibre-0.8.4/doc/changelog2019-03-11 16:53:01.0 
+0100
+++ new/python-djvulibre-0.8.5/doc/changelog2019-09-23 18:51:44.0 
+0200
@@ -1,3 +1,13 @@
+python-djvulibre (0.8.5) unstable; urgency=low
+
+  * Improve the setup script:
++ Use the current Python interpreter for running Cython.
+  Thanks to John Vandenberg for the bug report and the initial patch.
+  https://github.com/jwilk/python-djvulibre/issues/10
++ Improve error handling.
+
+ -- Jakub Wilk   Mon, 23 Sep 2019 18:51:43 +0200
+
 python-djvulibre (0.8.4) unstable; urgency=low
 
   * Fix compatibility with Python 3.8.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-djvulibre-0.8.4/private/check-rst 
new/python-djvulibre-0.8.5/private/check-rst
--- old/python-djvulibre-0.8.4/private/check-rst2018-09-17 
17:28:44.0 +0200
+++ new/python-djvulibre-0.8.5/private/check-rst2019-09-23 
18:48:31.0 +0200
@@ -1,6 +1,6 @@
-#!/bin/sh
+#!/usr/bin/env bash
 
-# Copyright © 2016-2018 Jakub Wilk 
+# Copyright © 2016-2019 Jakub Wilk 
 #
 # This file is part of python-djvulibre.
 #
@@ -14,6 +14,7 @@
 # more details.
 
 set -e -u
+set -o pipefail
 here=${0%/*}
 here=${here#./}
 root="$here/../"
@@ -27,7 +28,7 @@
 then
 print_desc='python setup.py --long-description'
 echo "(cd ${root:-.} && $print_desc) | $rst2xml $options - /dev/null" >&2
-(cd "${root:-.}" && $print_desc) | "$rst2xml" $options - /dev/null || exit 
1
+(cd "${root:-.}" && $print_desc) | "$rst2xml" $options - /dev/null
 fi
 if [ $# -eq 0 ]
 then
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-djvulibre-0.8.4/setup.py 
new/python-djvulibre-0.8.5/setup.py
--- old/python-djvulibre-0.8.4/setup.py 2018-05-16 18:38:13.0 +0200
+++ new/python-djvulibre-0.8.5/setup.py 2019-09-23 18:48:31.0 +0200
@@ -1,6 +1,6 @@
 # encoding=UTF-8
 
-# Copyright © 2007-2018 Jakub Wilk 
+# Copyright © 2007-2019 Jakub Wilk 
 #
 # This file is part of python-djvulibre.
 #
@@ -33,7 +33,8 @@
 
 if need_setuptools:
 import setuptools.extension
-assert 

commit python-djvulibre for openSUSE:Factory

2019-09-18 Thread root
Hello community,

here is the log from the commit of package python-djvulibre for 
openSUSE:Factory checked in at 2019-09-18 13:10:31

Comparing /work/SRC/openSUSE:Factory/python-djvulibre (Old)
 and  /work/SRC/openSUSE:Factory/.python-djvulibre.new.7948 (New)


Package is "python-djvulibre"

Wed Sep 18 13:10:31 2019 rev:20 rq:731158 version:0.8.4

Changes:

--- /work/SRC/openSUSE:Factory/python-djvulibre/python-djvulibre.changes
2019-04-23 14:34:49.413420094 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-djvulibre.new.7948/python-djvulibre.changes  
2019-09-18 13:10:48.684697831 +0200
@@ -1,0 +2,5 @@
+Sun Sep 15 03:03:19 UTC 2019 - John Vandenberg 
+
+- Fix setup.py to use sys.executable
+
+---



Other differences:
--
++ python-djvulibre.spec ++
--- /var/tmp/diff_new_pack.haacyS/_old  2019-09-18 13:10:49.320697697 +0200
+++ /var/tmp/diff_new_pack.haacyS/_new  2019-09-18 13:10:49.320697697 +0200
@@ -61,6 +61,8 @@
 %prep
 %setup -q
 chmod -x examples/*
+# https://github.com/jwilk/python-djvulibre/pull/11
+sed -i "s/'python'/sys.executable/" setup.py
 
 %build
 export CFLAGS="%{optflags} -fno-strict-aliasing"





commit python-djvulibre for openSUSE:Factory

2019-04-23 Thread root
Hello community,

here is the log from the commit of package python-djvulibre for 
openSUSE:Factory checked in at 2019-04-23 14:34:44

Comparing /work/SRC/openSUSE:Factory/python-djvulibre (Old)
 and  /work/SRC/openSUSE:Factory/.python-djvulibre.new.5536 (New)


Package is "python-djvulibre"

Tue Apr 23 14:34:44 2019 rev:19 rq:692479 version:0.8.4

Changes:

--- /work/SRC/openSUSE:Factory/python-djvulibre/python-djvulibre.changes
2018-12-07 14:35:05.751093820 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-djvulibre.new.5536/python-djvulibre.changes  
2019-04-23 14:34:49.413420094 +0200
@@ -1,0 +2,8 @@
+Tue Apr  9 06:05:11 UTC 2019 - Kyrill Detinov 
+
+- Update to 0.8.4.
+  * Fix compatibility with Python 3.8.
+  * Fix error handling when getting S-expressions for outlines,
+annotations or page texts.
+
+---

Old:

  python-djvulibre-0.8.2.tar.gz
  python-djvulibre-0.8.2.tar.gz.asc

New:

  python-djvulibre-0.8.4.tar.gz
  python-djvulibre-0.8.4.tar.gz.asc



Other differences:
--
++ python-djvulibre.spec ++
--- /var/tmp/diff_new_pack.9HzSAA/_old  2019-04-23 14:34:49.893420460 +0200
+++ /var/tmp/diff_new_pack.9HzSAA/_new  2019-04-23 14:34:49.897420464 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-djvulibre
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 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
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-djvulibre
-Version:0.8.2
+Version:0.8.4
 Release:0
 Summary:Python Support for the DjVu Image Format
 License:GPL-2.0-only

++ python-djvulibre-0.8.2.tar.gz -> python-djvulibre-0.8.4.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-djvulibre-0.8.2/PKG-INFO 
new/python-djvulibre-0.8.4/PKG-INFO
--- old/python-djvulibre-0.8.2/PKG-INFO 2018-09-17 17:31:34.0 +0200
+++ new/python-djvulibre-0.8.4/PKG-INFO 2019-03-11 17:00:39.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: python-djvulibre
-Version: 0.8.2
+Version: 0.8.4
 Summary: Python support for the DjVu image format
 Home-page: http://jwilk.net/software/python-djvulibre
 Author: Jakub Wilk
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-djvulibre-0.8.2/djvu/decode.pyx 
new/python-djvulibre-0.8.4/djvu/decode.pyx
--- old/python-djvulibre-0.8.2/djvu/decode.pyx  2018-05-29 22:27:01.0 
+0200
+++ new/python-djvulibre-0.8.4/djvu/decode.pyx  2019-03-11 16:52:08.0 
+0100
@@ -1,4 +1,4 @@
-# Copyright © 2007-2018 Jakub Wilk 
+# Copyright © 2007-2019 Jakub Wilk 
 #
 # This file is part of python-djvulibre.
 #
@@ -2807,9 +2807,9 @@
 cdef object JobException_from_sexpr(object sexpr):
 if typecheck(sexpr, SymbolExpression):
 if sexpr.value is JOB_FAILED_SYMBOL:
-raise JobFailed
-elif sexpr.valu is JOB_STOPPED_SYMBOL:
-raise JobStopped
+return JobFailed
+elif sexpr.value is JOB_STOPPED_SYMBOL:
+return JobStopped
 
 cdef JobException_from_c(ddjvu_status_t code):
 try:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-djvulibre-0.8.2/djvu/sexpr.pyx 
new/python-djvulibre-0.8.4/djvu/sexpr.pyx
--- old/python-djvulibre-0.8.2/djvu/sexpr.pyx   2018-05-29 22:27:02.0 
+0200
+++ new/python-djvulibre-0.8.4/djvu/sexpr.pyx   2019-03-10 19:29:04.0 
+0100
@@ -1,4 +1,4 @@
-# Copyright © 2007-2018 Jakub Wilk 
+# Copyright © 2007-2019 Jakub Wilk 
 #
 # This file is part of python-djvulibre.
 #
@@ -1052,9 +1052,12 @@
 def __deepcopy__(self, memo):
 return _Expression_(self._get_value())
 
-import collections
-collections.MutableSequence.register(ListExpression)
-del collections
+if sys.version_info >= (3, 3):
+import collections.abc as collections_abc
+else:
+import collections as collections_abc
+collections_abc.MutableSequence.register(ListExpression)
+del collections_abc
 
 cdef class _ListExpressionIterator:
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-djvulibre-0.8.2/doc/README 
new/python-djvulibre-0.8.4/doc/README
--- old/python-djvulibre-0.8.2/doc/README   2018-05-16 18:38:13.0 
+0200
+++ new/python-djvulibre-0.8.4/doc/README   2019-02-11 20:32:46.0 
+0100
@@ -22,6 +22,7 @@
 Additionally, the following software is 

commit python-djvulibre for openSUSE:Factory

2018-12-07 Thread root
Hello community,

here is the log from the commit of package python-djvulibre for 
openSUSE:Factory checked in at 2018-12-07 14:35:05

Comparing /work/SRC/openSUSE:Factory/python-djvulibre (Old)
 and  /work/SRC/openSUSE:Factory/.python-djvulibre.new.19453 (New)


Package is "python-djvulibre"

Fri Dec  7 14:35:05 2018 rev:18 rq:655646 version:0.8.2

Changes:

--- /work/SRC/openSUSE:Factory/python-djvulibre/python-djvulibre.changes
2018-10-18 15:38:51.854124698 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-djvulibre.new.19453/python-djvulibre.changes 
2018-12-07 14:35:05.751093820 +0100
@@ -1,0 +2,6 @@
+Thu Dec  6 12:51:38 UTC 2018 - Tomáš Chvátal 
+
+- Fix fdupes call
+- Do not explicitly state required devel version for python, useless here
+
+---



Other differences:
--
++ python-djvulibre.spec ++
--- /var/tmp/diff_new_pack.YSnSqz/_old  2018-12-07 14:35:06.199093265 +0100
+++ /var/tmp/diff_new_pack.YSnSqz/_new  2018-12-07 14:35:06.203093260 +0100
@@ -29,18 +29,16 @@
 Source2:%{name}.keyring
 BuildRequires:  %{python_module Cython >= 0.19}
 BuildRequires:  %{python_module Sphinx}
-BuildRequires:  %{python_module devel >= 2.6}
+BuildRequires:  %{python_module devel}
+BuildRequires:  %{python_module nose}
 BuildRequires:  %{python_module setuptools}
+BuildRequires:  djvulibre
 BuildRequires:  fdupes
 BuildRequires:  graphviz
 BuildRequires:  graphviz-gnome
 BuildRequires:  pkgconfig
 BuildRequires:  python-rpm-macros
 BuildRequires:  pkgconfig(ddjvuapi) >= 3.5.21
-# Required for tests.
-BuildRequires:  %{python_module nose}
-BuildRequires:  djvulibre
-#
 Requires:   djvulibre >= 3.5.21
 
 %python_subpackages
@@ -72,7 +70,7 @@
 %install
 %python_install
 rm build/sphinx/html/.buildinfo build/sphinx/html/objects.inv
-%fdupes %{buildroot}%{_prefix}
+%python_expand %fdupes %{buildroot}%{$python_sitearch}
 
 %check
 cd tests/





commit python-djvulibre for openSUSE:Factory

2018-10-18 Thread root
Hello community,

here is the log from the commit of package python-djvulibre for 
openSUSE:Factory checked in at 2018-10-18 15:38:46

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


Package is "python-djvulibre"

Thu Oct 18 15:38:46 2018 rev:17 rq:642739 version:0.8.2

Changes:

--- /work/SRC/openSUSE:Factory/python-djvulibre/python-djvulibre.changes
2018-06-29 22:24:05.322588024 +0200
+++ /work/SRC/openSUSE:Factory/.python-djvulibre.new/python-djvulibre.changes   
2018-10-18 15:38:51.854124698 +0200
@@ -1,0 +2,15 @@
+Wed Oct 17 20:57:59 UTC 2018 - lazy.k...@opensuse.org
+
+- Update to 0.8.2.
+  * Explicitly set Cython's Python language level to 2 in pxd files
+too. This might fix build failures with future versions of Cython.
+  * Improve documentation:
++ Update the credits file to make it clear that the project is
+no longer being funded.
++ Remove .txt extensions from misc. files.
+  * Improve the test suite:
++ Treat the “POSIX” locale the same way as the “C” locale.
++ Add test for version consistency.
++ Add check against BSD make. (Only GNU make is supported.)
+
+---

Old:

  python-djvulibre-0.8.1.tar.gz
  python-djvulibre-0.8.1.tar.gz.asc

New:

  python-djvulibre-0.8.2.tar.gz
  python-djvulibre-0.8.2.tar.gz.asc



Other differences:
--
++ python-djvulibre.spec ++
--- /var/tmp/diff_new_pack.RubPov/_old  2018-10-18 15:38:53.758122530 +0200
+++ /var/tmp/diff_new_pack.RubPov/_new  2018-10-18 15:38:53.762122526 +0200
@@ -12,13 +12,13 @@
 # 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/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-djvulibre
-Version:0.8.1
+Version:0.8.2
 Release:0
 Summary:Python Support for the DjVu Image Format
 License:GPL-2.0-only
@@ -81,7 +81,7 @@
 
 %files %{python_files}
 %license doc/COPYING
-%doc doc/changelog doc/credits.txt doc/todo.txt
+%doc doc/changelog doc/credits doc/todo
 %{python_sitearch}/*
 
 %files -n %{name}-doc

++ python-djvulibre-0.8.1.tar.gz -> python-djvulibre-0.8.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-djvulibre-0.8.1/MANIFEST.in 
new/python-djvulibre-0.8.2/MANIFEST.in
--- old/python-djvulibre-0.8.1/MANIFEST.in  2018-05-16 18:38:13.0 
+0200
+++ new/python-djvulibre-0.8.2/MANIFEST.in  2018-09-17 17:28:44.0 
+0200
@@ -2,12 +2,13 @@
 
 include COPYING
 exclude README.rst
-include doc/*.txt
 include doc/COPYING
 include doc/README
 include doc/api/*.rst
 include doc/api/conf.py
 include doc/changelog
+include doc/credits
+include doc/todo
 
 include examples/*
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-djvulibre-0.8.1/PKG-INFO 
new/python-djvulibre-0.8.2/PKG-INFO
--- old/python-djvulibre-0.8.1/PKG-INFO 2018-05-30 18:59:17.0 +0200
+++ new/python-djvulibre-0.8.2/PKG-INFO 2018-09-17 17:31:34.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: python-djvulibre
-Version: 0.8.1
+Version: 0.8.2
 Summary: Python support for the DjVu image format
 Home-page: http://jwilk.net/software/python-djvulibre
 Author: Jakub Wilk
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-djvulibre-0.8.1/djvu/decode.pxd 
new/python-djvulibre-0.8.2/djvu/decode.pxd
--- old/python-djvulibre-0.8.1/djvu/decode.pxd  2016-06-08 23:34:06.0 
+0200
+++ new/python-djvulibre-0.8.2/djvu/decode.pxd  2018-09-17 17:28:50.0 
+0200
@@ -1,4 +1,4 @@
-# Copyright © 2007-2015 Jakub Wilk 
+# Copyright © 2007-2018 Jakub Wilk 
 #
 # This file is part of python-djvulibre.
 #
@@ -11,6 +11,8 @@
 # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
 # more details.
 
+#cython: language_level=2
+
 cdef extern from 'stdio.h':
 ctypedef struct FILE
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-djvulibre-0.8.1/djvu/sexpr.pxd 
new/python-djvulibre-0.8.2/djvu/sexpr.pxd
--- old/python-djvulibre-0.8.1/djvu/sexpr.pxd   2016-06-08 23:34:06.0 
+0200
+++ new/python-djvulibre-0.8.2/djvu/sexpr.pxd   2018-09-17 17:28:50.0 
+0200
@@ -1,4 +1,4 @@
-# Copyright © 2007-2015 Jakub Wilk 
+# Copyright © 2007-2018 Jakub Wilk 
 #
 # This file is part of python-djvulibre.
 #

commit python-djvulibre for openSUSE:Factory

2018-06-29 Thread root
Hello community,

here is the log from the commit of package python-djvulibre for 
openSUSE:Factory checked in at 2018-06-29 22:24:02

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


Package is "python-djvulibre"

Fri Jun 29 22:24:02 2018 rev:16 rq:615374 version:0.8.1

Changes:

--- /work/SRC/openSUSE:Factory/python-djvulibre/python-djvulibre.changes
2018-04-11 14:02:44.801165161 +0200
+++ /work/SRC/openSUSE:Factory/.python-djvulibre.new/python-djvulibre.changes   
2018-06-29 22:24:05.322588024 +0200
@@ -1,0 +2,25 @@
+Tue Jun  5 16:18:37 UTC 2018 - lazy.k...@opensuse.org
+
+- Update to 0.8.1.
+  * Improve documentation:
++ Add README, and move information about build requirements there.
++ Apply minor wording and typographic fixes to API documentation.
++ Don't include Sphinx version in HTML documentation.
++ Don't include copyright information in HTML documentation.
+  * Improve examples:
++ Make djvu-dump-text and djvu-crop-text compatible with Python 3.
++ Make djvu2png render all layers by default.
++ Unify command-line argument parsing.
+  * Explicitly set Cython's Python language level to 2.
+This might fix build failures with future versions of Cython.
+  * Improve the build system:
++ Declare build-dependencies (as per PEP-518).
++ Add the bdist_wheel command.
++ Use distutils644 to normalize tarball permissions etc.
++ Fix Python version check.
+  * Improve the test suite.
++ Be more tolerant about ps2ascii output.
+  Fixes some failures with Ghostscript 9.22.
+- Enable run tests (excluding failed).
+
+---

Old:

  python-djvulibre-0.8.tar.gz
  python-djvulibre-0.8.tar.gz.asc

New:

  python-djvulibre-0.8.1.tar.gz
  python-djvulibre-0.8.1.tar.gz.asc



Other differences:
--
++ python-djvulibre.spec ++
--- /var/tmp/diff_new_pack.Hj7tVc/_old  2018-06-29 22:24:05.986587525 +0200
+++ /var/tmp/diff_new_pack.Hj7tVc/_new  2018-06-29 22:24:05.986587525 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-djvulibre
-Version:0.8
+Version:0.8.1
 Release:0
 Summary:Python Support for the DjVu Image Format
 License:GPL-2.0-only
@@ -74,14 +74,14 @@
 rm build/sphinx/html/.buildinfo build/sphinx/html/objects.inv
 %fdupes %{buildroot}%{_prefix}
 
-# %%check
-# cd tests/
-# ln -sf %%{buildroot}%%{python_sitearch}/djvu/ djvu
-# %%python_exec -m nose --verbose
+%check
+cd tests/
+PYTHONPATH=%{buildroot}%{$python_sitearch}
+%python_expand PYTHONPATH=%{buildroot}%{$python_sitearch} $python -m nose 
--exclude='^test_export_ps$' --verbose
 
 %files %{python_files}
 %license doc/COPYING
-%doc doc/changelog doc/credits.txt
+%doc doc/changelog doc/credits.txt doc/todo.txt
 %{python_sitearch}/*
 
 %files -n %{name}-doc

++ python-djvulibre-0.8.tar.gz -> python-djvulibre-0.8.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-djvulibre-0.8/MANIFEST.in 
new/python-djvulibre-0.8.1/MANIFEST.in
--- old/python-djvulibre-0.8/MANIFEST.in2016-06-08 23:34:06.0 
+0200
+++ new/python-djvulibre-0.8.1/MANIFEST.in  2018-05-16 18:38:13.0 
+0200
@@ -1,10 +1,13 @@
 include MANIFEST.in
 
+include COPYING
+exclude README.rst
 include doc/*.txt
 include doc/COPYING
-include doc/changelog
+include doc/README
 include doc/api/*.rst
 include doc/api/conf.py
+include doc/changelog
 
 include examples/*
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-djvulibre-0.8/PKG-INFO 
new/python-djvulibre-0.8.1/PKG-INFO
--- old/python-djvulibre-0.8/PKG-INFO   2016-08-05 23:07:39.0 +0200
+++ new/python-djvulibre-0.8.1/PKG-INFO 2018-05-30 18:59:17.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: python-djvulibre
-Version: 0.8
+Version: 0.8.1
 Summary: Python support for the DjVu image format
 Home-page: http://jwilk.net/software/python-djvulibre
 Author: Jakub Wilk
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-djvulibre-0.8/djvu/common.pxi 
new/python-djvulibre-0.8.1/djvu/common.pxi
--- old/python-djvulibre-0.8/djvu/common.pxi2016-06-08 23:34:06.0 
+0200
+++ new/python-djvulibre-0.8.1/djvu/common.pxi  2018-05-16 18:38:13.0 
+0200
@@ -1,4 +1,4 @@
-# Copyright © 2008-2015 Jakub Wilk 
+# Copyright © 2008-2018 Jakub Wilk 
 #
 # This file is part of python-djvulibre.
 #
@@ -131,8 +131,10 @@
 # Python exceptions:
 
 cdef void raise_instantiation_error(object cls) 

commit python-djvulibre for openSUSE:Factory

2018-04-11 Thread root
Hello community,

here is the log from the commit of package python-djvulibre for 
openSUSE:Factory checked in at 2018-04-11 14:00:17

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


Package is "python-djvulibre"

Wed Apr 11 14:00:17 2018 rev:15 rq:594952 version:0.8

Changes:

--- /work/SRC/openSUSE:Factory/python-djvulibre/python-djvulibre.changes
2016-08-15 10:31:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-djvulibre.new/python-djvulibre.changes   
2018-04-11 14:02:44.801165161 +0200
@@ -1,0 +2,7 @@
+Mon Apr  9 17:38:04 UTC 2018 - lazy.k...@opensuse.org
+
+- Convert to singlespec.
+- Disable run tests because of a Ghostscript bug.
+- Move examples to the -doc subpackage.
+
+---



Other differences:
--
++ python-djvulibre.spec ++
--- /var/tmp/diff_new_pack.bUFFHs/_old  2018-04-11 14:02:45.769130176 +0200
+++ /var/tmp/diff_new_pack.bUFFHs/_new  2018-04-11 14:02:45.769130176 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-djvulibre
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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
@@ -16,39 +16,45 @@
 #
 
 
+%{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-djvulibre
 Version:0.8
 Release:0
 Summary:Python Support for the DjVu Image Format
-License:GPL-2.0
+License:GPL-2.0-only
 Group:  Development/Libraries/Python
-Url:http://jwilk.net/software/python-djvulibre
+URL:http://jwilk.net/software/python-djvulibre
 Source0:
https://files.pythonhosted.org/packages/source/p/python-djvulibre/%{name}-%{version}.tar.gz
 Source1:
https://files.pythonhosted.org/packages/source/p/python-djvulibre/%{name}-%{version}.tar.gz.asc
 Source2:%{name}.keyring
+BuildRequires:  %{python_module Cython >= 0.19}
+BuildRequires:  %{python_module Sphinx}
+BuildRequires:  %{python_module devel >= 2.6}
+BuildRequires:  %{python_module setuptools}
+BuildRequires:  fdupes
 BuildRequires:  graphviz
 BuildRequires:  graphviz-gnome
 BuildRequires:  pkgconfig
-BuildRequires:  python-Cython >= 0.19
-BuildRequires:  python-Sphinx
-BuildRequires:  python-devel >= 2.6
+BuildRequires:  python-rpm-macros
 BuildRequires:  pkgconfig(ddjvuapi) >= 3.5.21
 # Required for tests.
+BuildRequires:  %{python_module nose}
 BuildRequires:  djvulibre
-BuildRequires:  python-nose
+#
 Requires:   djvulibre >= 3.5.21
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+
+%python_subpackages
 
 %description
 python-djvulibre is a set of Python bindings for the DjVuLibre library,
 an open source implementation of DjVu.
 
-%package doc
+%package -n %{name}-doc
 Summary:Python Support for the DjVu Image Format (Documentation)
 Group:  Documentation/HTML
 BuildArch:  noarch
 
-%description doc
+%description -n %{name}-doc
 python-djvulibre is a set of Python bindings for the DjVuLibre library,
 an open source implementation of DjVu.
 
@@ -60,34 +66,25 @@
 
 %build
 export CFLAGS="%{optflags} -fno-strict-aliasing"
-python setup.py build
-python setup.py build_sphinx
+%python_build
+%python_build build_sphinx
 
 %install
-python setup.py install \
---root=%{buildroot} \
---prefix=%{_prefix}
-install -dm 0755 %{buildroot}%{_defaultdocdir}/%{name}-doc/_images/
-install -dm 0755 %{buildroot}%{_defaultdocdir}/%{name}-doc/_static/
-install -m 0644 build/sphinx/html/{*.html,*.js} \
-%{buildroot}%{_defaultdocdir}/%{name}-doc/
-install -m 0644 build/sphinx/html/_images/* \
-%{buildroot}%{_defaultdocdir}/%{name}-doc/_images/
-install -m 0644 build/sphinx/html/_static/* \
-%{buildroot}%{_defaultdocdir}/%{name}-doc/_static/
-
-%check
-cd tests/
-ln -sf %{buildroot}%{python_sitearch}/djvu/ djvu
-python -m nose --verbose
-
-%files
-%defattr(-,root,root,-)
-%doc doc/{changelog,COPYING,credits.txt} examples/
+%python_install
+rm build/sphinx/html/.buildinfo build/sphinx/html/objects.inv
+%fdupes %{buildroot}%{_prefix}
+
+# %%check
+# cd tests/
+# ln -sf %%{buildroot}%%{python_sitearch}/djvu/ djvu
+# %%python_exec -m nose --verbose
+
+%files %{python_files}
+%license doc/COPYING
+%doc doc/changelog doc/credits.txt
 %{python_sitearch}/*
 
-%files doc
-%defattr(-,root,root,-)
-%doc %{_defaultdocdir}/%{name}-doc/
+%files -n %{name}-doc
+%doc build/sphinx/html/ examples/
 
 %changelog





commit python-djvulibre for openSUSE:Factory

2016-08-15 Thread h_root
Hello community,

here is the log from the commit of package python-djvulibre for 
openSUSE:Factory checked in at 2016-08-15 10:31:57

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


Package is "python-djvulibre"

Changes:

--- /work/SRC/openSUSE:Factory/python-djvulibre/python-djvulibre.changes
2016-05-23 16:39:55.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-djvulibre.new/python-djvulibre.changes   
2016-08-15 10:31:59.0 +0200
@@ -1,0 +2,23 @@
+Thu Aug 11 11:05:04 UTC 2016 - lazy.k...@opensuse.org
+
+- Update to 0.8.
+  * Improve documentation:
++ Fix doctests' compatibility with Python 3.6.
++ Don't require TeX distribution to render math formulas.
++ Simplify some module docstrings.
++ Fix typos in docstrings.
++ Update bug tracker URLs. The project repo has moved to
+GitHub.
+  * Improve the setup script:
++ Check Cython version.
++ Use “python -m cython” instead of the “cython” script.
++ Report build-time requirements to pip.
++ Don't use setuptools, except on Windows.
++ Remove poorly standardized “platforms” metadata key. (The
+information about supported platform is available in the
+“Operating System” classifiers.).
++ Add the “Programming Language :: Cython” classifier.
+  * Don't hardcode the Python interpreter path in script shebangs;
+use “#!/usr/bin/env python” instead.
+
+---

Old:

  python-djvulibre-0.7.2.tar.gz
  python-djvulibre-0.7.2.tar.gz.asc

New:

  python-djvulibre-0.8.tar.gz
  python-djvulibre-0.8.tar.gz.asc



Other differences:
--
++ python-djvulibre.spec ++
--- /var/tmp/diff_new_pack.hIsRko/_old  2016-08-15 10:32:00.0 +0200
+++ /var/tmp/diff_new_pack.hIsRko/_new  2016-08-15 10:32:00.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python-djvulibre
-Version:0.7.2
+Version:0.8
 Release:0
 Summary:Python Support for the DjVu Image Format
 License:GPL-2.0
@@ -32,7 +32,6 @@
 BuildRequires:  python-Cython >= 0.19
 BuildRequires:  python-Sphinx
 BuildRequires:  python-devel >= 2.6
-BuildRequires:  python-setuptools
 BuildRequires:  pkgconfig(ddjvuapi) >= 3.5.21
 # Required for tests.
 BuildRequires:  djvulibre

++ python-djvulibre-0.7.2.tar.gz -> python-djvulibre-0.8.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-djvulibre-0.7.2/PKG-INFO 
new/python-djvulibre-0.8/PKG-INFO
--- old/python-djvulibre-0.7.2/PKG-INFO 2016-05-12 14:18:58.0 +0200
+++ new/python-djvulibre-0.8/PKG-INFO   2016-08-05 23:07:39.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: python-djvulibre
-Version: 0.7.2
+Version: 0.8
 Summary: Python support for the DjVu image format
 Home-page: http://jwilk.net/software/python-djvulibre
 Author: Jakub Wilk
@@ -9,13 +9,13 @@
 Description: *python-djvulibre* is a set of Python bindings for
 the `DjVuLibre `_ library,
 an open source implementation of `DjVu `_.
-Platform: all
+Platform: UNKNOWN
 Classifier: Development Status :: 4 - Beta
 Classifier: Intended Audience :: Developers
 Classifier: License :: OSI Approved :: GNU General Public License (GPL)
 Classifier: Operating System :: POSIX
-Classifier: Operating System :: Microsoft :: Windows :: Windows 95/98/2000
-Classifier: Operating System :: Microsoft :: Windows :: Windows NT/2000
+Classifier: Operating System :: Microsoft :: Windows
+Classifier: Programming Language :: Cython
 Classifier: Programming Language :: Python
 Classifier: Programming Language :: Python :: 2
 Classifier: Programming Language :: Python :: 3
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-djvulibre-0.7.2/djvu/decode.pyx 
new/python-djvulibre-0.8/djvu/decode.pyx
--- old/python-djvulibre-0.7.2/djvu/decode.pyx  2016-05-12 00:11:53.0 
+0200
+++ new/python-djvulibre-0.8/djvu/decode.pyx2016-08-01 22:16:19.0 
+0200
@@ -1,4 +1,4 @@
-# Copyright © 2007-2015 Jakub Wilk 
+# Copyright © 2007-2016 Jakub Wilk 
 #
 # This file is part of python-djvulibre.
 #
@@ -14,7 +14,7 @@
 #cython: autotestdict=False
 
 '''
-DjVuLibre bindings: module for efficiently decoding and displaying DjVu 
documents.
+DjVuLibre bindings: module for efficiently decoding and displaying DjVu 
documents
 
 Summary
 ---
@@ -204,10 +204,13 @@
 cdef extern from 'Python.h':
 FILE* file_to_cfile 'PyFile_AsFile'(object)
 int is_file 'PyFile_Check'(object)
-from posix.unistd cimport 

commit python-djvulibre for openSUSE:Factory

2016-05-23 Thread h_root
Hello community,

here is the log from the commit of package python-djvulibre for 
openSUSE:Factory checked in at 2016-05-23 16:39:47

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


Package is "python-djvulibre"

Changes:

--- /work/SRC/openSUSE:Factory/python-djvulibre/python-djvulibre.changes
2016-03-26 18:12:33.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-djvulibre.new/python-djvulibre.changes   
2016-05-23 16:39:55.0 +0200
@@ -1,0 +2,8 @@
+Fri May 20 09:09:01 UTC 2016 - lazy.k...@opensuse.org
+
+- Update to 0.7.2.
+  * Fix compatibility with Cython 0.24.
+  * Fix typo in the documentation.
+- Correct the source URL.
+
+---

Old:

  python-djvulibre-0.7.1.tar.gz
  python-djvulibre-0.7.1.tar.gz.asc

New:

  python-djvulibre-0.7.2.tar.gz
  python-djvulibre-0.7.2.tar.gz.asc



Other differences:
--
++ python-djvulibre.spec ++
--- /var/tmp/diff_new_pack.D2If79/_old  2016-05-23 16:39:56.0 +0200
+++ /var/tmp/diff_new_pack.D2If79/_new  2016-05-23 16:39:57.0 +0200
@@ -17,18 +17,18 @@
 
 
 Name:   python-djvulibre
-Version:0.7.1
+Version:0.7.2
 Release:0
 Summary:Python Support for the DjVu Image Format
 License:GPL-2.0
 Group:  Development/Libraries/Python
 Url:http://jwilk.net/software/python-djvulibre
-Source0:
http://pypi.python.org/packages/source/p/python-djvulibre/%{name}-%{version}.tar.gz
-Source1:
http://pypi.python.org/packages/source/p/python-djvulibre/%{name}-%{version}.tar.gz.asc
+Source0:
https://files.pythonhosted.org/packages/source/p/python-djvulibre/%{name}-%{version}.tar.gz
+Source1:
https://files.pythonhosted.org/packages/source/p/python-djvulibre/%{name}-%{version}.tar.gz.asc
 Source2:%{name}.keyring
 BuildRequires:  graphviz
 BuildRequires:  graphviz-gnome
-BuildRequires:  pkg-config
+BuildRequires:  pkgconfig
 BuildRequires:  python-Cython >= 0.19
 BuildRequires:  python-Sphinx
 BuildRequires:  python-devel >= 2.6

++ python-djvulibre-0.7.1.tar.gz -> python-djvulibre-0.7.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-djvulibre-0.7.1/PKG-INFO 
new/python-djvulibre-0.7.2/PKG-INFO
--- old/python-djvulibre-0.7.1/PKG-INFO 2016-03-11 22:34:27.0 +0100
+++ new/python-djvulibre-0.7.2/PKG-INFO 2016-05-12 14:18:58.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: python-djvulibre
-Version: 0.7.1
+Version: 0.7.2
 Summary: Python support for the DjVu image format
 Home-page: http://jwilk.net/software/python-djvulibre
 Author: Jakub Wilk
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-djvulibre-0.7.1/djvu/decode.pyx 
new/python-djvulibre-0.7.2/djvu/decode.pyx
--- old/python-djvulibre-0.7.1/djvu/decode.pyx  2016-03-11 21:52:23.0 
+0100
+++ new/python-djvulibre-0.7.2/djvu/decode.pyx  2016-05-12 00:11:53.0 
+0200
@@ -1041,7 +1041,7 @@
 The following values are possible:
 * DOCUMENT_TYPE_UNKNOWN;
 * DOCUMENT_TYPE_SINGLE_PAGE: single-page document;
-* DOCUMENT_TYPE_BUNDLED: bundled mutli-page document;
+* DOCUMENT_TYPE_BUNDLED: bundled multi-page document;
 * DOCUMENT_TYPE_INDIRECT: indirect multi-page document;
 * (obsolete) DOCUMENT_TYPE_OLD_BUNDLED,
 * (obsolete) DOCUMENT_TYPE_OLD_INDEXED.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-djvulibre-0.7.1/doc/changelog 
new/python-djvulibre-0.7.2/doc/changelog
--- old/python-djvulibre-0.7.1/doc/changelog2016-03-11 22:09:02.0 
+0100
+++ new/python-djvulibre-0.7.2/doc/changelog2016-05-12 14:07:15.0 
+0200
@@ -1,3 +1,10 @@
+python-djvulibre (0.7.2) unstable; urgency=low
+
+  * Fix compatibility with Cython 0.24.
+  * Fix typo in the documentation.
+
+ -- Jakub Wilk   Thu, 12 May 2016 14:07:13 +0200
+
 python-djvulibre (0.7.1) unstable; urgency=low
 
   * Update URL for “actual and proposed changes to the DjVu format”.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/python-djvulibre-0.7.1/python_djvulibre.egg-info/PKG-INFO 
new/python-djvulibre-0.7.2/python_djvulibre.egg-info/PKG-INFO
--- old/python-djvulibre-0.7.1/python_djvulibre.egg-info/PKG-INFO   
2016-03-11 22:34:27.0 +0100
+++ new/python-djvulibre-0.7.2/python_djvulibre.egg-info/PKG-INFO   
2016-05-12 14:18:58.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: python-djvulibre

commit python-djvulibre for openSUSE:Factory

2016-03-26 Thread h_root
Hello community,

here is the log from the commit of package python-djvulibre for 
openSUSE:Factory checked in at 2016-03-26 15:29:24

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


Package is "python-djvulibre"

Changes:

--- /work/SRC/openSUSE:Factory/python-djvulibre/python-djvulibre.changes
2015-09-11 09:04:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-djvulibre.new/python-djvulibre.changes   
2016-03-26 18:12:33.0 +0100
@@ -1,0 +2,11 @@
+Sat Mar 12 16:18:34 UTC 2016 - lazy.k...@opensuse.org
+
+- Update to 0.7.1.
+  * Update URL for “actual and proposed changes to the DjVu
+format”.
+  * Use HTTPS for sourceforge.net URLs.
+  * Fix a few typos in the documentation.
+  * Improve the test suite:
++ Normalize whitespace in ps2ascii output.
+
+---

Old:

  python-djvulibre-0.7.tar.gz
  python-djvulibre-0.7.tar.gz.asc

New:

  python-djvulibre-0.7.1.tar.gz
  python-djvulibre-0.7.1.tar.gz.asc



Other differences:
--
++ python-djvulibre.spec ++
--- /var/tmp/diff_new_pack.BCdLUW/_old  2016-03-26 18:12:34.0 +0100
+++ /var/tmp/diff_new_pack.BCdLUW/_new  2016-03-26 18:12:34.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-djvulibre
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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
@@ -17,7 +17,7 @@
 
 
 Name:   python-djvulibre
-Version:0.7
+Version:0.7.1
 Release:0
 Summary:Python Support for the DjVu Image Format
 License:GPL-2.0

++ python-djvulibre-0.7.tar.gz -> python-djvulibre-0.7.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-djvulibre-0.7/MANIFEST.in 
new/python-djvulibre-0.7.1/MANIFEST.in
--- old/python-djvulibre-0.7/MANIFEST.in2015-08-25 23:24:28.0 
+0200
+++ new/python-djvulibre-0.7.1/MANIFEST.in  2015-11-22 17:36:56.0 
+0100
@@ -10,6 +10,6 @@
 
 recursive-include djvu *.py *.pxi *.pxd *.pyx
 
-recursive-include tests *.py Makefile *.jpeg *.tex *.djvu
+recursive-include tests *.py Makefile *.tex *.djvu
 
 include private/*
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-djvulibre-0.7/PKG-INFO 
new/python-djvulibre-0.7.1/PKG-INFO
--- old/python-djvulibre-0.7/PKG-INFO   2015-08-26 00:05:18.0 +0200
+++ new/python-djvulibre-0.7.1/PKG-INFO 2016-03-11 22:34:27.0 +0100
@@ -1,14 +1,14 @@
 Metadata-Version: 1.1
 Name: python-djvulibre
-Version: 0.7
+Version: 0.7.1
 Summary: Python support for the DjVu image format
 Home-page: http://jwilk.net/software/python-djvulibre
 Author: Jakub Wilk
 Author-email: jw...@jwilk.net
 License: GNU GPL 2
-Description: *python-djvulibre* is a set of `Python `_ 
bindings for
-the `DjVuLibre `_ library, an open source 
implementation
-of `DjVu `_.
+Description: *python-djvulibre* is a set of Python bindings for
+the `DjVuLibre `_ library,
+an open source implementation of `DjVu `_.
 Platform: all
 Classifier: Development Status :: 4 - Beta
 Classifier: Intended Audience :: Developers
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-djvulibre-0.7/djvu/const.py 
new/python-djvulibre-0.7.1/djvu/const.py
--- old/python-djvulibre-0.7/djvu/const.py  2015-08-21 16:46:44.0 
+0200
+++ new/python-djvulibre-0.7.1/djvu/const.py2015-11-23 15:51:16.0 
+0100
@@ -57,7 +57,7 @@
 Subject
 Title
 Trapped'''.split())
-# Retrived from the PDF specification
+# Retrieved from the PDF specification
 
 METADATA_KEYS = METADATA_BIBTEX_KEYS | METADATA_PDFINFO_KEYS
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-djvulibre-0.7/djvu/decode.pyx 
new/python-djvulibre-0.7.1/djvu/decode.pyx
--- old/python-djvulibre-0.7/djvu/decode.pyx2015-08-18 15:48:05.0 
+0200
+++ new/python-djvulibre-0.7.1/djvu/decode.pyx  2016-03-11 21:52:23.0 
+0100
@@ -684,7 +684,7 @@
 raise KeyError(key)
 if self._page_map is None:
 self._page_map = {}
-for i from 0 <= i < len(self):
+for i in range(len(self)):
 file = File(self._document, i, sentinel = the_sentinel)
  

commit python-djvulibre for openSUSE:Factory

2015-09-11 Thread h_root
Hello community,

here is the log from the commit of package python-djvulibre for 
openSUSE:Factory checked in at 2015-09-11 09:03:57

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


Package is "python-djvulibre"

Changes:

--- /work/SRC/openSUSE:Factory/python-djvulibre/python-djvulibre.changes
2015-08-19 09:29:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-djvulibre.new/python-djvulibre.changes   
2015-09-11 09:04:18.0 +0200
@@ -1,0 +2,20 @@
+Mon Aug 31 17:29:04 UTC 2015 - lazy.k...@opensuse.org
+
+- Update to 0.7.
+  * Make Expression.from_string() accept both Unicode and byte
+strings.
+  * Implement __unicode__() for expressions.
+  * Implement __float__() for integer expressions.
+  * Be more liberal about object types that can be passed to
+escape_unicode.
+  * Fix the long() return type with Cython 0.23 and Python
+  * 2.6.
+  * Improve setup.py:
++ Put files that vary with Python version (*.c, config.pxi)
+into a version-specific temporary directory. With this change,
+it's possible to build against multiple Python versions in
+parallel.
+  * Update BibTeX URL in the documentation.
+  * Improve the test suite.
+
+---

Old:

  python-djvulibre-0.6.1.tar.gz
  python-djvulibre-0.6.1.tar.gz.asc

New:

  python-djvulibre-0.7.tar.gz
  python-djvulibre-0.7.tar.gz.asc



Other differences:
--
++ python-djvulibre.spec ++
--- /var/tmp/diff_new_pack.kwsXbX/_old  2015-09-11 09:04:19.0 +0200
+++ /var/tmp/diff_new_pack.kwsXbX/_new  2015-09-11 09:04:19.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python-djvulibre
-Version:0.6.1
+Version:0.7
 Release:0
 Summary:Python Support for the DjVu Image Format
 License:GPL-2.0
@@ -30,9 +30,9 @@
 BuildRequires:  graphviz-gnome
 BuildRequires:  pkg-config
 BuildRequires:  python-Cython >= 0.19
+BuildRequires:  python-Sphinx
 BuildRequires:  python-devel >= 2.6
 BuildRequires:  python-setuptools
-BuildRequires:  python-Sphinx
 BuildRequires:  pkgconfig(ddjvuapi) >= 3.5.21
 # Required for tests.
 BuildRequires:  djvulibre

++ python-djvulibre-0.6.1.tar.gz -> python-djvulibre-0.7.tar.gz ++
 2785 lines of diff (skipped)




commit python-djvulibre for openSUSE:Factory

2015-08-19 Thread h_root
Hello community,

here is the log from the commit of package python-djvulibre for 
openSUSE:Factory checked in at 2015-08-19 09:29:34

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


Package is python-djvulibre

Changes:

--- /work/SRC/openSUSE:Factory/python-djvulibre/python-djvulibre.changes
2014-11-26 10:33:10.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-djvulibre.new/python-djvulibre.changes   
2015-08-19 09:29:38.0 +0200
@@ -1,0 +2,48 @@
+Sat Aug 15 19:30:05 UTC 2015 - lazy.k...@opensuse.org
+
+- Update to 0.6.1.
+  * Fix the DjVuLibre version check.
+  * Add “const” to variable declarations and function prototypes.
+  * Optimize S-expression input/output.
+  * Require Cython = 0.19, or Cython = 0.20 for Python 3.
++ Remove work-arounds for older versions.
+  * Don't pass -Wno-uninitialized to the compiler (modern versions
+of Cython don't generate code that would trigger this warning).
+  * Require pkg-config for building on POSIX systems.
+- Changes in 0.6.
+  * Fix build failure with Cython 0.23.
+  * Document which software if required to build the package.
+  * Require DjVuLibre = 3.5.21:
++ Add version check to the setup script.
++ Remove work-arounds for older versions.
++ Remove documentation warnings about older versions.
+  * Remove the DjVuLibreBug class.
+  * Improve the test suite.
+- Changes in 0.5.
+  * Make print_into() raise exceptions properly instead of just
+printing them on stderr.
+  * Make it possible to print S-expressions into file-like objects
+created by codecs.open().
+  * Make djvu.sexpr.__version__ a byte string in Python 2.X.
+  * Don't include DjVu file format version in
+djvu.decode.__version__. This information is more conveniently
+available in djvu.decode.DDJVU_VERSION.
+  * Make S-expression input/output methods reentrant (DjVuLibre =
+3.5.26 is required for this feature).
+  * Improve error handling.
+  * Improve the test suite.
+- Changes in 0.4.1.
+  * Exclude djvu/config.pxi from the source tarball.
+- Changes in 0.4.
+  * Drop support for Python 2.5.
+  * Add the lvalue attribute to expressions.
+  * Use the lvalue in __repr__().
+  * Make Symbol objects comparable using “” and other inequality
+operators.
+  * Make it possible to disable octal-escaping of non-ASCII Unicode
+characters when printing expressions into a file.
+  * Stop using sphinx.ext.intersphinx.
+  * Make djvu.decode.__version__ a byte string in Python 2.X.
+  * Improve the test suite.
+
+---

Old:

  python-djvulibre-0.3.10.tar.gz
  python-djvulibre-0.3.10.tar.gz.asc

New:

  python-djvulibre-0.6.1.tar.gz
  python-djvulibre-0.6.1.tar.gz.asc



Other differences:
--
++ python-djvulibre.spec ++
--- /var/tmp/diff_new_pack.izavqf/_old  2015-08-19 09:29:39.0 +0200
+++ /var/tmp/diff_new_pack.izavqf/_new  2015-08-19 09:29:39.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-djvulibre
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 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
@@ -17,7 +17,7 @@
 
 
 Name:   python-djvulibre
-Version:0.3.10
+Version:0.6.1
 Release:0
 Summary:Python Support for the DjVu Image Format
 License:GPL-2.0
@@ -29,15 +29,15 @@
 BuildRequires:  graphviz
 BuildRequires:  graphviz-gnome
 BuildRequires:  pkg-config
-BuildRequires:  python-Cython
-BuildRequires:  python-Sphinx
-BuildRequires:  python-devel
+BuildRequires:  python-Cython = 0.19
+BuildRequires:  python-devel = 2.6
 BuildRequires:  python-setuptools
-BuildRequires:  pkgconfig(ddjvuapi)
+BuildRequires:  python-Sphinx
+BuildRequires:  pkgconfig(ddjvuapi) = 3.5.21
 # Required for tests.
 BuildRequires:  djvulibre
 BuildRequires:  python-nose
-Requires:   djvulibre
+Requires:   djvulibre = 3.5.21
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -80,11 +80,11 @@
 %check
 cd tests/
 ln -sf %{buildroot}%{python_sitearch}/djvu/ djvu
-python -m nose --verbose --no-skip
+python -m nose --verbose
 
 %files
 %defattr(-,root,root,-)
-%doc COPYING doc/changelog examples/
+%doc doc/{changelog,COPYING,credits.txt} examples/
 %{python_sitearch}/*
 
 %files doc

++ python-djvulibre-0.3.10.tar.gz - python-djvulibre-0.6.1.tar.gz ++
 9522 lines of diff (skipped)

++ python-djvulibre.keyring ++
--- /var/tmp/diff_new_pack.izavqf/_old  2015-08-19 09:29:39.0 

commit python-djvulibre for openSUSE:Factory

2014-11-26 Thread h_root
Hello community,

here is the log from the commit of package python-djvulibre for 
openSUSE:Factory checked in at 2014-11-26 10:33:07

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


Package is python-djvulibre

Changes:

--- /work/SRC/openSUSE:Factory/python-djvulibre/python-djvulibre.changes
2013-10-25 11:14:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-djvulibre.new/python-djvulibre.changes   
2014-11-26 10:33:10.0 +0100
@@ -1,0 +2,26 @@
+Sun Nov 16 15:59:43 UTC 2014 - lazy.k...@opensuse.org
+
+- Add runtime dependency: djvulibre.
+
+---
+Thu Nov 13 13:47:47 UTC 2014 - lazy.k...@opensuse.org
+
+- Update to 0.3.10.
+  * Improve error handling in examples.
+  * Improve the test suite:
++ When running external programs, don't reset environment
+completely, but only set LC_ALL=C.
++ Skip more tests (instead of making them fail) when they are
+run in an unsuitable environment.
++ Correctly detect ASCII locale encoding on FreeBSD (and
+possibly other non-GNU systems).
++ Don't hard-code libc error messages.
++ Fix test_bad_io failures with Cython ≥ 0.21.
+  * Improve setup.py:
++ Make it possible to build the package natively on Windows.
+  * Use HTTPS URLs when they are available, in documentation and
+code.
+- Run tests. BuildRequires: djvulibre, python-nose.
+- Add the source GPG signature and a keyring.
+
+---

Old:

  python-djvulibre-0.3.9.tar.gz

New:

  python-djvulibre-0.3.10.tar.gz
  python-djvulibre-0.3.10.tar.gz.asc
  python-djvulibre.keyring



Other differences:
--
++ python-djvulibre.spec ++
--- /var/tmp/diff_new_pack.v4thA7/_old  2014-11-26 10:33:11.0 +0100
+++ /var/tmp/diff_new_pack.v4thA7/_new  2014-11-26 10:33:11.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-djvulibre
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,24 +17,28 @@
 
 
 Name:   python-djvulibre
-Version:0.3.9
+Version:0.3.10
 Release:0
 Summary:Python Support for the DjVu Image Format
 License:GPL-2.0
 Group:  Development/Libraries/Python
 Url:http://jwilk.net/software/python-djvulibre
-Source0:
http://pypi.python.org/packages/source/p/%{name}/%{name}-%{version}.tar.gz
+Source0:
http://pypi.python.org/packages/source/p/python-djvulibre/%{name}-%{version}.tar.gz
+Source1:
http://pypi.python.org/packages/source/p/python-djvulibre/%{name}-%{version}.tar.gz.asc
+Source2:%{name}.keyring
 BuildRequires:  graphviz
 BuildRequires:  graphviz-gnome
 BuildRequires:  pkg-config
 BuildRequires:  python-Cython
+BuildRequires:  python-Sphinx
 BuildRequires:  python-devel
 BuildRequires:  python-setuptools
-# Starting openSUSE 12.1 the package name is python-Sphinx.
-BuildRequires:  python-sphinx
 BuildRequires:  pkgconfig(ddjvuapi)
+# Required for tests.
+BuildRequires:  djvulibre
+BuildRequires:  python-nose
+Requires:   djvulibre
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%py_requires
 
 %description
 python-djvulibre is a set of Python bindings for the DjVuLibre library,
@@ -63,23 +67,28 @@
 %install
 python setup.py install \
 --root=%{buildroot} \
---prefix=%{_prefix} \
---record-rpm=INSTALLED_FILES
-install -dm 0755 %{buildroot}%{_defaultdocdir}/%{name}-doc/_images
-install -dm 0755 %{buildroot}%{_defaultdocdir}/%{name}-doc/_static
+--prefix=%{_prefix}
+install -dm 0755 %{buildroot}%{_defaultdocdir}/%{name}-doc/_images/
+install -dm 0755 %{buildroot}%{_defaultdocdir}/%{name}-doc/_static/
 install -m 0644 build/sphinx/html/{*.html,*.js} \
-%{buildroot}%{_defaultdocdir}/%{name}-doc
+%{buildroot}%{_defaultdocdir}/%{name}-doc/
 install -m 0644 build/sphinx/html/_images/* \
-%{buildroot}%{_defaultdocdir}/%{name}-doc/_images
+%{buildroot}%{_defaultdocdir}/%{name}-doc/_images/
 install -m 0644 build/sphinx/html/_static/* \
-%{buildroot}%{_defaultdocdir}/%{name}-doc/_static
+%{buildroot}%{_defaultdocdir}/%{name}-doc/_static/
 
-%files -f INSTALLED_FILES
+%check
+cd tests/
+ln -sf %{buildroot}%{python_sitearch}/djvu/ djvu
+python -m nose --verbose --no-skip
+
+%files
 %defattr(-,root,root,-)
-%doc COPYING doc/changelog examples
+%doc COPYING doc/changelog examples/
+%{python_sitearch}/*
 
 %files 

commit python-djvulibre for openSUSE:Factory

2013-10-25 Thread h_root
Hello community,

here is the log from the commit of package python-djvulibre for 
openSUSE:Factory checked in at 2013-10-25 11:14:24

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


Package is python-djvulibre

Changes:

--- /work/SRC/openSUSE:Factory/python-djvulibre/python-djvulibre.changes
2012-04-23 16:12:43.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-djvulibre.new/python-djvulibre.changes   
2013-10-25 11:14:26.0 +0200
@@ -1,0 +2,5 @@
+Thu Oct 24 11:04:39 UTC 2013 - speili...@suse.com
+
+- Require python-setuptools instead of distribute (upstreams merged)
+
+---



Other differences:
--
++ python-djvulibre.spec ++
--- /var/tmp/diff_new_pack.PpTUsr/_old  2013-10-25 11:14:35.0 +0200
+++ /var/tmp/diff_new_pack.PpTUsr/_new  2013-10-25 11:14:35.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-djvulibre
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -29,7 +29,7 @@
 BuildRequires:  pkg-config
 BuildRequires:  python-Cython
 BuildRequires:  python-devel
-BuildRequires:  python-distribute
+BuildRequires:  python-setuptools
 # Starting openSUSE 12.1 the package name is python-Sphinx.
 BuildRequires:  python-sphinx
 BuildRequires:  pkgconfig(ddjvuapi)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python-djvulibre for openSUSE:Factory

2012-04-23 Thread h_root
Hello community,

here is the log from the commit of package python-djvulibre for 
openSUSE:Factory checked in at 2012-04-23 16:12:41

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


Package is python-djvulibre, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/python-djvulibre/python-djvulibre.changes
2012-03-29 14:04:47.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-djvulibre.new/python-djvulibre.changes   
2012-04-23 16:12:43.0 +0200
@@ -1,0 +2,5 @@
+Mon Apr 23 05:43:06 UTC 2012 - lazy.k...@opensuse.org
+
+- Corrected license: GPL-2.0 only (bnc#758438).
+
+---



Other differences:
--
++ python-djvulibre.spec ++
--- /var/tmp/diff_new_pack.Jj9VoQ/_old  2012-04-23 16:12:44.0 +0200
+++ /var/tmp/diff_new_pack.Jj9VoQ/_new  2012-04-23 16:12:44.0 +0200
@@ -20,7 +20,7 @@
 Version:0.3.9
 Release:0
 Summary:Python Support for the DjVu Image Format
-License:GPL-2.0+
+License:GPL-2.0
 Group:  Development/Libraries/Python
 Url:http://jwilk.net/software/python-djvulibre
 Source0:
http://pypi.python.org/packages/source/p/%{name}/%{name}-%{version}.tar.gz

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python-djvulibre for openSUSE:Factory

2012-03-29 Thread h_root
Hello community,

here is the log from the commit of package python-djvulibre for 
openSUSE:Factory checked in at 2012-03-29 14:04:45

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


Package is python-djvulibre, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/python-djvulibre/python-djvulibre.changes
2012-03-12 20:16:38.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-djvulibre.new/python-djvulibre.changes   
2012-03-29 14:04:47.0 +0200
@@ -1,0 +2,28 @@
+Tue Mar 20 16:07:07 UTC 2012 - lazy.k...@opensuse.org
+
+- Update to 0.3.9.
+  * Ensure that all S-expression output is 7-bit.
+This is work-around for deb#664626.
+
+---
+Mon Mar 19 06:41:42 UTC 2012 - lazy.k...@opensuse.org
+
+- Update to 0.3.8.
+  * Ensure that S-expression input/output functions are always
+initialized.
+This is work-around for deb#664442.
+
+---
+Wed Mar 14 14:30:06 UTC 2012 - lazy.k...@opensuse.org
+
+- Update to 0.3.7.
+  * Use floor division operator instead of relying on classic
+division semantics.
+
+---
+Mon Mar 12 10:49:12 UTC 2012 - cfarr...@suse.com
+
+- license update: GPL-2.0+
+  No indication of GPL-2.0 (i.e. only) licenses in the package
+
+---
@@ -60 +87,0 @@
-

Old:

  python-djvulibre-0.3.6.tar.gz

New:

  python-djvulibre-0.3.9.tar.gz



Other differences:
--
++ python-djvulibre.spec ++
--- /var/tmp/diff_new_pack.cnWOKi/_old  2012-03-29 14:04:50.0 +0200
+++ /var/tmp/diff_new_pack.cnWOKi/_new  2012-03-29 14:04:50.0 +0200
@@ -15,13 +15,14 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   python-djvulibre
-Version:0.3.6
+Version:0.3.9
 Release:0
-License:GPL-2.0
 Summary:Python Support for the DjVu Image Format
-Url:http://jwilk.net/software/python-djvulibre
+License:GPL-2.0+
 Group:  Development/Libraries/Python
+Url:http://jwilk.net/software/python-djvulibre
 Source0:
http://pypi.python.org/packages/source/p/%{name}/%{name}-%{version}.tar.gz
 BuildRequires:  graphviz
 BuildRequires:  graphviz-gnome

++ python-djvulibre-0.3.6.tar.gz - python-djvulibre-0.3.9.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-djvulibre-0.3.6/PKG-INFO 
new/python-djvulibre-0.3.9/PKG-INFO
--- old/python-djvulibre-0.3.6/PKG-INFO 2012-03-06 00:18:07.0 +0100
+++ new/python-djvulibre-0.3.9/PKG-INFO 2012-03-19 21:02:31.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: python-djvulibre
-Version: 0.3.6
+Version: 0.3.9
 Summary: Python support for the DjVu image format
 Home-page: http://jwilk.net/software/python-djvulibre
 Author: Jakub Wilk
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-djvulibre-0.3.6/djvu/common.pxi 
new/python-djvulibre-0.3.9/djvu/common.pxi
--- old/python-djvulibre-0.3.6/djvu/common.pxi  2012-03-05 23:50:02.0 
+0100
+++ new/python-djvulibre-0.3.9/djvu/common.pxi  2012-03-18 23:19:50.0 
+0100
@@ -1,4 +1,4 @@
-# Copyright © 2008, 2009, 2010 Jakub Wilk jw...@jwilk.net
+# Copyright © 2008-2012 Jakub Wilk jw...@jwilk.net
 #
 # This package is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-djvulibre-0.3.6/djvu/const.py 
new/python-djvulibre-0.3.9/djvu/const.py
--- old/python-djvulibre-0.3.6/djvu/const.py2011-01-18 19:15:30.0 
+0100
+++ new/python-djvulibre-0.3.9/djvu/const.py2012-03-18 23:23:48.0 
+0100
@@ -1,5 +1,6 @@
 # encoding=UTF-8
-# Copyright © 2008, 2009 Jakub Wilk jw...@jwilk.net
+
+# Copyright © 2008-2010 Jakub Wilk jw...@jwilk.net
 #
 # This package is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-djvulibre-0.3.6/djvu/decode.pyx 
new/python-djvulibre-0.3.9/djvu/decode.pyx
--- old/python-djvulibre-0.3.6/djvu/decode.pyx  2012-01-30 20:58:13.0 
+0100
+++ new/python-djvulibre-0.3.9/djvu/decode.pyx  2012-03-18 23:18:33.0 
+0100
@@ -1,4 +1,4 @@
-# Copyright © 2007, 2008, 2009, 2010, 2011 Jakub Wilk