Re: Freeze exception for csound

2012-10-06 Thread Niels Thykier
On 2012-09-30 00:50, Felipe Sateler wrote:
 Dear release team,
 
 Would you accept a freeze exception for csound version
 1:5.17.11~dfsg-2 (just uploaded), to include the attached patch (no
 other changes)?
 
 The build system wrongly passes the -package csnd flag to the SWIG
 interface wrappers, which causes the csound JNI library to fail to
 load. The patch corrects this issue, and comes from upstream. Not
 fixing this bug means the JNI library provided by libcsnd-java is
 useless.
 

Unblocked, thanks.

Next time, please consider filing an unblock bug - they are much easier
for us to track.

~Niels


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/50701bb9.9010...@thykier.net



Re: Freeze exception for csound

2012-10-06 Thread Felipe Sateler
On Oct 6, 2012 7:53 AM, Niels Thykier ni...@thykier.net wrote:

 On 2012-09-30 00:50, Felipe Sateler wrote:
  Dear release team,
 
  Would you accept a freeze exception for csound version
  1:5.17.11~dfsg-2 (just uploaded), to include the attached patch (no
  other changes)?
 
  The build system wrongly passes the -package csnd flag to the SWIG
  interface wrappers, which causes the csound JNI library to fail to
  load. The patch corrects this issue, and comes from upstream. Not
  fixing this bug means the JNI library provided by libcsnd-java is
  useless.
 

 Unblocked, thanks.


Thanks to you.

 Next time, please consider filing an unblock bug - they are much easier
 for us to track.

Ok, will do.


 ~Niels



Freeze exception for csound

2012-09-29 Thread Felipe Sateler
Dear release team,

Would you accept a freeze exception for csound version
1:5.17.11~dfsg-2 (just uploaded), to include the attached patch (no
other changes)?

The build system wrongly passes the -package csnd flag to the SWIG
interface wrappers, which causes the csound JNI library to fail to
load. The patch corrects this issue, and comes from upstream. Not
fixing this bug means the JNI library provided by libcsnd-java is
useless.

-- 

Saludos,
Felipe Sateler


0004-swig-java-package.patch
Description: Binary data


Re: Freeze exception for csound?

2010-12-27 Thread Felipe Sateler
On Sun, Dec 26, 2010 at 22:38, Julien Cristau jcris...@debian.org wrote:
 On Sat, Nov 13, 2010 at 21:13:58 -0300, Felipe Sateler wrote:

 Dear release team,

 Recently, a bug was reported against csound (#603321), which was
 already fixed in upstream CVS. The bug is severity: normal, although
 one could argue for a higher severity given that it segfaults whenever
 using a certain opcode.

 This is not migrating to testing because it ftbfs on sparc.
 https://buildd.debian.org/build.php?pkg=csoundver=1%3A5.12.1~dfsg-6arch=sparcfile=log

I know, I asked the sparc admins to retry on schroeder, since that was
the last buildd that was able to build csound.

-- 

Saludos,
Felipe Sateler


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/aanlktinwaoq-x1rpyawnvfg_4oddlaawb266kl6hi...@mail.gmail.com



Re: Freeze exception for csound?

2010-12-26 Thread Julien Cristau
On Sat, Nov 13, 2010 at 21:13:58 -0300, Felipe Sateler wrote:

 Dear release team,
 
 Recently, a bug was reported against csound (#603321), which was
 already fixed in upstream CVS. The bug is severity: normal, although
 one could argue for a higher severity given that it segfaults whenever
 using a certain opcode.
 
This is not migrating to testing because it ftbfs on sparc.
https://buildd.debian.org/build.php?pkg=csoundver=1%3A5.12.1~dfsg-6arch=sparcfile=log

Cheers,
Julien


signature.asc
Description: Digital signature


Re: Freeze exception for csound?

2010-12-17 Thread Julien Cristau
On Thu, Dec 16, 2010 at 20:37:40 -0300, Felipe Sateler wrote:

 Uploaded. Thanks!
 
and unblocked.

Cheers,
Julien


signature.asc
Description: Digital signature


Re: Freeze exception for csound?

2010-12-16 Thread Felipe Sateler
On Thu, Dec 16, 2010 at 16:02, Julien Cristau jcris...@debian.org wrote:
 On Sat, Nov 13, 2010 at 21:13:58 -0300, Felipe Sateler wrote:

 Dear release team,

 Recently, a bug was reported against csound (#603321), which was
 already fixed in upstream CVS. The bug is severity: normal, although
 one could argue for a higher severity given that it segfaults whenever
 using a certain opcode.

 Here is the entire patch:

 Description: Acquire bus lock at init time
  Otherwise we get segfaults when trying to use it at perf time
 Origin: upstream, commit:1.40
 Bug-Debian: http://bugs.debian.org/603321
 --- a/OOps/bus.c
 +++ b/OOps/bus.c
 @@ -1056,6 +1056,8 @@
      err = csoundGetChannelPtr(csound, (p-fp), (char*) p-iname,
                                CSOUND_AUDIO_CHANNEL | CSOUND_OUTPUT_CHANNEL);
      if (LIKELY(!err)) {
 +      p-lock = csoundGetChannelLock(csound, (char*) p-iname,
 +                             CSOUND_AUDIO_CHANNEL | CSOUND_OUTPUT_CHANNEL);
        p-h.opadr = (SUBR) chnclear_opcode_perf;
        return OK;
      }


 Would this be acceptable for squeeze? If not, I will not upload to
 leave the window open for a possible RC bug fix via unstable.

 Yes, that would be fine.  Sorry for the delayed answer.


Uploaded. Thanks!


-- 

Saludos,
Felipe Sateler


--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/aanlktin-fy1goolj0m81tqz9m47ngunztw=k_uo5e...@mail.gmail.com



Freeze exception for csound?

2010-11-13 Thread Felipe Sateler
Dear release team,

Recently, a bug was reported against csound (#603321), which was
already fixed in upstream CVS. The bug is severity: normal, although
one could argue for a higher severity given that it segfaults whenever
using a certain opcode.

Here is the entire patch:

Description: Acquire bus lock at init time
 Otherwise we get segfaults when trying to use it at perf time
Origin: upstream, commit:1.40
Bug-Debian: http://bugs.debian.org/603321
--- a/OOps/bus.c
+++ b/OOps/bus.c
@@ -1056,6 +1056,8 @@
 err = csoundGetChannelPtr(csound, (p-fp), (char*) p-iname,
   CSOUND_AUDIO_CHANNEL | CSOUND_OUTPUT_CHANNEL);
 if (LIKELY(!err)) {
+  p-lock = csoundGetChannelLock(csound, (char*) p-iname,
+ CSOUND_AUDIO_CHANNEL | CSOUND_OUTPUT_CHANNEL);
   p-h.opadr = (SUBR) chnclear_opcode_perf;
   return OK;
 }


Would this be acceptable for squeeze? If not, I will not upload to
leave the window open for a possible RC bug fix via unstable.


-- 

Saludos,
Felipe Sateler


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/aanlktikt+w7j3jteh-c6id3qrngsrevejd_ajk38p...@mail.gmail.com



Re: Freeze exception for csound

2008-11-19 Thread Felipe Sateler
El 07/11/08 15:04 Adeodato Simó escribió:
 * Felipe Sateler [Thu, 06 Nov 2008 15:28:27 -0300]:
  OK, so I have a fix for the alpha issue (I'm surprised it hadn't failed
  before, it was an alpha-specific fix with a typo).

 Ok, please upload it.

FYI, Jonas uploaded a fix for this, the java issue and the documentation 
issue, which has built successfuly on all archs. I don't know if you 
explicitly track t-p-u. 


Saludos,
Felipe Sateler


signature.asc
Description: This is a digitally signed message part.


Re: Freeze exception for csound

2008-11-19 Thread Adeodato Simó
* Felipe Sateler [Wed, 19 Nov 2008 10:42:47 -0300]:

 El 07/11/08 15:04 Adeodato Simó escribió:
  * Felipe Sateler [Thu, 06 Nov 2008 15:28:27 -0300]:
   OK, so I have a fix for the alpha issue (I'm surprised it hadn't failed
   before, it was an alpha-specific fix with a typo).

  Ok, please upload it.

 FYI, Jonas uploaded a fix for this, the java issue and the documentation 
 issue, which has built successfuly on all archs. I don't know if you 
 explicitly track t-p-u. 

We do track t-p-u, but only pay attention when it's built on all arches
already. However, something fishy is going on with csound/t-p-u/alpha.
I'll investigate.

Thanks,

-- 
Adeodato Simó dato at net.com.org.es
Debian Developer  adeodato at debian.org
 
  Listening to: Dar Williams - Spring Street


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



Re: Freeze exception for csound

2008-11-07 Thread Adeodato Simó
* Felipe Sateler [Thu, 06 Nov 2008 15:28:27 -0300]:

 OK, so I have a fix for the alpha issue (I'm surprised it hadn't failed 
 before, it was an alpha-specific fix with a typo).

Ok, please upload it.

 I still have no clues as to why Java is not being picked up in mipsel
 and alpha: both seem to have an existing jni.h and jni_md.h (which is
 what csound looks for). Perhaps the problem is that csound only looks
 in /usr/lib/{java,jvm/java,jvm/java-1.5.0,jvm/default-java}/include.
 The first three are upstream's, the last one is a debian addition.
 Should I be adding more paths?

The mipsel testing chroot had java-gcj-compat-dev already installed,
hence default-jdk-builddep did not get installed.

Maybe the Build-Dependencies are wrong and java-gcj-compat-dev is no
longer enough to build the package? (If you could create a testing
chroot, install java-gcj-compat-dev, then install the rest of the
build-dependencies minus default-jdk-builddep, and see if the build
succeeds, that'd be great.) It would be good to get this cleared out
before uploading the fix for the alpha thing.

Thanks,

-- 
Adeodato Simó dato at net.com.org.es
Debian Developer  adeodato at debian.org
 
Excuse me for thinking a banana-eating contest was about eating a banana!
-- Paris Geller


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



Re: Freeze exception for csound

2008-11-07 Thread Jonas Smedegaard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Fri, Nov 07, 2008 at 06:50:58PM +0100, Adeodato Simó wrote:
* Felipe Sateler [Thu, 06 Nov 2008 15:37:48 -0300]:

 The problem would have consequences only if whoever uploads the package 
 doesn't have ghostscript installed: the documentation is only in an arch:all 
 package.

In that case, gs (and whatever else for building the documentation in
the building process) *must* be added to Build-Depends-Indep.

Agreed.

Even if it seemed the PDF generation went well, it seems to resulting 
file contains 103 virtually blank pages :-(


  - Jonas

- -- 
* Jonas Smedegaard - idealist og Internet-arkitekt
* Tlf.: +45 40843136  Website: http://dr.jones.dk/

  [x] quote me freely  [ ] ask before reusing  [ ] keep private
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkkUle0ACgkQn7DbMsAkQLjN2QCeIN0tvVpNIqMm1UJvkYhQt0Xq
NU8AoIf3I1gZeCjqKtbRHXCTunX5NTEs
=PCUZ
-END PGP SIGNATURE-


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



Re: Freeze exception for csound

2008-11-07 Thread Jonas Smedegaard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Thu, Nov 06, 2008 at 03:37:48PM -0300, Felipe Sateler wrote:
El 03/11/08 12:04 Andreas Barth escribió:

 If any of your package fails to build, the makefile needs to notice 
 that and stop the build process. If not, the packages is 
 fundamentally broken. Besides of that, documentation is important.

The problem would have consequences only if whoever uploads the package 
doesn't have ghostscript installed: the documentation is only in an 
arch:all package. However, I'm not sure we can correctly trap this sort 
of error: doxygen isn't reporting them back to us.
There are other errors ignored (pdflatex likes to return non-zero, 
though non-fatal errors ocurred), but I don't know how to debug those 
errors (doxygen-latex-pdf), and also the pdfs produced seem to be 
correct.

I noticed now that the packaging (not upstream) relax pdflatex errors to 
be non-fatal. I agree that is bad, and am now investigating if it can be 
avoided.

Felipe: Let's discuss further if it is really sane to do so.

I believe there's no need to bother the release team with that 
discussion, but feel free to do so if you consider it helpful. :-)


  - Jonas

- -- 
* Jonas Smedegaard - idealist og Internet-arkitekt
* Tlf.: +45 40843136  Website: http://dr.jones.dk/

  [x] quote me freely  [ ] ask before reusing  [ ] keep private
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkkUoZEACgkQn7DbMsAkQLhjmQCgpTGCy613rIJMtSghoDnY1vuI
casAn2q6kKk/WOc3PiOQXI8+hnE5gocj
=75NB
-END PGP SIGNATURE-


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



Re: Freeze exception for csound

2008-11-06 Thread Felipe Sateler
El 03/11/08 12:02 Felipe Sateler escribió:
 On Sat, Nov 1, 2008 at 7:27 AM, Adeodato Simó [EMAIL PROTECTED] wrote:
  * Jonas Smedegaard [Wed, 29 Oct 2008 22:58:27 +0100]:
  On Wed, Oct 29, 2008 at 10:34:11PM +0100, Adeodato Simó wrote:
  * Jonas Smedegaard [Tue, 28 Oct 2008 16:46:22 +0100]:
   On Tue, Oct 28, 2008 at 12:34:50PM -0300, Felipe Sateler wrote:
   Since I posted the first mail, an RC bug was filed against csound
   (503633) . I have reuploaded to mentors a fix, but I can't upload to
   t-p-u since I'm not a DD. My co-maintainer (CCed) seems to be busy
   right now.
   Would any of the release team review and upload the changes?
  
   Sorry for being silent lately - you guessed right. I am swamped with
   work (but it seems to loosen up a bit from now on).
  
   I have a moment now, so I'll have a go at releasing for t-p-u!
  
  Upload seen, will be unblocked once it's built for all architectures.
 
  Excellent! :-)
 
  Package failed to buid on alpha and mipsel, is this something you would
  know something about?
 
  
  http://buildd.debian.org/~jeroen/status/package.php?p=csoundsuite=testin
 g

 I don't have time yet to get into the problem (will do on thursday), but a
 quick look suggests that mipsel has something wrong with it's java
 (unfortunately, csound's build system will just disable java instead of
 bombing out with an explanation. Alpha I have no idea what went wrong,
 but is not Java-related (although it would have failed later on about that
 anyway).

OK, so I have a fix for the alpha issue (I'm surprised it hadn't failed 
before, it was an alpha-specific fix with a typo). I still have no clues as 
to why Java is not being picked up in mipsel and alpha: both seem to have an 
existing jni.h and jni_md.h (which is what csound looks for). Perhaps the 
problem is that csound only looks 
in /usr/lib/{java,jvm/java,jvm/java-1.5.0,jvm/default-java}/include. The 
first three are upstream's, the last one is a debian addition. Should I be 
adding more paths?

Saludos,
Felipe Sateler


signature.asc
Description: This is a digitally signed message part.


Re: Freeze exception for csound

2008-11-06 Thread Felipe Sateler
El 03/11/08 12:04 Andreas Barth escribió:
 * Jonas Smedegaard ([EMAIL PROTECTED]) [081103 15:58]:
  On Mon, Nov 03, 2008 at 03:12:36PM +0100, Thiemo Seufer wrote:
  Jonas Smedegaard wrote:
   On Sat, Nov 01, 2008 at 11:27:34AM +0100, Adeodato Simó wrote:
   * Jonas Smedegaard [Wed, 29 Oct 2008 22:58:27 +0100]:
   
   Package failed to buid on alpha and mipsel, is this something you
would know something about?
   

http://buildd.debian.org/~jeroen/status/package.php?p=csoundsuite=t
   esting
  
   Hmm - no, not me :-(
  
   Perhaps simply drop java support for those two architectures, if noone
   else has a clue right now, to make it into Lenny ASAP?
  
  Regardless of that, there's a missing build dep on gs: Grep in the
  build logs for Error
 
  Thanks - I noticed that as well. But that seems not fatal (only related
  to documentation) so irrelevant for Lenny, right?

 If any of your package fails to build, the makefile needs to notice that
 and stop the build process. If not, the packages is fundamentally
 broken. Besides of that, documentation is important.

The problem would have consequences only if whoever uploads the package 
doesn't have ghostscript installed: the documentation is only in an arch:all 
package. However, I'm not sure we can correctly trap this sort of error: 
doxygen isn't reporting them back to us.
There are other errors ignored (pdflatex likes to return non-zero, though 
non-fatal errors ocurred), but I don't know how to debug those errors 
(doxygen-latex-pdf), and also the pdfs produced seem to be correct.


Saludos,
Felipe Sateler


signature.asc
Description: This is a digitally signed message part.


Re: Freeze exception for csound

2008-11-03 Thread Thiemo Seufer
Jonas Smedegaard wrote:
 On Sat, Nov 01, 2008 at 11:27:34AM +0100, Adeodato Simó wrote:
 * Jonas Smedegaard [Wed, 29 Oct 2008 22:58:27 +0100]:
 
 Package failed to buid on alpha and mipsel, is this something you would 
 know something about?
 
   http://buildd.debian.org/~jeroen/status/package.php?p=csoundsuite=testing
 
 Hmm - no, not me :-(
 
 Perhaps simply drop java support for those two architectures, if noone 
 else has a clue right now, to make it into Lenny ASAP?

Regardless of that, there's a missing build dep on gs: Grep in the
build logs for Error


Thiemo


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



Re: Freeze exception for csound

2008-11-03 Thread Jonas Smedegaard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Mon, Nov 03, 2008 at 03:12:36PM +0100, Thiemo Seufer wrote:
Jonas Smedegaard wrote:
 On Sat, Nov 01, 2008 at 11:27:34AM +0100, Adeodato Simó wrote:
 * Jonas Smedegaard [Wed, 29 Oct 2008 22:58:27 +0100]:
 
 Package failed to buid on alpha and mipsel, is this something you would 
 know something about?
 
   http://buildd.debian.org/~jeroen/status/package.php?p=csoundsuite=testing
 
 Hmm - no, not me :-(
 
 Perhaps simply drop java support for those two architectures, if noone 
 else has a clue right now, to make it into Lenny ASAP?

Regardless of that, there's a missing build dep on gs: Grep in the
build logs for Error

Thanks - I noticed that as well. But that seems not fatal (only related 
to documentation) so irrelevant for Lenny, right?

Thanks for mentioning anyway!


  - Jonas

- -- 
* Jonas Smedegaard - idealist og Internet-arkitekt
* Tlf.: +45 40843136  Website: http://dr.jones.dk/

  [x] quote me freely  [ ] ask before reusing  [ ] keep private
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkkPCpgACgkQn7DbMsAkQLgNVQCePLmyr3JX71cGCZRSnkH0VXIO
sJ4An2Xpw66RrvsF658lS8wwJS8cP+/v
=Wmkq
-END PGP SIGNATURE-


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



Re: Freeze exception for csound

2008-11-03 Thread Thiemo Seufer
Jonas Smedegaard wrote:
 On Mon, Nov 03, 2008 at 03:12:36PM +0100, Thiemo Seufer wrote:
 Jonas Smedegaard wrote:
  On Sat, Nov 01, 2008 at 11:27:34AM +0100, Adeodato Simó wrote:
  * Jonas Smedegaard [Wed, 29 Oct 2008 22:58:27 +0100]:
  
  Package failed to buid on alpha and mipsel, is this something you would 
  know something about?
  

   http://buildd.debian.org/~jeroen/status/package.php?p=csoundsuite=testing
  
  Hmm - no, not me :-(
  
  Perhaps simply drop java support for those two architectures, if noone 
  else has a clue right now, to make it into Lenny ASAP?
 
 Regardless of that, there's a missing build dep on gs: Grep in the
 build logs for Error
 
 Thanks - I noticed that as well. But that seems not fatal (only related 
 to documentation) so irrelevant for Lenny, right?

Not trapping Makefile errors is IIRC a policy violation. Asserting
that documentation is irrelevant for lenny sounds outright weird to me.
Unstable shows the same problem, btw.

In addition, the mips buildlog for testing shows a number of
Permission denied problems, those are also not caught. This looks
like it is caused by the clean rule creating files with incorrect
permissions. A build with -rsudo instead of -rfakeroot typically
allows to reproduce problems of that sort.


Thiemo


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



Re: Freeze exception for csound

2008-11-03 Thread Andreas Barth
* Jonas Smedegaard ([EMAIL PROTECTED]) [081103 15:58]:
 On Mon, Nov 03, 2008 at 03:12:36PM +0100, Thiemo Seufer wrote:
 Jonas Smedegaard wrote:
  On Sat, Nov 01, 2008 at 11:27:34AM +0100, Adeodato Simó wrote:
  * Jonas Smedegaard [Wed, 29 Oct 2008 22:58:27 +0100]:
  
  Package failed to buid on alpha and mipsel, is this something you would 
  know something about?
  

   http://buildd.debian.org/~jeroen/status/package.php?p=csoundsuite=testing
  
  Hmm - no, not me :-(
  
  Perhaps simply drop java support for those two architectures, if noone 
  else has a clue right now, to make it into Lenny ASAP?
 
 Regardless of that, there's a missing build dep on gs: Grep in the
 build logs for Error
 
 Thanks - I noticed that as well. But that seems not fatal (only related 
 to documentation) so irrelevant for Lenny, right?

If any of your package fails to build, the makefile needs to notice that
and stop the build process. If not, the packages is fundamentally
broken. Besides of that, documentation is important.


Cheers,
Andi


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



Re: Freeze exception for csound

2008-11-03 Thread Felipe Sateler
On Sat, Nov 1, 2008 at 7:27 AM, Adeodato Simó [EMAIL PROTECTED] wrote:
 * Jonas Smedegaard [Wed, 29 Oct 2008 22:58:27 +0100]:

 On Wed, Oct 29, 2008 at 10:34:11PM +0100, Adeodato Simó wrote:
 * Jonas Smedegaard [Tue, 28 Oct 2008 16:46:22 +0100]:

  On Tue, Oct 28, 2008 at 12:34:50PM -0300, Felipe Sateler wrote:
  Since I posted the first mail, an RC bug was filed against csound
  (503633) . I have reuploaded to mentors a fix, but I can't upload to
  t-p-u since I'm not a DD. My co-maintainer (CCed) seems to be busy
  right now.
  Would any of the release team review and upload the changes?

  Sorry for being silent lately - you guessed right. I am swamped with
  work (but it seems to loosen up a bit from now on).

  I have a moment now, so I'll have a go at releasing for t-p-u!

 Upload seen, will be unblocked once it's built for all architectures.

 Excellent! :-)

 Package failed to buid on alpha and mipsel, is this something you would
 know something about?

  http://buildd.debian.org/~jeroen/status/package.php?p=csoundsuite=testing

I don't have time yet to get into the problem (will do on thursday), but a
quick look suggests that mipsel has something wrong with it's java
(unfortunately, csound's build system will just disable java instead of
bombing out with an explanation. Alpha I have no idea what went wrong,
but is not Java-related (although it would have failed later on about that
anyway).

-- 

Felipe Sateler


Re: Freeze exception for csound

2008-11-03 Thread Jonas Smedegaard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Sat, Nov 01, 2008 at 11:27:34AM +0100, Adeodato Simó wrote:
* Jonas Smedegaard [Wed, 29 Oct 2008 22:58:27 +0100]:

Package failed to buid on alpha and mipsel, is this something you would 
know something about?

  http://buildd.debian.org/~jeroen/status/package.php?p=csoundsuite=testing

Hmm - no, not me :-(

Perhaps simply drop java support for those two architectures, if noone 
else has a clue right now, to make it into Lenny ASAP?


  - Jonas

- -- 
* Jonas Smedegaard - idealist og Internet-arkitekt
* Tlf.: +45 40843136  Website: http://dr.jones.dk/

  [x] quote me freely  [ ] ask before reusing  [ ] keep private
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkkO6n8ACgkQn7DbMsAkQLjP/gCdFSw/Iy+R2Y6cRdPQMKdyhQog
I2QAn2j5HAW6Vj0LADIemEDy1LBvpvpz
=jFrT
-END PGP SIGNATURE-


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



Re: Freeze exception for csound

2008-11-03 Thread Jonas Smedegaard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Mon, Nov 03, 2008 at 04:00:48PM +0100, Thiemo Seufer wrote:

[snipped issue commented in response to Andreas]

In addition, the mips buildlog for testing shows a number of 
Permission denied problems, those are also not caught. This looks 
like it is caused by the clean rule creating files with incorrect 
permissions. A build with -rsudo instead of -rfakeroot typically allows 
to reproduce problems of that sort.

Thanks for spotting that, and for your hints on how to test. We'll have 
a look at that.


  - Jonas

- -- 
* Jonas Smedegaard - idealist og Internet-arkitekt
* Tlf.: +45 40843136  Website: http://dr.jones.dk/

  [x] quote me freely  [ ] ask before reusing  [ ] keep private
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkkPRf8ACgkQn7DbMsAkQLhvqQCdGxF/mfjrAX/uI2y1d0RHH652
cccAoJvydQJBBMxqhJJp65IRA87iB2K3
=U6YS
-END PGP SIGNATURE-


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



Re: Freeze exception for csound

2008-11-03 Thread Jonas Smedegaard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Mon, Nov 03, 2008 at 04:04:01PM +0100, Andreas Barth wrote:
* Jonas Smedegaard ([EMAIL PROTECTED]) [081103 15:58]:
 On Mon, Nov 03, 2008 at 03:12:36PM +0100, Thiemo Seufer wrote:
 Jonas Smedegaard wrote:
  On Sat, Nov 01, 2008 at 11:27:34AM +0100, Adeodato Simó wrote:
  * Jonas Smedegaard [Wed, 29 Oct 2008 22:58:27 +0100]:
  
  Package failed to buid on alpha and mipsel, is this something you would 
  know something about?
  

   http://buildd.debian.org/~jeroen/status/package.php?p=csoundsuite=testing
  
  Hmm - no, not me :-(
  
  Perhaps simply drop java support for those two architectures, if noone 
  else has a clue right now, to make it into Lenny ASAP?
 
 Regardless of that, there's a missing build dep on gs: Grep in the
 build logs for Error
 
 Thanks - I noticed that as well. But that seems not fatal (only related 
 to documentation) so irrelevant for Lenny, right?

If any of your package fails to build, the makefile needs to notice that
and stop the build process. If not, the packages is fundamentally
broken.

AFAICT no packages failed to build due to that gs Error message in the 
build log. On the contrary, the compilation is invoked with a flag 
generatePdf=0 which makes me assume that those errors are noise from the 
latex subsystem that the upstream build system deliberately chose to 
ignore.

If you insist that it is an RC error to not compile and ship PDF 
documentation, or that upstream choices of suppressing exit codes for 
parts of their routines, then please file bug reports about it and let 
us work on fixing it all.


Besides of that, documentation is important.

I agree that documentation is important. But do you say that it is RC? I 
mean, would you rather not have CSound in Lenny, or an older, 
technically broken CSound in Lenny, than a techically working CSound 
missing some optional PDF files?

Sorry if I sound aggressive - I simply do not understand your point 
here.


Greetings,

  - Jonas

- -- 
* Jonas Smedegaard - idealist og Internet-arkitekt
* Tlf.: +45 40843136  Website: http://dr.jones.dk/

  [x] quote me freely  [ ] ask before reusing  [ ] keep private
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkkPRWIACgkQn7DbMsAkQLiWDACggH13UpVYzl/D7sI/2MRL8b+v
EgQAn0WrDIliY4LJRBfs26HyGsROuG1Y
=9Rhx
-END PGP SIGNATURE-


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



Re: Freeze exception for csound

2008-11-01 Thread Adeodato Simó
* Jonas Smedegaard [Wed, 29 Oct 2008 22:58:27 +0100]:

 On Wed, Oct 29, 2008 at 10:34:11PM +0100, Adeodato Simó wrote:
 * Jonas Smedegaard [Tue, 28 Oct 2008 16:46:22 +0100]:

  On Tue, Oct 28, 2008 at 12:34:50PM -0300, Felipe Sateler wrote:
  Since I posted the first mail, an RC bug was filed against csound 
  (503633) . I have reuploaded to mentors a fix, but I can't upload to 
  t-p-u since I'm not a DD. My co-maintainer (CCed) seems to be busy 
  right now.
  Would any of the release team review and upload the changes?

  Sorry for being silent lately - you guessed right. I am swamped with 
  work (but it seems to loosen up a bit from now on).

  I have a moment now, so I'll have a go at releasing for t-p-u!

 Upload seen, will be unblocked once it's built for all architectures.

 Excellent! :-)

Package failed to buid on alpha and mipsel, is this something you would
know something about?

  http://buildd.debian.org/~jeroen/status/package.php?p=csoundsuite=testing

Cheers,

-- 
Adeodato Simó dato at net.com.org.es
Debian Developer  adeodato at debian.org
 
The surest way to corrupt a youth is to instruct him to hold in higher
esteem those who think alike than those who think differently.
-- F. Nietzsche


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



Re: Freeze exception for csound

2008-10-29 Thread Jonas Smedegaard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Wed, Oct 29, 2008 at 10:34:11PM +0100, Adeodato Simó wrote:
* Jonas Smedegaard [Tue, 28 Oct 2008 16:46:22 +0100]:

 On Tue, Oct 28, 2008 at 12:34:50PM -0300, Felipe Sateler wrote:
 Since I posted the first mail, an RC bug was filed against csound 
 (503633) . I have reuploaded to mentors a fix, but I can't upload to 
 t-p-u since I'm not a DD. My co-maintainer (CCed) seems to be busy 
 right now.
 Would any of the release team review and upload the changes?

 Sorry for being silent lately - you guessed right. I am swamped with 
 work (but it seems to loosen up a bit from now on).

 I have a moment now, so I'll have a go at releasing for t-p-u!

Upload seen, will be unblocked once it's built for all architectures.

Excellent! :-)


  - Jonas

- -- 
* Jonas Smedegaard - idealist og Internet-arkitekt
* Tlf.: +45 40843136  Website: http://dr.jones.dk/

  [x] quote me freely  [ ] ask before reusing  [ ] keep private
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkkI3IMACgkQn7DbMsAkQLghYQCfRAcRA+RGrjBPB4uSk3oPKoZW
OykAmwaG5bGYqlmJwTc5b3PNEwqugBKa
=o4vH
-END PGP SIGNATURE-


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



Re: Freeze exception for csound

2008-10-28 Thread Felipe Sateler
Since I posted the first mail, an RC bug was filed against csound (503633) . I 
have reuploaded to mentors a fix, but I can't upload to t-p-u since I'm not a 
DD. My co-maintainer (CCed) seems to be busy right now.
Would any of the release team review and upload the changes?


Saludos,
Felipe Sateler


signature.asc
Description: This is a digitally signed message part.


Re: Freeze exception for csound

2008-10-28 Thread Jonas Smedegaard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Tue, Oct 28, 2008 at 12:34:50PM -0300, Felipe Sateler wrote:
Since I posted the first mail, an RC bug was filed against csound 
(503633) . I have reuploaded to mentors a fix, but I can't upload to 
t-p-u since I'm not a DD. My co-maintainer (CCed) seems to be busy 
right now.
Would any of the release team review and upload the changes?

Sorry for being silent lately - you guessed right. I am swamped with 
work (but it seems to loosen up a bit from now on).

I have a moment now, so I'll have a go at releasing for t-p-u!


  - Jonas

- -- 
* Jonas Smedegaard - idealist og Internet-arkitekt
* Tlf.: +45 40843136  Website: http://dr.jones.dk/

  [x] quote me freely  [ ] ask before reusing  [ ] keep private
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkkHM84ACgkQn7DbMsAkQLiWqgCfbYP9XaWnC5+cXyKYcgcL6Flf
EtQAn3v5HXCwaM9rE/4mWosL0IPy9LhY
=SA8P
-END PGP SIGNATURE-


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



Re: Freeze exception for csound

2008-10-02 Thread Adeodato Simó
* Felipe Sateler [Wed, 01 Oct 2008 23:07:20 -0400]:

 Yes. The upload should be targeted at testing-proposed-updates?

Yes.

-- 
Adeodato Simó dato at net.com.org.es
Debian Developer  adeodato at debian.org
 
   Listening to: Ella Baila Sola - Despídete


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



Re: Freeze exception for csound

2008-10-01 Thread Pierre Habouzit
On Sun, Sep 28, 2008 at 05:31:03PM +, Felipe Sateler wrote:
 Hi release team. I'd like to ask if an update for csound is possible. It 
 brings 2 changes that are the reason for the update request. The first one is 
 that the csound library comes with a few plugins, but they weren't versioned 
 with the library. This violates policy 8.2, although no bug has been filed. 
 This update fixes this by installing them into a versioned directory and 
 making the library look for them there. The second one is that due to a bug 
 in the build system that we had to work around, we accidentally didn't enable 
 gettext translation in the install command, which caused the library to be 
 recompiled without translation support (csound is built with scons).
 There are a few other unrelated changes, which is why I was hesitant to ask 
 for an update, but csound has been in unstable for 59 days now with no 
 newly-reported bugs.

The full diff is really insane related to the small issues you're
reporting to be fixed and needing a fix. Is there a way to only backport
those ?


-- 
·O·  Pierre Habouzit
··O[EMAIL PROTECTED]
OOOhttp://www.madism.org


pgpwiAABY2MZY.pgp
Description: PGP signature


Re: Freeze exception for csound

2008-10-01 Thread Felipe Sateler
El 01/10/08 02:36 Pierre Habouzit escribió:
 On Sun, Sep 28, 2008 at 05:31:03PM +, Felipe Sateler wrote:
  Hi release team. I'd like to ask if an update for csound is possible. It
  brings 2 changes that are the reason for the update request. The first
  one is that the csound library comes with a few plugins, but they weren't
  versioned with the library. This violates policy 8.2, although no bug has
  been filed. This update fixes this by installing them into a versioned
  directory and making the library look for them there. The second one is
  that due to a bug in the build system that we had to work around, we
  accidentally didn't enable gettext translation in the install command,
  which caused the library to be recompiled without translation support
  (csound is built with scons). There are a few other unrelated changes,
  which is why I was hesitant to ask for an update, but csound has been in
  unstable for 59 days now with no newly-reported bugs.

 The full diff is really insane related to the small issues you're
 reporting to be fixed and needing a fix. Is there a way to only backport
 those ?

Yes. The upload should be targeted at testing-proposed-updates?

I have a source package at mentors:
http://mentors.debian.net/debian/pool/main/c/csound/csound_5.08.0.dfsg2-8+lenny1.dsc

Saludos,
Felipe Sateler


signature.asc
Description: This is a digitally signed message part.


Freeze exception for csound

2008-09-28 Thread Felipe Sateler
Hi release team. I'd like to ask if an update for csound is possible. It 
brings 2 changes that are the reason for the update request. The first one is 
that the csound library comes with a few plugins, but they weren't versioned 
with the library. This violates policy 8.2, although no bug has been filed. 
This update fixes this by installing them into a versioned directory and 
making the library look for them there. The second one is that due to a bug 
in the build system that we had to work around, we accidentally didn't enable 
gettext translation in the install command, which caused the library to be 
recompiled without translation support (csound is built with scons).
There are a few other unrelated changes, which is why I was hesitant to ask 
for an update, but csound has been in unstable for 59 days now with no 
newly-reported bugs.

The relevant changelog entry:

csound (1:5.08.2~dfsg-1) unstable; urgency=low

  [ Jonas Smedegaard ]
  * Rerelease same upstream tarball by more accurate name: Upstream
changelog and other upstream packages indicate that
microversion is stripped from upstream tarballs.
This is also an excuse to adjust dfsg extension to be below upstream
(in case they should decide to rerelease without non-DFSG source).
  * Update CDBS snippets:
+ Update copyright-check.mk to closer match new proposed copyright
  format, optionally break on changes, and cleaup properly.  Update
  copyright-hints.
+ Use new local package-relations.mk to resolve, cleanup and apply
  CDBS-declared (build-)dependencies.
+ Use new local upstream-tarball.mk to implement get-orig-source and
  more.
+ Update README.cdbs-tweaks.
  * Add DEB_MAINTAINER_MODE in debian/rules (thanks to Romain Beauxis).
  * Semi-auto-update debian/control to update dependencies:
  DEB_MAINTAINER_MODE=1 fakeroot debian/rules clean
  * Rewrite watch file.

  [ Felipe Sateler ]
  * Install examples in csound, pd-csound, python-csoundac, libcsnd-java and
tclcsound.
  * Make the csound library package policy compliant:
- Make the plugins versioned (they are tied to the library anyway).
- Split the translations to the csound package.
This should make transitions easier if/when csound changes ABI.
  * Specify useGettext at install time so gettext isn't disabled.
  * Make pd-csound depend on pd as fallback for puredata, to allow using
the alternative pd-extended (Closes: #491966).

 -- Jonas Smedegaard [EMAIL PROTECTED]  Thu, 31 Jul 2008 01:17:52 +0200


Saludos,
Felipe Sateler


signature.asc
Description: This is a digitally signed message part.