Re: [OT] Qjackctl | Lucid

2011-06-18 Thread Adrian Knoth
On 06/12/11 22:20, rosea grammostola wrote:

 perl -i -pe 'chomp' \ 
 debian/qjackctl/usr/share/applications/qjackctl.desktop
 Gives me a warning:
 
 W: qjackctl: desktop-entry-file-has-crs 
 /usr/share/applications/qjackctl.desktop:1
 
 perl -i -pe 's/\x0D\x0A$ /\n/x' \ 
 debian/qjackctl/usr/share/applications/qjackctl.desktop
 
 This seems to work.

I now took a slightly different approach and entirely dropped the
build dependency on those tools. Statically fixing the template file
and having quilt take care is the more elegant way.

I've also submitted the patch to upstream, so we can hopefully drop
it upon the next release.

I haven't uploaded the package, yet, just in case Alessio wants to
tweak something else before the next upload.



Cheers

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Re: [OT] Qjackctl | Lucid

2011-06-18 Thread rosea grammostola

On 06/18/2011 07:09 PM, Adrian Knoth wrote:

On 06/12/11 22:20, rosea grammostola wrote:


perl -i -pe 'chomp' \
debian/qjackctl/usr/share/applications/qjackctl.desktop

Gives me a warning:

W: qjackctl: desktop-entry-file-has-crs
/usr/share/applications/qjackctl.desktop:1

perl -i -pe 's/\x0D\x0A$ /\n/x' \
debian/qjackctl/usr/share/applications/qjackctl.desktop

This seems to work.

I now took a slightly different approach and entirely dropped the
build dependency on those tools. Statically fixing the template file
and having quilt take care is the more elegant way.

I've also submitted the patch to upstream, so we can hopefully drop
it upon the next release.

I haven't uploaded the package, yet, just in case Alessio wants to
tweak something else before the next upload.
... there are some developments in qjackctl svn lately, to prevent 
overwriting a folder when saving a session (to avoid disasters...)


___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Re: [OT] Qjackctl | Lucid

2011-06-12 Thread rosea grammostola

On 06/12/2011 02:41 AM, Jonas Smedegaard wrote:

On 11-06-11 at 09:30pm, rosea grammostola wrote:

Hey,

This question is slightly OT...

I try to backport qjackctl 0.3.7 to Ubuntu 10.04. But the Debian
package depends on dos2unix, which is not in the Ubuntu Lucid build
environment. Is it possible to rm the dependency on dos2unix, how?

In debian/rules I find:

install/qjackctl::
 # Fix end-of-lines, convert CRLF to LF.
 dos2unix -ascii \
 debian/qjackctl/usr/share/applications/qjackctl.desktop

If you want same functionality, I'd suggest try replace with this
command:

   recode /crlf../lf \
 debian/qjackctl/usr/share/applications/qjackctl.desktop


Thanks for you help.
It fails with this message:

recode /crlf../lf \
debian/qjackctl/usr/share/applications/qjackctl.desktop
Unrecognised surface name `lf'
recode: Request `/crlf../lf' is erroneous
make: *** [install/qjackctl] Error 1


Best,
\r

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Re: [OT] Qjackctl | Lucid

2011-06-12 Thread Jonas Smedegaard
On 11-06-12 at 06:15pm, rosea grammostola wrote:
 lf is default, so try this instead:
 
recode /crlf.. \
  debian/qjackctl/usr/share/applications/qjackctl.desktop
 It seems to work here locally, but not with pbuilder Lucid. Does it
 need a higher version of some package or some extra package maybe?

It obviously needs the recode package ;-)

That's why I provided the other alternatives: perl-base is essential.


 - Jonas

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

 [x] quote me freely  [ ] ask before reusing  [ ] keep private


signature.asc
Description: Digital signature
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Re: [OT] Qjackctl | Lucid

2011-06-12 Thread Jonas Smedegaard
On 11-06-12 at 06:29pm, rosea grammostola wrote:
 I think you can also do this:
 
perl -i -pe 'chomp' \
  debian/qjackctl/usr/share/applications/qjackctl.desktop
 Gives me a warning:
 
 W: qjackctl: desktop-entry-file-has-crs
 /usr/share/applications/qjackctl.desktop:1

I gave you hints at ways to investigate, not proven solutions.

Please try solve it yourself!

 - Jonas

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

 [x] quote me freely  [ ] ask before reusing  [ ] keep private


signature.asc
Description: Digital signature
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Re: [OT] Qjackctl | Lucid

2011-06-12 Thread rosea grammostola

On 06/12/2011 06:54 PM, Jonas Smedegaard wrote:

On 11-06-12 at 06:29pm, rosea grammostola wrote:

I think you can also do this:

   perl -i -pe 'chomp' \
 debian/qjackctl/usr/share/applications/qjackctl.desktop

Gives me a warning:

W: qjackctl: desktop-entry-file-has-crs
/usr/share/applications/qjackctl.desktop:1



perl -i -pe 's/\x0D\x0A$ /\n/x' \
 debian/qjackctl/usr/share/applications/qjackctl.desktop

This seems to work.

Regards,
\r

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


[OT] Qjackctl | Lucid

2011-06-11 Thread rosea grammostola

Hey,

This question is slightly OT...

I try to backport qjackctl 0.3.7 to Ubuntu 10.04. But the Debian package 
depends on dos2unix, which is not in the Ubuntu Lucid build environment. 
Is it possible to rm the dependency on dos2unix, how?


In debian/rules I find:

install/qjackctl::
# Fix end-of-lines, convert CRLF to LF.
dos2unix -ascii \
debian/qjackctl/usr/share/applications/qjackctl.desktop

Best regards,

\r



___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Re: [OT] Qjackctl | Lucid

2011-06-11 Thread Jonas Smedegaard
On 11-06-11 at 09:30pm, rosea grammostola wrote:
 Hey,
 
 This question is slightly OT...
 
 I try to backport qjackctl 0.3.7 to Ubuntu 10.04. But the Debian
 package depends on dos2unix, which is not in the Ubuntu Lucid build
 environment. Is it possible to rm the dependency on dos2unix, how?
 
 In debian/rules I find:
 
 install/qjackctl::
 # Fix end-of-lines, convert CRLF to LF.
 dos2unix -ascii \
 debian/qjackctl/usr/share/applications/qjackctl.desktop

If you want same functionality, I'd suggest try replace with this 
command:

  recode /crlf../lf \
debian/qjackctl/usr/share/applications/qjackctl.desktop



 - Jonas

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

 [x] quote me freely  [ ] ask before reusing  [ ] keep private


signature.asc
Description: Digital signature
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers