Bug#177549: dropping the package

2003-03-15 Thread Joshua Kwan
tags 177549 + pending
thanks

Bug #184794 is against ftp.debian.org and requests the removal
of this rather mouldy package.

Regards,
Josh

-- 
New PGP public key: 0x27AFC3EE


pgpIIUgGxnDVR.pgp
Description: PGP signature


Bug#426668: FLAC 1.1.4 is coming, library transition imminent

2007-05-30 Thread Joshua Kwan
Package: kwave
Version: 0.7.7-2
Severity: normal

Hi,

This is to let you know I've gotten around to packaging FLAC 1.1.4. As
you may know, this involves not only the usual SONAME change from

libflac7 -> libflac8
libflac++5 -> libflac++6

but also liboggflac* have been removed, and merged into the main
FLAC library, so there are lots of API considerations involved
with that. You're receiving this bug because your package depends
on one or more of libflac7, libflac++5, liboggflac3, or liboggflac++2.

By now your upstream sources have transitioned, or at least made #ifdef
style provisions for this new API, especially if your package depends
on liboggflac*. If not, Josh Coalson, the upstream maintainer of FLAC,
has prepared a fairly extensive transition guide on the FLAC web site in
case you want to have a go at making the transition yourself. (What a
dedicated maintainer!):

http://flac.sourceforge.net/api/group__porting.html

If you're ready to build against 1.1.4, please download binary packages
or build them from source from here:

http://people.debian.org/~joshk/

i386 and amd64 are available on that page.

Well, this is a small-time library transition. So this is probably the
only message you'll see about this. I plan to upload 1.1.4 tomorrow
evening if there are no concerns raised about the sanity of this
transition, and you will have until the package clears NEW to prepare.

Once it hits unstable, you should upload your package on the same day to
mitigate uninstallable packages. (But if anyone complains, tell them
that they're using unstable, and should live with it.)

Oh, and sorry for the belated transition -- I've been quite busy with
school. Anyway, let me know if there are any problems.

-- 
Joshua Kwan


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#426642: FLAC 1.1.4 is coming, library transition imminent

2007-05-30 Thread Joshua Kwan
Package: flac123
Version: 0.0.9-4
Severity: normal

Hi,

This is to let you know I've gotten around to packaging FLAC 1.1.4. As
you may know, this involves not only the usual SONAME change from

libflac7 -> libflac8
libflac++5 -> libflac++6

but also liboggflac* have been removed, and merged into the main
FLAC library, so there are lots of API considerations involved
with that. You're receiving this bug because your package depends
on one or more of libflac7, libflac++5, liboggflac3, or liboggflac++2.

By now your upstream sources have transitioned, or at least made #ifdef
style provisions for this new API, especially if your package depends
on liboggflac*. If not, Josh Coalson, the upstream maintainer of FLAC,
has prepared a fairly extensive transition guide on the FLAC web site in
case you want to have a go at making the transition yourself. (What a
dedicated maintainer!):

http://flac.sourceforge.net/api/group__porting.html

If you're ready to build against 1.1.4, please download binary packages
or build them from source from here:

http://people.debian.org/~joshk/

i386 and amd64 are available on that page.

Well, this is a small-time library transition. So this is probably the
only message you'll see about this. I plan to upload 1.1.4 tomorrow
evening if there are no concerns raised about the sanity of this
transition, and you will have until the package clears NEW to prepare.

Once it hits unstable, you should upload your package on the same day to
mitigate uninstallable packages. (But if anyone complains, tell them
that they're using unstable, and should live with it.)

Oh, and sorry for the belated transition -- I've been quite busy with
school. Anyway, let me know if there are any problems.

-- 
Joshua Kwan


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#426642: FLAC 1.1.4 has entered unstable

2007-06-06 Thread Joshua Kwan
Dear all,

FLAC 1.1.4 has gotten through NEW in record time and it's time to update
your packages. Just a short reminder for everyone.

Thanks,

-- 
Joshua Kwan


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#196303: fix for #196303

2003-06-05 Thread Joshua Kwan
tags 196303 + patch
thanks

Hi, to whoever wants to do a QA upload of this, is a patch that fixes 
the compile and a few warnings using gcc-3.3.

Regards
Josh
diff -ur sted2-2.07m+20021104/sted2/sayleen/rcpconv.h 
tmp/sted2-2.07m+20021104/sted2/sayleen/rcpconv.h
--- sted2-2.07m+20021104/sted2/sayleen/rcpconv.h2002-10-16 
07:23:23.0 -0700
+++ tmp/sted2-2.07m+20021104/sted2/sayleen/rcpconv.h2003-06-05 
20:31:24.0 -0700
@@ -44,4 +44,4 @@
 unsigned char *   /* Timestamp of original RCP file */
 );
 
-#endif / _RCPCONV_H_ */
+#endif /* _RCPCONV_H_ */
diff -ur sted2-2.07m+20021104/sted2/sayleen/rcptomid.c 
tmp/sted2-2.07m+20021104/sted2/sayleen/rcptomid.c
--- sted2-2.07m+20021104/sted2/sayleen/rcptomid.c   2002-10-16 
07:24:14.0 -0700
+++ tmp/sted2-2.07m+20021104/sted2/sayleen/rcptomid.c   2003-06-05 
20:30:56.0 -0700
@@ -834,8 +834,8 @@
   if ( rcp->enable_converter_notice == FLAG_TRUE ) {
 int *len;
 
-sprintf( buf,"
-This file was converted by %s version %s (%s - %s).
+sprintf( buf,"\n\
+This file was converted by %s version %s (%s - %s).\n\
 Original RCP file is \"%s\" (%s, %d bytes).",
 (rcp->command_name!=NULL)?rcp->command_name:rcptomid_name,
 VERSION_ID, VERSION_TEXT1, VERSION_TEXT2,
diff -ur sted2-2.07m+20021104/sted2/select.c 
tmp/sted2-2.07m+20021104/sted2/select.c
--- sted2-2.07m+20021104/sted2/select.c 2000-03-28 22:41:36.0 -0800
+++ tmp/sted2-2.07m+20021104/sted2/select.c 2003-06-05 20:32:31.0 
-0700
@@ -1046,7 +1046,7 @@
 B_LOCATE(cx+1,29);B_PRINT(_("  /   CHANGE DRIVE   /  SELECT"));
 #else
 B_LOCATE(cx+1,29);B_PRINT(_("  
[RET]SELECT"));
-#endif 0
+#endif
 frees(pth,cx);B_LOCATE(cx+45,8);B_PRINT(fstr(nm,3));
 
 if(p+y>=nm){p=0;y=0;}/*check*/
@@ -1128,7 +1128,7 @@
  if(dro!=drn && drvchk2(fna)<0){nm=0;goto redrv;}
  nm=0;goto drvmove;
}
-#endif 0
+#endif
if( a==0x15 || a==0x8 ){
  path_down(pth);
  if(cdirc>0){cdirc--;p=cdirp[cdirc];y=cdiry[cdirc];goto resel2;}


pgpCQIeu2kRMe.pgp
Description: PGP signature