Import Debian mp3info 0.8.4-5 DEBIAN_mp3info_0.8.4-5
authorPawel Wiecek <coven@vmh.net>
Thu, 06 Mar 2008 00:41:50 +0100
changeset 31de580af95ec8
parent 30 331601643d8d
child 32 cebaef7e2e3c
Import Debian mp3info 0.8.4-5
Imported mp3info-0.8.4
into Mercurial repository
debian/changelog
debian/control
debian/copyright
gmp3info.c
mp3info.1
mp3info.c
mp3info.txt
textfunc.c
     1.1 --- a/debian/changelog	Thu Mar 06 00:41:49 2008 +0100
     1.2 +++ b/debian/changelog	Thu Mar 06 00:41:50 2008 +0100
     1.3 @@ -1,3 +1,11 @@
     1.4 +mp3info (0.8.4-5) unstable; urgency=low
     1.5 +
     1.6 +  * Got rid of multiline strings (closes: #196427)
     1.7 +  * Fixed unit names in various places (closes: #169680)
     1.8 +  * Updated standards version
     1.9 +
    1.10 + -- Pawel Wiecek <coven@debian.org>  Wed, 18 Jun 2003 14:12:38 +0200
    1.11 +
    1.12  mp3info (0.8.4-4) unstable; urgency=low
    1.13  
    1.14    * Added french translation of debconf templates (closes: #139919)
    1.15 @@ -95,7 +103,3 @@
    1.16  
    1.17   -- Pawel Wiecek <coven@debian.org>  Fri,  1 Dec 2000 12:46:47 +0100
    1.18  
    1.19 -Local variables:
    1.20 -mode: debian-changelog
    1.21 -add-log-mailing-address "coven@debian.org"
    1.22 -End:
     2.1 --- a/debian/control	Thu Mar 06 00:41:49 2008 +0100
     2.2 +++ b/debian/control	Thu Mar 06 00:41:50 2008 +0100
     2.3 @@ -3,12 +3,12 @@
     2.4  Priority: extra
     2.5  Maintainer: Pawel Wiecek <coven@debian.org>
     2.6  Build-Depends: debhelper (>> 3.0.0), libncurses5-dev, libgtk1.2-dev, bsdmainutils, groff-base
     2.7 -Standards-Version: 3.5.6
     2.8 +Standards-Version: 3.5.10
     2.9  
    2.10  Package: mp3info
    2.11  Architecture: any
    2.12  Depends: ${shlibs:Depends}, debconf
    2.13 -Description: An MP3 technical info viewer and ID3 1.x tag editor.
    2.14 +Description: An MP3 technical info viewer and ID3 1.x tag editor
    2.15   MP3Info has an interactive mode (using curses) and a command line mode.
    2.16   MP3Info can display ID3 tag information as well as various technical aspects
    2.17   of an MP3 file including playing time, bit-rate, sampling frequency and other
     3.1 --- a/debian/copyright	Thu Mar 06 00:41:49 2008 +0100
     3.2 +++ b/debian/copyright	Thu Mar 06 00:41:50 2008 +0100
     3.3 @@ -4,8 +4,8 @@
     3.4  It was downloaded from
     3.5  ftp://ftp.ibiblio.org/pub/linux/apps/sound/mp3-utils/mp3info
     3.6  
     3.7 -Upstream Author(s): Ricardo Cerqueira <rmc@rccn.net> (original),
     3.8 -		    Cedric Tefft <cedric@earthling.net> (current)
     3.9 +Upstream Authors: Ricardo Cerqueira <rmc@rccn.net> (original),
    3.10 +		  Cedric Tefft <cedric@earthling.net> (current)
    3.11  
    3.12  Copyright:
    3.13  
     4.1 --- a/gmp3info.c	Thu Mar 06 00:41:49 2008 +0100
     4.2 +++ b/gmp3info.c	Thu Mar 06 00:41:50 2008 +0100
     4.3 @@ -319,11 +319,11 @@
     4.4  		infowin_text_media=gtk_label_new(buf);
     4.5  		gtk_box_pack_start(GTK_BOX(infowin_main_frame),infowin_text_media,TRUE,TRUE,0);
     4.6  	
     4.7 -		sprintf(buf,"Bitrate: %i KB/s",header_bitrate(&mp3.header));
     4.8 +		sprintf(buf,"Bitrate: %i kbps",header_bitrate(&mp3.header));
     4.9  		infowin_text_bitrate=gtk_label_new(buf);
    4.10  		gtk_box_pack_start(GTK_BOX(infowin_main_frame),infowin_text_bitrate,TRUE,TRUE,0);
    4.11  	
    4.12 -		sprintf(buf,"Frequency: %iKHz",header_frequency(&mp3.header)/1000);
    4.13 +		sprintf(buf,"Frequency: %i kHz",header_frequency(&mp3.header)/1000);
    4.14  		infowin_text_frequency=gtk_label_new(buf);
    4.15  		gtk_box_pack_start(GTK_BOX(infowin_main_frame),infowin_text_frequency,TRUE,TRUE,0);
    4.16  
    4.17 @@ -484,11 +484,11 @@
    4.18  }
    4.19  
    4.20  void about_mp3info(void) {
    4.21 -	quick_popup(VERSION,"MP3Info
    4.22 -			An ID3 Tag Editor\n\n
    4.23 -			Original author: Ricardo Cerqueira <rmc@plug.pt>
    4.24 -			Current maintainer: Cedric Tefft <cedric@earthling.net>
    4.25 -			GTK Version: Ricardo Cerqueira <rmc@plug.pt>\n\n
    4.26 +	quick_popup(VERSION,"MP3Info\n\
    4.27 +			An ID3 Tag Editor\n\n\n\
    4.28 +			Original author: Ricardo Cerqueira <rmc@plug.pt>\n\
    4.29 +			Current maintainer: Cedric Tefft <cedric@earthling.net>\n\
    4.30 +			GTK Version: Ricardo Cerqueira <rmc@plug.pt>\n\n\n\
    4.31  			Ricardo Cerqueira, Cedric Tefft   1999-2001\n\n");
    4.32  }
    4.33  
     5.1 --- a/mp3info.1	Thu Mar 06 00:41:49 2008 +0100
     5.2 +++ b/mp3info.1	Thu Mar 06 00:41:50 2008 +0100
     5.3 @@ -170,10 +170,10 @@
     5.4  Sampling frequency in Hz [integer]
     5.5  .B
     5.6  .IP %q
     5.7 -Sampling frequency in KHz [integer]
     5.8 +Sampling frequency in kHz [integer]
     5.9  .B
    5.10  .IP %r
    5.11 -Bit Rate in KB/s (type and meaning affected by \fB-r\fP option)
    5.12 +Bit Rate in kbps (type and meaning affected by \fB-r\fP option)
    5.13  .B
    5.14  .IP %m
    5.15  Playing time: minutes only [integer]
     6.1 --- a/mp3info.c	Thu Mar 06 00:41:49 2008 +0100
     6.2 +++ b/mp3info.c	Thu Mar 06 00:41:50 2008 +0100
     6.3 @@ -34,7 +34,7 @@
     6.4  
     6.5  char FILENAME_FORMAT_STRING[]="File: %F\n";
     6.6  char ID3_FORMAT_STRING[]="Title:   %-30t Track: %n\nArtist:  %a\nAlbum:   %-30l Year:  %y\nComment: %-30c Genre: %g [%G]\n";
     6.7 -char TECH_FORMAT_STRING[]="Media Type:  MPEG %2.1v Layer %L\nAudio:       %r KB/s, %qKHz (%o)\nEmphasis:    %e\nCRC:         %E\nCopyright:   %C\nOriginal:    %O\nPadding:     %p\nLength:      %m:%02s\n";
     6.8 +char TECH_FORMAT_STRING[]="Media Type:  MPEG %2.1v Layer %L\nAudio:       %r kbps, %q kHz (%o)\nEmphasis:    %e\nCRC:         %E\nCopyright:   %C\nOriginal:    %O\nPadding:     %p\nLength:      %m:%02s\n";
     6.9  
    6.10  int main(int argc, char *argv[]) {
    6.11     FILE  *fp;
     7.1 --- a/mp3info.txt	Thu Mar 06 00:41:49 2008 +0100
     7.2 +++ b/mp3info.txt	Thu Mar 06 00:41:50 2008 +0100
     7.3 @@ -141,8 +141,8 @@
     7.4                   %u     Number of good audio frames [integer]
     7.5                   %b     Number of corrupt audio frames [integer]
     7.6                   %Q     Sampling frequency in Hz [integer]
     7.7 -                 %q     Sampling frequency in KHz [integer]
     7.8 -                 %r     Bit   Rate  in  KB/s  (type  and  meaning
     7.9 +                 %q     Sampling frequency in kHz [integer]
    7.10 +                 %r     Bit   Rate  in  kbps  (type  and  meaning
    7.11                          affected by -r option)
    7.12                   %m     Playing time: minutes only [integer]
    7.13                   %s     Playing  time:  seconds  only   [integer]
     8.1 --- a/textfunc.c	Thu Mar 06 00:41:49 2008 +0100
     8.2 +++ b/textfunc.c	Thu Mar 06 00:41:50 2008 +0100
     8.3 @@ -105,8 +105,8 @@
     8.4  		"\n\t\t%%u\tNumber of good audio frames (integer)\n"\
     8.5  		"\t\t%%b\tNumber of corrupt audio frames (integer)\n"\
     8.6  		"\t\t%%Q\tSampling frequency in Hz (integer)\n"\
     8.7 -		"\t\t%%q\tSampling frequency in KHz (integer)\n"\
     8.8 -		"\t\t%%r\tBit  Rate  in  KB/s  (see also '-r')\n"\
     8.9 +		"\t\t%%q\tSampling frequency in kHz (integer)\n"\
    8.10 +		"\t\t%%r\tBit  Rate  in  kbps  (see also '-r')\n"\
    8.11  		"\n\t\t%%m\tPlaying time: minutes only (integer)\n"\
    8.12  		"\t\t%%s\tPlaying time: seconds only (integer)\n"\
    8.13  		"\t\t%%S\tTotal playing time in seconds (integer)\n"\