debian/0000775000000000000000000000000011665714454007205 5ustar debian/compat0000664000000000000000000000000211556334446010401 0ustar 7 debian/rules0000775000000000000000000000111311630704213010241 0ustar #!/usr/bin/make -f %: dh ${@} override_dh_auto_clean: dh_auto_clean rm -f config.guess config.sub override_dh_auto_configure: cp -f /usr/share/misc/config.guess . cp -f /usr/share/misc/config.sub . dh_auto_configure override_dh_auto_install: $(MAKE) prefix=$(CURDIR)/debian/cdcd/usr mandir=$(CURDIR)/debian/cdcd/usr/share/man infodir=$(CURDIR)/debian/cdcd/usr/share/info install install -D -m 0644 debian/local/bashrc debian/cdcd/etc/bash_completion.d/cdcd # Remove useless files. rm -f debian/cdcd/usr/share/info/dir* override_dh_strip: dh_strip --dbg-package=cdcd-dbg debian/cdcd.docs0000664000000000000000000000001411556334446010745 0ustar NEWS README debian/source/0000775000000000000000000000000011630704222010465 5ustar debian/source/format0000664000000000000000000000001411556335201011677 0ustar 3.0 (quilt) debian/control0000664000000000000000000000257011630702565010604 0ustar Source: cdcd Section: sound Priority: optional Maintainer: Uwe Hermann Build-Depends: debhelper (>= 7.0.50~), autotools-dev, libcdaudio-dev, libreadline-dev Standards-Version: 3.9.2 Homepage: http://libcdaudio.sourceforge.net/ Package: cdcd Architecture: any Depends: ${misc:Depends}, ${shlibs:Depends}, dpkg (>= 1.15.4) | install-info Description: command line or console based CD player cdcd works in two ways, accepting commands directly off the command line or in a query mode similar to other UNIX programs. To pass a command to cdcd, simply run cdcd with the command as the argument (e.g. cdcd play). This is great for using cron and cdcd together to make a CD alarm clock. Or you can run cdcd without arguments and you will be given the cdcd command prompt. Package: cdcd-dbg Section: debug Priority: extra Architecture: any Depends: ${misc:Depends}, cdcd (= ${binary:Version}) Description: command line or console based CD player (debug) cdcd works in two ways, accepting commands directly off the command line or in a query mode similar to other UNIX programs. To pass a command to cdcd, simply run cdcd with the command as the argument (e.g. cdcd play). This is great for using cron and cdcd together to make a CD alarm clock. Or you can run cdcd without arguments and you will be given the cdcd command prompt. . This package contains the debugging symbols. debian/copyright0000664000000000000000000000371511556334446011144 0ustar Author: Fabrice Bauzac Download: http://libcdaudio.sourceforge.net/ Files: * Copyright: (C) 1998-1999 Tony Arcieri 2001-2004 Fabrice Bauzac License: GPL-2+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. . You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. . On Debian systems, the complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL-2 file. Files: debian/* Copyright: (C) 2005-2009 Daniel Baumann License: GPL-2+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. . You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. . On Debian systems, the complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL-2 file. debian/local/0000775000000000000000000000000011630704233010261 5ustar debian/local/bashrc0000664000000000000000000000130311556334446011457 0ustar # put this in your bashrc for bash tab completion with cdcd # $ cat cdcd-bashrc >> ~/.bashrc ismember () { local elm="${1}"; shift local pivot for pivot in ${*} do if [ "${pivot}" = "${elm}" ] then return 0 fi done return 1 } _cdcd_complete_func () { cur="${COMP_WORDS[COMP_CWORD]}" first="${COMP_WORDS[1]}" second="${COMP_WORDS[2]}" commands="$(cdcd help | grep -v 'For more')" commands="${commands#Commands: }" commands="${commands//,/}" commands="${commands/./}" if ismember "${first}" ${commands} then COMPREPLY="" return 0 fi case "${first}" in *) COMPREPLY="($(compgen -W "${commands}" ${cur}))" return 0 ;; esac } complete -F _cdcd_complete_func cdcd debian/watch0000664000000000000000000000006611630705137010226 0ustar version=3 http://sf.net/libcdaudio/cdcd-(.*)\.tar\.gz debian/patches/0000775000000000000000000000000011665710131010620 5ustar debian/patches/02-skip.patch0000664000000000000000000000146011556334446013041 0ustar Author: Sebastian Rasmussen Description: Skips unplayable data tracks automagically diff -Naurp cdcd.orig/cmd_cdcd.c cdcd/cmd_cdcd.c --- cdcd.orig/cmd_cdcd.c 2009-06-14 08:36:41.000000000 +0000 +++ cdcd/cmd_cdcd.c 2009-07-16 22:33:28.000000000 +0000 @@ -403,10 +403,16 @@ cmd_play (char **argv) } } - if (disc.disc_track[play_track - 1].track_type == CDAUDIO_TRACK_DATA) + while (disc.disc_track[play_track - 1].track_type == CDAUDIO_TRACK_DATA) { - puts ("cannot play data track"); - return 0; + if (play_track == end_track) + { + puts ("cannot play data track"); + return 0; + } + + puts ("cannot play data track, skipping to next track"); + play_track++; } cd_play_track_pos (cd_desc, play_track, end_track, debian/patches/04-freedb-url0000664000000000000000000000124511556343674013032 0ustar Author: Ralf Treinen Description: update url of freedb service Index: cdcd-0.6.6/conf.c =================================================================== --- cdcd-0.6.6.orig/conf.c 2011-04-28 21:40:56.000000000 +0200 +++ cdcd-0.6.6/conf.c 2011-04-28 21:46:15.000000000 +0200 @@ -147,9 +147,9 @@ { */ list.list_len = 1; strncpy (list.list_host[0].host_server.server_name, - "www.freedb.org", 256); + "freedb.freedb.org", 256); strncpy (list.list_host[0].host_addressing, - "cgi-bin/cddb.cgi", 256); + "~cddb/cddb.cgi", 256); list.list_host[0].host_server.server_port = 80; list.list_host[0].host_protocol = CDDB_MODE_HTTP; /* break; debian/patches/series0000664000000000000000000000021111665707752012046 0ustar 01-eject.patch 02-skip.patch 03-cdindex.patch 04-freedb-url 05-fix-rndplay-segfault.patch 06-manpage-hyphen-fix.patch 07-no-curses.patch debian/patches/03-cdindex.patch0000664000000000000000000000230311556334446013507 0ustar Author: Daniel Baumann Description: Disabling CD information server selection, cdindex.org seems to be dead. diff -Naurp cdcd.orig/conf.c cdcd/conf.c --- cdcd.orig/conf.c 2009-06-14 08:36:41.000000000 +0000 +++ cdcd/conf.c 2009-07-16 22:33:47.000000000 +0000 @@ -120,7 +120,7 @@ cdcdrc_manual_configuration (struct cdcd } putchar ('\n'); - pprintf (get_width () - 1, + /* pprintf (get_width () - 1, "There are two methods of retrieving CD track information, CDDB " "and CD Index. Using the CD Index will be somewhat faster, but " "does not yet facilitate inexact matching. Both methods may be " @@ -144,7 +144,7 @@ cdcdrc_manual_configuration (struct cdcd break; } else if (!*inbuffer || !strcmp (inbuffer, "1")) - { + { */ list.list_len = 1; strncpy (list.list_host[0].host_server.server_name, "www.freedb.org", 256); @@ -152,11 +152,11 @@ cdcdrc_manual_configuration (struct cdcd "cgi-bin/cddb.cgi", 256); list.list_host[0].host_server.server_port = 80; list.list_host[0].host_protocol = CDDB_MODE_HTTP; - break; + /* break; } else puts ("?"); - } + } */ if ((proxy = getenv ("http_proxy"))) { debian/patches/01-eject.patch0000664000000000000000000000117611556334446013170 0ustar Author: Sebastian Rasmussen Description: Allows to eject empty cd-tray diff -Naurp cdcd.orig/cmd_cdcd.c cdcd/cmd_cdcd.c --- cdcd.orig/cmd_cdcd.c 2009-06-14 08:36:41.000000000 +0000 +++ cdcd/cmd_cdcd.c 2009-07-16 22:32:32.000000000 +0000 @@ -493,9 +493,16 @@ int cmd_open (char **argv) { NOARG; - if (cd_stop (cd_desc) == 0) - cd_eject (cd_desc); - return XRET_NULL; + struct disc_status status; + + if (cd_poll (cd_desc, &status) && + (status.status_mode == CDAUDIO_PLAYING || + (status.status_mode == CDAUDIO_PAUSED))) + { + cd_stop(cd_desc); + } + + cd_eject (cd_desc); } int debian/patches/07-no-curses.patch0000664000000000000000000000637011665707752014030 0ustar Index: cdcd-0.6.6/config.h.in =================================================================== --- cdcd-0.6.6.orig/config.h.in 2011-10-25 19:56:03.000000000 -0400 +++ cdcd-0.6.6/config.h.in 2011-10-25 19:54:56.000000000 -0400 @@ -33,9 +33,6 @@ /* True if we must provide -llibcdaudio (for IRIX). */ #undef HAVE_LIBCDAUDIO -/* Define to 1 if you have the `curses' library (-lcurses). */ -#undef HAVE_LIBCURSES - /* Define to 1 if you have the `readline' library (-lreadline). */ #undef HAVE_LIBREADLINE Index: cdcd-0.6.6/configure =================================================================== --- cdcd-0.6.6.orig/configure 2011-10-25 19:56:03.000000000 -0400 +++ cdcd-0.6.6/configure 2011-10-25 19:56:03.000000000 -0400 @@ -3677,85 +3677,6 @@ -echo "$as_me:$LINENO: checking for tputs in -lcurses" >&5 -echo $ECHO_N "checking for tputs in -lcurses... $ECHO_C" >&6 -if test "${ac_cv_lib_curses_tputs+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lcurses $LIBS" -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -/* Override any gcc2 internal prototype to avoid an error. */ -#ifdef __cplusplus -extern "C" -#endif -/* We use char because int might match the return type of a gcc2 - builtin and then its argument prototype would still apply. */ -char tputs (); -int -main () -{ -tputs (); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 - (eval $ac_link) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_lib_curses_tputs=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_cv_lib_curses_tputs=no -fi -rm -f conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -echo "$as_me:$LINENO: result: $ac_cv_lib_curses_tputs" >&5 -echo "${ECHO_T}$ac_cv_lib_curses_tputs" >&6 -if test $ac_cv_lib_curses_tputs = yes; then - cat >>confdefs.h <<_ACEOF -#define HAVE_LIBCURSES 1 -_ACEOF - - LIBS="-lcurses $LIBS" - -else - { { echo "$as_me:$LINENO: error: cannot find the curses library. -Check the INSTALL file, maybe you can find how to solve the problem." >&5 -echo "$as_me: error: cannot find the curses library. -Check the INSTALL file, maybe you can find how to solve the problem." >&2;} - { (exit 1); exit 1; }; } -fi - - echo "$as_me:$LINENO: checking for rl_completion_matches in -lreadline" >&5 echo $ECHO_N "checking for rl_completion_matches in -lreadline... $ECHO_C" >&6 if test "${ac_cv_lib_readline_rl_completion_matches+set}" = set; then debian/patches/05-fix-rndplay-segfault.patch0000664000000000000000000000104111630707166016132 0ustar Author: Zak B. Elep Description: Fix 'cdcd rndplay' segfault if no CD is in the drive. http://bugs.debian.org/cgi-bin/bugreport.cgi?msg=17;filename=cmd_cdcd.c_diff;att=1;bug=466920 --- a/cmd_cdcd.c 2011-06-26 15:03:10.000000000 +0200 +++ b/cmd_cdcd.c 2011-06-26 15:04:56.000000000 +0200 @@ -614,8 +614,8 @@ { struct disc_info disc; NOARG; - if (cd_stat (cd_desc, &disc) != 0) - return XRET_NULL; + if (cdcd_cd_stat (cd_desc, &disc) < 0) + return 0; play_track = (rand () % disc.disc_total_tracks) + 1; debian/patches/06-manpage-hyphen-fix.patch0000664000000000000000000000076711630707775015577 0ustar Author: Uwe Hermann Description: Escape hyphen which should be interpreted as minus sign by groff as per lintian warning. --- a/cdcd.1 2011-09-04 16:48:13.000000000 +0200 +++ b/cdcd.1 2011-09-04 16:48:21.000000000 +0200 @@ -107,7 +107,7 @@ .TP \fBdevice\fR [\fBdevice name\fR] This sets the CD-ROM device cdcd will use in future invocations which -don't specify the -d option. +don't specify the \-d option. .B cdcd stores this information in your .I .cdcdrc debian/changelog0000664000000000000000000002317311665713560011062 0ustar cdcd (0.6.6-13.1) unstable; urgency=low * NMU * Add 07-no-curses.patch to fix FTBFS. Since curses isn't used anyway, don't test for or use it. (Closes: #646134). Thanks to Daniel T Chen for passing on this patch from Ubuntu. -- Steve McIntyre Thu, 01 Dec 2011 14:56:59 +0000 cdcd (0.6.6-13) unstable; urgency=low * New maintainer (Closes: #543835). * Standards-Version: 3.9.2 (no changes required). * debian/control: + Fix minor whitespace issue in description. + Drop Vcs-Browser and Vcs-Git fields, I don't use a repo. * Add debian/watch file. * Close "no sound with cdcd in sid", was a 2.6.32 issue (Closes: #568996). Also close "everything seems to work as expected, but no sound :(" which is pretty surely the same issue (Closes: #602752). Please reopen if this still happens with current kernels. * Fix "cdcd rndplay" segfault if no CD in inserted (Closes: #466920). Thanks Zak B. Elep for the patch. * Escape a hyphen in the manpage to silence lintian. -- Uwe Hermann Sun, 04 Sep 2011 16:49:48 +0200 cdcd (0.6.6-12) unstable; urgency=low * QA upload * Change build-dependency libreadline5-dev => libreadline-dev (closes: #553737) * patch 04-freedb-url: update address of freedb service (closes: #485524) * Migrate to source format 3.0 (quilt): - add debian/source/format - drop build-dependency on quilt - drop --with-quilt from debian/rules * cdcd: add dependency on dpkg (>= 1.15.4) | install-info to ease transition to trigerized install-info -- Ralf Treinen Thu, 28 Apr 2011 21:57:53 +0200 cdcd (0.6.6-11) unstable; urgency=low * Sorting and updating depends. * Removing vcs fields. * Orphaning package. -- Daniel Baumann Thu, 27 Aug 2009 07:06:40 +0200 cdcd (0.6.6-10) unstable; urgency=low * Minimizing rules file. * Wrapping build-depends. * Adding misc depends. -- Daniel Baumann Sun, 02 Aug 2009 17:50:47 +0200 cdcd (0.6.6-9) unstable; urgency=low * Updating vcs fields in control file. * Using patch-stamp rather than patch in rules file. * Replacing obsolete dh_clean -k with dh_prep. * Updating section of the debug package. * Using correct rfc-2822 date formats in changelog. * Updating package to standards version 3.8.2. * Updating year in copyright file. * Prefixing debhelper files with package name. * Using quilt rather than dpatch. * Updating rules to current state of the art. * Avoid including info dir files. -- Daniel Baumann Fri, 17 Jul 2009 00:39:17 +0200 cdcd (0.6.6-8) unstable; urgency=medium * Adding debug package. -- Daniel Baumann Fri, 20 Jun 2008 19:21:00 +0200 cdcd (0.6.6-7) unstable; urgency=medium * Adding some cosmetic updates on cdcd bash completion. * Reordering rules file. * Rewriting copyright file in machine-interpretable format. * Adding vcs fields to control file. * Upgrading package to debhelper 7. * Removing whitespaces at EOL. * Removing watch file. * Reverting config.guess and config.sub to upstream. * Updating to standards 3.8.0. -- Daniel Baumann Fri, 20 Jun 2008 19:16:00 +0200 cdcd (0.6.6-6) unstable; urgency=low * Bumped to new policy. * Using homepage field in control * Don't hide errors in clean target of rules. -- Daniel Baumann Sun, 23 Dec 2007 11:28:00 +0100 cdcd (0.6.6-5) unstable; urgency=low * Minor cleanups. -- Daniel Baumann Fri, 19 Jul 2007 11:14:00 +0100 cdcd (0.6.6-4) unstable; urgency=low * New email address. -- Daniel Baumann Wed, 05 Jul 2006 21:48:00 +0200 cdcd (0.6.6-3) unstable; urgency=low * Added bash completion from Martin Schulze (Closes: #366004). -- Daniel Baumann Sun, 14 May 2006 17:34:00 -0500 cdcd (0.6.6-2) unstable; urgency=low * Added patch to skip unplayable data tracks automagically (Closes: #308286). * Added patch to disable the CD information server selection by initial cdcd start; cdindex.org seems to be dead and CDDB is the only alternative (Closes: #306873). -- Daniel Baumann Sat, 17 Dec 2005 20:09:00 +0100 cdcd (0.6.6-1) unstable; urgency=low * New maintainer (Closes: #343257). * New upstream release (Closes: #252731). * Added patch to allow ejecting empty cd-tray (Closes: #319916). * Redone debian/ using new debhelper templates. * Using dpatch to manage patches. * Added watch file. -- Daniel Baumann Wed, 14 Dec 2005 07:11:00 +0100 cdcd (0.6.5-4.1) unstable; urgency=high * Non-maintainer upload. * High-urgency upload for RC bugfix. * Build-depend on libreadline5-dev | libreadline-dev, instead of on the removed libreadline4-dev. Closes: #326382. -- Steve Langasek Thu, 17 Nov 2005 14:19:05 -0800 cdcd (0.6.5-4) unstable; urgency=low * Patched doc/Makefile.in to avoid the inclusion of the files dir.gz and dir.old.gz in /usr/share/info due to an automake bug. Thanks to Andreas Metzler (Closes: #218475). * Updated Standards-Version to 3.6.1.0 -- Tomas Guemes Mon, 01 Dec 2003 01:53:45 -0000 cdcd (0.6.5-3) unstable; urgency=low * New maintainer (closes: #188044). * Updated upstream source address in copyright. * Updated Standards-Version to 3.5.9. * Used debhelper for build the package. -- Tomas Guemes Wed, 04 May 2003 20:53:45 -0000 cdcd (0.6.5-2) unstable; urgency=low * Update config.sub and config.guess (Closes: #188668). -- Matt Kraai Sat, 12 Apr 2003 03:53:10 -0700 cdcd (0.6.5-1) unstable; urgency=low * Package new version (Closes: #186649). -- Matt Kraai Mon, 07 Apr 2003 09:28:34 -0700 cdcd (0.6.4-1) unstable; urgency=low * Package new version (Closes: #149010). -- Matt Kraai Wed, 05 Jun 2002 13:28:21 -0700 cdcd (0.6.3-1) unstable; urgency=low * Improve info file handling. * Package new release. -- Matt Kraai Sun, 17 Feb 2002 02:54:09 -0800 cdcd (0.6.2-2) unstable; urgency=low * Write entire device name (Closes: #130724). -- Matt Kraai Thu, 24 Jan 2002 20:01:56 -0800 cdcd (0.6.2-1) unstable; urgency=low * Package new release (Closes: #128318, #128319). -- Matt Kraai Mon, 14 Jan 2002 10:39:47 -0800 cdcd (0.6.1-1) unstable; urgency=low * Package new upstream version. -- Matt Kraai Fri, 04 Jan 2002 10:40:12 -0800 cdcd (0.5.6-3) unstable; urgency=low * Check for failure to open configuration file for writing (Closes: #125932). -- Matt Kraai Thu, 20 Dec 2001 08:15:12 -0800 cdcd (0.5.6-2) unstable; urgency=low * Fix cdcd.info handling (Closes: #121311). -- Matt Kraai Tue, 27 Nov 2001 02:00:37 -0800 cdcd (0.5.6-1) unstable; urgency=low * New upstream version. -- Matt Kraai Wed, 24 Oct 2001 18:25:52 -0700 cdcd (0.5.5-4) unstable; urgency=low * Update config.sub and config.guess to handle hppa (Closes: #104972). -- Matt Kraai Sun, 15 Jul 2001 09:14:45 -0700 cdcd (0.5.5-3) unstable; urgency=low * Rebuilt with working dpkg-dev. -- Matt Kraai Sat, 30 Jun 2001 11:51:32 -0700 cdcd (0.5.5-2) unstable; urgency=low * Reupdated config.sub. -- Matt Kraai Mon, 25 Jun 2001 16:45:20 -0700 cdcd (0.5.5-1) unstable; urgency=low * New upstream version (Closes: #99822). -- Matt Kraai Tue, 12 Jun 2001 20:39:12 -0700 cdcd (0.5.3-1) unstable; urgency=low * New upstream version. -- Matt Kraai Wed, 06 Jun 2001 20:42:16 -0700 cdcd (0.5.2-2) unstable; urgency=low * Added a -d option. -- Matt Kraai Sun, 03 Jun 2001 11:07:35 -0700 cdcd (0.5.2-1) unstable; urgency=low * New upstream version. -- Matt Kraai Sun, 27 May 2001 17:34:00 -0700 cdcd (0.5.1-2) unstable; urgency=low * Fix default handling in network configuration question. -- Matt Kraai Sun, 27 May 2001 10:26:34 -0700 cdcd (0.5.1-1) unstable; urgency=low * New upstream version. -- Matt Kraai Sun, 27 May 2001 09:12:20 -0700 cdcd (0.5.0-4) unstable; urgency=low * Rebuilt with readline support. * Fix spelling of argument in package description. -- Matt Kraai Sun, 11 Feb 2001 02:57:45 -0800 cdcd (0.5.0-3) unstable; urgency=low * New maintainer. * Updated config.sub (Closes: #59041, #83770). * Moved documentation to /usr/share/doc (Closes: #78107). * Moved manual page to /usr/share/man. * Fixed misspelling of necessary (Closes: #80533). * Updated copyright file. -- Matt Kraai Mon, 05 Feb 2001 20:04:20 -0800 cdcd (0.5.0-2.1) unstable; urgency=low * Rebuild to correct dependencies on readline and ncurses libraries. -- Martin Mitchell Sun, 07 May 2000 01:12:37 +1000 cdcd (0.5.0-2) unstable; urgency=low * cdcd.c (cdcdrc_manual_configuration): also write the configuration file when not connected to network. * debian/rules (build): remove obsolete touch hack for manpage. -- James Troup Mon, 23 Aug 1999 17:00:14 +0100 cdcd (0.5.0-1) unstable; urgency=low * New upstream version. -- James Troup Sun, 22 Aug 1999 16:19:54 +0100 cdcd (0.4.5-1) unstable; urgency=low * Initial packaging. -- James Troup Sat, 15 May 1999 14:23:17 +0100