Your message dated Thu, 24 Jul 2008 09:17:14 +0000
with message-id <[EMAIL PROTECTED]>
and subject line Bug#489509: fixed in liboggz 0.9.8-1
has caused the Debian Bug report #489509,
regarding Time to upgrade ([comp.os.linux.announce] Oggz 0.9.8 Released)
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
489509: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=489509
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---

Package: liboggz1
Version: 0.9.7-1
Severity: wishlist

Se that Usenet News -article


--- Begin Message ---
Oggz 0.9.8 Release
------------------

Oggz comprises liboggz and the command-line tools oggzinfo, oggzdump,
oggzdiff, oggzmerge, oggzrip, oggz-chop, oggz-comment, oggz-scan, oggz-sort
and oggz-validate. oggz-chop can be used to serve time ranges of Ogg media
over HTTP by any web server that supports CGI.

liboggz is a C library providing a simple programming interface for reading
and writing Ogg files and streams. Ogg is an interleaving data container
developed by Monty at Xiph.Org, originally to support the Ogg Vorbis audio
format.

This release is available as a source tarball at:

http://www.annodex.net/software/liboggz/download/liboggz-0.9.8.tar.gz

New in this release:
--------------------

This release adds a new oggz-chop tool, which can be used to serve time
ranges of Ogg media over HTTP. It also includes support for the Ogg mapping
of the experimental Kate codec (http://wiki.xiph.org/index.php/OggKate),
as well as various bugfixes and documentation improvements.


Details:
--------

Tools:

        * Added new oggz-chop tool: Extract the part of an Ogg file between
        given start and/or end times. See below for usage information.

        * oggz-sort:  Detect and fix page granulepos that should be -1 but
        isn't; fixes file error "on page with no completed packets, must be
        -1" reported by oggz-validate. (Timothy B. Terriberry)

        * oggz-validate: Handle tracking of bos and eos when checking pages,
        not packets.
        * oggz-validate: Generalized A/V header ordering to handle more audio
        types (PCM, FLAC0, FLAC, CELT)

        * oggz-comment: Fixed a crash when writing output to stdout, eg. by
        running "oggz-comment file.ogv -a". Reported by j^
        * oggz-comment: Fixed a bug where files with skeleton could not have
        their comments modified or listed. Reported by j^

        * oggzinfo: Fixed crash if a skeleton track refers to a track not
        found in the physical stream. (ogg.k.ogg.k)
        * oggzinfo: Fixed an overflow in standard deviation calculation,
        and avoided a divide by zero, in the unlikely case where we have
        only one packet. (ogg.k.ogg.k)
        * oggzinfo: remove memory leak from allocated message headers
        (ogg.k.ogg.k)
        * oggzinfo: Fixed byte offsets for reporting skeleton basetime.
        * oggzinfo: Corrected calculation of Content-Duration to take the
        Presentation-Time reported in skeleton
        * oggzinfo: Display percentage overhead of Ogg framing for each
        track. (ogg.k.ogg.k)

        * oggz-basetime: Use new API call oggz_stream_get_numheaders(),
        rather than hardcoding to 3. (ogg.k.ogg.k)

        * oggzdiff: Allow diffing files with the same name if they are in
        different directories. (ogg.k.ogg.k)

Documentation:

        * Added a usage example to oggzrip man page, showing how to create an
        Ogg Vorbis I file from any file containing a vorbis audio track. Adapted
        from: http://lists.xiph.org/pipermail/vorbis-dev/2008-April/019320.html

        * Clarified documentation of oggz_table_insert()

        * Added link to celt-codec.org in oggz_seek docs

Build:

        * Fixed out-of-tree builds in configure and Makefile.am throughout

Internal:

        * Added support for the Kate codec throughout (ogg.k.ogg.k)

        * tools/skeleton.c: add fisbone_clear() function, for deallocating
        message headers. (ogg.k.ogg.k)


oggz-chop: General usage and CGI installation
---------------------------------------------

oggz-chop extracts the part of an Ogg file between given start and/or end
times. The output file contains copies of the headers of the input file, and
all the codec data required to correctly decode the content between the start
and end times specified on the commandline. For codecs with data dependencies
like video keyframes, the keyframe prior to the starting time will be included
in the output.

An Apache server can be configured to use oggz-chop to handle all Ogg files
(or, all Ogg files in a particular directory). An example Apache configuration
is in the liboggz source tree, along with a script for installing it on a
Debian server.

The oggz-chop binary checks if it is being run as a CGI script (by checking
some environment variables), and if so acts based on the CGI query parameter
t=, much like mod_annodex. It accepts all the time specifications that
mod_annodex accepts (npt and various smpte framerates), and start and end
times separated by a /.


About Oggz
----------

Oggz comprises liboggz and the command-line tools oggzinfo, oggzdump,
oggzdiff, oggzmerge, oggzrip, oggz-chop, oggz-comment, oggz-scan, oggz-sort
and oggz-validate.

liboggz supports the flexibility afforded by the Ogg file format while
presenting the following API niceties:

        * Full API documentation

        * Comprehensive test suite of read, write and seeking behavior.
        The entire test suite can be run under valgrind if available.

        * Developed and tested on GNU/Linux, Darwin/MacOSX, Win32 and
        Symbian OS. May work on other Unix-like systems via GNU autoconf.
        For Win32: nmake Makefiles, Visual Studio .NET 2003 solution files
        and Visual C++ 6.0 workspace files are provided in the source
        distribution.

        * Strict adherence to the formatting requirements of Ogg bitstreams,
        to ensure that only valid bitstreams are generated; writes can fail
        if you try to write illegally structured packets.

        * A simple, callback based open/read/close or open/write/close
        interface to raw Ogg files.

        * Writing automatically interleaves with packet queuing, and provides
        callback based notification when this queue is empty

        * A customisable seeking abstraction for seeking on multitrack Ogg
        data. Seeking works easily and reliably on multitrack and multi-codec
        streams, and can transparently parse Theora, Speex, Vorbis, FLAC,
        CMML, CELT and Ogg Skeleton headers without requiring linking to those
        libraries. This allows efficient use on servers and other devices
        that need to parse and seek within Ogg files, but do not need to do
        a full media decode.

Full documentation of the liboggz API, customization and installation,
and mux and demux examples can be read online at:

    http://www.annodex.net/software/liboggz/html/

Tools
-----

The Oggz source tarball also contains the following command-line tools,
which are useful for debugging and testing Ogg bitstreams:

        * oggzinfo: Display information about one or more Ogg files and
        their bitstreams.

        * oggzdump: Hexdump packets of an Ogg file, or revert an Ogg file
        from such a hexdump.

        * oggzdiff: Hexdump the packets of two Ogg files and output
        differences.

        * oggzmerge: Merge Ogg files together, interleaving pages in order
        of presentation time.

        * oggzrip: Extract one or more logical bitstreams from an Ogg file.

        * oggz-chop: Extract the part of an Ogg file between given start
        and/or end times.

        * oggz-comment: List or edit comments in an Ogg file.

        * oggz-scan: Scan an Ogg file and output characteristic landmarks.

        * oggz-sort: Sort the pages of an Ogg file in order of presentation
        time.

        * oggz-validate: Validate the Ogg framing of one or more files.

License
-------

Oggz is Free Software, available under a BSD style license.

More information is available online at the Oggz homepage:

    http://www.annodex.net/software/liboggz/index.html

enjoy :)

--
Conrad Parker, Annodex Association
http://www.annodex.net/

##########################################################################
# Send submissions for comp.os.linux.announce to: [EMAIL PROTECTED] #
# PLEASE remember a short description of the software and the LOCATION.  #
# This group is archived at http://stump.algebra.com/~cola/              #
##########################################################################


--- End Message ---

-- 
Juhapekka "naula" Tolvanen * http colon slash slash iki dot fi slash juhtolv
"Boku wa ongakuka dentaku katate ni. Tashitari. Hiitari. Sousa shite.
Sakkyoku suru. Kono botan oseba ongaku kanaderu."                  Kraftwerk

--- End Message ---
--- Begin Message ---
Source: liboggz
Source-Version: 0.9.8-1

We believe that the bug you reported is fixed in the latest version of
liboggz, which is due to be installed in the Debian FTP archive:

liboggz1-dbg_0.9.8-1_i386.deb
  to pool/main/libo/liboggz/liboggz1-dbg_0.9.8-1_i386.deb
liboggz1-dev_0.9.8-1_i386.deb
  to pool/main/libo/liboggz/liboggz1-dev_0.9.8-1_i386.deb
liboggz1_0.9.8-1_i386.deb
  to pool/main/libo/liboggz/liboggz1_0.9.8-1_i386.deb
liboggz_0.9.8-1.diff.gz
  to pool/main/libo/liboggz/liboggz_0.9.8-1.diff.gz
liboggz_0.9.8-1.dsc
  to pool/main/libo/liboggz/liboggz_0.9.8-1.dsc
liboggz_0.9.8.orig.tar.gz
  to pool/main/libo/liboggz/liboggz_0.9.8.orig.tar.gz
oggz-tools_0.9.8-1_i386.deb
  to pool/main/libo/liboggz/oggz-tools_0.9.8-1_i386.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
John Ferlito <[EMAIL PROTECTED]> (supplier of updated liboggz package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.8
Date: Wed, 16 Jul 2008 18:31:58 +1000
Source: liboggz
Binary: liboggz1 liboggz1-dev oggz-tools liboggz1-dbg
Architecture: source i386
Version: 0.9.8-1
Distribution: unstable
Urgency: low
Maintainer: John Ferlito <[EMAIL PROTECTED]>
Changed-By: John Ferlito <[EMAIL PROTECTED]>
Description: 
 liboggz1   - convenience interface for Ogg stream I/O
 liboggz1-dbg - convenience interface for Ogg stream I/O debugging symbols
 liboggz1-dev - convenience interface for Ogg stream I/O (development files)
 oggz-tools - utilities for mangling Ogg streams
Closes: 280550 399727 455368 489509
Changes: 
 liboggz (0.9.8-1) unstable; urgency=low
 .
   * New upstream release. (Closes: #489509)
   * Close bugs fixed in previous releases
     - Warn against merging multiple Ogg Vorbis files with
       oggzmerge. (Closes: #280550)
     - Fix oggzdump creating invalid headers. (Closes: #455368)
     - Man pages seem to be mis-coded. (Closes: #399727)
   * Updated Standards Version to 3.8.0 (no changes)
   * Add DM-Upload-Allowed: yes to debian/control
Checksums-Sha1: 
 379970f4c2d5e6753dcb8c4fe3f0c76f28bfd64d 1071 liboggz_0.9.8-1.dsc
 b30b7aea404873413492c09536f05b13ac573c3c 656957 liboggz_0.9.8.orig.tar.gz
 a9ac0a5bdc6e3df150a4ebebb235e4c4de120c54 3972 liboggz_0.9.8-1.diff.gz
 4f188d243d2861ca2405c98b4c50dbbd24b9aee8 26314 liboggz1_0.9.8-1_i386.deb
 8286c7e9d9cb2d9e10e7b79ad3325db3a39982b3 49068 liboggz1-dev_0.9.8-1_i386.deb
 20f5159598b20e00515f365ec70ce4dbc8b36ab7 61032 oggz-tools_0.9.8-1_i386.deb
 87692ef38177ff83e1cd2bd3b7edc85dc99600d9 135694 liboggz1-dbg_0.9.8-1_i386.deb
Checksums-Sha256: 
 8e9d89a6adc405dca63d3c3e13b14ec537341facabe00bca6cefeac934d1356a 1071 
liboggz_0.9.8-1.dsc
 3c6e9a3e49ce4202d4f06b4573cffd3fec99c92c8b6f19e2aa192a56aae27f9e 656957 
liboggz_0.9.8.orig.tar.gz
 165b7f3008a209ce06a1f2db5184131698489a30c6bbe41bc7461a59956742b5 3972 
liboggz_0.9.8-1.diff.gz
 bec2460092336b54e89afb69dfff1bfba82fd78f4f231de44dba4456a1d0616c 26314 
liboggz1_0.9.8-1_i386.deb
 8e6a7c9ab27fb1fb092ad9917a585fbcc7954d60687c4eb69fa38ed418908274 49068 
liboggz1-dev_0.9.8-1_i386.deb
 42707f004a659a4facc7c4e13fdf0d400e40eba82a9a529d052749abc16c7b79 61032 
oggz-tools_0.9.8-1_i386.deb
 b52077784cfcc1d4d5809a94ebd7321e0b5accd9802e2bec7252ae4aeaad1054 135694 
liboggz1-dbg_0.9.8-1_i386.deb
Files: 
 889ca6030afb71d5b52d9f5d053b6bc9 1071 net optional liboggz_0.9.8-1.dsc
 e25a5d76f71c4300f313280d5e471a76 656957 net optional liboggz_0.9.8.orig.tar.gz
 3d7ad51d6cff94e523413d75eada9669 3972 net optional liboggz_0.9.8-1.diff.gz
 8aa643c2ae2fe708d56c449ca6f91c83 26314 libs optional liboggz1_0.9.8-1_i386.deb
 718efa1fcea74daac3201ebfe2b54564 49068 libdevel optional 
liboggz1-dev_0.9.8-1_i386.deb
 ef65491854c43fa1524b2a8b8aeb448d 61032 utils optional 
oggz-tools_0.9.8-1_i386.deb
 547aef46525cadd798ae580531b43d13 135694 libdevel extra 
liboggz1-dbg_0.9.8-1_i386.deb

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

iEYEARECAAYFAkiINCYACgkQ5u9oNyz9HDhKLQCfa3K/afiChaWdWQuNL4DKFVGU
Kr0AoKz66Nv7QgYLEKBexTXNbDNZZ21p
=TJ3r
-----END PGP SIGNATURE-----



--- End Message ---

Reply via email to