Next | Query returned 14 messages, browsing 11 to 20 | previous

History of commit frequency

CVS Commit History:


   2011-02-19 22:54:30 by Ryo ONODERA | Files touched by this commit (3)
Log message:
Update to 0.3.2.

Changelog:
python-djvulibre (0.3.2) unstable; urgency=low

  * Python  2.6: make djvu.sexpr.ListExpression a virtual subclass of
    collections.MutableSequence ().
  * Add append, count, extend, index, insert, pop, remove and reverse methods
    for list expressions.
  * Add += and del operators for list expressions.
  * Fix compatibility with Cython 0.12.
  * Fix compatibility with some non-POSIX operating systems.
  * Add work-around for <http://bugs.python.org/issue969718>.
  * Improve setup.py:
    + Add work-around for <http://bugs.debian.org/607112>.
    + Make clean --all remove temporary *.pxi and *.c files.
    + Don't import Cython modules; calls the cython binary instead.
    + Allow cross-compilation using MinGW cross compiler.

 -- Jakub Wilk <jwilk@jwilk.net>  Wed, 15 Dec 2010 21:17:39 +0100

python-djvulibre (0.3.1) unstable; urgency=low

  * Add another example program.
  * Fix encoding issues with djvu.decode.ErrorMessage. Thanks to Kyrill
    Detinov for the bug report.

 -- Jakub Wilk <jwilk@jwilk.net>  Fri, 19 Nov 2010 17:44:51 +0100
   2010-12-26 06:01:21 by David Sainty | Files touched by this commit (78)
Log message:
Mechanically replace references to graphics/jpeg with the suitable
alternative from mk/jpeg.buildlink3.mk

This allows selection of an alternative jpeg library (namely the x86 MMX,
SSE, SSE2 accelerated libjpeg-turbo) via JPEG_DEFAULT=libjpeg-turbo, and
follows the current standard model for alternatives (fam, motif, fuse etc).

The mechanical edits were applied via the following script:

#!/bin/sh
for d in *; do
  [ -d "$d" ] || continue
  for i in "$d/"Makefile* "$d/"*.mk; do
    case "$i" in *.orig|*"*"*) continue;; esac
    out="$d/x"
    sed -e 's;graphics/jpeg/buildlink3\.mk;mk/jpeg.buildlink3.mk;g' \
        -e 's;BUILDLINK_PREFIX\.jpeg;JPEGBASE;g' \
        < "$i" > "$out"
    if cmp -s "$i" "$out"; then
      rm -f "$out"
    else
      echo "Edited $i"
      mv -f "$i" "$i.orig" && mv "$out" \ 
"$i"
    fi
  done
done
   2010-11-16 14:11:27 by Ryo ONODERA | Files touched by this commit (3)
Log message:
python-djvulibre (0.3.0) unstable; urgency=low

  * Add support for Python 3.
  * Fix tests on 64-bit architectures.
  * Fix compatibility with Cython 0.13.
  * Message.message are now always Unicode strings.

 -- Jakub Wilk <jwilk@jwilk.net>  Fri, 29 Oct 2010 01:51:33 +0200
   2010-07-31 10:08:46 by Ryo ONODERA | Files touched by this commit (5) | Imported package
Log message:
Import py26-djvulibre-0.1.18 as wip/py-djvulibre.

Python bindings for the DjVulibre library.


Next | Query returned 14 messages, browsing 11 to 20 | previous