[ubuntu/oneiric] raul 0.8.0-0.2 (Accepted)

Alessio Treglia quadrispro at ubuntu.com
Tue May 3 20:50:19 UTC 2011


raul (0.8.0-0.2) experimental; urgency=low

  * Non-maintainer upload.
  * debian/rules:
    - Build docs only when doxygen, graphviz are installed;
      this also fixes FTBFS on kfreebsd-amd64 (Closes: #624409).
    - Build with --debug enabled.
  * debian/control:
    - Move doxygen, graphviz to Build-Depends-Indep.
    - Sort Build-Depends values.
  * debian/patches/1001-dont_run_ldconfig.patch:
    - Avoid calling ldconfig once the build is finished, this allow us
      to save a bit of time.
  * Remove debian/patches/hppa_parallel.patch since it is unneeded now.

raul (0.8.0-0.1) experimental; urgency=low

  * Non-maintainer upload.
  * New upstream release (Closes: #611193):
    - Changes in 0.8.0:
      + Implement Semaphore for Darwin
      + Remove unused/trivial/inappropriate Command and Stateful
      + Remove pointless templateification of RingBuffer
      + Use uint32_t consistently for sizes in RingBuffer
      + Fix off-by-one allocation of Atom strings
      + Add all classes to 'raul' doxygen group
      + Make single-argument constructors explicit
      + Fix incorrect TimeSlice::beats_to_ticks
      + Fix crash bug in List::chop_front
      + Fix TimeStamp comparison operators
      + Rename LOG_ + defines RAUL_LOG_ +
      + Remove "using namespace" declarations
      + Add missing #includes
      + Add missing COPYING file to distribution
      + Upgrade to waf 1.6.2
      + Fix accidental build system dependency on glibmm (now glib only)
      + Better documentation generation via waf tool
    - Changes 0.7.0:
      + Add several unit tests
      + Use malloc'd memory for RingBuffer/SRSWQueue (instead of a new'd
        array)
      + Fancy coloured console/logging I/O (raul/log.hpp)
      + More flexible Path and better URI support
      + Atom updates, including new "Blank" Atom for storing dictionaries
        with URI keys (ala JavaScript "objects", but RDF compatible)
      + Remove stack stuff from Array and create new ArrayStack
      + Make Symbol and URI more opaque and use Glib string interning
      + Add Configuration class for app command line option handling
      + Use < operator in TableImpl instead of > so it needn't be defined
      + Add IntrusivePtr, a trivial #define of boost::intrusive_ptr which
        is useful for hard realtime things (since adding and dropping refs
        is realtime safe, which is not true of shared_ptr)
      + Remove TimeSlice
  * SONAME change: libraul3 -> libraul10.
  * Fix lintian's embedded-javascript-library warning on libraul-doc:
    - Symlink jquery.js to /usr/share/doc/libraul-doc/html/jquery.js rather
      than install a local copy.
  * debian/control:
    - Bump Standards.
    - Remove duplicate Section: libs.
    - Make libraul-doc depend on libjs-jquery.
    - Make libraul-dev depend on libglib2.0-dev,libboost-dev and suggest
      liblo-dev.
  * debian/copyright:
    - Add license and copyright information about waf,raul/midi_events.h
      files.
    - Update to DEP-5 svn rev.174.
  * debian/rules:
    - No need to apply hppa_parallel.patch anymore since hppa arch was
      dropped.
    - Rewrote to use pure DH7 short-form.
  * Remove unneeded debian/libraul3.dirs file.

Date: Thu, 28 Apr 2011 12:46:11 +0200
Changed-By: Alessio Treglia <quadrispro at ubuntu.com>
Maintainer: Paul Brossier <piem at debian.org>
Origin: debian/experimental
https://launchpad.net/ubuntu/oneiric/+source/raul/0.8.0-0.2
-------------- next part --------------
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.8
Date: Thu, 28 Apr 2011 12:46:11 +0200
Source: raul
Binary: libraul-dev libraul10 libraul-doc
Architecture: source
Version: 0.8.0-0.2
Distribution: oneiric
Urgency: low
Maintainer: Paul Brossier <piem at debian.org>
Changed-By: Alessio Treglia <quadrispro at ubuntu.com>
Description: 
 libraul-dev - real time audio utility library -- development files
 libraul-doc - real time audio utility library -- documentation
 libraul10  - real time audio utility library
Closes: 611193 624409
Changes: 
 raul (0.8.0-0.2) experimental; urgency=low
 .
   * Non-maintainer upload.
   * debian/rules:
     - Build docs only when doxygen, graphviz are installed;
       this also fixes FTBFS on kfreebsd-amd64 (Closes: #624409).
     - Build with --debug enabled.
   * debian/control:
     - Move doxygen, graphviz to Build-Depends-Indep.
     - Sort Build-Depends values.
   * debian/patches/1001-dont_run_ldconfig.patch:
     - Avoid calling ldconfig once the build is finished, this allow us
       to save a bit of time.
   * Remove debian/patches/hppa_parallel.patch since it is unneeded now.
 .
 raul (0.8.0-0.1) experimental; urgency=low
 .
   * Non-maintainer upload.
   * New upstream release (Closes: #611193):
     - Changes in 0.8.0:
       + Implement Semaphore for Darwin
       + Remove unused/trivial/inappropriate Command and Stateful
       + Remove pointless templateification of RingBuffer
       + Use uint32_t consistently for sizes in RingBuffer
       + Fix off-by-one allocation of Atom strings
       + Add all classes to 'raul' doxygen group
       + Make single-argument constructors explicit
       + Fix incorrect TimeSlice::beats_to_ticks
       + Fix crash bug in List::chop_front
       + Fix TimeStamp comparison operators
       + Rename LOG_ + defines RAUL_LOG_ +
       + Remove "using namespace" declarations
       + Add missing #includes
       + Add missing COPYING file to distribution
       + Upgrade to waf 1.6.2
       + Fix accidental build system dependency on glibmm (now glib only)
       + Better documentation generation via waf tool
     - Changes 0.7.0:
       + Add several unit tests
       + Use malloc'd memory for RingBuffer/SRSWQueue (instead of a new'd
         array)
       + Fancy coloured console/logging I/O (raul/log.hpp)
       + More flexible Path and better URI support
       + Atom updates, including new "Blank" Atom for storing dictionaries
         with URI keys (ala JavaScript "objects", but RDF compatible)
       + Remove stack stuff from Array and create new ArrayStack
       + Make Symbol and URI more opaque and use Glib string interning
       + Add Configuration class for app command line option handling
       + Use < operator in TableImpl instead of > so it needn't be defined
       + Add IntrusivePtr, a trivial #define of boost::intrusive_ptr which
         is useful for hard realtime things (since adding and dropping refs
         is realtime safe, which is not true of shared_ptr)
       + Remove TimeSlice
   * SONAME change: libraul3 -> libraul10.
   * Fix lintian's embedded-javascript-library warning on libraul-doc:
     - Symlink jquery.js to /usr/share/doc/libraul-doc/html/jquery.js rather
       than install a local copy.
   * debian/control:
     - Bump Standards.
     - Remove duplicate Section: libs.
     - Make libraul-doc depend on libjs-jquery.
     - Make libraul-dev depend on libglib2.0-dev,libboost-dev and suggest
       liblo-dev.
   * debian/copyright:
     - Add license and copyright information about waf,raul/midi_events.h
       files.
     - Update to DEP-5 svn rev.174.
   * debian/rules:
     - No need to apply hppa_parallel.patch anymore since hppa arch was
       dropped.
     - Rewrote to use pure DH7 short-form.
   * Remove unneeded debian/libraul3.dirs file.
Checksums-Sha1: 
 61a44fd0030c33ca599465c582197a2bce116e93 1234 raul_0.8.0-0.2.dsc
 8c93557447967b7fea934003613a8c54ee503870 155450 raul_0.8.0.orig.tar.bz2
 e0d107474fe606d876c2dfc88d9158ec0a9e7900 5528 raul_0.8.0-0.2.debian.tar.gz
Checksums-Sha256: 
 74645d891f225ead5549a1fe7d257dcb56b5f07cd2dc4cecd3c9e4a84594119f 1234 raul_0.8.0-0.2.dsc
 0b35cd7bb6fb0b1ca0340be07678a2561888572c96cf4e4da4d8f4c03a20ba26 155450 raul_0.8.0.orig.tar.bz2
 2717cdf25c745af6f0da18a092964545e8bcb88858d4c3d6853182dacf822fb2 5528 raul_0.8.0-0.2.debian.tar.gz
Files: 
 3a033fd99cf53d1aee042d35e5fc882c 1234 libs extra raul_0.8.0-0.2.dsc
 8fa71a20db81fbed5fb6516dea383ea8 155450 libs extra raul_0.8.0.orig.tar.bz2
 d99b34fd96abd3de89963bfb9847bb41 5528 libs extra raul_0.8.0-0.2.debian.tar.gz
Origin: debian/experimental

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEARECAAYFAk3AaZ0ACgkQRdSMfNz8P9DkvQCfblvN4FZp6AuwcBdGT2wSdYmW
mT8AnRDqvUcgbyaEFlxtDbK4E4pC0ZXp
=xtiT
-----END PGP SIGNATURE-----


More information about the Oneiric-changes mailing list