Code

51b03604319f989466af993aabfc69330b4140d0
[pkg-rrdtool.git] / debian / changelog
1 rrdtool (1.4~rc2+20091004-1) experimental; urgency=low
3   [ Sebastian Harl ]
4   * New upstream SVN snapshot based on trunk at revision 1918.
5   * Uploading to experimental.
6   * debian/control:
7     - Build-depend on gettext instead of intltool following the switch made by
8       upstream.
9     - Build-depend on libdbi0-dev, required by rrdgraph to read values from an
10       SQL database.
11     - Updated Standards-Version to 3.8.3.
12     - Let the synopsis start with a small letter (as suggested in dev-ref
13       6.2.2).
14   * debian/rules:
15     - Remove config.h in the 'clean' target - this is created by configure but
16       not cleaned up by any Makefile.
17     - Use DEB_HOST_ARCH_CPU instead of DEB_HOST_GNU_TYPE to check for the
18       build host.
19     - Set examples/rrdcached/RRDCached.pm's file mode to 0644.
20   * debian/patches:
21     - Removed bts494874-gnu-kfreebsd - included upstream.
22     - Removed bts332766-negative-timestamps - included upstream.
23     - Removed compiler-warning-fixes - included upstream.
24     - Updated bts428778-floating-point-exception for RRDtool 1.4.
25   * Added debian/README.source:
26     - The file includes a pointer to /usr/share/doc/quilt/README.source.
27   * debian/librrd4.symbols:
28     - Added symbols introduced in 1.4~rc2.
29   * Added new binary package 'rrdcached' for the newly introduced "data
30     caching daemon".
31   * debian/rrdcached.init.d, debian/rrdcached.default:
32     - Added an init script for rrdcached supporting start, stop, status,
33       restart, force-reload. The script is based on the collectd init script.
34   * debian/rrdtool.install:
35     - Install manpages in section 3 as well.
36   * debian/rrdcached.postrm:
37     - Remove /var/lib/rrdcached/ on purge.
39   [ Bernd Zeimetz ]
40   * debian/rules, debian/control:
41     - Build Lua bindings and put them into appropriate packages.
43  -- Sebastian Harl <tokkee@debian.org>  Sun, 04 Oct 2009 16:31:41 +0200
45 rrdtool (1.3.8-1) unstable; urgency=low
47   [ Sebastian Harl ]
48   * New upstream release:
49     - Fixed various memory leaks in the Python bindings, thanks to Anders
50       Hammarquist for reporting this and providing a patch (Closes: #529291).
51   * debian/patches:
52     - Added bts530814-hurd to fix a FTBFS on Hurd, thanks to Marc Dequènes for
53       reporting this and providing a patch (Closes: #530814).
54     - Removed doc-fixes - applied upstream.
55     - Added bts332766-negative-timestamps - upstream patch to fix the handling
56       of negative timestamps in rrdupdate(1), thanks to Frank Zacharias for
57       reporting this (Closes: #332766).
58   * debian/control:
59     - Removed transitional package "python-rrd" which is no longer required.
60     - Let rrdtool-dbg depend on ${shlibs:Depends}.
61     - Build-depend on intltool.
63   [ Bernd Zeimetz ]
64   * debian/rules, debian/control:
65     - Build Python dbg modules into rrdtool-dbg. Add necessary
66       (build-) dependencies.
68  -- Sebastian Harl <tokkee@debian.org>  Mon, 01 Jun 2009 18:49:13 +0200
70 rrdtool (1.3.7-1) unstable; urgency=low
72   * New upstream release (Closes: #431060):
73     - Fixed pathname used in rrdgraph's --imginfo output (Closes: #497739).
74   * debian/patches:
75     - Updated bts428778-floating-point-exception to apply to the latest
76       version of rrdtool; use rrd_free2() instead of rrd_free() to not leak
77       memory.
78     - Updated no-rpath-for-perl to apply to the latest version of rrdtool.
79     - Removed bts493553-pango-utf-8 - included upstream.
80     - Removed bts496847-error-handling - included upstream.
81     - Removed bts498183-segfault-madvise - included upstream.
82     - Removed bts499349-memleaks - included upstream.
83     - Removed bts499350-data-corruption - included upstream.
84     - Removed typo-ruby - included upstream.
85     - Added bts494874-gnu-kfreebsd to fix a FTBFS on GNU/kFreeBSD - thanks to
86       Petr Salinger for the patch (Closes: #494874).
87     - Added doc-fixes to fix a POD error in doc/rrdtutorial.pod.
88     - Added compiler-warning-fixes - upstream patch to fix some compiler
89       warnings.
90   * debian/rules:
91     - Remove src/librrd.sym in the clean target - this file is automatically
92       created during the build but not cleaned up in the upstream Makefiles.
93     - Remove .txt and .pod documentation from the 'rrdtool' binary package -
94       the manpages are a lot more useful.
95     - Pass --fail-missing (instead of --list-missing) to dh_install.
96     - Use 'pyversions -vr' instead of 'pysupport-parseversions'.
97   * Added new binary package rrdtool-dbg. Unfortunately, segfaults and the
98     like are not uncommon in rrdtool - this will help to trace them back more
99     easily (Closes: #518480).
100   * debian/README.Debian:
101     - Added new file with a short paragraph about the available documentation.
102   * debian/control:
103     - Moved librrd-ruby* packages from section "interpreters" to the newly
104       added section "ruby".
105     - Updated standards-version to 3.8.1 - no changes.
106     - Added XS-Python-Version field, specifying versions >= 2.3.
107   * debian/librrd-dev.install:
108     - Added /usr/lib/pkgconfig/librrd.pc (Closes: #522144).
109   * debian/rrdtool.install, debian/rrdtool.examples:
110     - Install examples/* and ifOctets.tcl using dh_install instead of
111       dh_installexamples. This allows the use of --fail-missing when running
112       dh_install.
113   * Removed debian/pyversions - has been replaced by the XS-Python-Version
114     field.
116  -- Sebastian Harl <sh@tokkee.org>  Mon, 11 May 2009 23:02:14 +0200
118 rrdtool (1.3.1-4) unstable; urgency=high
120   * Urgency set to high because of the fix for #499350.
121   * debian/patches:
122     - Added upstream patch bts499350-data-corruption (upstream SVN r1480) to
123       fix data corruption when updating multiple values in one go
124       (Closes: #499350).
125       (upstream bug #178 - http://oss.oetiker.ch/rrdtool-trac/ticket/178)
126     - Added bts498183-segfault-madvise to fix a segfault on sparc caused by a
127       wrong argument passed to madvise(2) - thanks to Jurij Smakov for
128       valuable debugging information (Closes: #498183).
129     - Added upstream patch bts496847-error-handling (upstream SVN r1471) to
130       fix error handling of syscalls in rrdtool(1) (Closes: #496847).
131     - Added upstream patch bts499349-memleaks (upstream SVN r1465, r1467,
132       r1468, r1469, r1470, r1473) to fix a couple of memory leaks in rrdtool,
133       librrd and the Perl and Ruby bindings (Closes: #499349).
134     - Added trivial upstream patch typo-ruby (upstream SVN r1462) to fix a
135       typo in the Ruby bindings.
136   * debian/NEWS:
137     - Added. Documented the changes required by the switch to libpango
138       (Closes: #493575, #493594).
140  -- Sebastian Harl <sh@tokkee.org>  Fri, 26 Sep 2008 01:41:05 +0200
142 rrdtool (1.3.1-3) unstable; urgency=low
144   * Added "libxml2-dev" to librrd-dev's dependencies (Closes: #493342).
145   * debian/patches:
146     - Added bts493553-pango-utf-8 to try to make sure an UTF-8 string is
147       passed to pango_layout_set_{text,markup}() as required by libpango
148       (Closes: #493553).
150  -- Sebastian Harl <sh@tokkee.org>  Mon, 04 Aug 2008 15:57:26 +0200
152 rrdtool (1.3.1-2) unstable; urgency=low
154   * Reupload to unstable - thanks to Marc 'HE' Brockschmidt for the approval.
155   * debian/patches:
156     - Removed bts428780-validate-row-count - this is included in upstream
157       version 1.3.
158   * debian/control:
159     - librrd-dev provides and replaces librrd2-dev to ease the transition.
161  -- Sebastian Harl <sh@tokkee.org>  Wed, 30 Jul 2008 11:44:53 +0200
163 rrdtool (1.3.1-1) experimental; urgency=low
165   * New upstream release.
167  -- Sebastian Harl <sh@tokkee.org>  Wed, 23 Jul 2008 21:44:45 +0200
169 rrdtool (1.3.0-1) experimental; urgency=low
171   [ Sebastian Harl ]
172   * New upstream release.
173     - Fixes a buffer overflow in librrd's error handling (Closes: #450578).
174     - Validate RRA row count in rrdcreate (Closes: #428780).
175   * Upload to experimental because of the required transition which has not
176     yet been granted for Lenny by the release team.
177   * debian/patches:
178     - Updated patches to apply on 1.3.0.
179     - "implicit-decl-fix" partly applied upstream
180     - "typos" removed, has been applied upstream
181   * debian/control:
182     - Replaced librrd2 / librrd2-dev with librrd4 / librrd-dev.
183     - Removed SONAME version from the -dev package name.
184     - Added "ttf-dejavu | ttf-bitstream-vera" recommendation to librrd4 -
185       upstream no longer ships DejaVuSansMono-Roman.ttf.
186     - Replaced "libart-2.0-dev" with "libcairo2-dev, libpango1.0-dev" in the
187       build dependencies and librrd-dev's dependencies following the switch
188       made by upstream.
189     - Added "libxml2-dev" to the build dependencies.
190     - Updated standards-version to 3.8.0 - no changes.
191     - No longer conflict / replace librrd0 and librrd0-dev - librrd0 is no
192       longer available since Etch.
193     - Added libc6-dev | libc-dev to librrd-dev's dependencies.
194   * debian/librrd4.symbols:
195     - Added symbols file for the new SONAME version number replacing
196       librrd2.symbols.
197   * debian/rules:
198     - Install "NEWS" and "CHANGES" into all packages.
199     - No longer set TCL_INC_DIR manually - has been fixed upstream.
201   [ Bernd Zeimetz ]
202   * debian/rules:
203     - Adding an option to point configure to the right path to tcl. This is
204       not needed for Lenny, but we also add it here to make coming backports
205       more simple.
207  -- Sebastian Harl <sh@tokkee.org>  Sun, 15 Jun 2008 14:09:47 +0200
209 rrdtool (1.2.28-1) unstable; urgency=low
211   [ Sebastian Harl ]
212   * New upstream release.
213     - Fixes a buffer overflow in librrd's error handling (Closes: #450578).
214   * debian/control:
215     - Updated standards-version to 3.8.0 - no changes.
216     - No longer conflict / replace librrd0 and librrd0-dev - librrd0 is no
217       longer available since Etch.
218     - Added libc6-dev | libc-dev to librrd2-dev's dependencies.
219   * debian/patches:
220     - Added backported upstream patch bts428780-validate-row-count to validate
221       the RRA row count in rrdcreate (Closes: #428780).
222   * debian/librrd2.symbols:
223     - Added the private symbol "rra_random_row@Base 1.2.28-1".
224   * debian/rules:
225     - Install "NEWS" and "CHANGES" into all packages.
227   [ Bernd Zeimetz ]
228   * debian/rules:
229     - Adding an option to point configure to the right path to tcl. This is
230       not needed for Lenny, but we also add it here to make coming backports
231       more simple.
232   * debian/patches/implicit-decl-fix:
233     - Patching the implicit declaration in rrd_update.c in a nicer way.
235  -- Sebastian Harl <sh@tokkee.org>  Wed, 23 Jul 2008 21:01:04 +0200
237 rrdtool (1.2.27-2) unstable; urgency=low
239   * Renamed global definition of LDFLAGS to LINKER_FLAGS in debian/rules to
240     work around a broken behavior of dpkg which would use those flags
241     unconditionally whenever invoking the linker, which is not wanted e.g.
242     when compiling the python bindings (Closes: #476022).
243   * Actually pass the linker flags to configure.
245  -- Sebastian Harl <sh@tokkee.org>  Wed, 16 Apr 2008 15:50:54 +0200
247 rrdtool (1.2.27-1) unstable; urgency=low
249   [ Bernd Zeimetz ]
250   * New upstream release.
251     - Finally allows + as leading characters in the input (Closes: #283935).
252   * debian/rules, debian/librrd2.install:
253     - Install rrdtool's ttf and configure rrd to use it.
254   * debian/patches:
255     - Updating patches to apply on 1.2.27.
256     - Adding debian/patches/bts428778-floating-point-exception to fix a corner
257       case that produces a SIGFPE (Closes: #428778). Patch created by
258       David Martínez Moreno.
259   * debian/control:
260     - Removing the ttf-dejavu dependency from librrd2 (Closes: #390617).
261     - Builds with -O2 segfault on arm, so disable it on arm for now until the
262       bug is properly debugged, which will take some time (Closes: #447041).
264   [ Sebastian Harl ]
265   * Adding debian/patches/typo by David Martínez Moreno to fix some typos
266     (Closes: #432340).
268  -- Bernd Zeimetz <bzed@debian.org>  Sun, 24 Feb 2008 23:48:24 +0100
270 rrdtool (1.2.26-1) unstable; urgency=low
272   [ Bernd Zeimetz ]
273   * New upstream version (Closes: #431060).
274   * Package hijacked as announced on debian-devel@lists.debian.org
275     (Message-ID: <47A7A2A4.3020106@bzed.de>) due to the old maintainer
276     being MIA.
277   * Complete overhaul of the packaging:
278     - debian/rules completely rewritten
279     - debian/copyright redone as it didn't even list upstream's copyright
280       correctly.
281     - debian/post{inst,rm}: removed, debhelper takes care of this.
282     - debian/control:
283         * Update of Maintainer, Standards-Version, Uploaders
284         * Building ruby modules now (Closes: #453304).
285         * Change the Python binary package to conform with the Python policy,
286           using python-support. Also renaming the package to follow the Python
287           policy.
288         * Make rrdtool-tcl compliant with policy
289         * Bump Standards Version to 3.7.3.
290         * Using and depending on quilt to handle patches.
291         * Adding Provides: librrd-dev to librrd2-dev.
292     - debian/watch:
293         * File redone to meet version 3 of uscan and to work again, using the
294           new location of the upstream source.
296   [ Alexander Wirt ]
297   * Removed rpath from perl and tcl modules
298   * Let rrdtool-tcl depend on tcl 8.4
300  -- Bernd Zeimetz <bzed@debian.org>  Mon, 11 Feb 2008 12:14:19 +0100
302 rrdtool (1.2.19-1) unstable; urgency=low
304   * New maintainer (closes: #409518).
305   * New upstream release:
306     - Logarithmic graphs don't consume all available memory (closes: #402782).
307     - This version at least does no longer have such rrdexplorer example
308       (closes: #239565).
309     - Patch for PREV(cname) was included long ago (closes: #160485).
310     - I am no longer able to reproduce a segfault with PREV(name).  Closes:
311       #180284.
312   * Acknowledge NMU uploads (closes: #323975, #324497, #326653, #373379,
313     #323771, #325708, #323611, #240369, #323969).
314   * bindings/python/Makefile.in: Added -lpython2.4 in order to fix build
315     failure.
317  -- David Martínez Moreno <ender@debian.org>  Mon, 12 Feb 2007 02:18:22 +0100
319 rrdtool (1.2.15-0.3) unstable; urgency=high
321   * Non-maintainer upload.
322   * Fix high memory consumption by extracting r881 und r887 from upstream.
323     Closes: #397691, #398111
325  -- Andreas Barth <aba@not.so.argh.org>  Thu, 14 Dec 2006 18:25:02 +0000
327 rrdtool (1.2.15-0.2) unstable; urgency=low
329   * Non-maintainer upload.
330   * Fixed the python module based on the patch supplied by Brian Warner,
331     thank you, closes: #397781.
332   * Updated upstream URL in the copyright file.
334  -- Josip Rodin <joy-packages@debian.org>  Mon, 27 Nov 2006 00:25:41 +0100
336 rrdtool (1.2.15-0.1) unstable; urgency=low
338   * Non-maintainer upload.
339   * New upstream version, closes: #364948.
340     + Dropped our patches for #323771, it's now fixed upstream.
341     + Seems to fix the crashes in RRDs::graph, closes: #392937.
342   * Fixed up the package descriptions a little bit.
343   * Updated package list in README.Debian.
344   * Tidied up the copyright file.
346  -- Josip Rodin <joy-packages@debian.org>  Mon,  6 Nov 2006 21:09:04 +0100
348 rrdtool (1.2.11-0.6) unstable; urgency=low
350   * Convert to updated Python policy. Closes: #373379.
352  -- Matthias Klose <doko@debian.org>  Sun, 18 Jun 2006 03:07:38 +0000
354 rrdtool (1.2.11-0.5) unstable; urgency=low
356   * NMU.
357   * Fix the path to the ttf-deja font and version librrd2 dependance on
358     ttf-dejavu.
360  -- Laurent Fousse <laurent@komite.net>  Mon,  9 Jan 2006 17:57:20 +0100
362 rrdtool (1.2.11-0.4) unstable; urgency=low
364   * NMU.
365   * Tighten the dependency of the binary packages on librrd2 to assert the use 
366     of a recent version depending on ttf-dejavu.
367   * Fix 'rrdtool restore', replace the workaround from 1.2.11-0.3 with a patch
368     from the upstream repository.  Closes: #323771.
369   * Set the priority of the language bindings, which only depend on librrd2,
370     to optional, as aleady done for python-rrd (rrdtool-tcl, librrds-perl).
371     Closes: #240369.
373  -- Matthias Klose <doko@debian.org>  Sun, 18 Sep 2005 06:04:13 +0000
375 rrdtool (1.2.11-0.3) unstable; urgency=low
377   * NMU.
378   * Don't include own copy of ttf-dejavu font file, depend on ttf-dejavu.
379     Patch by Jeremy Bobbio. Closes: #323975.
380   * README.Debian: Add link to upstream contrib directory (closes: #323969).
381   * NEWS: Install into librrd2{,-dev} as well (closes: #325708).
382   * librrd[ps]-perl: Add README to locate the example files (closes: #323611).
384  -- Matthias Klose <doko@debian.org>  Tue, 13 Sep 2005 11:03:47 +0000
386 rrdtool (1.2.11-0.2) unstable; urgency=low
388   * librrd2-dev: Add conflict/replaces to librrd0 (.la) file.
389     Closes: #323355.
391  -- Matthias Klose <doko@debian.org>  Tue, 16 Aug 2005 11:42:00 +0200
393 rrdtool (1.2.11-0.1) unstable; urgency=low
395   * NMU.
396   * New upstream version.
397     - Fix FTBFS on amd64 (closes: #294623).
398     - Fix rrdcgi not handling quotes (closes: #243794).
399     - Fix rrdcgi concatenation problem (closes: #232556).
400     - New soname for the librrd library (closes: #309346).
401   * Use debhelper V4.
402   * Build-depend on libart2.0-dev, libfreetype6-dev.
403   * Remove build dependencies on gd2 libs. (closes: #261752, #289003).
404   * Build python bindings from this source, add Matthias Urlichs as uploader.
405   * debian/copyright: Remove the paragraph "Modifications to upstream source",
406     no modifications with this upload.
407   * Remove empty files from examples directory (closes: #281194).
408   * Build-depend on fixed cgilib (>= 0.5-4.1).
410  -- Matthias Klose <doko@debian.org>  Sun, 14 Aug 2005 17:30:00 +0200
412 rrdtool (1.0.49-1) unstable; urgency=low
414   * New upstream release
415   * librrd0 conflicts with older rrdtool, librrds-perl due to libpng
416     incompatibility (Closes: #252271)
417   * Change depends on librrd0-dev to -noxpm variant as well
418   * Update depends on rrdtool-tcl to tcl8.4
420  -- Matt Zimmerman <mdz@debian.org>  Thu,  4 Nov 2004 17:48:45 -0800
422 rrdtool (1.0.48-3) unstable; urgency=low
424   * Placate disk space fascists by building with the -noxpm variant of libgd2
425     (Closes: #261752)
426   * Require a version of libgd which has GIF support restored (2.0.28)
427     (Closes: #265660)
429  -- Matt Zimmerman <mdz@debian.org>  Sat,  9 Oct 2004 11:43:06 -0700
431 rrdtool (1.0.48-2) unstable; urgency=low
433   * Build against libgd2, since it now provides gif support as libgd-gif1
434     did, and avoids a conflict with programs which link against both
435     librrd and libgd2, such as php4-rrdtool (Closes: #261323)
436     - Build-Depends: s/libgd-gif1-dev/libgd2-xpm-dev/
437     - librrd0-dev Depends: likewise
438   * Add libc-dev as an alternative in librrd0-dev's libc6-dev dependency
440  -- Matt Zimmerman <mdz@debian.org>  Sat, 24 Jul 2004 23:57:17 -0700
442 rrdtool (1.0.48-1) unstable; urgency=low
444   * New upstream release (Closes: #256795)
446  -- Matt Zimmerman <mdz@debian.org>  Sun,  4 Jul 2004 01:40:30 -0700
448 rrdtool (1.0.46-3) unstable; urgency=low
450   * Add dependencies to librrd0-dev to ensure that static linking is
451     possible: libgd-gif1-dev, zlib1g-dev
452   * #include <stdio.h> in rrd.h (Closes: #238849)
453   * Only link rrdcgi with -lcgi, not librrd
455  -- Matt Zimmerman <mdz@debian.org>  Fri, 19 Mar 2004 11:38:39 -0800
457 rrdtool (1.0.46-2) unstable; urgency=medium
459   * Fix tcl module installation (Closes: #231171)
461  -- Matt Zimmerman <mdz@debian.org>  Wed,  4 Feb 2004 15:35:46 -0800
463 rrdtool (1.0.46-1) unstable; urgency=low
465   * New upstream release
467  -- Matt Zimmerman <mdz@debian.org>  Mon, 12 Jan 2004 23:22:09 -0800
469 rrdtool (1.0.45-1) unstable; urgency=low
471   * New upstream release
472   * Deal with changed tclrrd naming scheme
473   * Build with tcl8.4
474   * Remove old dpkg-dev build-dependency; even woody is new enough
476  -- Matt Zimmerman <mdz@debian.org>  Wed, 17 Dec 2003 14:09:11 -0800
478 rrdtool (1.0.42-2) unstable; urgency=low
480   * Build-Depends: libpng12-dev instead of libpng3-dev (when will the madness end?)
481     (Closes: #195224
482      I hope this will also fix weird version mismatch problems (Closes: #194900)
484  -- Matt Zimmerman <mdz@debian.org>  Sat, 31 May 2003 15:06:42 -0400
486 rrdtool (1.0.42-1) unstable; urgency=low
488   * New upstream release
489   * librrd0-dev Section: libdevel
490   * librrd[sp]-perl Section: perl
491   * Build with libpng3 (Closes: #189493)
493  -- Matt Zimmerman <mdz@debian.org>  Thu, 15 May 2003 19:44:37 -0400
495 rrdtool (1.0.40-2) unstable; urgency=low
497   * Correctly suppress non-image output when writing image to stdout
498     (Closes: #182217)
500  -- Matt Zimmerman <mdz@debian.org>  Sat,  1 Mar 2003 16:59:39 -0500
502 rrdtool (1.0.40-1) unstable; urgency=low
504   * New upstream release
505   * Remove unnecessary rrd_free to avoid crash on invalid option
506     (Closes: #166156)
507   * Clean example source code; some libtool cruft was getting installed in
508     /usr/share/doc/examples
510  -- Matt Zimmerman <mdz@debian.org>  Tue, 17 Dec 2002 22:11:46 -0500
512 rrdtool (1.0.39-2) unstable; urgency=low
514   * Rebuild for perl 5.8 (Closes: #158728)
516  -- Matt Zimmerman <mdz@debian.org>  Sun, 25 Aug 2002 17:29:41 -0400
518 rrdtool (1.0.39-1) unstable; urgency=low
520   * New upstream release
522  -- Matt Zimmerman <mdz@debian.org>  Wed, 31 Jul 2002 00:40:00 -0400
524 rrdtool (1.0.38-1) unstable; urgency=low
526   * New upstream release (Closes: #148486)
528  -- Matt Zimmerman <mdz@debian.org>  Wed, 29 May 2002 12:28:28 -0400
530 rrdtool (1.0.35-2) unstable; urgency=low
532   * Remove CVS directories with rm -rf.  This broke autobuilds entirely.
533     (Closes: #140075)
535  -- Matt Zimmerman <mdz@debian.org>  Tue, 26 Mar 2002 17:15:01 -0500
537 rrdtool (1.0.35-1) unstable; urgency=low
539   * New upstream release.
541  -- Matt Zimmerman <mdz@debian.org>  Sun, 24 Mar 2002 11:29:10 -0500
543 rrdtool (1.0.33-9) unstable; urgency=low
545   * Call dh_shlibdeps with -l to allow it to find dependencies correctly
546     (Closes: #118629)
547   * Add call to ldconfig in postrm of librrd0
548   * Remove .cvsignore files from installed examples
550  -- Matt Zimmerman <mdz@debian.org>  Sat, 10 Nov 2001 14:14:51 -0500
552 rrdtool (1.0.33-8) unstable; urgency=low
554   * Use AM_MAINTAINER_MODE to keep the makefiles from trying to rebuild 
555     autoconf/automake stuff during the build (Closes: #117599)
556   * Regenerated everything AGAIN.
557   * Use DESTDIR instead of prefix= during "make install"
559  -- Matt Zimmerman <mdz@debian.org>  Mon, 29 Oct 2001 22:22:07 -0500
561 rrdtool (1.0.33-7) unstable; urgency=low
563   * Add an example to the rrddump documentation showing what is necessary
564     to transfer an RRD from one architecture to another. (Closes: #117147)
565   * Regenerated autoconf/automake configs
567  -- Matt Zimmerman <mdz@debian.org>  Mon, 29 Oct 2001 02:28:16 -0500
569 rrdtool (1.0.33-6) unstable; urgency=low
571   * Spelling corrections from Martin Schulze (Closes: #110784)
573  -- Matt Zimmerman <mdz@debian.org>  Sat,  8 Sep 2001 13:13:22 -0400
575 rrdtool (1.0.33-5) unstable; urgency=low
577   * Ship with pre-generated files from autoconf2.50/automake, rather than
578     pulling them in at build-time, in order to work around the current
579     libtool mess.  This makes the diff less manageable, but should make
580     the build more stable.
581   * debian/control: remove build-dependencies on autoconf/automake/libtool
582   * debian/rules: don't call autoconf/automake
583   * Fix shlibs file (it was trying to use a substitution)
584   * configure.in: remove makefiles that no longer exist from AC_OUTPUT.
585     Apparently this is an error in autoconf 2.50.
586   * configure.in: Remove wacky logic to pull PIC flags out of libtool, and
587     let libtool do the right thing.
588   * debian/rules: shlibs.local hackery is no longer necessary, removed
590  -- Matt Zimmerman <mdz@debian.org>  Fri,  3 Aug 2001 17:36:43 -0400
592 rrdtool (1.0.33-4) unstable; urgency=low
594   * Add build-dependencies on libtool and autoconf (Closes: #105655)
596  -- Matt Zimmerman <mdz@debian.org>  Tue, 17 Jul 2001 15:44:25 -0400
598 rrdtool (1.0.33-3) unstable; urgency=low
600   * Update config.{sub,guess} from autotools-dev 20010702.1
601     (Closes: #105037)
602   * Update ltmain.sh for good measure, from libtool 1.4-1
603   * Build-Depend on autoconf, and run autoconf and aclocal from
604     debian/rules (in addition to automake)
606  -- Matt Zimmerman <mdz@debian.org>  Sat, 14 Jul 2001 03:19:22 -0400
608 rrdtool (1.0.33-2) unstable; urgency=low
610   * Rebuild with latest tcl8.3-dev, to fix shared object extension
612  -- Matt Zimmerman <mdz@debian.org>  Sat,  3 Mar 2001 17:28:24 -0500
614 rrdtool (1.0.33-1) unstable; urgency=low
616   * New upstream version.
617   * This is yet another patch release to fix some distribution/compilation
618     problems.  There should be no visible changes for Debian users from
619     1.0.32-3.
621  -- Matt Zimmerman <mdz@debian.org>  Thu,  1 Mar 2001 02:27:53 -0500
623 rrdtool (1.0.32-3) unstable; urgency=low
625   * Fix the tcl extension module to build against tcl8.3, rather than
626     tcl8.0 (Closes: #87357)
627   * debian/control: Build-depend on tcl8.3-dev
628   * debian/rules: tclconfigdir = /usr/lib/tcl8.3
629   * tcl/Makefile.am: (upstream) -I/usr/include/tcl@TCL_VERSION@
630   * configure.in: (upstream) AC_SUBST(TCL_VERSION)
632  -- Matt Zimmerman <mdz@debian.org>  Sat, 24 Feb 2001 02:25:46 -0500
634 rrdtool (1.0.32-2) unstable; urgency=low
636   * List changes to upstream source in the copyright file (as well as the
637     changelog)
638   * Link against libgd-gif instead of libgd, to restore GIF support
640  -- Matt Zimmerman <mdz@debian.org>  Fri, 23 Feb 2001 15:27:37 -0500
642 rrdtool (1.0.32-1) unstable; urgency=low
644   * New upstream version.  Hopefully this one will last more than 24
645     hours (Closes: #75771)
647  -- Matt Zimmerman <mdz@debian.org>  Wed, 21 Feb 2001 20:13:09 -0500
649 rrdtool (1.0.27-7) unstable; urgency=low
651   * debian/rules: Updated for new Perl policy
652   * debian/rules: Don't use install-stamp; it causes more problems than it
653     prevents
654   * debian/rules: Don't call dh_suidregister; we didn't use it anyway
655   * debian/control: Build-depend on the new debhelper for dh_perl
656   * debian/control: rrdtool-tcl only seems to work with 8.0, so depend on
657     tcl8.0
658   * debian/control: Build-depend on perl 5.6.0+
659   * debian/librrd?-perl: Updated for new Perl filesystem layout
661  -- Matt Zimmerman <mdz@debian.org>  Thu, 15 Feb 2001 19:04:11 -0500
663 rrdtool (1.0.27-6) unstable; urgency=low
665   * debian/rules: Handle DEB_BUILD_OPTIONS debug, nostrip
666   * debian/rules: Separate out "configure" target
667   * debian/rules: Miscellaneous cleanup
668   * Recompile librrds-perl against perl-5.6
670  -- Matt Zimmerman <mdz@debian.org>  Tue, 19 Dec 2000 21:23:55 -0500
672 rrdtool (1.0.27-5) unstable; urgency=low
674   * Fix Build-Depends to reflect our dependency on dpkg-dev >= 1.7.0 |
675     librrd0.  The old dpkg can only calculate our dependencies correctly
676     if the runtime library is installed on the system, so potato users
677     must either install the potato librrd0 or the new dpkg-dev
678     (Closes: #77479)
680  -- Matt Zimmerman <mdz@debian.org>  Mon, 20 Nov 2000 20:39:55 -0500
682 rrdtool (1.0.27-4) unstable; urgency=low
684   * Updated to comply with policy 3.2.1.0:
685     - Don't build with -g by default
686   * Build-Depend on tcl8.0-dev (not tcl-dev), since that is the only
687     version we currently work with.
688   * Added automake to Build-Depends (oops)
690  -- Matt Zimmerman <mdz@debian.org>  Sat, 18 Nov 2000 22:29:02 -0500
692 rrdtool (1.0.27-3) unstable; urgency=low
694   * Big packaging cleanup release.
695   * Fixed perl module compilation to link with the shared library, rather
696     than including a copy of the static library inside the .so (also fixes
697     a lintian error, shlib-with-non-pic-code in librrds-perl)
698   * Fixed tcl module compilation to link with the shared library, rather
699     than including a copy of the static library inside the .so (also fixes
700     a lintian error, shlib-with-non-pic-code in rrdtool-tcl)
701   * The above shrunk the size of the perl and tcl library packages from
702     60k each to about 20k (perl) and 16k (tcl)
703   * We can now use shlibdeps to calculate the dependencies for
704     librrds-perl, so those will be more correct now
705   * Rather than include Makefile.in changes in the .diff.gz, just keep our
706     modifications to Makefile.am and run automake in debian/rules.  This
707     makes the .diff.gz much smaller and cleaner
708   * Fixed shared library dependencies all around to be smarter
709   * rrdtool package now Suggests librrds-perl (rather than depending on
710     perl), as it is only needed for an auxiliary script for converting
711     mrtg data
713  -- Matt Zimmerman <mdz@debian.org>  Fri, 10 Nov 2000 19:34:05 -0500
715 rrdtool (1.0.27-2) unstable; urgency=low
717   * Updated maintainer email address (now official maintainer)
719  -- Matt Zimmerman <mdz@debian.org>  Wed,  1 Nov 2000 22:44:41 -0500
721 rrdtool (1.0.27-1) unstable; urgency=low
723   * New upstream version.
725  -- Matt Zimmerman <mdz@csh.rit.edu>  Wed, 13 Sep 2000 13:10:14 -0400
727 rrdtool (1.0.26-1) unstable; urgency=low
729   * New upstream version.
731  -- Matt Zimmerman <mdz@csh.rit.edu>  Sun, 10 Sep 2000 16:34:08 -0400
733 rrdtool (1.0.25-1) unstable; urgency=low
735   * New upstream version.
737  -- Matt Zimmerman <mdz@csh.rit.edu>  Sun, 23 Jul 2000 02:23:53 -0400
739 rrdtool (1.0.24-2) unstable; urgency=low
741   * Updated for libgd 1.8.3 (build depends, recompile)
743  -- Matt Zimmerman <mdz@csh.rit.edu>  Fri,  7 Jul 2000 19:33:29 -0400
745 rrdtool (1.0.24-1) unstable; urgency=low
747   * New upstream version (Closes: #61997).
749  -- Matt Zimmerman <mdz@csh.rit.edu>  Fri, 30 Jun 2000 13:53:27 -0400
751 rrdtool (1.0.17-1) unstable; urgency=low
753   * New upstream version.
754   * Now creates rrdtool-tcl, containing tcl bindings.
756  -- Matt Zimmerman <mdz@csh.rit.edu>  Wed, 26 Apr 2000 13:16:24 -0700
758 rrdtool (1.0.16-1) unstable; urgency=low
760   * New upstream version.
761   * Not released.
763  -- Matt Zimmerman <mdz@csh.rit.edu>  Wed, 26 Apr 2000 10:53:36 -0700
765 rrdtool (1.0.13-2) unstable; urgency=low
767   * Build-Depends: cgilib, zlib1g-dev, libpng2-dev, libgd1g-dev, groff,
768     debhelper.  Hopefully that's everything.
770  -- Matt Zimmerman <mdz@csh.rit.edu>  Fri,  7 Apr 2000 14:16:55 -0700
772 rrdtool (1.0.13-1) unstable; urgency=low
774   * New upstream version (Closes: #58583)
775   * Added Build-Depends for cgilib (Closes: #55270)
777  -- Matt Zimmerman <mdz@csh.rit.edu>  Thu, 23 Mar 2000 15:55:37 -0800
779 rrdtool (1.0.10-1) unstable; urgency=low
781   * New upstream version. 
783  -- Matt Zimmerman <mdz@csh.rit.edu>  Mon, 10 Jan 2000 16:46:33 -0800
785 rrdtool (1.0.7-3) unstable; urgency=low
787   * Non-i386 fixes, thanks to Christopher C Chimelis <chris@debian.org>:
788   * Changed 'clean' target in debian/rules to remove the auto-generated
789     Makefiles for the Perl modules
790   * Changed Depends: for librrds-perl to use shlibdeps
792  -- Matt Zimmerman <mdz@csh.rit.edu>  Mon, 22 Nov 1999 10:47:13 -0800
794 rrdtool (1.0.7-2) unstable; urgency=low
796   * Linked RRDs.so against libpng, closes: #49701
798  -- Matt Zimmerman <mdz@csh.rit.edu>  Tue,  9 Nov 1999 15:02:40 -0800
800 rrdtool (1.0.7-1) unstable; urgency=low
802   * Initial Release.
803   * Upstream source ships with cgilib-0.4, gd-1.3, libpng-1.0.3, and
804     zlib-1.3.3 (!).  Build process is modified to skip building these, and
805     instead link with the Debian versions.
806   * Modifications for gd 1.6.1 included removal of GIF support (no longer
807     included with gd as of 1.6)
809  -- Matt Zimmerman <mdz@csh.rit.edu>  Sat, 11 Sep 1999 13:29:29 -0700