Bug#850757: closed by Sean Whitton <spwhit...@spwhitton.name> (Re: Bug#850757: RFS: mytop/1.9.1-4)

2017-01-10 Thread Werner Detter
Hi Sean,

> Uploaded.  Remarks:
Thanks for uploading the package.

> (1) Have you considered keeping this packaging in git?
It's already in a private GIT repo.

> (2) Please be sure to forward your new patch upstream.
Unforunately Upstream is non responsive and non active.
But I'll keep trying.

Cheers,
Werner



signature.asc
Description: OpenPGP digital signature


Re: Bug#850757: RFS: mytop/1.9.1-4

2017-01-09 Thread Werner Detter
Hi, 

> debdiff attached [1]

fixed one more comment, Debdiff attached. 

Thanks,
Werner


werner@debian:~$ debdiff mytop_1.9.1-3.dsc mytop_1.9.1-4.dsc 
diff -Nru mytop-1.9.1/debian/changelog mytop-1.9.1/debian/changelog
--- mytop-1.9.1/debian/changelog2016-11-20 10:31:06.0 +0100
+++ mytop-1.9.1/debian/changelog2017-01-09 23:15:07.0 +0100
@@ -1,3 +1,12 @@
+mytop (1.9.1-4) unstable; urgency=low
+
+  * Add 14_fix_deprecated_show_innodb_status.patch which replaces deprecated
+command SHOW INNODB STATUS with SHOW ENGINE INNODB STATUS
+  * Removed whitespaces in changelog
+  * Update to debhelper 10
+
+ -- Werner Detter <wer...@aloah-from-hell.de>  Mon, 09 Jan 2017 23:15:07 +0100
+
 mytop (1.9.1-3) unstable; urgency=low
 
   * Updated 11_fix_url_manpage.patch for new upstream url
@@ -33,7 +42,7 @@
   * Updating standards version to 3.9.4
   * Switch to dpkg-source 3.0 (quilt) format 
 - Add debian/source/format
-  * Checked and recreated patchs from old upstream against new version. 
+  * Checked and recreated patchs from old upstream against new version.
 Recreated necessary patches against new upstream version.
 - Add 01_fix_pod.patch
 - Add 02_remove_db_test.patch
diff -Nru mytop-1.9.1/debian/compat mytop-1.9.1/debian/compat
--- mytop-1.9.1/debian/compat   2016-11-19 15:46:23.0 +0100
+++ mytop-1.9.1/debian/compat   2017-01-09 23:15:07.0 +0100
@@ -1 +1 @@
-9
+10
diff -Nru mytop-1.9.1/debian/control mytop-1.9.1/debian/control
--- mytop-1.9.1/debian/control  2016-11-19 15:46:23.0 +0100
+++ mytop-1.9.1/debian/control  2017-01-09 23:15:07.0 +0100
@@ -2,7 +2,7 @@
 Section: utils
 Priority: optional
 Maintainer: Werner Detter <wer...@aloah-from-hell.de>
-Build-Depends: debhelper (>= 9)
+Build-Depends: debhelper (>= 10)
 Homepage: http://www.mysqlfanboy.com/mytop-3/
 Standards-Version: 3.9.8
 
diff -Nru mytop-1.9.1/debian/patches/14_fix_deprecated_show_innodb_status.patch 
mytop-1.9.1/debian/patches/14_fix_deprecated_show_innodb_status.patch
--- mytop-1.9.1/debian/patches/14_fix_deprecated_show_innodb_status.patch   
1970-01-01 01:00:00.0 +0100
+++ mytop-1.9.1/debian/patches/14_fix_deprecated_show_innodb_status.patch   
2017-01-09 23:15:07.0 +0100
@@ -0,0 +1,25 @@
+Description: replace deprecated SHOW INNODB STATUS command
+Author: Werner Detter <wer...@aloah-from-hell.de>
+DEP: 3
+--- a/mytop
 b/mytop
+@@ -1326,7 +1326,7 @@ sub GetInnoDBStatus()
+ }
+ }
+ 
+-my @data = Hashes("SHOW INNODB STATUS");
++my @data = Hashes("SHOW ENGINE INNODB STATUS");
+ 
+ open P, "|$config{pager}" or die "$!";
+ print keys %{$data[0]};
+@@ -2174,8 +2174,8 @@ running queries appear at the top of the
+ 
+ =item B
+ 
+-Switch to InnoDB Status mode.  The output of "SHOW INNODB STATUS" will
+-be displayed every cycle.  In a future version, this may actually
++Switch to InnoDB Status mode. The output of "SHOW ENGINE INNODB STATUS"
++will be displayed every cycle. In a future version, this may actually
+ summarize that data rather than producing raw output.
+ 
+ =item B
diff -Nru mytop-1.9.1/debian/patches/series mytop-1.9.1/debian/patches/series
--- mytop-1.9.1/debian/patches/series   2016-11-19 15:46:23.0 +0100
+++ mytop-1.9.1/debian/patches/series   2017-01-09 23:15:07.0 +0100
@@ -11,3 +11,4 @@
 11_fix_url_manpage.patch
 12_fix_spelling_and_allignment.patch
 13_fix_scope_for_show_slave_status_data.patch
+14_fix_deprecated_show_innodb_status.patch





Bug#850757: RFS: mytop/1.9.1-4

2017-01-09 Thread Werner Detter
Package: sponsorship-requests
Severity: normal

Dear Mentors,

I am looking for a sponsor for my package "mytop"

 * Package name: mytop
   Version : 1.9.1-4
   Upstream Author : Jeremy D. Zawodny <jer...@zawodny.com>,
 Mark Grennan <m...@grennan.com>
 * URL : http://www.mysqlfanboy.com/mytop-3/ 
 * License : GPL-2+ 
   Section : utils

It builds those binary packages:
mytop - top like query monitor for MySQL

To access further information about this package, please visit the following 
URL:
https://mentors.debian.net/package/mytop

Alternatively, one can download the package with dget using this command:
dget -x https://mentors.debian.net/debian/pool/main/m/mytop/mytop_1.9.1-4.dsc

More information about hello can be obtained from https://www.example.com.
Changes since the last upload:

  * Add 14_fix_deprecated_show_innodb_status.patch which replaces deprecated
command SHOW INNODB STATUS with SHOW ENGINE INNODB STATUS
  * Removed whitespaces in changelog
  * Update to debhelper 10

debdiff attached [1]

Thanks,
Werner Detter


[1]
werner@debian:~$ debdiff mytop_1.9.1-3.dsc mytop_1.9.1-4.dsc 
diff -Nru mytop-1.9.1/debian/changelog mytop-1.9.1/debian/changelog
--- mytop-1.9.1/debian/changelog2016-11-20 10:31:06.0 +0100
+++ mytop-1.9.1/debian/changelog2017-01-09 23:15:07.0 +0100
@@ -1,3 +1,12 @@
+mytop (1.9.1-4) unstable; urgency=low
+
+  * Add 14_fix_deprecated_show_innodb_status.patch which replaces deprecated
+command SHOW INNODB STATUS with SHOW ENGINE INNODB STATUS
+  * Removed whitespaces in changelog
+  * Update to debhelper 10
+
+ -- Werner Detter <wer...@aloah-from-hell.de>  Mon, 09 Jan 2017 23:15:07 +0100
+
 mytop (1.9.1-3) unstable; urgency=low
 
   * Updated 11_fix_url_manpage.patch for new upstream url
@@ -33,7 +42,7 @@
   * Updating standards version to 3.9.4
   * Switch to dpkg-source 3.0 (quilt) format 
 - Add debian/source/format
-  * Checked and recreated patchs from old upstream against new version. 
+  * Checked and recreated patchs from old upstream against new version.
 Recreated necessary patches against new upstream version.
 - Add 01_fix_pod.patch
 - Add 02_remove_db_test.patch
diff -Nru mytop-1.9.1/debian/compat mytop-1.9.1/debian/compat
--- mytop-1.9.1/debian/compat   2016-11-19 15:46:23.0 +0100
+++ mytop-1.9.1/debian/compat   2017-01-09 23:15:07.0 +0100
@@ -1 +1 @@
-9
+10
diff -Nru mytop-1.9.1/debian/control mytop-1.9.1/debian/control
--- mytop-1.9.1/debian/control  2016-11-19 15:46:23.0 +0100
+++ mytop-1.9.1/debian/control  2017-01-09 23:15:07.0 +0100
@@ -2,7 +2,7 @@
 Section: utils
 Priority: optional
 Maintainer: Werner Detter <wer...@aloah-from-hell.de>
-Build-Depends: debhelper (>= 9)
+Build-Depends: debhelper (>= 10)
 Homepage: http://www.mysqlfanboy.com/mytop-3/
 Standards-Version: 3.9.8
 
diff -Nru mytop-1.9.1/debian/patches/14_fix_deprecated_show_innodb_status.patch 
mytop-1.9.1/debian/patches/14_fix_deprecated_show_innodb_status.patch
--- mytop-1.9.1/debian/patches/14_fix_deprecated_show_innodb_status.patch   
1970-01-01 01:00:00.0 +0100
+++ mytop-1.9.1/debian/patches/14_fix_deprecated_show_innodb_status.patch   
2017-01-09 23:15:07.0 +0100
@@ -0,0 +1,14 @@
+Description: replace deprecated SHOW INNODB STATUS command
+Author: Werner Detter <wer...@aloah-from-hell.de>
+DEP: 3
+--- a/mytop
 b/mytop
+@@ -1326,7 +1326,7 @@ sub GetInnoDBStatus()
+ }
+ }
+ 
+-my @data = Hashes("SHOW INNODB STATUS");
++my @data = Hashes("SHOW ENGINE INNODB STATUS");
+ 
+ open P, "|$config{pager}" or die "$!";
+ print keys %{$data[0]};
diff -Nru mytop-1.9.1/debian/patches/series mytop-1.9.1/debian/patches/series
--- mytop-1.9.1/debian/patches/series   2016-11-19 15:46:23.0 +0100
+++ mytop-1.9.1/debian/patches/series   2017-01-09 23:15:07.0 +0100
@@ -11,3 +11,4 @@
 11_fix_url_manpage.patch
 12_fix_spelling_and_allignment.patch
 13_fix_scope_for_show_slave_status_data.patch
+14_fix_deprecated_show_innodb_status.patch


-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 4.8.0-2-amd64 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)



Re: upload to mentors

2016-11-23 Thread Werner Detter
Hi Paul,

both packages are now showing up. Thanks for your help, what was the
reason / the problem?

Thanks a lot,
Werner



Re: upload to mentors

2016-11-23 Thread Werner Detter
Hi Paul

> Been debugging this on IRC with Félix from the other thread. I've
> removed some files, please re-upload.

thanks and done. 

Cheers,
Werner

[1] policyd-weight
werner@debian:~/Debian/policyd-weight$ dput mentors-ftp 
policyd-weight_0.1.15.2-12_source.changes
.. shortened ...
Uploading to mentors-ftp (via ftp to mentors.debian.net):
  Uploading policyd-weight_0.1.15.2-12.dsc: done.
  Uploading policyd-weight_0.1.15.2.orig.tar.gz: done.  
  Uploading policyd-weight_0.1.15.2-12.debian.tar.xz: done.  
  Uploading policyd-weight_0.1.15.2-12_source.changes: done.
Successfully uploaded packages.


[2] mytop
werner@debian:~/Debian/mytop$ dput mentors-ftp mytop_1.9.1-3_source.changes 
.. shortened ..
Uploading to mentors-ftp (via ftp to mentors.debian.net):
  Uploading mytop_1.9.1-3.dsc: done.
  Uploading mytop_1.9.1.orig.tar.gz: done.  
  Uploading mytop_1.9.1-3.debian.tar.xz: done. 
  Uploading mytop_1.9.1-3_source.changes: done.
Successfully uploaded packages.



Re: upload to mentors

2016-11-23 Thread Werner Detter

> how can people upload a changes without a dsc file?
> I'm really worried about how can people mess up with some simple
> dpkg commands, do they manually edit changes files?

Gianfranco, 

watch your words and stay kind. No "they" which is in this case me don't f*ck 
around with 
dpkg commands - my friend. I'm uploading packages for more than 5 years and 
never had problems 
so I think I know how things are supposed to work.

Cheers,
Werner

These were my last uploads and packages were generated with bgp / 
git-buildpackage (like I did the last 
5 years). 

werner@debian:~/Debian/mytop$ dput mentors-ftp mytop_1.9.1-3_source.changes 
Checking signature on .changes
gpg: Signature made Tue 22 Nov 2016 10:30:32 PM CET
gpg:using RSA key 03B346A87E36048870E56E9C2AD2A004BFB21FE1
gpg:issuer "wer...@aloah-from-hell.de"
gpg: Good signature from "Werner Detter <wer...@aloah-from-hell.de>" [ultimate]
Good signature on /home/werner/Debian/mytop/mytop_1.9.1-3_source.changes.
Checking signature on .dsc
gpg: Signature made Tue 22 Nov 2016 10:30:32 PM CET
gpg:using RSA key 03B346A87E36048870E56E9C2AD2A004BFB21FE1
gpg:issuer "wer...@aloah-from-hell.de"
gpg: Good signature from "Werner Detter <wer...@aloah-from-hell.de>" [ultimate]
Good signature on /home/werner/Debian/mytop/mytop_1.9.1-3.dsc.
Package includes an .orig.tar.gz file although the debian revision suggests
that it might not be required. Multiple uploads of the .orig.tar.gz may be
rejected by the upload queue management software.
Package is now being checked with lintian.
Uploading to mentors-ftp (via ftp to mentors.debian.net):
  Uploading mytop_1.9.1-3.dsc: done.
  Uploading mytop_1.9.1.orig.tar.gz: done.  
  Uploading mytop_1.9.1-3.debian.tar.xz: done. 
  Uploading mytop_1.9.1-3_source.changes: done.

werner@debian:~/Debian/policyd-weight$ dput mentors-ftp 
policyd-weight_0.1.15.2-12_source.changes
Checking signature on .changes
gpg: Signature made Tue 22 Nov 2016 10:29:39 PM CET
gpg:using RSA key 03B346A87E36048870E56E9C2AD2A004BFB21FE1
gpg:    issuer "wer...@aloah-from-hell.de"
gpg: Good signature from "Werner Detter <wer...@aloah-from-hell.de>" [ultimate]
Good signature on 
/home/werner/Debian/policyd-weight/policyd-weight_0.1.15.2-12_source.changes.
Checking signature on .dsc
gpg: Signature made Tue 22 Nov 2016 10:29:33 PM CET
gpg:using RSA key 03B346A87E36048870E56E9C2AD2A004BFB21FE1
gpg:issuer "wer...@aloah-from-hell.de"
gpg: Good signature from "Werner Detter <wer...@aloah-from-hell.de>" [ultimate]
Good signature on 
/home/werner/Debian/policyd-weight/policyd-weight_0.1.15.2-12.dsc.
Package includes an .orig.tar.gz file although the debian revision suggests
that it might not be required. Multiple uploads of the .orig.tar.gz may be
rejected by the upload queue management software.
Package is now being checked with lintian.
Uploading to mentors-ftp (via ftp to mentors.debian.net):
  Uploading policyd-weight_0.1.15.2-12.dsc: done.
  Uploading policyd-weight_0.1.15.2.orig.tar.gz: done.  
  Uploading policyd-weight_0.1.15.2-12.debian.tar.xz: done.  
  Uploading policyd-weight_0.1.15.2-12_source.changes: done.
Successfully uploaded packages.



Re: upload to mentors

2016-11-23 Thread Werner Detter

> I'll try the source upload. But it's still curious that full
> uploads don't work as expected.

source upload didn't work either. Well then there won't be any
updates for my packages and I don't have the time to try it over
and over again without success.

Cheers,
WErner





signature.asc
Description: OpenPGP digital signature


Re: upload to mentors

2016-11-22 Thread Werner Detter

> I've personally never done a full (with binaries) upload to mentors.
a full upload with binaries  worked for me for about the last 5 years.

> source-only uploads always worked.  The only upside of uploading
> binaries too would be to have them scanned by lintian and the result
> pubblished by the web app, i.e. nothing so interesting.

I'll try the source upload. But it's still curious that full
uploads don't work as expected.

Cheers,
Werner




signature.asc
Description: OpenPGP digital signature


Re: upload to mentors

2016-11-22 Thread Werner Detter
Hi,

> source-only uploads works, please use them.

Is this "new" or is "something" broken? I'll give it a try with
source-only uploads.

Cheers,
Werner



Re: upload to mentors

2016-11-22 Thread Werner Detter

> same for me - it worked with ftp-upload.

well it worked _only once_ and only for one of my packages. Now I'm able 
to upload and the packages are listet on ftp://mentors.debian.net
_but_ they aren't moved to my mentors account. And after some time 
those packages are gone again. Weird. Any comments appreciated. 

Cheers,
Werner 



Re: Bug#845079: RFS: mytop/1.9.1-3

2016-11-20 Thread Werner Detter
Hi, 

I've found another cosmetic issue, fixed it and will reupload the package 
shortly again. 
So here's the snipped from the changelog

  * Updated 11_fix_url_manpage.patch for new upstream url
  * debian/watch updated url for upstream version check 
  * debian/control updated Homepage url 
  * debian/copyright updated Source url
  * debian/rules
+ Add dh_lintian
  * Add debian/source.lintian-overrides
+ override for debian-watch-may-check-gpg-signature as upstream does
  not provide cryptographic signature
  * Update to debhelper 9
  * Updated standards version to 3.9.8

I will get back to you as soon as the package is available on mentors
again :) 

Thanks,
Werner


werner@debian:~/Debian/mytop$ debdiff /tmp/mytop_1.9.1-2.dsc mytop_1.9.1-3.dsc 
diff -Nru mytop-1.9.1/debian/changelog mytop-1.9.1/debian/changelog
--- mytop-1.9.1/debian/changelog2014-07-29 23:02:41.0 +0200
+++ mytop-1.9.1/debian/changelog2016-11-20 10:31:06.0 +0100
@@ -1,3 +1,19 @@
+mytop (1.9.1-3) unstable; urgency=low
+
+  * Updated 11_fix_url_manpage.patch for new upstream url
+  * debian/watch updated url for upstream version check 
+  * debian/control updated Homepage url 
+  * debian/copyright updated Source url
+  * debian/rules
++ Add dh_lintian
+  * Add debian/source.lintian-overrides
++ override for debian-watch-may-check-gpg-signature as upstream does
+  not provide cryptographic signature
+  * Update to debhelper 9
+  * Updated standards version to 3.9.8
+
+ -- Werner Detter <wer...@aloah-from-hell.de>  Sun, 20 Nov 2016 10:31:06 +0100
+
 mytop (1.9.1-2) unstable; urgency=low
 
   * Add 13_fix_scope_for_show_slave_status_data.patch which fixes incorrect
diff -Nru mytop-1.9.1/debian/compat mytop-1.9.1/debian/compat
--- mytop-1.9.1/debian/compat   2014-07-29 23:02:41.0 +0200
+++ mytop-1.9.1/debian/compat   2016-11-19 15:46:23.0 +0100
@@ -1 +1 @@
-7
+9
diff -Nru mytop-1.9.1/debian/control mytop-1.9.1/debian/control
--- mytop-1.9.1/debian/control  2014-07-29 23:02:41.0 +0200
+++ mytop-1.9.1/debian/control  2016-11-19 15:46:23.0 +0100
@@ -2,9 +2,9 @@
 Section: utils
 Priority: optional
 Maintainer: Werner Detter <wer...@aloah-from-hell.de>
-Build-Depends: debhelper (>= 7)
-Homepage: http://www.mysqlfanboy.com/mytop/
-Standards-Version: 3.9.5
+Build-Depends: debhelper (>= 9)
+Homepage: http://www.mysqlfanboy.com/mytop-3/
+Standards-Version: 3.9.8
 
 Package: mytop 
 Architecture: all
diff -Nru mytop-1.9.1/debian/copyright mytop-1.9.1/debian/copyright
--- mytop-1.9.1/debian/copyright2014-07-29 23:02:41.0 +0200
+++ mytop-1.9.1/debian/copyright2016-11-20 10:18:40.0 +0100
@@ -1,6 +1,6 @@
 Format: http://anonscm.debian.org/viewvc/dep/web/deps/dep5.mdwn?revision=240
 Upstream-Name: mytop
-Source: http://www.mysqlfanboy.com/mytop/
+Source: http://www.mysqlfanboy.com/mytop-3/
 
 Files: *
 Copyright: (C) 2000-2003,2007 Jeremy D. Zawodny <jer...@zawodny.com> 
diff -Nru mytop-1.9.1/debian/patches/11_fix_url_manpage.patch 
mytop-1.9.1/debian/patches/11_fix_url_manpage.patch
--- mytop-1.9.1/debian/patches/11_fix_url_manpage.patch 2014-07-29 
23:02:41.0 +0200
+++ mytop-1.9.1/debian/patches/11_fix_url_manpage.patch 2016-11-20 
10:24:39.0 +0100
@@ -3,12 +3,21 @@
 DEP: 3
 --- a/mytop
 +++ b/mytop
-@@ -1812,7 +1812,7 @@
+@@ -1703,7 +1703,7 @@ Help for mytop version $main::VERSION by
+   ! - Skip an error that has stopped replications (at your own risk)
+ 
+ ${GREEN}http://jeremy.zawodny.com/mysql/mytop/${RESET}
+-${GREEN}http://www.mysqlfanboy.com/mytop/${RESET}
++${GREEN}http://www.mysqlfanboy.com/mytop-3/${RESET}
+ ];
+ 
+ print $help;
+@@ -1812,7 +1812,7 @@ B [options]
  =head1 AVAILABILITY
  
  The latest version of B is available from
 -http://jeremy.zawodny.com/mysql/mytop/ it B also be on CPAN as
-+http://www.mysqlfanboy.com/mytop/ it B also be on CPAN as
++http://www.mysqlfanboy.com/mytop-3/ it B also be on CPAN as
  well.
  
  =head1 REQUIREMENTS
diff -Nru mytop-1.9.1/debian/rules mytop-1.9.1/debian/rules
--- mytop-1.9.1/debian/rules2014-07-29 23:02:41.0 +0200
+++ mytop-1.9.1/debian/rules2016-11-19 15:46:23.0 +0100
@@ -35,6 +35,7 @@
dh_installman $(TMP)/usr/share/man/man1/mytop.1p
install -D -m 755 mytop debian/mytop/usr/bin/mytop
dh_perl
+   dh_lintian
dh_compress
dh_fixperms
dh_installdeb
diff -Nru mytop-1.9.1/debian/source.lintian-overrides 
mytop-1.9.1/debian/source.lintian-overrides
--- mytop-1.9.1/debian/source.lintian-overrides 1970-01-01 01:00:00.0 
+0100
+++ mytop-1.9.1/debian/source.lintian-overrides 2016-11-19 15:46:23.0 
+0100
@@ -0,0 +1,2 @@
+# disable debian-watch-may-check-gpg-signature as upstream does not provide 
cryptographic signature
+mytop source: debian-watch-may-check-gpg-signature
diff -Nru mytop-1.9.1/debian/watch mytop-1.9.1/debian/watch
--- mytop-1.9.1/debian/w

Bug#845079: RFS: mytop/1.9.1-3

2016-11-20 Thread werner
Package: sponsorship-requests
Severity: normal

Dear mentors,

I am looking for a sponsor for my package "mytop"

 * Package name: mytop
   Version : 1.9.1-3
   Upstream Author : Jeremy D. Zawodny <jer...@zawodny.com>,
 Mark Grennan <m...@grennan.com>
 * URL : http://www.mysqlfanboy.com/mytop-3/ 
 * License : GPL-2+ 
   Section : utils

It builds those binary packages:
mytop - top like query monitor for MySQL

To access further information about this package, please visit the following 
URL:
https://mentors.debian.net/package/mytop

Alternatively, one can download the package with dget using this command:
dget -x https://mentors.debian.net/debian/pool/main/m/mytop/mytop_1.9.1-3.dsc

More information about hello can be obtained from https://www.example.com.
Changes since the last upload:

Changes since the last upload:
  * debian/watch updated url for upstream version check 
  * debian/control updated Homepage url 
  * debian/rules
+ Add dh_lintian
  * Add debian/source.lintian-overrides
+ override for debian-watch-may-check-gpg-signature as upstream does
  not provide cryptographic signature
  * Update to debhelper 9
  * Updated standards version to 3.9.8

debdiff attached [1]

Regards,
Werner Detter


[1] werner@debian:~/Debian/mytop$ debdiff /tmp/mytop_1.9.1-2.dsc 
mytop_1.9.1-3.dsc 
diff -Nru mytop-1.9.1/debian/changelog mytop-1.9.1/debian/changelog
--- mytop-1.9.1/debian/changelog2014-07-29 23:02:41.0 +0200
+++ mytop-1.9.1/debian/changelog2016-11-19 16:23:29.0 +0100
@@ -1,3 +1,17 @@
+mytop (1.9.1-3) unstable; urgency=low
+
+  * debian/watch updated url for upstream version check 
+  * debian/control updated Homepage url 
+  * debian/rules
++ Add dh_lintian
+  * Add debian/source.lintian-overrides
++ override for debian-watch-may-check-gpg-signature as upstream does
+  not provide cryptographic signature
+  * Update to debhelper 9
+  * Updated standards version to 3.9.8
+
+ -- Werner Detter <wer...@aloah-from-hell.de>  Sat, 19 Nov 2016 16:23:29 +0100
+
 mytop (1.9.1-2) unstable; urgency=low
 
   * Add 13_fix_scope_for_show_slave_status_data.patch which fixes incorrect
diff -Nru mytop-1.9.1/debian/compat mytop-1.9.1/debian/compat
--- mytop-1.9.1/debian/compat   2014-07-29 23:02:41.0 +0200
+++ mytop-1.9.1/debian/compat   2016-11-19 15:46:23.0 +0100
@@ -1 +1 @@
-7
+9
diff -Nru mytop-1.9.1/debian/control mytop-1.9.1/debian/control
--- mytop-1.9.1/debian/control  2014-07-29 23:02:41.0 +0200
+++ mytop-1.9.1/debian/control  2016-11-19 15:46:23.0 +0100
@@ -2,9 +2,9 @@
 Section: utils
 Priority: optional
 Maintainer: Werner Detter <wer...@aloah-from-hell.de>
-Build-Depends: debhelper (>= 7)
-Homepage: http://www.mysqlfanboy.com/mytop/
-Standards-Version: 3.9.5
+Build-Depends: debhelper (>= 9)
+Homepage: http://www.mysqlfanboy.com/mytop-3/
+Standards-Version: 3.9.8
 
 Package: mytop 
 Architecture: all
diff -Nru mytop-1.9.1/debian/rules mytop-1.9.1/debian/rules
--- mytop-1.9.1/debian/rules2014-07-29 23:02:41.0 +0200
+++ mytop-1.9.1/debian/rules2016-11-19 15:46:23.0 +0100
@@ -35,6 +35,7 @@
dh_installman $(TMP)/usr/share/man/man1/mytop.1p
install -D -m 755 mytop debian/mytop/usr/bin/mytop
dh_perl
+   dh_lintian
dh_compress
dh_fixperms
dh_installdeb
diff -Nru mytop-1.9.1/debian/source.lintian-overrides 
mytop-1.9.1/debian/source.lintian-overrides
--- mytop-1.9.1/debian/source.lintian-overrides 1970-01-01 01:00:00.0 
+0100
+++ mytop-1.9.1/debian/source.lintian-overrides 2016-11-19 15:46:23.0 
+0100
@@ -0,0 +1,2 @@
+# disable debian-watch-may-check-gpg-signature as upstream does not provide 
cryptographic signature
+mytop source: debian-watch-may-check-gpg-signature
diff -Nru mytop-1.9.1/debian/watch mytop-1.9.1/debian/watch
--- mytop-1.9.1/debian/watch2014-07-29 23:02:41.0 +0200
+++ mytop-1.9.1/debian/watch2016-11-19 15:46:23.0 +0100
@@ -1,2 +1,2 @@
 version=3
-http://www.mysqlfanboy.com/mytop/mytop-(.*).tar.gz
+http://www.mysqlfanboy.com/mytop-3/mytop-(.*).tar.gz

-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 4.8.0-1-amd64 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)



Re: upload to mentors

2016-11-19 Thread Werner Detter
Hi,

> Yesterday I had success with ftp upload after inconsistent http upload.
> Http upload worked again then. Maybe you can try too ;).

same for me - it worked with ftp-upload.

Thanks,
Werner



upload to mentors

2016-11-19 Thread Werner Detter
Hi, 

I've just reinstalled my development machine for debian packaging and  
wanted to upload some packages to mentors which doesn't work as
expected. In the past I had a complete path set for "incoming" in 
the ~/.dput.cf exemplary like follows

incoming = /upload/u...@example.org/whatevermd5string

I've switched my settings for the incoming-path (as suggestet in [1]). 

During Upload with dput I receive an error: "Upload failed: 403 Forbidden"
And Package is directly visible via ftp://mentors.debian.net but not 
processed and attached to my account on mentors? 

It's been a while since I've uploaded the last time to mentors maybe 
anyone else ran into the same issue and has an advice. 

Thanks,
Werner



[1] https://mentors.debian.net/intro-maintainers

[mentors]
fqdn = mentors.debian.net
incoming = /upload
method = http
allow_unsigned_uploads = 0
progress_indicator = 2
# Allow uploads for UNRELEASED packages
allowed_distributions = .*





Bug#811164: RFS: policyd-weight/0.1.15.2-11

2016-01-16 Thread Werner Detter
Package: sponsorship-requests
Subject: RFS - policyd-weight/0.1.15.2-11

Hi everybody, 

I've created a new version of my package policyd-weight. 

 * Package name: policyd-weight
   Version : 0.1.15.2-11
   Upstream Author : Robert Felber
 * URL : www.policyd-weight.org
 * License : GPL-2+
   Section : mail

As my sponsor Arno seems to be unavailable sice some weeks I'm asking here for 
someone who
could upload my packages. Debdiff is found under [1], changes since last upload:

policyd-weight (0.1.15.2-11) unstable; urgency=low

  * debian/postrm
+ Fix command-with-path-in-maintainer-script
  * debian/init.d
+ Updated LSB header
  * debian/rules
+ Add dh_lintian
  * Add debian/source.lintian-overrides
+ override for debian-watch-may-check-gpg-signature as upstream does
  not provide cryptographic signature
  * Update to debhelper 9
  * Updated 10_replace_net_dns_dn_expand.patch to use official replacement
Net::DNS::DomainName::decode for Net::DNS::Packet::dn_expand
  * Add 13_fix_default_rhsbl_dnsbl_in_man5.patch which updates default
dnsbls/rhsbls in man5 manpage
  * Add 14_ignore_rfc1918_a_records_config_option.patch which introduces
new config config option $IGNORE_RFC1918_A. If enabled A records with
RFC1918 addresses aren't treated as bogus addresses by policyd-weight
and therefore bogus_mx_score is not added. Updated sample configuration
and man5 manpage (Closes: #799314)
  * Add closing bug in previous changelog entry

 -- Werner Detter <wer...@aloah-from-hell.de>  Tue,  1 Dec 2015 23:17:14 +0100

It builds those binary packages:
policyd-weight - Perl policy daemon for the Postfix MTA

To access further information about this package, please visit the
following URL:

  http://mentors.debian.net/package/policyd-weight

Alternatively, one can download the package with dget using this command:

  dget -x 
http://mentors.debian.net/debian/pool/main/p/policyd-weight/policyd-weight_0.1.15.2-11.dsc


Regards,
Werner


[1] Debdiff
werner@smaint:~$ debdiff policyd-weight_0.1.15.2-10.dsc 
policyd-weight_0.1.15.2-11.dsc
diff -Nru policyd-weight-0.1.15.2/debian/changelog 
policyd-weight-0.1.15.2/debian/changelog
--- policyd-weight-0.1.15.2/debian/changelog2015-01-07 07:32:00.0 
+0100
+++ policyd-weight-0.1.15.2/debian/changelog2015-12-01 09:45:29.0 
+0100
@@ -1,7 +1,32 @@
+policyd-weight (0.1.15.2-11) unstable; urgency=low
+
+  * debian/postrm
++ Fix command-with-path-in-maintainer-script
+  * debian/init.d
++ Updated LSB header
+  * debian/rules
++ Add dh_lintian
+  * Add debian/source.lintian-overrides
++ override for debian-watch-may-check-gpg-signature as upstream does
+  not provide cryptographic signature
+  * Update to debhelper 9
+  * Updated 10_replace_net_dns_dn_expand.patch to use official replacement
+Net::DNS::DomainName::decode for Net::DNS::Packet::dn_expand
+  * Add 13_fix_default_rhsbl_dnsbl_in_man5.patch which updates default
+dnsbls/rhsbls in man5 manpage
+  * Add 14_ignore_rfc1918_a_records_config_option.patch which introduces
+new config config option $IGNORE_RFC1918_A. If enabled A records with
+RFC1918 addresses aren't treated as bogus addresses by policyd-weight
+and therefore bogus_mx_score is not added. Updated sample configuration
+and man5 manpage (Closes: #799314)
+  * Add closing bug in previous changelog entry
+   
+ -- Werner Detter <wer...@aloah-from-hell.de>  Tue,  1 Dec 2015 23:17:14 +0100
+
 policyd-weight (0.1.15.2-10) unstable; urgency=low
 
-  * Add 12_del_rhsbl.ahbl.org.patch which removes rhsbl.ahbl.org list due 
-to service shutdown
+  * Add 12_del_rhsbl.ahbl.org.patch which removes rhsbl.ahbl.org list due
+to service shutdown (Closes: #774772)
    
  -- Werner Detter <wer...@aloah-from-hell.de>  Wed,  7 Jan 2015 07:30:14 +0100
 
diff -Nru policyd-weight-0.1.15.2/debian/compat 
policyd-weight-0.1.15.2/debian/compat
--- policyd-weight-0.1.15.2/debian/compat   2014-10-04 16:43:25.0 
+0200
+++ policyd-weight-0.1.15.2/debian/compat   2015-11-30 20:34:32.0 
+0100
@@ -1 +1 @@
-7
+9
diff -Nru policyd-weight-0.1.15.2/debian/control 
policyd-weight-0.1.15.2/debian/control
--- policyd-weight-0.1.15.2/debian/control  2014-10-04 16:43:25.0 
+0200
+++ policyd-weight-0.1.15.2/debian/control  2015-11-30 20:34:32.0 
+0100
@@ -2,7 +2,7 @@
 Section: mail
 Priority: optional
 Maintainer: Werner Detter <wer...@aloah-from-hell.de>
-Build-Depends: debhelper (>= 7)
+Build-Depends: debhelper (>= 9)
 Homepage: http://www.policyd-weight.org/
 Standards-Version: 3.9.6
 
diff -Nru policyd-weight-0.1.15.2/debian/init.d 
policyd-weight-0.1.15.2/debian/init.d
--- policyd-weight-0.1.15.2/debian/init.d   2014-10-04 16:43:25.0 
+0200
+++ policyd-weight-0.1.15.2/debian/init.d   2015-11-30 20:34:32.0 
+0100
@@ -1,20 +1,15 @@
 #

Re: general question about quilt patch handling

2015-12-01 Thread Werner Detter
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512


> If the changelog says 'removing/updating foo support because blah
> no longer available' then there is no need to say 'and I refreshed
> all my patches' too - that's just as anspect of makig it work
> nicely.

Perfect, thanks so I won't mention the refreshing of the patches :)

Cheers,
Werner

-BEGIN PGP SIGNATURE-
Version: GnuPG/MacGPG2 v2
Comment: GPGTools - http://gpgtools.org

iQEcBAEBCgAGBQJWXhm+AAoJECrSoAS/sh/hWpQIAJpsXva5l8XAbKjVNcxJcI/J
VXjEIZHxA38rnRkC7yCUicTMLYJcESXbKE6boRTz2g6zDEkFfonUaIZ+AqfCZtYW
O0d9COkfztP9YR+EoVuYUhus9EOZQ6MMX/DCYZXQJHFNg4Ap9Ryb6mlHS6uTz5rM
8Vk4y7ZfV1Nct4cvkBDBk8NnIz+SlBkzAXfwCGejdjJESQMYQvoUU/lUCiQMfX05
1nTUn6D+2LkkbekhHDjVNI0k96gTLVeFvTsjdf3Cz112Ldtr7X8FCNTeU/UjK8EA
Rzn80IahEoXcPAv9BSrCz37NOD5gWiZmI+IPGIZSuQ5Zkk9TCu4wJJwqn0zHtrw=
=gSzN
-END PGP SIGNATURE-



Re: general question about quilt patch handling

2015-12-01 Thread Werner Detter
Hi,

> Have you got any reason not to simply refresh your patches?
> Something like: quilt pop -a; while quilt push; do quilt refresh; done

well, there is no reason. I'm asking because this is the first time
I have this topic. Sure, refreshing all patches would be probably the
best - but do I have to mention that in the changelog?

Thanks,
Werner



Re: general question about quilt patch handling

2015-11-30 Thread Werner Detter
Hi,

> For example, if 3.patch has not been forwarded upstream yet, then I
> would definitely modify it (instead of creating a new patch).

I've modified 3.patch - in the course of the modification one line has
been deleted (perl "use" statement) as it's not needed anymore.
Therefore some subsequent patches now complain, e.g.

Applying patch 4.patch
patching file xxx
Hunk #1 succeeded at 482 (offset -1 lines).
Hunk #2 succeeded at 2211 (offset -1 lines).

Subsequent patches apply successfully but I'd like to get rid of
those messages. What is the recommendation here?

a) instead of removing the use line, just leave it in?
b) just add another empty line for the deleted one in 3.patch (testet -
works)? But IMHO also "not nice"
c) add a new patch which just deletes the use statement which would be
the last in series file?

Thanks for your suggestions,
Werner




Re: general question about quilt patch handling

2015-11-29 Thread Werner Detter

> For example, if 3.patch has not been forwarded upstream yet, then I
> would definitely modify it (instead of creating a new patch).
> 
> That way upstream would receive a single patch about the issue, not a
> patch and a patch for the patch.

thanks for your reply. Upstream is not active anymore and the patch has
not been modified. So I agree - modifying the the existing one would be
the better solution. I'll see how good it works and if the subsequent
patches do still work ;)

Cheers,
Werner




general question about quilt patch handling

2015-11-28 Thread Werner Detter
Hi everbody, 

short question by example: quilt series contains several patches, e.g.

1.patch
2.patch
3.patch
4.patch 

let's assume 3.patch which worked for some time but will be no longer functional
because the 3.patch uses a function which will not available in future versions 
of dependency software (like libnet-dns-perl). 

what's the recommendation here? 

a) delete 3.patch completly and create a new quilt patch for the fix
b) leave 3.patch untouched and just create a new one which fixes the changes
   from 3.patch? 
c) something else? 

Cheers,
Werner



Bug#782340: RFS: redeclipse/1.5.1-1 redeclipse-data/1.5.1-1

2015-04-18 Thread Martin Erik Werner
tags 782340 + fixed pending
thanks

redelipse-data is now in experimental.
redeclipse is pending in NEW (due to the new redeclipse-common binary
package).
-- 
Martin Erik Werner martinerikwer...@gmail.com


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/1429396209.11755.3.ca...@gmail.com



Re: RC-bug listed on https://bugs.debian.org/release-critical/debian/all.html

2015-04-01 Thread Werner Detter
Hi Niels,

thanks for your quick reply.

 Note that uploading it to proposed-updates is not sufficient to mark it
 as fixed in stable.  If you have uploaded the fix for the coming point
 release, the bug will remain open until the release actually happens.

Okay, I see. This means that everything has been taken care of and there
is nothing we can do about the listet rc bug right now but wait for the
next point release until this bug gets delistet on the rc buglist.

Thanks,
Werner


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/551b994c.8070...@aloah-from-hell.de



RC-bug listed on https://bugs.debian.org/release-critical/debian/all.html

2015-04-01 Thread Werner Detter
Hi folks, 

just a short question - a bug which has already been taken care of for wheezy 
and jessie is 
still listed as RC bug at 
https://bugs.debian.org/release-critical/debian/all.html

Package: policyd-weight (debian/main).
Maintainer: Werner Detter wer...@aloah-from-hell.de
  774772 [] [S] policyd-weight: rhsbl.ahbl.org flags all domains

In PTS the bugreport is closed. Why is it still listed in the RC buglist? 

Cheers, 
Werner


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/551b8ad1.1020...@aloah-from-hell.de



Bug#774753: sponsorship-requests: RFS - pu policyd-weight/0.1.15.2-5+wheezy2

2015-01-17 Thread Werner Detter
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Hi Sebastian,

confirmation from Adam received, see http://bugs.debian.org/774773

Cheers,
Werner
-BEGIN PGP SIGNATURE-
Version: GnuPG/MacGPG2 v2.0.22 (Darwin)
Comment: GPGTools - http://gpgtools.org

iQEcBAEBCgAGBQJUunsvAAoJECrSoAS/sh/h2oYH/i2R1OttzmhVP4GyRPleHQa4
e/cVkEN2nsDhOy1QibGcqAgQoLznoNxu1DhYk8j03S/5aHeaNrY25yMJpsCrg57Y
aQJydI5C4QVjwqKpONV8G5J0f1youWwhOutozHgTiLzrUdEl6m3aY9l2RelcaBgp
x7O4nssNHpw0KbVRGHH4fz3zdVve1MmilVr3P+hjZUebVnFlWi2+RecXhq8OXg20
NtQC52zkFSUlkji1eqseGZ7R96t0JkpNef9LdGM3fBl721C2IGpR/rOjFv8mKpsS
Rw2fmW7yvM0g7z1Y3LpOLmofTEPVB6Gx0tFCA+mHEWQCDigRY8y0sZp7KBol3Jo=
=JskO
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/54ba7b2f.7040...@aloah-from-hell.de



Re: Bug#774753: sponsorship-requests: RFS - pu policyd-weight/0.1.15.2-5+wheezy2

2015-01-17 Thread Werner Detter
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Hi Sebastian,

confirmation from Adam received, see http://bugs.debian.org/774773

Thanks,
Werner
-BEGIN PGP SIGNATURE-
Version: GnuPG/MacGPG2 v2.0.22 (Darwin)
Comment: GPGTools - http://gpgtools.org

iQEcBAEBCgAGBQJUunpKAAoJECrSoAS/sh/hbXUH/1gS6EqUCppMGjr7DWkyRlHp
ouBchnrNKzbKQfHBmzEnLsXOyj7Nb3Xo/1ouxvSKP6Z7M3ncmJlqRzb4o1X92ri2
FLY98BoZyxA1N5vo/1KwcdhYWsU88Zi2C3VlOEQgWrsVDdwmvwonhy/Zn7pj9OFj
4YKFqmpHh7i58eLl9F6sGPuV06Pgo0k6WjMsCqlv4Of02gZzbtKcIFQaAuEBe+I0
s+ANZyHVyh0tg/UJG35X3u1IwDYPJlmrzors5o0EbyNTPDuBlgvugaAZYDrwnzQj
4KpgibKUQBlI9RFDg32hSnisAMpxKP+gkaECtBCgBFuIoNklzwsdw4Fqz6xD98A=
=PbBd
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/54ba7a4a.7090...@aloah-from-hell.de



Bug#774753: sponsorship-requests: RFS - pu policyd-weight/0.1.15.2-5+wheezy2

2015-01-07 Thread Werner Detter
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Hi Sebastian,

 Let's start with the upload to unstable. Could you please close
 #774772 in the changelog?

I'd prefer closing this report by hand as I've created the packages
already this morning.

 Has the stable upload been coordinated with the release team?

I'll take care.

Thanks,
Werner


-BEGIN PGP SIGNATURE-
Version: GnuPG/MacGPG2 v2.0.22 (Darwin)
Comment: GPGTools - http://gpgtools.org

iQEcBAEBCgAGBQJUrS/rAAoJECrSoAS/sh/hpckH/0058O27QgSlDOE3ni9+tydH
9iU8aULqYpVqEuJIyKidjOG7+LJnUmWPKzSFr4dRHAEvmSAKezfd0u2mnJ4ER+A8
qzUQlMJowimOsUVP1s+1fvJ0uwTLfF7+NU+0zKkBk55ytrcLbNa1eo4RDUXW46ii
M3R5xxV4p4Eu6cSscGc0IUp80qe0APoT08JsKG3i74v4aHwX1PfODzHyUOaqDzRb
2G/MdTsuxdyUNrAPnwZPzZr4eSY++4PQiRTCGUHSLHuKnaaTLfQhIFwMQOj3sjQf
eEubBwzb8u1u8KZt/9lXeVnZarKXHjbJkFDZdqpyZ+JNhkMLRTmmczjzypL8tK8=
=swt4
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/54ad2feb.10...@aloah-from-hell.de



Bug#774753: sponsorship-requests: RFS - pu policyd-weight/0.1.15.2-5+wheezy2

2015-01-07 Thread Werner Detter
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Hi Sebastian,

I've created the request for the release team which can be found
here: http://bugs.debian.org/774773

But hasn't been confirmed yet, unfortunately.

Cheers,
Werner

-BEGIN PGP SIGNATURE-
Version: GnuPG/MacGPG2 v2.0.22 (Darwin)
Comment: GPGTools - http://gpgtools.org

iQEcBAEBCgAGBQJUraRUAAoJECrSoAS/sh/hBxUH/13ACdzvovbxddZ8LDk/kMJc
gf7ploYlJg97GrYmcv95pvI0GhmnMD2csEXr/HdmICymAXplWxkZxx5qY6dgH5yQ
0Va3uIs6zqGEJSME/DbAY/CEtd2i7mgwLr/C0f9AE7eNIbNZ/vuApTWnpcBG29OK
VIy8gFHOnw9bTSi33/UCrzbO0T8vfznHZrhYvuwacq5MaaMV3X7A8wTT/M6AUaHk
igMAm2CbDcqo0R7UuTYqjsraxcsRhnhQy7mLkmJxnEF4iI8Xeh5U/qQO2kQZjbqJ
NHiKylUZ0r0XvEPBtHfy17DiXdQy8Wjiw3ImXfGe5t32EgwpY6DbsaDz3uWiiJY=
=+hgs
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/54ada454.9040...@aloah-from-hell.de



Bug#774753: sponsorship-requests: RFS - pu policyd-weight/0.1.15.2-5+wheezy2

2015-01-06 Thread Werner Detter
Package: sponsorship-requests
Severity: important

Dear Maintainer,

policyd-weight uses the abusive hosts blocking list which has been shutdown on 
january 1st,
more information can be found on the website of the dnsbl: 

http://www.ahbl.org/content/last-notice-wildcarding-services-jan-1st

The list now replies which a positive response which may lead to false 
positives. I hereby
ask for someone to upload this package to stable?

I've already recreated the package for unstable and uploaded it to mentors. 
Meanwhile I've
backported the patch for stable. A debdiff can be found here [1]

 * Package name: policyd-weight
   Version : policyd-weight/0.1.15.2-5+wheezy2
   Upstream Author : Robert Felber
 * URL : www.policyd-weight.org
 * License : GPL-2+
   Section : mail

I've uploaded the package to mentors.debian.net - it would be great if someone 
could upload this
package.


The URL of your package is:
http://mentors.debian.net/package/policyd-weight

The respective dsc file can be found at:
http://mentors.debian.net/debian/pool/main/p/policyd-weight/policyd-weight_0.1.15.2-5+wheezy2.dsc

Thanks, 
Werner Detter

[1] debdiff

diff -Nru policyd-weight-0.1.15.2/debian/changelog 
policyd-weight-0.1.15.2/debian/changelog
--- policyd-weight-0.1.15.2/debian/changelog2014-03-15 13:24:45.0 
+0100
+++ policyd-weight-0.1.15.2/debian/changelog2015-01-07 07:56:59.0 
+0100
@@ -1,3 +1,11 @@
+policyd-weight (0.1.15.2-5+wheezy2) unstable; urgency=low
+
+  * Add 10_del_rhsbl.ahbl.org.patch which removes rhsbl.ahbl.org list due
+to service shutdown
+   
+ -- Werner Detter wer...@aloah-from-hell.de  Wed,  7 Jan 2015 07:30:14 +0100
+
+
 policyd-weight (0.1.15.2-5+wheezy1) wheezy; urgency=low
 
 * Add 09_fix_net_dns_usage.patch which fixes infinite loop when dns 
resolver
diff -Nru policyd-weight-0.1.15.2/debian/patches/10_del_rhsbl.ahbl.org.patch 
policyd-weight-0.1.15.2/debian/patches/10_del_rhsbl.ahbl.org.patch
--- policyd-weight-0.1.15.2/debian/patches/10_del_rhsbl.ahbl.org.patch  
1970-01-01 01:00:00.0 +0100
+++ policyd-weight-0.1.15.2/debian/patches/10_del_rhsbl.ahbl.org.patch  
2015-01-07 07:55:16.0 +0100
@@ -0,0 +1,15 @@
+Description: removes RHSBL rhsbl.ahbl.org from policyd-weight source
+Author: Werner Detter wer...@aloah-from-hell.de
+DEP: 3
+--- a/policyd-weight
 b/policyd-weight
+@@ -389,8 +389,7 @@
+ 
+ ## RHSBL settings
+ my @rhsbl_score = (
+-'multi.surbl.org', 4,0,'SURBL',
+-'rhsbl.ahbl.org',  4,0,'AHBL'
++'multi.surbl.org', 4,0,'SURBL'
+ );
+ 
+ my $BL_ERROR_SKIP = 2;  # skip a RBL if this RBL had this many continuous
diff -Nru policyd-weight-0.1.15.2/debian/patches/series 
policyd-weight-0.1.15.2/debian/patches/series
--- policyd-weight-0.1.15.2/debian/patches/series   2014-03-15 
13:26:31.0 +0100
+++ policyd-weight-0.1.15.2/debian/patches/series   2015-01-07 
07:54:13.0 +0100
@@ -7,3 +7,4 @@
 07_del_rfc-ignorant.org.patch
 08_del_dnsbl.njabl.org.patch
 09_fix_net_dns_usage.patch
+10_del_rhsbl.ahbl.org.patch






-- System Information:
Debian Release: 8.0
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.16.0-4-amd64 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/20150107071348.7536.93707.reportbug@smaint.localdomain



Bug#774413: RFS: libcmime/0.1.15-1 [ITP]

2015-01-02 Thread Werner Detter
Package: sponsorship-requests
Severity: wishlist

Dear mentors,

I am looking for a sponsor for my package libcmime

* Package name: libcmime
  Version : 0.1.15
  Upstream Author : Axel Steiner, a...@treibsand.com
Werner Detter, wer...@aloah-from-hell.de
Robin Doer, r...@space.net
* URL : http://www.libcmime.org
* License : Expat
  Programming Lang: C
  Description : libcmime is a lightweight mime library, written in C

It builds those binary packages:

 libcmime-dev - lightweight C mime library - development files
 libcmime0.1 - lightweight C mime library

To access further information about this package, please visit the following 
URL: 
http://mentors.debian.net/package/libcmime

Alternatively, one can download the package with dget using this command:
dget -x 
http://mentors.debian.net/debian/pool/main/libc/libcmime/libcmime_0.1.15-1.dsc

More information about libcmime can be obtained from http://www.libcmime.org

As this is my first package which contains a shared library I ask for help and 
assistance about
the current state of the package and improvements/adjustments which could or 
should be made.   

The library uses cmake, I currently do use cdbs as build system for the 
package. Currently I've 
split the package into a -dev and a regular package. I still have some lintian 
messages left,
e.g

libcmime-dev: package-contains-broken-symlink
usr/lib/libcmime.so libcmime.so.0.1

Is this something which should be fixed with a lintian override? The -dev 
package refers to libcmime.so.0.1
which is provided by the regular package? 
 
Any help/comments welcome :) 

Thank you,
Werner Detter


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/54a681d9.4050...@aloah-from-hell.de



Re: Package with CMAKE based C library

2014-10-22 Thread Werner Detter
Hi John,

thanks for your comments and your help. I'll switch back to dh
and create the install files tonight and see if everything works
as expected.

Cheers,
Werner


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/544794a9.9090...@aloah-from-hell.de



Package with CMAKE based C library

2014-10-21 Thread Werner Detter
Hi everybody, 

I want to package a library, developed in C (libcmime) which is based on cmake. 
If I'm 
right - there should be 

a) the main package libcmime
/usr/lib/libcmime.so.0.1 (symlink to the next one)
/usr/lib/libcmime.so.0.1.14

b) the dev package libcmime-dev
/usr/lib/libcmime.so (symlink to 0.1.19)
/usr/include/cmime/*.h
/usr/lib/pkgconfig/cmime.pc

As this package is the first one with a C library, based on CMAKE for me it 
would be great if 
anyone could point me to a similar package to stud debian/rules

Thanks and cheers,
Werner


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/5446cfc2.90...@aloah-from-hell.de



Re: Package with CMAKE based C library

2014-10-21 Thread Werner Detter
Hi KI7MT, 
hi everybody

thanks for your reply - I'm currently building the package with cdbs, 
debian/rules 
right now implements:

#!/usr/bin/make -f
include /usr/share/cdbs/1/rules/debhelper.mk
#include /usr/share/cdbs/1/rules/patchsys-quilt.mk
include /usr/share/cdbs/1/class/cmake.mk
#export DH_VERBOSE = 1

binary-post-install/%::
dh_installchangelogs CHANGELOG

It build's the package. So far, so good. But I'm still wondering what
needs to be done to split the package into libcmime and libcmime-dev :) 

In other words: how do i tell the packaging process to create two packages and
to put: 

/usr/lib/libcmime.so.0.1 
/usr/lib/libcmime.so.0.1.14

into the main package, and 

/usr/lib/libcmime.so (symlink to 0.1.14)
/usr/include/cmime/*.h
/usr/lib/pkgconfig/cmime.pc

into the -dev package


Cheers,
Werner



[1] Currently only one package is created, wich installs the following files: 
*) /usr/lib
lrwxrwxrwx  1 root root  15 Oct 21 23:08 libcmime.so - libcmime.so.0.1
lrwxrwxrwx  1 root root  18 Oct 21 23:08 libcmime.so.0.1 - 
libcmime.so.0.1.14
-rw-r--r--  1 root root   89320 Oct 21 23:08 libcmime.so.0.1.14

*) /usr/include/cmime
-rw-r--r--  1 root root  4424 Sep 23 15:55 cmime_address.h
-rw-r--r--  1 root root  3273 Sep 23 15:55 cmime_base64.h
-rw-r--r--  1 root root  1913 Oct 21 23:08 cmime_config.h
-rw-r--r--  1 root root  3716 Sep 23 15:55 cmime_header.h
-rw-r--r--  1 root root  7077 Sep 23 15:55 cmime_list.h
-rw-r--r--  1 root root 19017 Sep 23 15:55 cmime_message.h
-rw-r--r--  1 root root  6872 Sep 23 15:55 cmime_part.h
-rw-r--r--  1 root root  3166 Sep 23 15:55 cmime_qp.h
-rw-r--r--  1 root root  3894 Sep 23 15:55 cmime_string.h
-rw-r--r--  1 root root  2942 Sep 23 15:55 cmime_util.h

*) /usr/lib/pkgconfig/libcmime.pc 


Am 21.10.14 23:57, schrieb ki7mt:
 Hi Werner,
 
 I just finished working up a CMAKE package that has it's own install
 target and creates the appropriate directories, manpages etc. I used the
 basic dh_* Makefile, and did a couple overrides to account for things
 that were performed by the CMakeLists.txt file.
 
 It really depends on what the CMAKE project does as to what your rules
 file will end up looking like. This particular project accounts for
 Debian builds, as well as Mac OSX and RPM. I used my own version of the
 control file though. Im not sure I've done this 100% correct, but It's
 building without any Lintian errors or warnings.
 
 You can also use CDBS, but I found it just as easy to use dh_*. I'm sure
 the the Debian Mentors can get you sorted out on this. Maybe they can
 help me out as well, as I could be out in left field here :-)
 
 Rules File -- I added the comments just so i could see it easy in the
 build log
 
 DH_VERBOSE = 1
 export DH_OPTIONS=-v
 
 %:
 dh $@ --parallel
 
 # CMakeLists.txt install target creates all the appropriate dir's
 override_dh_install:
 @echo
 '-'
 @echo ' Overiding: dh_install to NULL'
 @echo
 ''
 
 # Manpages are build by a Cmake target
 override_dh_installman:
 @echo
 '-'
 @echo ' Overiding: dh_installman to NULL'
 @echo
 '-'
 
 # Manpages are already compressed
 override_dh_compress:
 @echo
 '-'
 @echo ' Overiding: dh_compress to exclude *.1.gz files'
 @echo
 '-'
 dh_compress -X1.gz
 
 73's
 Greg, KI7MT
 
 
 On 10/21/2014 03:27 PM, Werner Detter wrote:
 Hi everybody,

 I want to package a library, developed in C (libcmime) which is based
 on cmake. If I'm
 right - there should be

 a) the main package libcmime
 /usr/lib/libcmime.so.0.1 (symlink to the next one)
 /usr/lib/libcmime.so.0.1.14

 b) the dev package libcmime-dev
 /usr/lib/libcmime.so (symlink to 0.1.19)
 /usr/include/cmime/*.h
 /usr/lib/pkgconfig/cmime.pc

 As this package is the first one with a C library, based on CMAKE for
 me it would be great if
 anyone could point me to a similar package to stud debian/rules

 Thanks and cheers,
 Werner


 
 


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/5446d9c5.60...@aloah-from-hell.de



Re: Bug#756436: RFS: mytop/1.9.1-2

2014-07-30 Thread Werner Detter
Am 30.07.14 01:46, schrieb Paul Wise:
 On Wed, Jul 30, 2014 at 6:07 AM, Werner Detter wrote:
 
 Upload didn't work with message:
 
 Fixed now.

Thanks, upload worked.

Cheers,
Werner


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/53d8a271.1080...@aloah-from-hell.de



Bug#756436: RFS: mytop/1.9.1-2

2014-07-29 Thread Werner Detter
Package: sponsorship-requests
Severity: normal

Dear mentors,

I am looking for a sponsor for my package mytop

 * Package name: mytop
   Version : 1.9.1-2
   Upstream Author : Jeremy D. Zawodny jer...@zawodny.com,
 Mark Grennan m...@grennan.com
 * URL : http://www.mysqlfanboy.com/mytop/ 
 * License : GPL-2+ 
   Section : utils

It builds those binary packages:

  mytop - top like query monitor for MySQL

To access further information about this package, please visit the following 
URL:

http://mentors.debian.net/package/mytop


Alternatively, one can download the package with dget using this command:

  dget -x http://mentors.debian.net/debian/pool/main/m/mytop/mytop_1.9.1-2.dsc

More information about hello can be obtained from http://www.example.com.

For changes since the last upload see [1]

Cheers,
Werner Detter




[1] debdiff 


diff -Nru mytop-1.9.1/debian/changelog mytop-1.9.1/debian/changelog
--- mytop-1.9.1/debian/changelog2013-05-11 17:42:29.0 +0200
+++ mytop-1.9.1/debian/changelog2014-07-29 21:55:26.0 +0200
@@ -1,3 +1,14 @@
+mytop (1.9.1-2) unstable; urgency=low
+
+  * Add 13_fix_scope_for_show_slave_status_data.patch which fixes incorrect
+scope for SHOW SLAVE STATUS data variable (Closes: #756434)
+  * Add 12_fix_spelling_and_allignment.patch which fixes spelling in
+help context and aligment (Closes: #712642, #732852)
+  * Updated standards version to 3.9.5
+  * Fixed wrong weekday in changelog
+
+ -- Werner Detter wer...@aloah-from-hell.de  Tue, 29 Jul 2014 20:44:41 +0100
+
 mytop (1.9.1-1) unstable; urgency=low
 
   * New upstream release (Closes: #590505, #538164, #565759, #558100,
@@ -28,7 +39,7 @@
   * Deleted debian/menu, debian/postrm, debian/postinst, debian/prerm
   * Renamed mytop.example to mytop.sample.conf
 
- -- Werner Detter wer...@aloah-from-hell.de  Sat, 13 May 2013 17:41:05 +0100
+ -- Werner Detter wer...@aloah-from-hell.de  Mon, 13 May 2013 17:41:05 +0100
 
 mytop (1.6-6) unstable; urgency=low
 
diff -Nru mytop-1.9.1/debian/control mytop-1.9.1/debian/control
--- mytop-1.9.1/debian/control  2013-05-11 17:39:42.0 +0200
+++ mytop-1.9.1/debian/control  2014-07-29 21:54:51.0 +0200
@@ -4,7 +4,7 @@
 Maintainer: Werner Detter wer...@aloah-from-hell.de
 Build-Depends: debhelper (= 7)
 Homepage: http://www.mysqlfanboy.com/mytop/
-Standards-Version: 3.9.4
+Standards-Version: 3.9.5
 
 Package: mytop 
 Architecture: all
diff -Nru mytop-1.9.1/debian/patches/12_fix_spelling_and_allignment.patch 
mytop-1.9.1/debian/patches/12_fix_spelling_and_allignment.patch
--- mytop-1.9.1/debian/patches/12_fix_spelling_and_allignment.patch 
1970-01-01 01:00:00.0 +0100
+++ mytop-1.9.1/debian/patches/12_fix_spelling_and_allignment.patch 
2014-07-29 20:56:40.0 +0200
@@ -0,0 +1,35 @@
+Description: fix spelling and alignment
+Origin: Olaf van der Spek o...@xwis.net
+Author: Werner Detter wer...@aloah-from-hell.de
+DEP: 3
+Bug-Debian: http://bugs.debian.org/712642
+Bug-Debian: http://bugs.debian.org/732852
+--- a/mytop
 b/mytop
+@@ -976,7 +976,7 @@
+   my $q_diff = ( $STATUS{Questions} - $OLD_STATUS{Questions} );
+ #  print(q_diff: $STATUS{Questions} - $OLD_STATUS{Questions}  / 
$t_delta = $q_diff\n);
+ 
+-  printf( Sorts: %5.0f qps now: %4.0f Slow qps: %3.1f  Threads: 
%4.0f (%4.0f/%4.0f) %02.0f/%02.0f/%02.0f/%02.0f \n,
++  printf( Sorts: %6.0f qps now: %4.0f Slow qps: %3.1f  Threads: 
%4.0f (%4.0f/%4.0f) %02.0f/%02.0f/%02.0f/%02.0f \n,
+( $STATUS{Sort_rows} - $OLD_STATUS{Sort_rows} ) / $t_delta, 
+  ( $STATUS{Questions} - $OLD_STATUS{Questions} ) / $t_delta,
+  ( # slow now (qps)
+@@ -1682,7 +1682,7 @@
+   e - explain the query that a thread is running
+   E - display current replication error
+   f - show full query info for a given thread
+-  F - unFilter the dispaly
++  F - unfilter the display
+   h - show only a specifc host's connections
+   H - toggle the mytop header
+   i - toggle the display of idle (sleeping) threads
+@@ -1696,7 +1696,7 @@
+   r - reset the status counters (via FLUSH STATUS on your server)
+   R - change reverse IP lookup
+   s - change the delay between screen updates
+-  S - change slow quiery hightlighting
++  S - change slow query hightlighting
+   t - switch to thread view (default)
+   u - show only a specific user
+   : - enter a command (not yet implemented)
diff -Nru 
mytop-1.9.1/debian/patches/13_fix_scope_for_show_slave_status_data.patch 
mytop-1.9.1/debian/patches/13_fix_scope_for_show_slave_status_data.patch
--- mytop-1.9.1/debian/patches/13_fix_scope_for_show_slave_status_data.patch
1970-01-01 01:00:00.0 +0100
+++ mytop-1.9.1/debian/patches/13_fix_scope_for_show_slave_status_data.patch

Re: Bug#756436: RFS: mytop/1.9.1-2

2014-07-29 Thread Werner Detter
Hi,

I've just reuploaded the package to mentors. Diff attached. 

Thanks,
Werner Detter


--- 
diff -Nru mytop-1.9.1/debian/changelog mytop-1.9.1/debian/changelog
--- mytop-1.9.1/debian/changelog2013-05-11 17:42:29.0 +0200
+++ mytop-1.9.1/debian/changelog2014-07-29 23:02:41.0 +0200
@@ -1,3 +1,14 @@
+mytop (1.9.1-2) unstable; urgency=low
+
+  * Add 13_fix_scope_for_show_slave_status_data.patch which fixes incorrect
+scope for SHOW SLAVE STATUS data variable (Closes: #756434)
+  * Add 12_fix_spelling_and_allignment.patch which fixes spelling in
+help context and aligment (Closes: #712642, #732852)
+  * Updated standards version to 3.9.5
+  * Fixed wrong weekday in changelog
+
+ -- Werner Detter wer...@aloah-from-hell.de  Tue, 29 Jul 2014 20:44:41 +0100
+
 mytop (1.9.1-1) unstable; urgency=low
 
   * New upstream release (Closes: #590505, #538164, #565759, #558100,
@@ -28,7 +39,7 @@
   * Deleted debian/menu, debian/postrm, debian/postinst, debian/prerm
   * Renamed mytop.example to mytop.sample.conf
 
- -- Werner Detter wer...@aloah-from-hell.de  Sat, 13 May 2013 17:41:05 +0100
+ -- Werner Detter wer...@aloah-from-hell.de  Mon, 13 May 2013 17:41:05 +0100
 
 mytop (1.6-6) unstable; urgency=low
 
diff -Nru mytop-1.9.1/debian/control mytop-1.9.1/debian/control
--- mytop-1.9.1/debian/control  2013-05-11 17:39:42.0 +0200
+++ mytop-1.9.1/debian/control  2014-07-29 23:02:41.0 +0200
@@ -4,7 +4,7 @@
 Maintainer: Werner Detter wer...@aloah-from-hell.de
 Build-Depends: debhelper (= 7)
 Homepage: http://www.mysqlfanboy.com/mytop/
-Standards-Version: 3.9.4
+Standards-Version: 3.9.5
 
 Package: mytop 
 Architecture: all
diff -Nru mytop-1.9.1/debian/patches/12_fix_spelling_and_allignment.patch 
mytop-1.9.1/debian/patches/12_fix_spelling_and_allignment.patch
--- mytop-1.9.1/debian/patches/12_fix_spelling_and_allignment.patch 
1970-01-01 01:00:00.0 +0100
+++ mytop-1.9.1/debian/patches/12_fix_spelling_and_allignment.patch 
2014-07-29 23:02:41.0 +0200
@@ -0,0 +1,35 @@
+Description: fix spelling and alignment
+Origin: Olaf van der Spek o...@xwis.net
+Author: Werner Detter wer...@aloah-from-hell.de
+DEP: 3
+Bug-Debian: http://bugs.debian.org/712642
+Bug-Debian: http://bugs.debian.org/732852
+--- a/mytop
 b/mytop
+@@ -976,7 +976,7 @@
+   my $q_diff = ( $STATUS{Questions} - $OLD_STATUS{Questions} );
+ #  print(q_diff: $STATUS{Questions} - $OLD_STATUS{Questions}  / 
$t_delta = $q_diff\n);
+ 
+-  printf( Sorts: %5.0f qps now: %4.0f Slow qps: %3.1f  Threads: 
%4.0f (%4.0f/%4.0f) %02.0f/%02.0f/%02.0f/%02.0f \n,
++  printf( Sorts: %6.0f qps now: %4.0f Slow qps: %3.1f  Threads: 
%4.0f (%4.0f/%4.0f) %02.0f/%02.0f/%02.0f/%02.0f \n,
+( $STATUS{Sort_rows} - $OLD_STATUS{Sort_rows} ) / $t_delta, 
+  ( $STATUS{Questions} - $OLD_STATUS{Questions} ) / $t_delta,
+  ( # slow now (qps)
+@@ -1682,7 +1682,7 @@
+   e - explain the query that a thread is running
+   E - display current replication error
+   f - show full query info for a given thread
+-  F - unFilter the dispaly
++  F - unfilter the display
+   h - show only a specifc host's connections
+   H - toggle the mytop header
+   i - toggle the display of idle (sleeping) threads
+@@ -1696,7 +1696,7 @@
+   r - reset the status counters (via FLUSH STATUS on your server)
+   R - change reverse IP lookup
+   s - change the delay between screen updates
+-  S - change slow quiery hightlighting
++  S - change slow query hightlighting
+   t - switch to thread view (default)
+   u - show only a specific user
+   : - enter a command (not yet implemented)
diff -Nru 
mytop-1.9.1/debian/patches/13_fix_scope_for_show_slave_status_data.patch 
mytop-1.9.1/debian/patches/13_fix_scope_for_show_slave_status_data.patch
--- mytop-1.9.1/debian/patches/13_fix_scope_for_show_slave_status_data.patch
1970-01-01 01:00:00.0 +0100
+++ mytop-1.9.1/debian/patches/13_fix_scope_for_show_slave_status_data.patch
2014-07-29 23:24:28.0 +0200
@@ -0,0 +1,34 @@
+Description: fixes incorrect scope for SHOW SLAVE STATUS data variable
+Origin: Steffen Zieger 
+Author: Werner Detter wer...@aloah-from-hell.de
+DEP: 3
+Bug-Debian: http://bugs.debian.org/756434
+Bug-Ubuntu: https://bugs.launchpad.net/bugs/1325004
+--- a/mytop
 b/mytop
+@@ -1059,21 +1059,16 @@
+ 
+ $lines_left--;
+ 
+-my($data) = Hashes('show global variables like read_only');
+-if ($data-{Value} ne OFF)
++my($read_only) = Hashes('show global variables like read_only');
++if ($read_only-{Value} ne OFF)
+ {
+ print RED() if ($HAS_COLOR) ;
+ print  ReadOnly;
+   RESET() if ($HAS_COLOR);
+ }
+ 
+-  if(not defined $data)
+-{
+-my($data);
+-}
+-
+-  $data = Hashes('SHOW SLAVE STATUS');
+-  if ($data != 0 and defined($data-{Master_Host}))
++  my($data) = Hashes

Re: Bug#756436: RFS: mytop/1.9.1-2

2014-07-29 Thread Werner Detter

Upload didn't work with message:

gpg: Signature made Di 29 Jul 2014 21:56:43 UTC using RSA key ID BFB21FE1
gpg: can't open `/home/expo/mentors-keyring.gpg'
gpg: keydb_search failed: file open error
gpg: Can't check signature: public key not found

I'll retry uploading the package tomorrow. 

Cheers,
Werner


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/53d81b21.1070...@aloah-from-hell.de



Re: Urgent: could anyone please sponsor upload of policyd-weight due to RC-Bug _before_ package will be removed?

2014-07-19 Thread Werner Detter
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi Arno, 

 Anyway, I think I told you like two years ago already that you can ping
 me directly if you need a policyd-weight upload, didn't I?

I'm not sure but in the future I will, thanks for uploading. 

Cheers,
Werner

 I uploaded your package as is, as the diff is very small. Please
 follow-up on the bug next time, if you'd like to ping us. That being
 said, I wonder about the purpose of that hunk, but meh:

That diff was copy  paste error, sorry (from previous version 0.1.15.2-5 or 
so). 
Missed to add the right diff.  


-BEGIN PGP SIGNATURE-
Version: GnuPG/MacGPG2 v2.0.22 (Darwin)
Comment: GPGTools - http://gpgtools.org
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/

iQEcBAEBAgAGBQJTypG+AAoJECrSoAS/sh/hJJIH/jK5v3LbnJpLBOnD96d690r9
tZEkXFfZwZ1KCe1TtBn4TJKEYKTLJK5WUYrj8fLmTTEwaeEHAjcmqmTtUTj1CTLe
Zg5fhbtEnAURhVJ2CvqV0NFLx0a5A6ym6JZcqRnGSWriH2WmUYsPN/Zn1sGx7Kfj
2HWhdz7l9EKxMScf0NCspzOmL5aoM+F9zJJEO79vRJvTzw4Xpg68ZsFdWwuqWIkZ
s3pBvCyzxdtbUCdDXD/E0eonENPCy2+VdO5qvbZjkhRvaXnTLEbLiZMEfNkzix3x
O2TZ+9PxEUm57b5H7GqmBJ3WxGvKNKjuV92K3M+xDLGoSGKekv+ghb1g4w2mofk=
=CPz0
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/53ca91be.50...@aloah-from-hell.de



Re: Urgent: could anyone please sponsor upload of policyd-weight due to RC-Bug _before_ package will be removed?

2014-07-19 Thread Werner Detter
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Am 19.07.14 17:41, schrieb Werner Detter:
 Hi Arno,
 
 Anyway, I think I told you like two years ago already that you can ping
 me directly if you need a policyd-weight upload, didn't I?
 
 I'm not sure but in the future I will, thanks for uploading.
 
 Cheers,
 Werner
 
 I uploaded your package as is, as the diff is very small. Please
 follow-up on the bug next time, if you'd like to ping us. That being
 said, I wonder about the purpose of that hunk, but meh:
 
 That diff was copy  paste error, sorry (from previous version 0.1.15.2-5 or 
 so).
 Missed to add the right diff.

Just for completion, here's the diff:

diff -Nru policyd-weight-0.1.15.2/debian/changelog 
policyd-weight-0.1.15.2/debian/changelog
- --- policyd-weight-0.1.15.2/debian/changelog  2013-12-16 19:54:58.0 
+0100
+++ policyd-weight-0.1.15.2/debian/changelog2014-06-28 17:39:58.0 
+0200
@@ -1,3 +1,11 @@
+policyd-weight (0.1.15.2-8) unstable; urgency=low
+
+  * Add 10_replace_net_dns_dn_expand.patch which replaces Net::DNS::Packet
+function dh_expand() with dh_expand_PP() (Closes: #752845)
+  * Fixed description in 09_fix_net_dns_usage.patch
+
+ -- Werner Detter wer...@aloah-from-hell.de  Sat, 28 Jun 2014 09:28:19 +0100
+
 policyd-weight (0.1.15.2-7) unstable; urgency=low
 
   * Correct 09_fix_net_dns_usage.patch logic
diff -Nru policyd-weight-0.1.15.2/debian/patches/09_fix_net_dns_usage.patch 
policyd-weight-0.1.15.2/debian/patches/09_fix_net_dns_usage.patch
- --- policyd-weight-0.1.15.2/debian/patches/09_fix_net_dns_usage.patch 
2013-12-15 17:03:08.0 +0100
+++ policyd-weight-0.1.15.2/debian/patches/09_fix_net_dns_usage.patch   
2014-06-28 09:21:38.0 +0200
@@ -1,4 +1,4 @@
- -Description: fixes perl warnings in debug mode
+Description: fixes infinite loop when dns resolver is reachable only via IPv6
 Origin: Alexandre Vaissiere ava...@fmiw.org
 Author: Werner Detter wer...@aloah-from-hell.de 
 DEP: 3
diff -Nru 
policyd-weight-0.1.15.2/debian/patches/10_replace_net_dns_dn_expand.patch 
policyd-weight-0.1.15.2/debian/patches/10_replace_net_dns_dn_expand.patch
- --- policyd-weight-0.1.15.2/debian/patches/10_replace_net_dns_dn_expand.patch 
1970-01-01 01:00:00.0 +0100
+++ policyd-weight-0.1.15.2/debian/patches/10_replace_net_dns_dn_expand.patch   
2014-06-28 09:28:53.0 +0200
@@ -0,0 +1,25 @@
+Description: replace Net::DNS::Packet function dh_expand() with dh_expand_PP()
+Origin: James Cloos cl...@jhcloos.com 
+Author: Werner Detter wer...@aloah-from-hell.de
+DEP: 3
+Bug-Debian: http://bugs.debian.org/752845
+--- a/policyd-weight
 b/policyd-weight
+@@ -69,7 +69,7 @@
+ use Sys::Syslog qw(:DEFAULT setlogsock);
+ use Net::DNS;
+ use Net::IP;
+-use Net::DNS::Packet qw(dn_expand);
++use Net::DNS::Packet;
+ use IO::Socket::INET;
+ use IO::Socket::UNIX;
+ use IO::Select;
+@@ -3587,7 +3587,7 @@
+ my($id, $bf, $qc, $anc, $nsc, $arc, $qb) = 
+ unpack('n   nnn n n a*', $buf);
+ 
+-my ($dn, $offset) = dn_expand(\$qb, 0);
++my ($dn, $offset) = Net::DNS::Packet::dn_expand_PP(\$qb, 0);
+ 
+ if(($id  $anc)  ($id == $oid)  ($query eq $dn))
+ {
diff -Nru policyd-weight-0.1.15.2/debian/patches/series 
policyd-weight-0.1.15.2/debian/patches/series
- --- policyd-weight-0.1.15.2/debian/patches/series 2013-12-08 
15:22:55.0 +0100
+++ policyd-weight-0.1.15.2/debian/patches/series   2014-06-28 
09:20:16.0 +0200
@@ -7,3 +7,4 @@
 07_del_rfc-ignorant.org.patch
 08_del_dnsbl.njabl.org.patch
 09_fix_net_dns_usage.patch
+10_replace_net_dns_dn_expand.patch


-BEGIN PGP SIGNATURE-
Version: GnuPG/MacGPG2 v2.0.22 (Darwin)
Comment: GPGTools - http://gpgtools.org
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/

iQEcBAEBAgAGBQJTypMlAAoJECrSoAS/sh/hp8oH/1fb/2/D4HtipPoWxJV2DuKG
A1nU6QBYAWFEo3sPT4MLE48b8NANjY2HaaX6rfubDwl85DuG55RjhAzUoKt4G6r4
9ewoqukBAIN4RSkRryeNszcqehq/bJgxbyWt2BoHj3JFm02j3qfmDyuax9cPcWQf
NITUCWLweVW5LGZaVy+kMmiYWoTadF+D5zljYPriuAIVCWU0QMe6z2XwYb+RY7yO
w1gENUx/vs8GghCrrzwwgltDLCZO1syYrTqcoF1i3krCqZ1sagtdmJ0MADouaLmq
kYeRJ0gLTALA0If4eJqj96ICSTKb5XepOk8XDRBZmxXUO6ZzlFXA2Clxh/4+zG8=
=QBdT
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/53ca9325.4090...@aloah-from-hell.de



Urgent: could anyone please sponsor upload of policyd-weight due to RC-Bug _before_ package will be removed?

2014-07-13 Thread Werner Detter
Package: sponsorship-requests
Subject: RFS - policyd-weight/0.1.15.2-8

Hi everybody,

currently, policyd-weight is broken in unstable/testing due to recent 
libnet-dns-perl upgrade,
technically speaking policyd-weight used Net::DNS::Packet function dh_expand() 
which does not 
exist anymore. This upgrade fixes policyd-weight, policyd-weight now uses 
Net::DNS::Packet 
function dh_expand_PP(). It's not the first time I sent this sponsorship 
request ... 

 * Package name: policyd-weight
   Version : 0.1.15.2-8
   Upstream Author : Robert Felber
 * URL : www.policyd-weight.org
 * License : GPL-2+
   Section : mail

Changes:

  * Add 10_replace_net_dns_dn_expand.patch which replaces Net::DNS::Packet
function dh_expand() with dh_expand_PP() (Closes: #752845)
  * Fixed description in 09_fix_net_dns_usage.patch

It builds those binary packages:
policyd-weight - Perl policy daemon for the Postfix MTA

To access further information about this package, please visit the
following URL:

  http://mentors.debian.net/package/policyd-weight

Alternatively, one can download the package with dget using this command:

  dget -x 
http://mentors.debian.net/debian/pool/main/p/policyd-weight/policyd-weight_0.1.15.2-8.dsc

It would be great if you could upload this package for me.

Cheers,
Werner Detter


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/53c2cc46.8030...@aloah-from-hell.de



Bug#753016: RFS - policyd-weight/0.1.15.2-8 (fixes broken policyd-weight in unstable/testing rc bug #752845)

2014-06-28 Thread Werner Detter
Package: sponsorship-requests
Subject: RFS - policyd-weight/0.1.15.2-8

Hi everybody,

currently, policyd-weight is broken in unstable/testing due to recent 
libnet-dns-perl upgrade,
technically speaking policyd-weight used Net::DNS::Packet function dh_expand() 
which does not 
exist anymore. This upgrade fixes policyd-weight, policyd-weight now uses 
Net::DNS::Packet 
function dh_expand_PP().

 * Package name: policyd-weight
   Version : 0.1.15.2-8
   Upstream Author : Robert Felber
 * URL : www.policyd-weight.org
 * License : GPL-2+
   Section : mail

Changes:

  * Add 10_replace_net_dns_dn_expand.patch which replaces Net::DNS::Packet
function dh_expand() with dh_expand_PP() (Closes: #752845)
  * Fixed description in 09_fix_net_dns_usage.patch

It builds those binary packages:
policyd-weight - Perl policy daemon for the Postfix MTA

To access further information about this package, please visit the
following URL:

  http://mentors.debian.net/package/policyd-weight

Alternatively, one can download the package with dget using this command:

  dget -x 
http://mentors.debian.net/debian/pool/main/p/policyd-weight/policyd-weight_0.1.15.2-6.dsc

It would be great if you could upload this package for me.

Cheers,
Werner Detter


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/53aee41e.9050...@aloah-from-hell.de



Bug#753018: RFS - policyd-weight/0.1.15.2-8 (fixes broken policyd-weight in unstable/testing rc bug #752845)

2014-06-28 Thread Werner Detter
Package: sponsorship-requests
Subject: RFS - policyd-weight/0.1.15.2-8 (fixes broken policyd-weight in 
unstable/testing rc bug #752845)


   dget -x 
 http://mentors.debian.net/debian/pool/main/p/policyd-weight/policyd-weight_0.1.15.2-6.dsc

Sorry, right URL is, of course:
dget -x 
http://mentors.debian.net/debian/pool/main/p/policyd-weight/policyd-weight_0.1.15.2-8.dsc

Cheers, 
Werner Detter


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/53aee7c7.2050...@aloah-from-hell.de



Bug#744026: RFS: isbg/0.99-1 [#587458]

2014-04-15 Thread Werner Mahr
Am Sonntag, 13. April 2014, 23:13:57 schrieb Paul Wise:
 On Wed, Apr 9, 2014 at 8:38 PM, Werner Mahr wrote:
I am looking for a sponsor for my package isbg
 
 I don't intend to sponsor this but here is a review:
 
 Please include the manual page upstream and make setup.py install it
 properly.

When I overtook upstream work, I'll do that. For now upstream doesn't exist.
 
 The url= line in setup.py is incorrectly indented with spaces instead of
 tabs.

Upstream will fix this, when it exists again. As it even doesn't throw a 
warning, it can be considerred as working.
 
 debian/copyright is missing the license information.

Corrected
 
 debian/copyright contains a bogus URL to different software.

Corrected
 
 You might want to use the machine-readable copyright format:
 
 https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/

Converted
 
 The empty Recommends/Suggests in debian/control are unnecessary.
 
 debian/changelog should only contain one entry not two:
 
   * Initial packaging (Closes: #587458)

Corrected

 I would suggest using the new dh command from debhelper to reduce
 debian/rules to 3 lines, see the dh manual page for examples.
 
 http://manpages.debian.org/man0/dh
 https://penta.debconf.org/dc9_schedule/events/418.en.html

It's 6 lines, as I had to override dh-auto-install because of isbg.egg-info, 
like mentioned in the corresponding bug-report.

 Generally DH_VERBOSE is commented out in debian/rules.

Sorry, I forgot this one, beside deleting the commented old content of 
debian/rules, will be fixed on next upload, as just this isn't enough for a 
new upload.

 The package FTBFS when built twice in a row:
 
 dpkg-source: info: local changes detected, the modified files are:
  isbg-0.99/build/scripts-2.7/isbg.py
  isbg-0.99/isbg.egg-info/PKG-INFO
  isbg-0.99/isbg.egg-info/SOURCES.txt
  isbg-0.99/isbg.egg-info/dependency_links.txt
  isbg-0.99/isbg.egg-info/top_level.txt
 dpkg-source: error: aborting due to unexpected upstream changes, see
 /tmp/isbg_0.99-1.diff.c121eq
 dpkg-source: info: you can integrate the local changes with dpkg-source
 --commit

Fixed.

 Automated checks:
 
 https://wiki.debian.org/HowToPackageForDebian#Check_points_for_any_package
 
 lintian:
 
 I: isbg source: debian-watch-file-is-missing

Added.

 I: isbg: hyphen-used-as-minus-sign usr/share/man/man1/isbg.1.gz:46

Corrected (beside some other and a spelling)

 dpkg-gencontrol:
 
 warning: package isbg: unused substitution variable ${python:Versions}

Removed

 duck:
 
 debian/control: Homepage: http://redmine.ookook.fr/projects/isbg:  ERROR
 Curl:28 HTTP:0 Timeout was reached Connection timed out after 60001
 milliseconds

Intresstingly, it's not reachable when ipv6 is available. I can't reach it, 
too. But it's the only alternative, beside the github-repo which is less 
informative.

 lintian4py:
 
 p: isbg source: insufficient-build-dependency-on-python-helper
 dh_python2 = python (= 2.6.6-3~)

Fixed

[other errors from lintian4py (from experimental) and pep8 snipped]
I don't know python that well, I'm learning it with maintaining this package 
and getting upstream author of it, so I can't right now rate the warnings, but 
I use this prog for some time now, and it works like a charm, so I get this 
all fixed when overworking the source, but a patch for this would be bigger 
than the programm itself and getting it upstream is impossible for now.

 pyflakes:
 
 ./isbg.py:377: undefined name 'imap'

Same as above. This seems to be a false positive for a global var.

-- 
MfG usw.

Werner Mahr


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/3407882.M7qjDy6yFk@werner1



Bug#744026: RFS: isbg/0.99-1 [#587458]

2014-04-09 Thread Werner Mahr
Package: sponsorship-requests
  Severity: wishlist

  Dear mentors,

  I am looking for a sponsor for my package isbg

 * Package name: isbg
   Version : 0.99-1
   Upstream Author : Roger Binns / now maintained by Thomas Lecavelier 
 * URL : http://redmine.ookook.fr/projects/isbg
 * License : any open license
   Section : mail

  It builds those binary packages:

isbg  - IMAP Spam Begone

  To access further information about this package, please visit the following 
URL:

  http://mentors.debian.net/package/isbg


  Alternatively, one can download the package with dget using this command:

dget -x http://mentors.debian.net/debian/pool/main/i/isbg/isbg_0.99-1.dsc

  License will be gpl-v3 once I've set up the new site and took over
  maintenance and further development of the prog.

  Changes since the last upload:

  isbg (0.99-1) unstable; urgency=low

  * Initial packaging
  * Closes: #587458

 -- Werner Mahr (Vollstrecker) am...@vollstreckernet.de  Tue, 08 Apr 2014
 15:53:11 +0200

-- 
MfG usw.

Werner Mahr


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/2729896.Z8oqTUxvfc@werner1



Re: Bug#731466: RFS - policyd-weight/0.1.15.2-6

2013-12-10 Thread Werner Detter
Am 10.12.13 09:04, schrieb gregor herrmann:
 On Tue, 10 Dec 2013 07:14:02 +0100, Werner Detter wrote:
 
 -. /lib/init/vars.sh
  . /lib/lsb/init-functions

 You'll have to explain to me why this is right? /lib/init/vars.sh still
 exists and appears to contain default values. Although it does seem the
 the policyd-weight init script doesn't use of them - maybe that's the point?

 Right, but I had the lintian warning:  init.d-script-call-internal-API
 before with . /lib/init/vars.sh in the init-script. I've googled
 around and found this bugreport:

 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=710559

 So, I took it out.
 
 ... where Niels says that the lintian tag was premature and he
 deactivated it in lintian git for the time being.

Yes .. but .. Josh states:

 /etc/init.d/skeleton is wrong; only sysvinit's own internal scripts
 should use vars.sh directly.  Other scripts should source
 /lib/lsb/init-functions and use the log_* functions.

Yes tag was premature and deactivated BUT will it be reenabled if
/etc/init.d/skeleton is fixed? I can take it back in - no problem
- but then i get the mentioned lintian-warning
init.d-script-call-internal-API  so what to do here now?

Cheers,
Werner








-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/52a6e584.5010...@aloah-from-hell.de



Re: Bug#731466: RFS - policyd-weight/0.1.15.2-6

2013-12-10 Thread Werner Detter
Hi Wookey,

 So I'll upload as-is.

Thank you.

Cheers,
Werner


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/52a727f4.2090...@aloah-from-hell.de



Bug#731466: RFS - policyd-weight/0.1.15.2-6

2013-12-09 Thread Werner Detter
Please, anybody? .




Am 08.12.13 15:32, schrieb Werner Detter:
 Package: sponsorship-requests
 Subject: RFS - policyd-weight/0.1.15.2-6
 
 Hi everybody,
 hi Jan,
 
 I've recreated a new version of my package policyd-weight. This version
 just adds a patch which fixes problems with policyd-weight on
 installations where only IPv6 resolvers (fixed DNS::Net usage).
 Furthermore I've added a dependency on libio-socket-inet6-perl.
 
  * Package name: policyd-weight
Version : 0.1.15.2-6
Upstream Author : Robert Felber
  * URL : www.policyd-weight.org
  * License : GPL-2+
Section : mail
 
 Changes since the last upload:
 
 policyd-weight (0.1.15.2-6) unstable; urgency=low
   * Updated standards version to 3.9.5  
   * debian/control added dependency on libio-socket-inet6-perl
   * debian/init.d removed internal api call /lib/init/vars.sh from init scrip
   * Add 09_fix_net_dns_usage.patch which fixes infinite loop when dns resolver
 is reachable only via IPv6 (Closes: #726670)
 
 I've updated Standards already to 3.9.5 as PTS is telling me already to do so:
 http://packages.qa.debian.org/p/policyd-weight.html
 
 Furthermore - I've removed api call /lib/init/vars.sh from init script, here's
 the diff: 
 
 --- ../../policyd-weight/debian/init.d2013-12-08 14:16:33.669298059 
 +0100
 +++ init.d2013-12-08 15:27:14.695661873 +0100
 @@ -28,7 +28,6 @@
  # Gracefully exit if the package has been removed.
  test -x $DAEMON || exit 0
  
 -. /lib/init/vars.sh
  . /lib/lsb/init-functions
  
  # Read config file if it is present.
 
 It builds those binary packages:
 policyd-weight - Perl policy daemon for the Postfix MTA
 
 To access further information about this package, please visit the
 following URL:
 
   http://mentors.debian.net/package/policyd-weight
 
 Alternatively, one can download the package with dget using this command:
 
   dget -x 
 http://mentors.debian.net/debian/pool/main/p/policyd-weight/policyd-weight_0.1.15.2-6.dsc
 
 It would be great if you could upload this package for me. Should this
 changes also hit stable?
 
 Thank you,
 Werner Detter
 
 


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/52a61b24.3030...@aloah-from-hell.de



Re: Bug#731466: RFS - policyd-weight/0.1.15.2-6

2013-12-09 Thread Werner Detter
Hi,

 -. /lib/init/vars.sh
  . /lib/lsb/init-functions
 
 You'll have to explain to me why this is right? /lib/init/vars.sh still
 exists and appears to contain default values. Although it does seem the
 the policyd-weight init script doesn't use of them - maybe that's the point?

Right, but I had the lintian warning:  init.d-script-call-internal-API
before with . /lib/init/vars.sh in the init-script. I've googled
around and found this bugreport:

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=710559

So, I took it out.


 It would be great if you could upload this package for me. Should this
 changes also hit stable?
 
 I have no idea. The IPv6 changes do seem quite important. I don't
 actually know what the procedure for getting fixes into point releases
 is. Mail the release list?

I've done that before - first package needs to hit unstable/testing and
then I have to open a PU.

Thanks,
Werner


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/52a6b12a.1020...@aloah-from-hell.de



Bug#731466: RFS - policyd-weight/0.1.15.2-6

2013-12-08 Thread Werner Detter
Package: sponsorship-requests
Subject: RFS - policyd-weight/0.1.15.2-6

Hi everybody,
hi Jan,

I've recreated a new version of my package policyd-weight. This version
just adds a patch which fixes problems with policyd-weight on
installations where only IPv6 resolvers (fixed DNS::Net usage).
Furthermore I've added a dependency on libio-socket-inet6-perl.

 * Package name: policyd-weight
   Version : 0.1.15.2-6
   Upstream Author : Robert Felber
 * URL : www.policyd-weight.org
 * License : GPL-2+
   Section : mail

Changes since the last upload:

policyd-weight (0.1.15.2-6) unstable; urgency=low
  * Updated standards version to 3.9.5  
  * debian/control added dependency on libio-socket-inet6-perl
  * debian/init.d removed internal api call /lib/init/vars.sh from init scrip
  * Add 09_fix_net_dns_usage.patch which fixes infinite loop when dns resolver
is reachable only via IPv6 (Closes: #726670)

I've updated Standards already to 3.9.5 as PTS is telling me already to do so:
http://packages.qa.debian.org/p/policyd-weight.html

Furthermore - I've removed api call /lib/init/vars.sh from init script, here's
the diff: 

--- ../../policyd-weight/debian/init.d  2013-12-08 14:16:33.669298059 +0100
+++ init.d  2013-12-08 15:27:14.695661873 +0100
@@ -28,7 +28,6 @@
 # Gracefully exit if the package has been removed.
 test -x $DAEMON || exit 0
 
-. /lib/init/vars.sh
 . /lib/lsb/init-functions
 
 # Read config file if it is present.

It builds those binary packages:
policyd-weight - Perl policy daemon for the Postfix MTA

To access further information about this package, please visit the
following URL:

  http://mentors.debian.net/package/policyd-weight

Alternatively, one can download the package with dget using this command:

  dget -x 
http://mentors.debian.net/debian/pool/main/p/policyd-weight/policyd-weight_0.1.15.2-6.dsc

It would be great if you could upload this package for me. Should this
changes also hit stable?

Thank you,
Werner Detter


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/52a482f6.2060...@aloah-from-hell.de



Packaging C-Library

2013-12-08 Thread Werner Detter
Hi everybody, 

we've developed a lightweight mime library in C which attemps to be a general 
library for 
parsing and creating mime email messages and is designed to provide an easy to 
use and easy
to integrate interface for developers. I am also one of the upstream authors 
want to take care
about the package. 


http://www.libcmime.org


The library has a few dependencies:
* cmake = 2.6 (http://www.cmake.org/)
* Flex = 2.5.33 (http://flex.sourceforge.net/)
* Bison = 1.8 (http://www.gnu.org/software/bison/)

I've also tried to create a debian package. Lintian gives me the following 
messages:

N: Processing binary package libcmime (version 0.1.9-1, arch amd64) ...
W: libcmime: package-name-doesnt-match-sonames libcmime0.1
N: 
N:The package name of a library package should usually reflect the soname
N:of the included library. The package name can determined from the
N:library file name with the following code snippet:
N:
N: $ objdump -p /path/to/libfoo-bar.so.1.2.3 | sed -n 
-e's/^[[:space:]]*SONAME[[:space:]]*//p' | \
N: sed -r -e's/([0-9])\.so\./\1-/; s/\.so(\.|$)//; y/_/-/; s/(.*)/\L/'
N:
N:Severity: normal, Certainty: possible
N:
N:Check: binaries, Type: binary, udeb




X: libcmime: shlib-calls-exit usr/lib/libcmime.so.0.1.9
N: 
N:The listed shared library calls the C library exit() or _exit()
N:functions.
N:
N:In the case of an error, the library should instead return an
N:appropriate error code to the calling program which can then determine
N:how to handle the error, including performing any required clean-up.
N:
N:In most cases, removing the call should be discussed with upstream,
N:particularly as it may produce an ABI change.
N:
N:Severity: wishlist, Certainty: possible
N:
N:Check: shared-libs, Type: binary, udeb
N:
N:This tag is marked experimental, which means that the code that
N:generates it is not as well-tested as the rest of Lintian and might
N:still give surprising results. Feel free to ignore experimental tags
N:that do not seem to make sense, though of course bug reports are always
N:welcome.




W: libcmime: non-dev-pkg-with-shlib-symlink usr/lib/libcmime.so.0.1.9 
usr/lib/libcmime.so
N: 
N:Although this package is not a -dev package, it installs a
N:libsomething.so symbolic link referencing the corresponding shared
N:library. When the link doesn't include the version number, it is used by
N:the linker when other programs are built against this shared library.
N:
N:Shared libraries are supposed to place such symbolic links in their
N:respective -dev packages, so it is a bug to include it with the main
N:library package.
N:
N:However, if this is a small package which includes the runtime and the
N:development libraries, this is not a bug. In the latter case, please
N:override this warning.
N:
N:Refer to Debian Policy Manual section 8.4 (Development files) for
N:details.
N:
N:Severity: normal, Certainty: possible
N:
N:Check: shared-libs, Type: binary, udeb



As this is my first debian debian package which will provide a c library I ask 
for some suggestions
on how to clean these things. 

* The package is a small package. Should it, as it provides a shared lib, be 
broken up into to seperate
packages? Should it be libcmime-dev or just libcmime. Currently it's named just 
libcmime.

* License is not up to date yet in debian/copyright - we switched to MIT 


I've uploaded a version to mentors:

http://mentors.debian.net/package/libcmime

The respective dsc file can be found at:
http://mentors.debian.net/debian/pool/main/libc/libcmime/libcmime_0.1.9-1.dsc

If you do not yet have a sponsor for your package you may want to go to
http://mentors.debian.net/sponsors/rfs-howto/libcmime

Any help for getting this package clear is appreciated.

Thank you,
Werner Detter


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/52a4919f.9090...@aloah-from-hell.de



Re: Packaging C-Library

2013-12-08 Thread Werner Detter
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Am 08.12.13 17:22, schrieb Vincent Bernat:
 ❦  8 décembre 2013 16:34 CET, Werner Detter
 wer...@aloah-from-hell.de :
 
 * The package is a small package. Should it, as it provides a
 shared lib, be broken up into to seperate packages? Should it be
 libcmime-dev or just libcmime. Currently it's named just
 libcmime.
 
 Yes, libcmime-dev will contain the .so symlink, the .h headers,
 the pkg-config file, any .a if you want to provide ones. And the
 binary package should be named libcmime0.1 (or libcmime-0.1) to
 reflect the soname that you use. Such a name is important because
 you don't want users of your library to be broken on updates.
 
 Optionally, you can provide a -dbg package.

Shouldn't it be just a -dev package as there is no binary within the
package itself but just a library?





-BEGIN PGP SIGNATURE-
Version: GnuPG/MacGPG2 v2.0.22 (Darwin)
Comment: GPGTools - http://gpgtools.org
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/

iQEcBAEBAgAGBQJSpKeOAAoJECrSoAS/sh/hspsH/1VE7j5xOmz7P6lvM0y09Qd7
4qftr6XnW9YQt5U7d6pkksPXVWZn0nY/ihpwY5vMZerleSIpqEIcsnYdemmG+7/o
KN3WIrc7cB7graQ/d11MU8tnmBtxwdoonX+Kv6P6Cwmhxb/FMCTy50eARCoh+X12
DOu8aG02maK+OXZOQKqfaiQ3qNp0vR0KccLkUDISHNvuYGRIy5kYEyozNdxOYWAg
0ItX+IlS/rzqWfXxwR6ELf/bdrLrHwn2sjoF3qTFAMUupGCcG0jUTfO5y+D/1uld
u+lzfm5rcS9WSCN15vJwM0lnJBKeFeATVs2K6IYXXEGJ6Svt/oFL6m6q+RORNeM=
=AbTf
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/52a4a78e.2080...@aloah-from-hell.de



Re: Packaging C-Library

2013-12-08 Thread Werner Detter
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

 /usr/lib/libcmime.so.0.1 (symlink to the next one) 
 /usr/lib/libcmime.so.0.1.19
 
 In the -dev package, you have
 
 /usr/lib/libcmime.so (symlink to 0.1.19) /usr/include/cmime/*.h 
 /usr/lib/pkgconfig/cmime.pc

Ok, that helped a lot :) I'll try to implement your proposals and
will get back to the list if I'm stuck with something else.

 much. Moreover, as you are packaging a lib, you should try to make
 it multiarch enabled (unlike the above example): 
 https://wiki.debian.org/Multiarch/Implementation

OK, thanks.

-BEGIN PGP SIGNATURE-
Version: GnuPG/MacGPG2 v2.0.22 (Darwin)
Comment: GPGTools - http://gpgtools.org
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/

iQEcBAEBAgAGBQJSpK+RAAoJECrSoAS/sh/hdS4H/2SsXbAnOw3JYC9P82Gz36aQ
6ogzj56cgjL2B3r65fSBGzkL5eaOrDVY2A03tbfOP+dFQ2ubVJc3r+5WilR0C4SZ
NiKujjpxsh1Lx+58+292B6KXjqEPp7O5yfN/vJBEeemmGajGt3PGpulRVIyAd1MV
dXz9h6QUGKI8NMME71WHwXggw9Q+BaRZrSHhHeVVmt6+1k8e67xguu+Kb9/hu/S4
vgqhqqPW6IW15qAfzglzzAAl+Do0/ohPfvPFVyuw+dqJwTzXnPYjbymyKBwQYwwN
4ebTdOhjGKb1IJRIOZ5jkrM4srPq7lwny0gIpV3HuJot7FwRVj6rt/JsWpZdbYE=
=eLHz
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/52a4af91.9030...@aloah-from-hell.de



Bug#731466: RFS - policyd-weight/0.1.15.2-6

2013-12-05 Thread Werner Detter
Package: sponsorship-requests
Subject: RFS - policyd-weight/0.1.15.2-6

Hi everybody,
hi Jan,

I've created a new version of my package policyd-weight. This version
just adds a patch which fixes problems with policyd-weight on
installations where only IPv6 resolvers (fixed DNS::Net usage).
Furthermore I've added a dependency on libio-socket-inet6-perl.

 * Package name: policyd-weight
   Version : 0.1.15.2-6
   Upstream Author : Robert Felber
 * URL : www.policyd-weight.org
 * License : GPL-2+
   Section : mail

Changes since the last upload:

  * Updating standards version to 3.9.5 
  * Add 09_fix_net_dns_usage.patch which fixes infinite loop when dns resolver
is reachable only via IPv6 (Closes: #726670)
  * debian/control added dependency on libio-socket-inet6-perl


I've updated Standards already to 3.9.5 as PTS is telling me already to do so:
http://packages.qa.debian.org/p/policyd-weight.html

It builds those binary packages:
policyd-weight - Perl policy daemon for the Postfix MTA

To access further information about this package, please visit the
following URL:

  http://mentors.debian.net/package/policyd-weight

Alternatively, one can download the package with dget using this command:

  dget -x 
http://mentors.debian.net/debian/pool/main/p/policyd-weight/policyd-weight_0.1.15.2-6.dsc

It would be great if you could upload this package for me. Should this
changes also hit stable?

Thank you,
Werner Detter


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/52a0bd19.1070...@aloah-from-hell.de



Bug#728758: RFS - policyd-weight/0.1.15.2-6

2013-11-29 Thread Werner Detter
Package: sponsorship-requests
Subject: RFS - policyd-weight/0.1.15.2-6


Hi everybody,

I've created a new version of my package policyd-weight. This version
just adds a patch which fixes problems with policyd-weight on
installations where only IPv6 resolvers (fixed DNS::Net usage).
Furthermore I've added a dependency on libio-socket-inet6-perl.

 * Package name: policyd-weight
   Version : 0.1.15.2-6
   Upstream Author : Robert Felber
 * URL : www.policyd-weight.org
 * License : GPL-2+
   Section : mail

Changes since the last upload:

  * Add 09_fix_net_dns_usage.patch which fixes infinite loop when dns
resolver
is reachable only via IPv6 (Closes: #726670)
  * debian/control added dependency on libio-socket-inet6-perl

It builds those binary packages:

policyd-weight - Perl policy daemon for the Postfix MTA

To access further information about this package, please visit the
following URL:

  http://mentors.debian.net/package/policyd-weight

Alternatively, one can download the package with dget using this command:

  dget -x
http://mentors.debian.net/debian/pool/main/p/policyd-weight/policyd-weight_0.1.15.2-6.dsc

It would be great if you could upload this package for me. Should this
changes also hit stable?
Thank you and happy working,
Werner Detter




Am 16.11.13 14:05, schrieb Werner Detter:
 
 Hi,
 
 could anyone upload this package for me ?
 
 Thanks,
 Werner Detter
 
 
 
 Am 05.11.13 09:26, schrieb Werner Detter:
 Package: sponsorship-requests
 Subject: RFS - policyd-weight/0.1.15.2-6


 Hi everybody,

 I've created a new version of my package policyd-weight. This version
 just adds a patch which fixes problems with policyd-weight on
 installations where only IPv6 resolvers (fixed DNS::Net usage).
 Furthermore I've added a dependency on libio-socket-inet6-perl.

  * Package name: policyd-weight
Version : 0.1.15.2-6
Upstream Author : Robert Felber
  * URL : www.policyd-weight.org
  * License : GPL-2+
Section : mail

 Changes since the last upload:

   * Add 09_fix_net_dns_usage.patch which fixes infinite loop when dns
 resolver
 is reachable only via IPv6 (Closes: #726670)
   * debian/control added dependency on libio-socket-inet6-perl

 It builds those binary packages:

 policyd-weight - Perl policy daemon for the Postfix MTA

 To access further information about this package, please visit the
 following URL:

   http://mentors.debian.net/package/policyd-weight

 Alternatively, one can download the package with dget using this command:

   dget -x
 http://mentors.debian.net/debian/pool/main/p/policyd-weight/policyd-weight_0.1.15.2-6.dsc

 It would be great if you could upload this package for me. Should this
 changes also hit stable?
 Thank you and happy working,
 Werner Detter


 


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/5298917c.4060...@aloah-from-hell.de



Bug#728758: RFS - policyd-weight/0.1.15.2-6

2013-11-16 Thread Werner Detter

Hi,

could anyone upload this package for me ?

Thanks,
Werner Detter



Am 05.11.13 09:26, schrieb Werner Detter:
 Package: sponsorship-requests
 Subject: RFS - policyd-weight/0.1.15.2-6
 
 
 Hi everybody,
 
 I've created a new version of my package policyd-weight. This version
 just adds a patch which fixes problems with policyd-weight on
 installations where only IPv6 resolvers (fixed DNS::Net usage).
 Furthermore I've added a dependency on libio-socket-inet6-perl.
 
  * Package name: policyd-weight
Version : 0.1.15.2-6
Upstream Author : Robert Felber
  * URL : www.policyd-weight.org
  * License : GPL-2+
Section : mail
 
 Changes since the last upload:
 
   * Add 09_fix_net_dns_usage.patch which fixes infinite loop when dns
 resolver
 is reachable only via IPv6 (Closes: #726670)
   * debian/control added dependency on libio-socket-inet6-perl
 
 It builds those binary packages:
 
 policyd-weight - Perl policy daemon for the Postfix MTA
 
 To access further information about this package, please visit the
 following URL:
 
   http://mentors.debian.net/package/policyd-weight
 
 Alternatively, one can download the package with dget using this command:
 
   dget -x
 http://mentors.debian.net/debian/pool/main/p/policyd-weight/policyd-weight_0.1.15.2-6.dsc
 
 It would be great if you could upload this package for me. Should this
 changes also hit stable?
 Thank you and happy working,
 Werner Detter
 
 


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/52876db3.6030...@aloah-from-hell.de



Bug#728758: RFS - policyd-weight/0.1.15.2-6

2013-11-05 Thread Werner Detter
Package: sponsorship-requests
Subject: RFS - policyd-weight/0.1.15.2-6


Hi everybody,

I've created a new version of my package policyd-weight. This version
just adds a patch which fixes problems with policyd-weight on
installations where only IPv6 resolvers (fixed DNS::Net usage).
Furthermore I've added a dependency on libio-socket-inet6-perl.

 * Package name: policyd-weight
   Version : 0.1.15.2-6
   Upstream Author : Robert Felber
 * URL : www.policyd-weight.org
 * License : GPL-2+
   Section : mail

Changes since the last upload:

  * Add 09_fix_net_dns_usage.patch which fixes infinite loop when dns
resolver
is reachable only via IPv6 (Closes: #726670)
  * debian/control added dependency on libio-socket-inet6-perl

It builds those binary packages:

policyd-weight - Perl policy daemon for the Postfix MTA

To access further information about this package, please visit the
following URL:

  http://mentors.debian.net/package/policyd-weight

Alternatively, one can download the package with dget using this command:

  dget -x
http://mentors.debian.net/debian/pool/main/p/policyd-weight/policyd-weight_0.1.15.2-6.dsc

It would be great if you could upload this package for me. Should this
changes also hit stable?
Thank you and happy working,
Werner Detter


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/5278abb3.6020...@aloah-from-hell.de



Bug#720014: RFS: openlugaru{,-data}/0~20110520.1+hge4354{+dfsg-4,2} -- namechange for a rabbit game

2013-08-17 Thread Martin Erik Werner
Package: sponsorship-requests
Severity: normal
X-Debbugs-CC: pkg-games-de...@lists.alioth.debian.org

Hi mentors and pkg-gamers!

I am looking for a sponsor for my openlugaru{,-data} packages,
formerly lugaru{,-data}.

This upload is primarly a name-change; I have been contacted by Wolfire
Games which requested that the name be changed in order to distinguish
this version from the one that is still commercially sold by Wolfire
Games.

I have taken to renaming both binaries and source packages, and added a
Replaces+Breaks on the old name. If things look in order I'd be happy if
you could upload them :)

  -//-

* Package name : openlugaru
  Version  : 0~20110520.1+hge4354+dfsg-4
  Upstream Authors : Wolfire Games cont...@wolfire.com
 Neal Gompa ngomp...@gmail.com
 Alexander Monakov amona...@gmail.com
 Côme BERNIGAUD come.bernig...@gmail.com
* URL  : https://code.google.com/p/lugaru/
* License  : GPL-2+
  Section  : contrib/games

  Binary Package   : openlugaru - third-person rabbit action game

Changes since last version:
openlugaru (0~20110520.1+hge4354+dfsg-4) unstable; urgency=low

  * Rename package to openlugaru, in order to distinguish from official Lugaru
which is still distributed by Wolfire Games
- add debian/patches/change-homedir-to-use-openlugaru-name.patch
  * Update Standards-Version to 3.9.4
- Add -b debian_source in Vcs-Git field
  * Change to canonical VCS-links, (anonscm)

 -- Martin Erik Werner martinerikwer...@gmail.com  Fri, 16 Aug 2013 00:54:13 
+0200

  -//-

 * Package name : openlugaru-data
   Version  : 0~20110520.1+hge4354-2
   Upstream Authors : Wolfire Games cont...@wolfire.com
  Neal Gompa ngomp...@gmail.com
  Alexander Monakov amona...@gmail.com
  Côme BERNIGAUD come.bernig...@gmail.com
 * URL  : https://code.google.com/p/lugaru/
 * License  : CC-BY-SA-3.0 and custom-noncommercial
   Section  : non-free/games

Changes since last version:
openlugaru-data (0~20110520.1+hge4354-2) unstable; urgency=low

  * Rename package to openlugaru-data, in order to distinguish from
official Lugaru which is still distributed by Wolfire Games
  * Update Standards-Version to 3.9.4
- Set correct DEP-5 Format: link
- Add -b debian_data in Vcs-Git field
  * Change to canonical VCS-links, (anonscm)
  * Arand - Martin, same person, now with real name

 -- Martin Erik Werner martinerikwer...@gmail.com  Fri, 16 Aug 2013 00:53:23 
+0200

  -//-

The packages are up on mentors:
http://mentors.debian.net/package/openlugaru
http://mentors.debian.net/package/openlugaru-data
  dget -x 
http://mentors.debian.net/debian/pool/contrib/o/openlugaru/openlugaru_0~20110520.1+hge4354+dfsg-4.dsc
  dget -x 
http://mentors.debian.net/debian/pool/non-free/o/openlugaru-data/openlugaru-data_0~20110520.1+hge4354-2.dsc

Both packages are maintained in a common git repository
http://anonscm.debian.org/gitweb/?p=pkg-games/openlugaru.git
  git clone git+ssh://git.debian.org/git/pkg-games/openlugaru.git

The relevant branches are 'debian_source' and 'debian_data' (somewhat
clunky setup as a result of me experimenting with importingi directly
from hg without tarballs, README.source for more details).


Thanks
--
Martin Erik Werner martinerikwer...@gmail.com


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20130817185611.GA19960@mas



Re: Bug#706820: RFS: mytop/1.9.1-1 ITA

2013-05-12 Thread Werner Detter
Hi Sven,

 Thanks Werner, uploaded a few minutes ago.

Thanks.

Werner


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/518f8aaf.60...@aloah-from-hell.de



Re: Bug#706820: RFS: mytop/1.9.1-1 ITA

2013-05-11 Thread Werner Detter
Hi,

 I'll check the new package over the weekend but won't get it done today.

updated and uploaded the package. URL in manpage is now also fixed.
Also, I've informed upstream about all patches we've applied and
sent them those.

Cheers,
Werner


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/518e6abc.3090...@aloah-from-hell.de



Re: Bug#706820: RFS: mytop/1.9.1-1 ITA

2013-05-09 Thread Werner Detter

 - the manpage states the wrong homepage (minor issue)

Well, actually the first releases till Version 1.6 came from origin
upstream - http://jeremy.zawodny.com/mysql/mytop/

After 1.6, seems like, another upstream took ofter maintenance, seems
like: http://www.mysqlfanboy.com/mytop/

how to handle this?

Werner


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/518bdd72.4060...@aloah-from-hell.de



Re: Bug#706820: RFS: mytop/1.9.1-1 ITA

2013-05-09 Thread Werner Detter
Hi,

 - verbose mode in debian/rules is still enabled
disabled.

 - dependency on libconfig-inifiles-perl got lost
reimplemented.

 - Please, you run dh_perl read the fine manpage and find out how
   ${perl:Depends} could help you. Doesn't catch all modules here
   but would be a start.

in fact it just catches perl - here's the output of substvars after
the build:

perl:Depends=perl

So i just get rid of the perl static definition in debian/control
and left the other modules listet.

Latest package uploaded. Thanks.


Werner




-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/518be42c.1090...@aloah-from-hell.de



Bug#706820: RFS: mytop/1.9.1-1 ITA

2013-05-07 Thread Werner Detter
reopen 706820 wer...@aloah-from-hell.de


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/51893074.7050...@aloah-from-hell.de



Re: Bug#706820: RFS: mytop/1.9.1-1 ITA

2013-05-06 Thread Werner Detter
Hi everybody, 

I've recreated and uploaded the package to mentors. I've rewritten debian/rules 
from scratch to get 
rid of the old build style from the origin package maintainer. 

Could anyone please have a look at the package? :) 

Thank you and best regards,
Werner Detter



  * New upstream release (Closes: #590505, #538164, #565759, #558100,
#500078)
  * New Maintainer (Closes: #704450)
  * Updating standards version to 3.9.4
  * Switch to dpkg-source 3.0 (quilt) format 
- Add debian/source/format
  * Checked and recreated patchs from old upstream against new version. 
Recreated necessary patches against new upstream version.
- Add 01_fix_pod.patch
- Add 02_remove_db_test.patch
- Add 03_fix_newlines.patch 
- Add 04_fix_unitialized.patch
- Add 05_prevent_ctrl_char_printing.patch
- Add 06_fix_screenwidth.patch
- Add 07_add_doc_on_missing_cli_options.patch
- Add 08_add_mycnf.patch, contains now error handling (Closes: #627300,
  #694555)
- Add 09_q_is_quit.patch
  * Add 10_fix_warnings.patch which fixes release detection and some perl 
warnings
  * Deleted README.Source
  * Update to debhelper 7
  * debian/copyright revised for DEP5 specifications
  * Recreated debian/rules
  * Deleted debian/menu, debian/postrm, debian/postinst, debian/prerm
  * Renamed mytop.example to mytop.sample.conf



-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/51880da5.7050...@aloah-from-hell.de



Bug#706820: RFS: mytop/1.9.1-1 ITA

2013-05-06 Thread Werner Detter
reopen 706820 RFS: mytop/1.9.1-1 ITA

I've just recreated a new package and uploaded it again to mentors.
That's why there was no package on mentors for a short period of
time.

Regards,
Werner


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/518812ca.6040...@aloah-from-hell.de



Bug#706820: RFS: mytop/1.9.1-1 ITA

2013-05-06 Thread Werner Detter
reopen 706820 ba...@debian.org

I've just recreated a new package and uploaded it again to mentors.
That's why there was no package on mentors for a short period of
time.

Regards,
Werner


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/5188173a.7050...@aloah-from-hell.de



Bug#706820: RFS: mytop/1.9.1-1 ITA

2013-05-06 Thread Werner Detter
reopen 706820 wer...@aloah-from-hell.de

I've just recreated a new package and uploaded it again to mentors.
That's why there was no package on mentors for a short period of
time.

Regards,
Werner


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/5188192d.3000...@aloah-from-hell.de



Bug#706820: RFS: mytop/1.9.1-1 ITA

2013-05-06 Thread Werner Detter
reopen 706820 wer...@aloah-from-hell.de

I've just recreated a new package and uploaded it again to mentors.
That's why there was no package on mentors for a short period of
time.

Regards,
Werner


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/51881942.3040...@aloah-from-hell.de



Bug#706820: RFS: mytop/1.9.1-1 ITA

2013-05-05 Thread Werner Detter
Package: sponsorship-requests
Severity: normal

Dear Maintainer, 

The current mytop package is pretty old and the package was set to O 
some days ago. I've recreated the package with the latest upstream
version available, checked and applied if necessary the debian patches
from the old debian package and made some more improvements. 

 * Package name: mytop
   Version : 1.9.1-1
   Upstream Author : Jeremy D. Zawodny jer...@zawodny.com,
 Mark Grennan m...@grennan.com
 * URL : http://www.mysqlfanboy.com/mytop/ 
 * License : GPL-2+ 
   Section : utils

It builds those binary packages:
mytop - top like query monitor for MySQL

To access further information about this package, please visit the following 
URL:
http://mentors.debian.net/package/mytop

Alternatively, one can download the package with dget using this command:
dget -x http://mentors.debian.net/debian/pool/main/m/mytop/mytop_1.9.1-1.dsc

Changes since the last upload:
  * New upstream release (Closes: #590505)
  * New Maintainer (Closes: #704450)
  * Updating standards version to 3.9.4
  * Switch to dpkg-source 3.0 (quilt) format 
- Add debian/source/format
- Checked and recreated patches from old upstream version against new 
  release
  * Checked and recreated patchs from old upstream against new version
- Add 01_fix_pod.patch
- Add 02_remove_db_test.patch
- Add 03_fix_newlines.patch 
- Add 04_fix_unitialized.patch
- Add 05_fix_terminal_flicker.patch
- Add 06_prevent_ctrl_char_printing.patch
- Add 07_fix_screenwidth.patch (Closes: #565759)
- Add 08_add_doc_on_missing_cli_options.patch
- Add 09_add_mycnf.patch, contains now error handling (Closes: #627300,
  #694555)
- Add 10_q_is_quilt.patch
- Add 11_fix_warnings.patch
  * Deleted README.Source
  * Update to debhelper 7
  * debian/copyright revised for DEP5 specifications

Regards,
Werner Detter

-- System Information:
Debian Release: 7.0
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-4-amd64 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20130505094031.11938.59182.reportbug@smaint.localdomain



Re: Bug#706820: RFS: mytop/1.9.1-1 ITA

2013-05-05 Thread Werner Detter
Hi, 

recreated an uploaded the package due to some more reported bugs which have 
been addressed by
the new upstream version. 

  * New upstream release (Closes: #590505, #538164, #565759, #558100,
#500078)
  * New Maintainer (Closes: #704450)
  * Updating standards version to 3.9.4
  * Switch to dpkg-source 3.0 (quilt) format 
- Add debian/source/format
  * Checked and recreated patchs from old upstream against new version. 
Recreated necessary patches against new upstream version.
- Add 01_fix_pod.patch
- Add 02_remove_db_test.patch
- Add 03_fix_newlines.patch 
- Add 04_fix_unitialized.patch
- Add 05_prevent_ctrl_char_printing.patch
- Add 06_fix_screenwidth.patch
- Add 07_add_doc_on_missing_cli_options.patch
- Add 08_add_mycnf.patch, contains now error handling (Closes: #627300,
  #694555)
- Add 09_q_is_quilt.patch
  * Add 10_fix_warnings.patch which fixes release detection and some perl 
warnings
  * Deleted README.Source
  * Update to debhelper 7
  * debian/copyright revised for DEP5 specifications
  * Updated debian/rules
  * Modified debian/postrm, debian/prerm, debian/postinst

Thank you,
Werner



Am 05.05.13 11:40, schrieb Werner Detter:
 Package: sponsorship-requests
 Severity: normal
 
 Dear Maintainer, 
 
 The current mytop package is pretty old and the package was set to O 
 some days ago. I've recreated the package with the latest upstream
 version available, checked and applied if necessary the debian patches
 from the old debian package and made some more improvements. 
 
  * Package name: mytop
Version : 1.9.1-1
Upstream Author : Jeremy D. Zawodny jer...@zawodny.com,
Mark Grennan m...@grennan.com
  * URL : http://www.mysqlfanboy.com/mytop/ 
  * License : GPL-2+ 
Section : utils
 
 It builds those binary packages:
 mytop - top like query monitor for MySQL
 
 To access further information about this package, please visit the following 
 URL:
 http://mentors.debian.net/package/mytop
 
 Alternatively, one can download the package with dget using this command:
 dget -x http://mentors.debian.net/debian/pool/main/m/mytop/mytop_1.9.1-1.dsc
 
 Changes since the last upload:
   * New upstream release (Closes: #590505)
   * New Maintainer (Closes: #704450)
   * Updating standards version to 3.9.4
   * Switch to dpkg-source 3.0 (quilt) format 
 - Add debian/source/format
 - Checked and recreated patches from old upstream version against new 
   release
   * Checked and recreated patchs from old upstream against new version
 - Add 01_fix_pod.patch
 - Add 02_remove_db_test.patch
 - Add 03_fix_newlines.patch 
 - Add 04_fix_unitialized.patch
 - Add 05_fix_terminal_flicker.patch
 - Add 06_prevent_ctrl_char_printing.patch
 - Add 07_fix_screenwidth.patch (Closes: #565759)
 - Add 08_add_doc_on_missing_cli_options.patch
 - Add 09_add_mycnf.patch, contains now error handling (Closes: #627300,
   #694555)
 - Add 10_q_is_quilt.patch
 - Add 11_fix_warnings.patch
   * Deleted README.Source
   * Update to debhelper 7
   * debian/copyright revised for DEP5 specifications
 
 Regards,
 Werner Detter
 
 -- System Information:
 Debian Release: 7.0
   APT prefers unstable
   APT policy: (500, 'unstable')
 Architecture: amd64 (x86_64)
 
 Kernel: Linux 3.2.0-4-amd64 (SMP w/1 CPU core)
 Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
 Shell: /bin/sh linked to /bin/dash
 
 


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/518681bf.5090...@aloah-from-hell.de



Re: Bug#706820: RFS: mytop/1.9.1-1 ITA

2013-05-05 Thread Werner Detter
Hi,

  * URL : http://www.mysqlfanboy.com/mytop/ 
 
 Unreachable from here currently, when have you reached that site the
 last time?

Yesterday as I started with the package yesterday and downloaded the
sources from there.

 Uh fun to review ... I find the naming of patch 10 a bit confusing or is this
 a pun I don't get currently?

That was a typo - was supposed to be quit instead of quilt :) Fixed
in latest uploaded package.

 How many of these patches have been proposed for upstream inclusion?

Well, all patches that have been addressed in the new package where
transferred from the old package and recreated an reapplied against
the latest sources. Patches that have not been recreated were fixed
in the new upstream release already or they were not appropriate any
more.

 Beside that I wonder if it would make sense to rely more on the dh_ tools
 instead of self crafted stuff like
 
 cd debian/tmp ; find . -type f ! -path ./DEBIAN* -print0 | xargs -0 
 md5sum | sed -e 's!\./!!'  DEBIAN/md5sums
 chmod 644 debian/tmp/DEBIAN/md5sums
 dpkg-gencontrol -isp
 chown -R root.root debian/tmp
 chmod -R go=rX debian/tmp
 dpkg --build debian/tmp ..
 dh_perl
 dh_md5sums
 
 It doesn't even make sense to generate the md5sum file first by hand, create
 the package itself and then run dh_perl and dh_md5sums. dh_perl even throws
 out a visible message that someting is wrong. And yes that is wrong.

Right, the hand stuff still comes from the old package in Debian, I
just added dh_perl and dh_md5sums by hand as i wanted to get rid of
the handmade stuff but didn't finish.

 The naming of the mytop.example file is also a bit unlucky since that would
 also match dh_installexamples, and yes I see that's currently not used
 in this package but could be a source of further confusion.

Also from the old package.

 
 For the maintainerscripts I'll have to reread the relevant policy parts myself
 first. If it was my package I wouldn't even install a menu item for such a
 tool but that's up to you in the end. Oh and dh_installmenu exists to free
 one from the burden of writing the correct maintainer scripts for that task.

I have to chack that.

Thanks,
Werner


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/51868d26.4090...@aloah-from-hell.de



Re: Bug#706820: RFS: mytop/1.9.1-1 ITA

2013-05-05 Thread Werner Detter
Hi,

I'm rewriting the old debian/rules file and will let you know as soon
as there is an updated version on mentors.

best,
Werner


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/5186a2b4.6080...@aloah-from-hell.de



Re: Bug#706820: RFS: mytop/1.9.1-1 ITA

2013-05-05 Thread Werner Detter
Hi, 

I've the mentioned modifications and moved most of the stuff in debian/rules 
from the old
manual way to debhelper functins where possible. See the new changelog entry: 

* New upstream release (Closes: #590505, #538164, #565759, #558100,
#500078)
  * New Maintainer (Closes: #704450)
  * Updating standards version to 3.9.4
  * Switch to dpkg-source 3.0 (quilt) format 
- Add debian/source/format
  * Checked and recreated patchs from old upstream against new version. 
Recreated necessary patches against new upstream version.
- Add 01_fix_pod.patch
- Add 02_remove_db_test.patch
- Add 03_fix_newlines.patch 
- Add 04_fix_unitialized.patch
- Add 05_prevent_ctrl_char_printing.patch
- Add 06_fix_screenwidth.patch
- Add 07_add_doc_on_missing_cli_options.patch
- Add 08_add_mycnf.patch, contains now error handling (Closes: #627300,
  #694555)
- Add 09_q_is_quit.patch
  * Add 10_fix_warnings.patch which fixes release detection and some perl 
warnings
  * Deleted README.Source
  * Update to debhelper 7
  * debian/copyright revised for DEP5 specifications
  * Updated debian/rules
  * Deleted debian/menu, debian/postrm, debian/postinst, debian/prerm
  * Renamed mytop.example to mytop.sample.conf

 For the maintainerscripts I'll have to reread the relevant policy parts myself
 first. If it was my package I wouldn't even install a menu item for such a
 tool but that's up to you in the end. Oh and dh_installmenu exists to free
 one from the burden of writing the correct maintainer scripts for that task.

I wiped out this menu stuff. 

Regards,
Werner


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/5186aa62.6040...@aloah-from-hell.de



Re: Bug#706820: RFS: mytop/1.9.1-1 ITA

2013-05-05 Thread Werner Detter
Hm,

the Binary is not installed in /usr/bin ... well, done for today I will
look at this soon.

Regards,
werner


Am 05.05.13 20:52, schrieb Werner Detter:
 Hi, 
 
 I've the mentioned modifications and moved most of the stuff in debian/rules 
 from the old
 manual way to debhelper functins where possible. See the new changelog entry: 
 
 * New upstream release (Closes: #590505, #538164, #565759, #558100,
 #500078)
   * New Maintainer (Closes: #704450)
   * Updating standards version to 3.9.4
   * Switch to dpkg-source 3.0 (quilt) format 
 - Add debian/source/format
   * Checked and recreated patchs from old upstream against new version. 
 Recreated necessary patches against new upstream version.
 - Add 01_fix_pod.patch
 - Add 02_remove_db_test.patch
 - Add 03_fix_newlines.patch 
 - Add 04_fix_unitialized.patch
 - Add 05_prevent_ctrl_char_printing.patch
 - Add 06_fix_screenwidth.patch
 - Add 07_add_doc_on_missing_cli_options.patch
 - Add 08_add_mycnf.patch, contains now error handling (Closes: #627300,
   #694555)
 - Add 09_q_is_quit.patch
   * Add 10_fix_warnings.patch which fixes release detection and some perl 
 warnings
   * Deleted README.Source
   * Update to debhelper 7
   * debian/copyright revised for DEP5 specifications
   * Updated debian/rules
   * Deleted debian/menu, debian/postrm, debian/postinst, debian/prerm
   * Renamed mytop.example to mytop.sample.conf
 
 For the maintainerscripts I'll have to reread the relevant policy parts 
 myself
 first. If it was my package I wouldn't even install a menu item for such a
 tool but that's up to you in the end. Oh and dh_installmenu exists to free
 one from the burden of writing the correct maintainer scripts for that task.
 
 I wiped out this menu stuff. 
 
 Regards,
 Werner
 


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/5186ab26.2040...@aloah-from-hell.de



Bug#703730: RFS: redeclipse/1.4-1 redeclipse-data/1.4-1

2013-03-22 Thread Martin Erik Werner
Package: sponsorship-requests
Severity: wishlist
X-Debbugs-CC: debian-devel-ga...@lists.debian.org
Thanks

Dear mentors and pkg-gamers,

I am looking for a sponsor for my updated packages redeclipse and 
redeclipse-data:

* Package name: redeclipse
  Version : 0.4-1
  Upstream Author : Quinton Quin Reeves qree...@gmail.com
  : Lee Eihrul Salzman lsalz...@gmail.com
  : Red Eclipse Team and others
* URL : http://redeclipse.net
* License : Zlib, CC-BY-SA-3.0+
  Section : contrib/games

It builds those binary packages:

 redeclipse[-dbg] - multiplayer FPS game based on Cube2
 redeclipse-server[-dbg] - server for the Red Eclipse FPS game

Changelog:
redeclipse (1.4-1) experimental; urgency=low

  * New upstream release
  * Move server examples to /usr/share/games/doc/redeclipse/
  * Added screenshot URL for Ubuntu
  * Removed Enet from source package (unused)
  * Drop dpkg Pre-Depends (upgrades from old Ubuntu versions not relevant)
  * Include version.cfg in tarball, required for server

* Package name: redeclipse-data
  Version : 0.4-1
  Upstream Author : Red Eclipse Team and others
* URL : http://redeclipse.net
* License : CC_BY-SA-3.0+, Zlib and various
  Section : non-free/games

It builds this binary package:

 redeclipse-data - data for the Red Eclipse FPS game

Changelog:
redeclipse-data (1.4-1) experimental; urgency=low

  * New upstream release
  * Drop dpkg Pre-Depends (upgrades from old Ubuntu versions not relevant)
  * Added more verbose notice why package is in non-free
  * Include license.txt files, in favour of maintaining data tree identical


The packages are up on mentors:

 http://mentors.debian.net/package/redeclipse
 dget -x 
http://mentors.debian.net/debian/pool/contrib/r/redeclipse/redeclipse_1.4-1.dsc

(Note that the data package is ~625MB)
 http://mentors.debian.net/package/redeclipse-data
 dget -x 
http://mentors.debian.net/debian/pool/non-free/r/redeclipse-data/redeclipse-data_1.4-1.dsc


The packaging is done in git:

 http://anonscm.debian.org/gitweb/?p=pkg-games/redeclipse.git;a=summary
 git clone git://anonscm.debian.org/pkg-games/redeclipse.git

(Note that the data clone is ~780M)
 http://anonscm.debian.org/gitweb/?p=pkg-games/redeclipse-data.git;a=summary
 git clone git://anonscm.debian.org/pkg-games/redeclipse-data.git


Lintian:
N: The license is CC-BY-SA-3.0+, meaning or later, albeit valid, is not a
N: recognised license shortname.
N: The stand-alone license paragraph has the standard CC-BY-SA-3.0 version.
O: redeclipse source: missing-license-paragraph-in-dep5-copyright cc-by-sa-3.0+ 
(paragraph at line 75)

# Should only be needed for upgrades from Ubuntu Lucid, where this package does 
not exist
P: redeclipse-server: data.tar.xz-member-without-dpkg-pre-depends
P: redeclipse-server-dbg: data.tar.xz-member-without-dpkg-pre-depends
P: redeclipse-dbg: data.tar.xz-member-without-dpkg-pre-depends
P: redeclipse: data.tar.xz-member-without-dpkg-pre-depends

# No it's not
I: redeclipse-server-dbg: extended-description-is-probably-too-short
I: redeclipse-dbg: extended-description-is-probably-too-short

# Used for Ubuntu Software Centre
I: redeclipse: unknown-field-in-control screenshot-url
I: redeclipse: unknown-field-in-control thumbnail-url


N: The license is CC-BY-SA-3.0+, meaning or later, albeit valid, this is not a
N: recognised license shortname.
N: The stand-alone license paragraph has the standard CC-BY-SA-3.0 version.
O: redeclipse-data source: missing-license-paragraph-in-dep5-copyright 
cc-by-sa-3.0+ (paragraph at line 321)

# Should only be needed for upgrades from Ubuntu Lucid, where this package does 
not exist
P: redeclipse-data: data.tar.xz-member-without-dpkg-pre-depends

# No it's not
I: redeclipse-data: extended-description-is-probably-too-short

N: These license files are kept in the data tree because:
N: * They are minimal in comparison to the rest of the content
N: * There is no good distinction between contents of files like readme.txt
N:   mapname.txt and license.txt, and some are useful
N: * This maintains the data tree idential to upstream
O: redeclipse-data: extra-license-file 
usr/share/games/redeclipse/data/crosshairs/license.txt
N: These license files are kept in the data tree because:
N: * They are minimal in comparison to the rest of the content
N: * There is no good distinction between contents of files like readme.txt
N:   mapname.txt and license.txt, and some are useful
N: * This maintains the data tree idential to upstream
O: redeclipse-data: extra-license-file 
usr/share/games/redeclipse/data/models/actors/turret/license.txt


I would be very happy if someone could review and/or upload this package for me.

Thanks!

-- 
Martin Erik Werner martinerikwer...@gmail.com


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


Bug#702983: RFS - pu: policyd-weight/0.1.15.1-2+squeeze2

2013-03-13 Thread Werner Detter
Package: sponsorship-requests
Severity: important
Usertags: pu

Dear Maintainers, 

recently I've  uploaded my latest package policyd-weight 0.1.15.2-5
to unstable. I've requested to unblock this package to get it into wheezy, 
the request has been accepted.

I suggest to add the patch which removes the DNSBL dnsbl.njabl.org from the 
policyd-weight
source due to service shutdown of the list on 2013-03-01 also to the stable 
package as we
had some problems with false positive responses after DNSBL's have been shut 
down in the past. 
The DNSBL dnsbl.njabl.org shouldn't be an issue from that perspective as 
they've emptied the zones
rather than returning a match for all lookups but it's better to have a clean 
package and
be sure that the debian package won't have any problems regardless of what 
happens to the
mentioned DNSBL. 

Therefor I've recreated the package from stable with the mentioned patch 
applied.

The relevant bugreport against release.debian.org can be found here:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=702838

The package has already been confirmed for squeeze:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=702979

 * Package name: policyd-weight
   Version : policyd-weight/0.1.15.1-2+squeeze2
   Upstream Author : Robert Felber
 * URL : www.policyd-weight.org
 * License : GPL-2+
   Section : mail

I've uploaded the package to mentors.debian.net - it would be great if someone 
could upload this
package.

The URL of your package is:
http://mentors.debian.net/package/policyd-weight

The respective dsc file can be found at:
http://mentors.debian.net/debian/pool/main/p/policyd-weight/policyd-weight_0.1.15.1-2+squeeze2.dsc

Thank you and best regards,
Werner Detter

-- System Information:
Debian Release: 6.0.7
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686 (SMP w/1 CPU core)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20130313174115.1507.70713.reportbug@squeeze



Bug#702909: RFS: unblock policyd-weight/0.1.15.2-5

2013-03-12 Thread Werner Detter
Package: sponsorship-requests
Usertags: unblock

Dear Maintainer, 

I've just created a new policyd-weight packages (0.1.15.2-5) which has just 
been uploaded to 
mentors.debian.net. It includes a new quilt-patch which removes the DNSBL 
dnsbl.njabl.org 
from policyd-weight due to service shutdown of the DNSBL on 2013-03-01. More 
information 
can be found on the website of the list operator:

http://www.njabl.org/

As we had some problems with false positive responses after DNSBL's have been 
shut down in
the past, I'd suggest unblocking this package to get it into wheezy. I'd also 
suggest to 
upload a new version of the stable package as it also includes the mentioned 
DNSBL.

Here is a snipped from the changelog to point out the modifications:

policyd-weight (0.1.15.2-5) unstable; urgency=high

  * Add 08_del_dnsbl.njabl.org.patch which removes dnsbl.njabl.org list due
to servuce shutdown on 2013-03-01
  * Bumped standard versions to 3.9.4

 -- Werner Detter wer...@aloah-from-hell.de  Tue, 12 Mar 2013 20:23:14 +0100

The URL of your package is:
http://mentors.debian.net/package/policyd-weight

The respective dsc file can be found at:
http://mentors.debian.net/debian/pool/main/p/policyd-weight/policyd-weight_0.1.15.2-5.dsc

Thanks a lot,
Werner Detter

unblock policyd-weight/0.1.15.2-5

-- System Information:
Debian Release: 7.0
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-3-amd64 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20130312201920.25477.13894.reportbug@smaint.localdomain



Bug#702909: RFS: unblock policyd-weight/0.1.15.2-5

2013-03-12 Thread Werner Detter
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi Arno,

thanks for your reply.

 The RT does not feel very comfortable to push standards at this
 stage. But given there are no real changes, they may generously
 ignore that while reviewing your debdiff.

Yes, there are no real changes - I hope they ignore the update of the
standard versions.

 btw. there is a typo in your changelog and you may want to close
 #702838 with the upload.

Thanks for the hint. Recreated the package and uploaded to mentors.

Regards,
Werner

-BEGIN PGP SIGNATURE-
Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
Comment: GPGTools - http://gpgtools.org
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/

iQEcBAEBAgAGBQJRP56eAAoJECrSoAS/sh/hlcYH/2SdYPSXJbDNEy7ess7HvZ0G
6fT4+uJii225N9Obo1uA65SrVZ45i6x4FsJQ4STYeOX8mK1UjESEbPKjK91doFtk
1URUAvifOWEBRVuXRrQkM0poYDL+ZxSGdMkD+FXJAQ0YYiNpfMt/o3Y6FoUb8ssW
4jAx2FzAVXAlGsK+TTL9rfKbN14qY3NKMbW+9om2nQ7wZBMe939CrWyNeDZvEAwi
VU5poB9EpVtzDeSg6ga8VjIF/lzWXj5CdJ47Asy+Sk9ub+vISu5X3FZDNCixRG8v
XFXTDijMkpEdnCCJP4I/XedaTo9cACox9Q+I1tjsqR9sDXf74CmdmgEtz643B1w=
=QmyB
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/513f9e9e.5060...@aloah-from-hell.de



Bug#702909: RFS: unblock policyd-weight/0.1.15.2-5

2013-03-12 Thread Werner Detter
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi, 

I've also created a new package for stable, filled a bugreport against the
sponsorship-requests pseudo package. 

http://mentors.debian.net/package/policyd-weight

The respective dsc file for the stable package can be found at:
http://mentors.debian.net/debian/pool/main/p/policyd-weight/policyd-weight_0.1.15.1-2+squeeze2.dsc

The respective dsc file for the unstable package can be found at:
http://mentors.debian.net/debian/pool/main/p/policyd-weight/policyd-weight_0.1.15.2-5.dsc

Cheers,
Werner

-BEGIN PGP SIGNATURE-
Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
Comment: GPGTools - http://gpgtools.org
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/

iQEcBAEBAgAGBQJRP75pAAoJECrSoAS/sh/hbQ8H/0Xf5MNXECIQMco6CdPEH7rF
4jhs6zGtSPmmGhk9hkYEZj2TiY2/S9nzlwgdUqqRkU+MHFe9r14CstoWM7U5Alw/
fShuMqnkyMIU9Am+iYHhiJYyXbqAAGFrMyNUWkR7BPXUZpQ1JqRcLHbD1rhNR+zT
O3C4rkxTQtV9wzGhbWq6xa1P1mu9jFHiKpLGkxP9BXTz6sE3n/B64Pkp9n+Mzv4i
QT1d0QeacwQNbkT1SJtkUawS8VKV24RZY+tdH24OhnSS0rW83ku6lw4v7JDA+aLa
X8X5z3vYwmUDkp4692/LCJFvygEjEaMMRy5nR/0ASss0annVgsqPrJ7M3ok7TP4=
=R/qb
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/513fbe69.2030...@aloah-from-hell.de



Re: Bug#702909: RFS: unblock policyd-weight/0.1.15.2-5

2013-03-12 Thread Werner Detter
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Am 13.03.13 00:56, schrieb Arno Töll:
 On 13.03.2013 00:46, Werner Detter wrote:
 The respective dsc file for the stable package can be found at: 
 http://mentors.debian.net/debian/pool/main/p/policyd-weight/policyd-weight_0.1.15.1-2+squeeze2.dsc

 
 Please file a pu bug against the release.debian.org pseudo-package
 along with a debdiff. For s-p-u the RT needs to acknowledge your
 changes before one uploads your package.

OK, done :)

-BEGIN PGP SIGNATURE-
Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
Comment: GPGTools - http://gpgtools.org
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/

iQEcBAEBAgAGBQJRP8SCAAoJECrSoAS/sh/hMvIH/2FIR1boj9SYESduaDwRE5no
piK0sW7fgresKXPCP6RA+OO1DsmdvQYPfx38+4my7PiBI7lj0bsDBJldy+ZzWwdw
NraA/RTCCmsaQlU8AYhgYX6TeHuVOmlHseHQIpq7taankwysS6mT138od0QhFt9G
vWEEvcKx74QMkyLaXEoaS4AehXKt1cHv6j3K2na6rSl7Lpg+R6URSxomT4z++GwV
kk2rMUsx6GKq8gAI80ScilQj2kY0NOjazEF+h75KrzlL7orO7Dv76z1K2K3qff3s
ebB9m8srWkGojEl5e8RDqbgSc2GDYX7y0RAfSGd+B1a/VPacZDRHo6rB1XQuKxc=
=nIzt
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/513fc482.4050...@aloah-from-hell.de



Re: RFS: l2tp-ipsec-vpn (updated package)

2012-11-07 Thread Werner Jaeger
Hi,

I've added the missing entry for 1.0.7-1 in changelog and just uploaded
it successfully.

-Werner

On 11/07/2012 01:41 PM, Niels Thykier wrote:
 On 2012-11-07 06:59, Werner Jaeger wrote:
 Hi,

 unfortunately you're right. Is it OK. to upload it again,  with only the
 changelog corrected, or do I also need a new version entry
 (l2tp-ipsec-vpn (1.0.9-1.1) unstable; urgency=low) in the changelog ?

 Thank you

 - Werner

 [...]
 Hi,

 Personally, I would prefer if you just correct it without adding a new
 entry.

 ~Niels




-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/509aaf48.5060...@web.de



Re: RFS: l2tp-ipsec-vpn (updated package)

2012-11-06 Thread Werner Jaeger
Hi,

unfortunately you're right. Is it OK. to upload it again,  with only the
changelog corrected, or do I also need a new version entry
(l2tp-ipsec-vpn (1.0.9-1.1) unstable; urgency=low) in the changelog ?

Thank you

- Werner

On 11/06/2012 10:22 PM, Niels Thykier wrote:
 On 2012-10-19 10:23, Werner Jaeger wrote:
 Dear mentors,

 My sponsor is kil...@debian.org.

 I just uploaded the new version 1.0.9-1 of my package l2tp-ipsec-vpn.

 This upload contains  RC bug fix #684962
 [...]

   dget -x
 http://mentors.debian.net/debian/pool/main/l/l2tp-ipsec-vpn/l2tp-ipsec-vpn_1.0.9-1.dsc

 I would be glad if someone uploaded this package for me.

 Please CC me when replying to this message!

 Kind regards,

 Werner Jäger


 Hi,

 I had a look at it and the updated package appears to remove the debian
 changelog entry for 1.0.7-1 (which is the current version in sid).

 ~Niels



-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/5099f8a8.4070...@web.de



RFS: l2tp-ipsec-vpn (updated package)

2012-10-19 Thread Werner Jaeger

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Dear mentors,

My sponsor is kil...@debian.org.

I just uploaded the new version 1.0.9-1 of my package l2tp-ipsec-vpn.

This upload contains  RC bug fix #684962
(http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=684962)

 * Package name: l2tp-ipsec-vpn
   Version : 1.0.9-1
   Upstream Author : Werner Jaeger werner_jae...@web.de
 * URL : https://launchpad.net/l2tp-ipsec-vpn
 * License : GPL 3
   Section : net

It builds those binary packages:

l2tp-ipsec-vpn - control your L2TP IPsec VPN connections

To access further information about this package, please visit the
following URL:

  http://mentors.debian.net/package/l2tp-ipsec-vpn

Alternatively, one can download the package with dget using this command:

  dget -x
http://mentors.debian.net/debian/pool/main/l/l2tp-ipsec-vpn/l2tp-ipsec-vpn_1.0.9-1.dsc

I would be glad if someone uploaded this package for me.

Please CC me when replying to this message!

Kind regards,

Werner Jäger
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://www.enigmail.net/

iQEcBAEBAgAGBQJQgQ3tAAoJEPiVeYU7qUIy46EH/1/t1nUfcJNFi/xj798mJ3fC
CMjScdhQuYfldROTFd8vWGh3W54f5p+Gbvv59d+a71qhY4TQrq3IIZr0Oye5DOA7
FxzUDRQWXyQO/OvvIzgE/fnpXd3ZFbHpmvfVXWB4f1yRmcAQ7qFeR1P7P2R89Vt1
HirHvM7kc+aOUJi4/c45YFC4cTDXm7f2t9atVs/RxE7Aker41lD2HGE3c5HshOYq
t+/OiYntkjUtMIwoHGLFAFTuZGYTiFrcMQyEWQUSelCwSeXppRvQXgq/WXzM3mvO
3LjY1rHHa5fIiOmIl11yxRRavd5EnISD89MhTlMzZmIlUn+rKzy/mLlLLoBAoM0=
=ZHKp
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/50810df4.8000...@web.de



RFS - pu: package policyd-weight/0.1.15.1-2+squeeze1

2012-09-22 Thread Werner Detter
Hi everybody,

recently Jan Hauke uploaded my latest package policyd-weight 0.1.15.2-4
to unstable. I've requested to unblock this package to get it into
wheezy, the request has been accepted. Adam D. Barratt suggestet to add
the patches - which remove the non functional/soon shut down DNSBL's
also from the policyd-weight stable package.

Therefor I've recreated the package from stable with the mentioned
patches applied. The relevant bugreport against release.debian.org can
be found here: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=688266
An upload to squeeze for this package is confirmed.

 * Package name: policyd-weight
   Version : policyd-weight/0.1.15.1-2+squeeze1
   Upstream Author : Robert Felber
 * URL : www.policyd-weight.org
 * License : GPL-2+
   Section : mail

I'm looking for a sponsor who can upload this package to ftp-
master for me as I did not receive an answer yet from Jan as the
acceptance window for the next point release closes over the
weekend.

http://mentors.debian.net/package/policyd-weight
dget -x
http://mentors.debian.net/debian/pool/main/p/policyd-weight/policyd-weight_0.1.15.1-2+squeeze1.dsc

Thank you and best regards,
Werner Detter


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/505d87d1.8050...@aloah-from-hell.de



Re: RFS - pu: package policyd-weight/0.1.15.1-2+squeeze1

2012-09-22 Thread Werner Detter
Hi,

 Sponsored, thanks. Please file a RFS bug for future sponsorship requests
 as described in [1] :)
 
 [1] http://mentors.debian.net/sponsors/rfs-howto

Thanks for the info and for the sponsorhip :)

Regards,
Werner


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/505d9bb3.5080...@aloah-from-hell.de



Re: RFS: policyd-weight

2012-08-20 Thread Werner Detter
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi Arno,

 did you try to contact your previous sponsors? Could you reach Hauke?

Not yet, I will try to contact them and get back to this thread if none
of the previous sponsor has time for an upload.

 This version includes a little bugfix and updates standard versions from 
 3.9.2 to 3.9.3. Hence I'm looking for a sponsor for my package
 policyd-weight
 
 You don't try to get this into Testing, do you? I haven't looked at your 
 package yet, but this does not sound like something which is targeting 
 Testing at this stage. That's fine, of course, just telling you.

Thanks for the RFS bug workflow hint. The severity of this upload is normal so
it probably won't hit testing. It's not an RC fix.

Bye,
Werner
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.8 (Darwin)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQEcBAEBAgAGBQJQMeTZAAoJECrSoAS/sh/h1jkH/1p9dLRltjbEyciwU13+qQEx
SUWrod6h3fW0SZq+dzshUnMYUkzqujVefNomJQwmZTCKmTT5XCW0zKAlrwJSmNge
hSet2OOk3eY0KI0JCxi0/6VLDSltyJSlQyuQrUlr1P3f3cxf3fxZhcimm73mqMaG
NukbuY0aWF1bn8VpeV0ymMN3X/R8cN9D6qPS6OaA6PjC8/FlIsBE+tWh7h8SaBtS
+95q/L0qvKAyrtSzLqE6QNIkoyfbtwYly71A6yN9U/4t7f0k9INpmpBBLBjWoQO7
XkdDmvkB7jUsEj/nnssORaW+KlfH+OJf7m5GHGfPWwhR6LB2Srs+/bZAVKLRAIk=
=OLk+
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/5031e4d9.9000...@aloah-from-hell.de



RFS: policyd-weight

2012-08-19 Thread Werner Detter
Dear mentors,

I've recreated a new version of my package policyd-weight (previous version 
0.1.15.2-2 was already
uploaded to unstable. This version includes a little bugfix and updates 
standard versions from 3.9.2
to 3.9.3. Hence I'm looking for a sponsor for my package policyd-weight

 * Package name: policyd-weight
   Version : 0.1.15.2-3
   Upstream Author : Robert Felber
 * URL : www.policyd-weight.org
 * License : GPL-2+
   Section : mail

It builds those binary packages:

policyd-weight - Perl policy daemon for the Postfix MTA

To access further information about this package, please visit the following 
URL:

  http://mentors.debian.net/package/policyd-weight

Alternatively, one can download the package with dget using this command:

  dget -x 
http://mentors.debian.net/debian/pool/main/p/policyd-weight/policyd-weight_0.1.15.2-3.dsc

I would be glad if someone uploaded this package for me.

Kind regards,
Werner Detter



signature.asc
Description: OpenPGP digital signature


Question regarding Standard-Versions

2012-06-27 Thread Werner Detter
Hi everybody,

my package is already in unstable/testing. No bugs, everything clean except 
(from packages.qa.debian.org):

The package should be updated to follow the last version of Debian Policy 
(Standards-Version 3.9.3 instead of 3.9.2).

So is it worth to bump the Standards-Versions from 3.9.2 to 3.9.3 and create a 
new package so that it's totally clean
for the squeeze-freeze ?

Thanks,
Werner


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4feb6627.7090...@aloah-from-hell.de



Re: Question regarding Standard-Versions

2012-06-27 Thread Werner Detter
Hi,

 So is it worth to bump the Standards-Versions from 3.9.2 to 3.9.3 and create
 a new package so that it's totally clean for the squeeze-freeze ?
 
 If you would upload a new package with only that number changed, then it is, 
 in
 my opinion, not worth the trouble.

The only thing that would be changed is that number :)

kind regards,
Werner Detter


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4feb759e.2080...@aloah-from-hell.de



Bug#670195: RFS: lierolibre/0.2-1

2012-06-12 Thread Martin Erik Werner
On Thu, 2012-05-03 at 18:41 +0200, Martin Erik Werner wrote:
 On Fri, 2012-04-27 at 19:59 +0200, Martin Erik Werner wrote:
   On Tue, 2012-04-24 at 10:14 +0800, Paul Wise wrote:
On Tue, Apr 24, 2012 at 5:26 AM, Martin Erik Werner wrote:

 I am looking for a sponsor for my new package lierolibre

A review, since you are upstream too, I'm including some advice
related to that too.
  (...)
I note many files don't have copyright/license headers:

   
   http://tieguy.org/blog/2012/03/17/on-the-importance-of-per-file-license-information/

   I'm aware, I have taken to practice adding copyright headers to all
   *header* files whose related code I poke in, but since I have not made
   changes to all bits, many remain unchanged.
  
  I've now added copyright headers globally throughout the source files.
  
  
I would suggest moving the C++ code to a src/ (or similar) subdir.

   Yeah, that's probably a good idea, I'll look into that.
  
  done
  
I would suggest deleting sdl.m4 from your VCS and just letting
autotools copy in the one from SDL.
   Via autoreconf you mean? I'll look into that.
  
  done
   
gvl is both an embedded code copy and a nest of embedded code
   copies,
some of which are even in Debian (zlib, libpcl1-dev, libtut-dev). My
eyes!
   Well the zlib is unused, (and now deleted). I was not aware of libpcl
   and libtut, I'll have a look at ripping those out as well.
   
  
  All three removed, unused anyways.
  
  (...)
The change weapon button doesn't seem to work.

   Do you mean the one for Player2? Yeah, that's the default case for me
   as well, though I suspect that that's due to me having Alt Gr instead
   of LAlt, and I'm not sure if it's possible to support both, I'll have
   to look into that..
  
  This is unchanged for now.
   
Please use dh --parallel or mention in debian/rules why build
parallelism isn't possible to use.

   Ah, ok, I'll do that.
   
I would suggest depending on dh-autoreconf and running dh --with
autoreconf to ensure that the configure script and Makefiles are
always buildable on Debian. This is useful since Debian does rebuild
testing for newer versions of autotools.

   Ah, I haven't looked at autotools from a Debian perspective enough it
   seems, thanks for the hint.
  
  Both added, along with hardening build flags and a debug package.
  
cppcheck warnings:

[gvl/gvl_test/_build/deque.cpp:51]: (error) Throwing exception in
   destructor
[gvl/crypt/curve25519.cpp:318]: (error) Memory leak: temp
[gvl/containers/tests/deque.cpp:48]: (error) Throwing exception in
   destructor
[gvl/crypt/curve25519.cpp:690]: (error) Memory leak: temp1
[gvl/uthread/uthread.cpp:100]: (error) Throwing exception in
   destructor
[viewport.cpp:132]: (error) Possible null pointer dereference: worm
   -
otherwise it is redundant to check if worm is null at line 111
   
   I'll have to do some digging here :)
  
  All these should be addressed now.
  
  I've made a new upstream release, as per NEWS:
  
  Version 0.2 - April 2012, by Martin Erik Werner
  
  * New dependency on boost_program_options
  * Reworked command-line handling completely
+ Generalised options
  - -f --file : input file
  - -d --dir : input dir
  - -w --write : output file
  - -h --help
  - -v --sdlvideo
  - arg1 is auto-assigned to input file
  - arg2 is auto-assigned to input dir
  - arg3 is auto-assigned to output file
  * Fixed a bug where giving a directory path without the ending / would
  set
the path to the parent directory instead.
  * Defaults to reading data/liero.cfg instead of ./liero.cfg
  * Removal of non-free dtoa piece in gvl
  * Better resolution handling (only for 'Nearest' filter)
+ Game window now defaults to double the size (640x400)
+ Fullscreen now defaults to highest supported screen resolution
  - Game area will grab max multiple of 320x200, rest becomes border
+ Added F7 and F8 keys for x3 and x4 scaling respecively
  * Added ability to quit game via desktop events (window close, alt+F4,
  etc.)
  * Made configure checks for SDL_mixer not depend on pkg-config
  * Error messages from handling config files are now much more verbose
+ If possible gives error type, file, line number, setting path, etc.
+ This is only enabled with libconfig++ version 1.4 and above
  - (libconfig++9 in Debian/Ubuntu)
  
   
   IIRC with X11 there are hints you can send to the WM to prevent users
   from being able to resize to particular sizes, that might be useful to
   get rid of the bordering.
  The problem here is actually that only integer multiples of 320x200
  works for the currently used Nearest filter, I've used this with the
  scaling keys and with fullscreen, so it's at least reasonable.
  
  Arbitrary window drag-resizing still doesn't work, it appears that
  somehow, SDL stops supplying

RFS: l2tp-ipsec-vpn-daemon (updated package)

2012-05-30 Thread Werner Jaeger

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Dear mentors,

My sponsor is kil...@debian.org.

I just uploaded the new version 0.9.9-1 of my package
l2tp-ipsec-vpn-daemon.

This upload contains changes to make the daemon binary compatible over
various linux distributions.

 * Package name: l2tp-ipsec-vpn-daemon
   Version : 0.9.9-1
   Upstream Author : Werner Jaeger werner_jae...@web.de
 * URL : https://launchpad.net/l2tp-ipsec-vpn
 * License : GPL v3
   Section : net

It builds those binary packages:

l2tp-ipsec-vpn-daemon - daemon for L2tpIPsecVpn GUI

To access further information about this package, please visit the
following URL:

  http://mentors.debian.net/package/l2tp-ipsec-vpn-daemon

Alternatively, one can download the package with dget using this command:

  dget -x
http://mentors.debian.net/debian/pool/main/l/l2tp-ipsec-vpn-daemon/l2tp-ipsec-vpn-daemon_0.9.9-1.dsc

I would be glad if someone uploaded this package for me.

Please CC me when replying to this message!

Kind regards,

Werner Jäger



-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQEcBAEBAgAGBQJPxdsIAAoJEPiVeYU7qUIyFlQH+wUhauVx8qtlxNqynNt5bHdo
D7uh44rU++HTwhEf0F4jS17fPaDpdNy/OYcJEWMMKpgz8l137/PyZS+rojfyGEx8
LgO40P1zOUrjd2mE8f22sXLmBypgGXhh4npCmzQ7/1aToUxwo2rU/HyFNKTvDZJA
JTNLiVZMdWT0zLHPGpDfxV64ZsCpOxHpZD429nJS6wWZo/iKW7Jm8h0AwU7kJkoY
konH1fSsekYEqKIz5ILkYyCM/FH3bRSeXRhztg/K+ME09ubixo27tz8onEUPW5Zr
atSOU/IKdCrqfXEgiAPIsxG8Ygq4qbmyKVlRMB8u6x0V8UtGki0oYzNVKvueapc=
=5VT3
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4fc5db08.3020...@web.de



RFS: l2tp-ipsec-vpn (updated package)

2012-05-30 Thread Werner Jaeger

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Dear mentors,

My sponsor is kil...@debian.org.

I just uploaded the new version 1.0.7-1 of my package l2tp-ipsec-vpn.

This upload contains changes to make the application binary compatible
over various linux distributions and would fix several bugs.

 * Package name: l2tp-ipsec-vpn
   Version : 1.0.7-1
   Upstream Author : Werner Jaeger werner_jae...@web.de
 * URL : https://launchpad.net/l2tp-ipsec-vpn
 * License : GPL 3
   Section : net

It builds those binary packages:

l2tp-ipsec-vpn - control your L2TP IPsec VPN connections

To access further information about this package, please visit the
following URL:

  http://mentors.debian.net/package/l2tp-ipsec-vpn

Alternatively, one can download the package with dget using this command:

  dget -x
http://mentors.debian.net/debian/pool/main/l/l2tp-ipsec-vpn/l2tp-ipsec-vpn_1.0.7-1.dsc

I would be glad if someone uploaded this package for me.

Please CC me when replying to this message!

Kind regards,

Werner Jäger


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQEcBAEBAgAGBQJPxdr5AAoJEPiVeYU7qUIya/EIAKD0saRwL/v1aRSisIGbJdfo
juSS3S3Sh8zgbIJZlugea6puneXwhQarS3NKHI94UQ9dR57KlsH8hPchGX/494Rg
5I9jk0inOvq2K2u5VvcXyIK7ovmKSmFxnitXUVmW08YYMHSeziIfhgy2I3PGLDBS
4eP448EzAk+Bu42dBBYgRLBO0BRUNdFueneJDAK8dlmZct7zG4UWvroCpnVMqJDp
O3+jjok6b27oAhkluTZZG0RRPmlYOe1zYo5p4fxh7DNQKj6gwQGs07CmPw/uvR1Q
qD4rDqOdrYnYHyBZ9X60d5lQUhKWA6L8j7yLQEYsC3Hd+k7AU9zk0+VqoDpkw7Q=
=pE8x
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4fc5db03.7030...@web.de



Bug#670195: RFS: lierolibre/0.2-1

2012-05-03 Thread Martin Erik Werner
On Fri, 2012-04-27 at 19:59 +0200, Martin Erik Werner wrote:
  On Tue, 2012-04-24 at 10:14 +0800, Paul Wise wrote:
   On Tue, Apr 24, 2012 at 5:26 AM, Martin Erik Werner wrote:
   
I am looking for a sponsor for my new package lierolibre
   
   A review, since you are upstream too, I'm including some advice
   related to that too.
 (...)
   I note many files don't have copyright/license headers:
   
  
  http://tieguy.org/blog/2012/03/17/on-the-importance-of-per-file-license-information/
   
  I'm aware, I have taken to practice adding copyright headers to all
  *header* files whose related code I poke in, but since I have not made
  changes to all bits, many remain unchanged.
 
 I've now added copyright headers globally throughout the source files.
 
 
   I would suggest moving the C++ code to a src/ (or similar) subdir.
   
  Yeah, that's probably a good idea, I'll look into that.
 
 done
 
   I would suggest deleting sdl.m4 from your VCS and just letting
   autotools copy in the one from SDL.
  Via autoreconf you mean? I'll look into that.
 
 done
  
   gvl is both an embedded code copy and a nest of embedded code
  copies,
   some of which are even in Debian (zlib, libpcl1-dev, libtut-dev). My
   eyes!
  Well the zlib is unused, (and now deleted). I was not aware of libpcl
  and libtut, I'll have a look at ripping those out as well.
  
 
 All three removed, unused anyways.
 
 (...)
   The change weapon button doesn't seem to work.
   
  Do you mean the one for Player2? Yeah, that's the default case for me
  as well, though I suspect that that's due to me having Alt Gr instead
  of LAlt, and I'm not sure if it's possible to support both, I'll have
  to look into that..
 
 This is unchanged for now.
  
   Please use dh --parallel or mention in debian/rules why build
   parallelism isn't possible to use.
   
  Ah, ok, I'll do that.
  
   I would suggest depending on dh-autoreconf and running dh --with
   autoreconf to ensure that the configure script and Makefiles are
   always buildable on Debian. This is useful since Debian does rebuild
   testing for newer versions of autotools.
   
  Ah, I haven't looked at autotools from a Debian perspective enough it
  seems, thanks for the hint.
 
 Both added, along with hardening build flags and a debug package.
 
   cppcheck warnings:
   
   [gvl/gvl_test/_build/deque.cpp:51]: (error) Throwing exception in
  destructor
   [gvl/crypt/curve25519.cpp:318]: (error) Memory leak: temp
   [gvl/containers/tests/deque.cpp:48]: (error) Throwing exception in
  destructor
   [gvl/crypt/curve25519.cpp:690]: (error) Memory leak: temp1
   [gvl/uthread/uthread.cpp:100]: (error) Throwing exception in
  destructor
   [viewport.cpp:132]: (error) Possible null pointer dereference: worm
  -
   otherwise it is redundant to check if worm is null at line 111
  
  I'll have to do some digging here :)
 
 All these should be addressed now.
 
 I've made a new upstream release, as per NEWS:
 
 Version 0.2 - April 2012, by Martin Erik Werner
 
 * New dependency on boost_program_options
 * Reworked command-line handling completely
   + Generalised options
 - -f --file : input file
 - -d --dir : input dir
 - -w --write : output file
 - -h --help
 - -v --sdlvideo
 - arg1 is auto-assigned to input file
 - arg2 is auto-assigned to input dir
 - arg3 is auto-assigned to output file
 * Fixed a bug where giving a directory path without the ending / would
 set
   the path to the parent directory instead.
 * Defaults to reading data/liero.cfg instead of ./liero.cfg
 * Removal of non-free dtoa piece in gvl
 * Better resolution handling (only for 'Nearest' filter)
   + Game window now defaults to double the size (640x400)
   + Fullscreen now defaults to highest supported screen resolution
 - Game area will grab max multiple of 320x200, rest becomes border
   + Added F7 and F8 keys for x3 and x4 scaling respecively
 * Added ability to quit game via desktop events (window close, alt+F4,
 etc.)
 * Made configure checks for SDL_mixer not depend on pkg-config
 * Error messages from handling config files are now much more verbose
   + If possible gives error type, file, line number, setting path, etc.
   + This is only enabled with libconfig++ version 1.4 and above
 - (libconfig++9 in Debian/Ubuntu)
 
  
  IIRC with X11 there are hints you can send to the WM to prevent users
  from being able to resize to particular sizes, that might be useful to
  get rid of the bordering.
 The problem here is actually that only integer multiples of 320x200
 works for the currently used Nearest filter, I've used this with the
 scaling keys and with fullscreen, so it's at least reasonable.
 
 Arbitrary window drag-resizing still doesn't work, it appears that
 somehow, SDL stops supplying SDL_RESIZEVIDEO events after a tenth of a
 second of resizing or so, I've not figured out how to solve this...
 
  Also, I encountered a couple of segfaults when resizing, one in
  scale2x mode when

Bug#670195: RFS: lierolibre/0.2-1

2012-04-27 Thread Martin Erik Werner
 On Tue, 2012-04-24 at 10:14 +0800, Paul Wise wrote:
  On Tue, Apr 24, 2012 at 5:26 AM, Martin Erik Werner wrote:
  
   I am looking for a sponsor for my new package lierolibre
  
  A review, since you are upstream too, I'm including some advice
  related to that too.
(...)
  I note many files don't have copyright/license headers:
  
 
 http://tieguy.org/blog/2012/03/17/on-the-importance-of-per-file-license-information/
  
 I'm aware, I have taken to practice adding copyright headers to all
 *header* files whose related code I poke in, but since I have not made
 changes to all bits, many remain unchanged.

I've now added copyright headers globally throughout the source files.


  I would suggest moving the C++ code to a src/ (or similar) subdir.
  
 Yeah, that's probably a good idea, I'll look into that.

done

  I would suggest deleting sdl.m4 from your VCS and just letting
  autotools copy in the one from SDL.
 Via autoreconf you mean? I'll look into that.

done
 
  gvl is both an embedded code copy and a nest of embedded code
 copies,
  some of which are even in Debian (zlib, libpcl1-dev, libtut-dev). My
  eyes!
 Well the zlib is unused, (and now deleted). I was not aware of libpcl
 and libtut, I'll have a look at ripping those out as well.
 

All three removed, unused anyways.

(...)
  The change weapon button doesn't seem to work.
  
 Do you mean the one for Player2? Yeah, that's the default case for me
 as well, though I suspect that that's due to me having Alt Gr instead
 of LAlt, and I'm not sure if it's possible to support both, I'll have
 to look into that..

This is unchanged for now.
 
  Please use dh --parallel or mention in debian/rules why build
  parallelism isn't possible to use.
  
 Ah, ok, I'll do that.
 
  I would suggest depending on dh-autoreconf and running dh --with
  autoreconf to ensure that the configure script and Makefiles are
  always buildable on Debian. This is useful since Debian does rebuild
  testing for newer versions of autotools.
  
 Ah, I haven't looked at autotools from a Debian perspective enough it
 seems, thanks for the hint.

Both added, along with hardening build flags and a debug package.

  cppcheck warnings:
  
  [gvl/gvl_test/_build/deque.cpp:51]: (error) Throwing exception in
 destructor
  [gvl/crypt/curve25519.cpp:318]: (error) Memory leak: temp
  [gvl/containers/tests/deque.cpp:48]: (error) Throwing exception in
 destructor
  [gvl/crypt/curve25519.cpp:690]: (error) Memory leak: temp1
  [gvl/uthread/uthread.cpp:100]: (error) Throwing exception in
 destructor
  [viewport.cpp:132]: (error) Possible null pointer dereference: worm
 -
  otherwise it is redundant to check if worm is null at line 111
 
 I'll have to do some digging here :)

All these should be addressed now.

I've made a new upstream release, as per NEWS:

Version 0.2 - April 2012, by Martin Erik Werner

* New dependency on boost_program_options
* Reworked command-line handling completely
  + Generalised options
- -f --file : input file
- -d --dir : input dir
- -w --write : output file
- -h --help
- -v --sdlvideo
- arg1 is auto-assigned to input file
- arg2 is auto-assigned to input dir
- arg3 is auto-assigned to output file
* Fixed a bug where giving a directory path without the ending / would
set
  the path to the parent directory instead.
* Defaults to reading data/liero.cfg instead of ./liero.cfg
* Removal of non-free dtoa piece in gvl
* Better resolution handling (only for 'Nearest' filter)
  + Game window now defaults to double the size (640x400)
  + Fullscreen now defaults to highest supported screen resolution
- Game area will grab max multiple of 320x200, rest becomes border
  + Added F7 and F8 keys for x3 and x4 scaling respecively
* Added ability to quit game via desktop events (window close, alt+F4,
etc.)
* Made configure checks for SDL_mixer not depend on pkg-config
* Error messages from handling config files are now much more verbose
  + If possible gives error type, file, line number, setting path, etc.
  + This is only enabled with libconfig++ version 1.4 and above
- (libconfig++9 in Debian/Ubuntu)

 
 IIRC with X11 there are hints you can send to the WM to prevent users
 from being able to resize to particular sizes, that might be useful to
 get rid of the bordering.
The problem here is actually that only integer multiples of 320x200
works for the currently used Nearest filter, I've used this with the
scaling keys and with fullscreen, so it's at least reasonable.

Arbitrary window drag-resizing still doesn't work, it appears that
somehow, SDL stops supplying SDL_RESIZEVIDEO events after a tenth of a
second of resizing or so, I've not figured out how to solve this...

 Also, I encountered a couple of segfaults when resizing, one in
 scale2x mode when resizing the window less than
  320x200. The other was random while scaling in scale2x mode.
Yeah, the scale2x is something I've tried and failed at poking at, for
now it's stuck between

Bug#670195: RFS: lierolibre/0.1-1

2012-04-24 Thread Martin Erik Werner
On Tue, 2012-04-24 at 10:14 +0800, Paul Wise wrote:
 On Tue, Apr 24, 2012 at 5:26 AM, Martin Erik Werner wrote:
 
  I am looking for a sponsor for my new package lierolibre
 
 A review, since you are upstream too, I'm including some advice
 related to that too.
 
Thanks for the review,  ./TODO :)

 I would suggest using git2cl or 'git log' upstream to create the ChangeLog 
 file.
 
Ok, I've used git log --stat, that seems to be the most readable
format.

 I note many files don't have copyright/license headers:
 
 http://tieguy.org/blog/2012/03/17/on-the-importance-of-per-file-license-information/
 
I'm aware, I have taken to practice adding copyright headers to all
*header* files whose related code I poke in, but since I have not made
changes to all bits, many remain unchanged.

 I would suggest moving the C++ code to a src/ (or similar) subdir.
 
Yeah, that's probably a good idea, I'll look into that.

 I would suggest deleting sdl.m4 from your VCS and just letting
 autotools copy in the one from SDL.
Via autoreconf you mean? I'll look into that.

 
 How about completely dropping the zlib copy from your gvl fork?
 
Yeah, true, ancient anyways, done.

 gvl is both an embedded code copy and a nest of embedded code copies,
 some of which are even in Debian (zlib, libpcl1-dev, libtut-dev). My
 eyes!
Well the zlib is unused, (and now deleted). I was not aware of libpcl
and libtut, I'll have a look at ripping those out as well.

 
 I found this post about dtoa.c:
 
 http://patrakov.blogspot.com.au/2009/03/dont-use-old-dtoac.html
 
Hmm, I though I removed that since I found it non-free... Anyways, it's
not used in any of the resulting binaries, and now deleted.

 Hmm, you are using both the jam and autotools build systems, is that on 
 purpose?
 
I am keeping the Jam build updated and working, so that both may be
used, it's not being used in the packaging build, if I haven't made some
clear mistake...

 I'd suggest that individual graphics in separate .xpm files would be a
 better way to develop the graphics than strips of multiple graphics in
 one .xpm file.
 
Maybe, and mapping the palette somehow would also be handly, it's a
TODO, but the current method is at least better than nothing, as noted
before.

 You might want to add the old liero release info to NEWS?
 
True, done so.

 On my screen the default window size is so small I can't read the
 writing. How about making it 800x600?
 
 I would suggest using one of these algorithms for window scaling:
 
 https://en.wikipedia.org/wiki/Image_scaling
 http://research.microsoft.com/en-us/um/people/kopf/pixelart/supplementary/index.html
 
Yeah, the native game resolution is 320x200 pixels, and anything else is
scaled. Both nearest and scale2X are available currently, toggled via
the [F1] in-game menu.

I think I've got a reasonable hack setting it to 800x500 (x2.5) for now,
though the code that handles the resolution is somewhat of a mystery to
me at the moment.

One can also use:
window-managers default maximise method (alt+F10, double-click title,
maximise button)
F6 to get 640x480, scaled
F5 to get fullscreen, scaled

Unfortunately all higher resolutions seem to add unneeded bordering...

 I would suggest changing the default keyboard settings for player 1 to
 the more standard wasd.
I disagree on this, Since control, alt and shift are used wasd becomes
very cumbersome. For singleplayer I personally use ijkl and asd for
actions, but that's also quite odd, and inappropriate for splitscreen,
so I think it makes best sense to keep the LIERO default here.

 
 The change weapon button doesn't seem to work.
 
Do you mean the one for Player2? Yeah, that's the default case for me
as well, though I suspect that that's due to me having Alt Gr instead
of LAlt, and I'm not sure if it's possible to support both, I'll have
to look into that..

 Why the dpkg predepends?
Hmm, since I am (or at least should be) using xz compression for the
packages?

 
 Please use dh --parallel or mention in debian/rules why build
 parallelism isn't possible to use.
 
Ah, ok, I'll do that.

 I would suggest depending on dh-autoreconf and running dh --with
 autoreconf to ensure that the configure script and Makefiles are
 always buildable on Debian. This is useful since Debian does rebuild
 testing for newer versions of autotools.
 
Ah, I haven't looked at autotools from a Debian perspective enough it
seems, thanks for the hint.

 cppcheck warnings:
 
 [gvl/gvl_test/_build/deque.cpp:51]: (error) Throwing exception in destructor
 [gvl/crypt/curve25519.cpp:318]: (error) Memory leak: temp
 [gvl/containers/tests/deque.cpp:48]: (error) Throwing exception in destructor
 [gvl/crypt/curve25519.cpp:690]: (error) Memory leak: temp1
 [gvl/uthread/uthread.cpp:100]: (error) Throwing exception in destructor
 [viewport.cpp:132]: (error) Possible null pointer dereference: worm -
 otherwise it is redundant to check if worm is null at line 111

I'll have to do some digging here :)

Thanks!

-- 
Martin Erik Werner

Bug#670195: RFS: lierolibre/0.1-1

2012-04-23 Thread Martin Erik Werner
Package: sponsorship-requests
Severity: wishlist
X-Debbugs-CC: debian-devel-ga...@lists.debian.org
Thanks

Dear mentors and pgk-gamers,

I am looking for a sponsor for my new package lierolibre

* Package name: lierolibre
  Version : 0.1-1
  Upstream Author : (Me) Martin Erik Werner martinerikwer...@gmail.com
* URL : https://launchpad.net/lierolibre/
* License : BSD-2-Clause and WTFPL
  : (plus BSL, GPL, LGPL, for some odd bits, {GPL not linked 
in})
  Section : games

It builds those binary packages:

 lierolibre - old-school earthworm action game
 lierolibre-data - data files for lierolibre

The package is up on mentors:

 http://mentors.debian.net/package/lierolibre
 dget -x 
http://mentors.debian.net/debian/pool/main/l/lierolibre/lierolibre_0.1-1.dsc

And the packaging is done in git:

 http://anonscm.debian.org/gitweb/?p=pkg-games/lierolibre.git;a=summary
 git clone git://anonscm.debian.org/pkg-games/lierolibre.git

Lintian:

 P: lierolibre-data: no-upstream-changelog
 P: lierolibre: no-upstream-changelog
  I've included NEWS, which serves as the user-targeted changelog,
  unless you want git log
 I: lierolibre-data: extended-description-is-probably-too-short
  No it isn't.

Storytelling:

I have taken up maintenance of this game in the form of a fork, I have
spoken on and off to the upstream maintainer of Liero (OpenLiero) but
he appears to have stopped working on the game, though he requested me
to use a different name to avoid confusion (lierolibre is not
windows-friendly currently, hence it doesn't obsolete Liero).

Liero was itself a remake-clone of the DOS game LIERO, using the
original LIERO files as the source for graphics, sounds, and game
variables (read directly from the binary LIERO.EXE :O ).

The main changes done in lierolibre compared to Liero is:

1. Relicensing and replacement of non-free content:

The original LIERO was released under a non-free freeware license,
have spoken to the original developer which has kindly agreed to
relicense all content which was created by him under the WTFPL.
Graphics and game variables are what ends up being used in lierolibre
out of this content.

The sounds in LIERO/Liero, which came from Molez, which itself had
borrowed some of them from proprietary games, have all been replaced
with original sounds (WTFPL) created by sea which I came in contact
with via #ligaliero on quakenet.

lierolibre can in addition to reading from LIERO.EXE read and write
game vars to a plaintext file instead, and this is what comes shipped
by default.

The gvl helper library (which is used as a static module, and I
believe is best kept so), has seen some purging of a (probably)
non-free fdlibm math library, ancient embedded zlib, and some other
non-free bits.

2. General adaptation to *nix

Added in lierolibre is a simple module to allow for $HOME and system
content separation. For ease of installation there's autotools (though freetype 
jam
still works for the compilation step).

3. Scripts to handle the game data

Finally, lierolibre also includes a bunch of scripts to handle the
extraction and repacking of sound, graphics and levels for liero. In
order to make modification of these more accessible. It is still quite
limited, for example the graphics uses raw 8bit pixel values, which are
extracted to greyscale xpm files, although the palette used in the game
itself differs, so if one wanted to do serious editing one would need
to keep referencing the liero palette (available in liero.cfg). It is a
resonable compromise for now though, and somewhat nicer than using a
hex editor, as it were.


I would be very happy if someone could review and/or upload this package for me.

Thanks!
-- 
Martin Erik Werner martinerikwer...@gmail.com


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


hints for creating deb packages with cmake build system

2012-04-09 Thread Werner Detter
Hi,

I am looking for instructions on how to create a debian package that uses cmake 
as build
system as I'm wondering how the debian/rules should look and what it should 
contain for
cmake? Can anyone tell me a small package that uses cmake as build system, 
where i could
peak for a debian/rules file? Any other good hints or links? :)

Thanks,
Werner


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4f82d3e0@aloah-from-hell.de



Re: hints for creating deb packages with cmake build system

2012-04-09 Thread Werner Detter
Hi,

 cdbs makes it very easy
 
 http://build-common.alioth.debian.org/cdbs-doc.html#id2561559

I've decided to go with cdbs now, my debian/rules looks now like:

#!/usr/bin/make -f
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/rules/patchsys-quilt.mk
include /usr/share/cdbs/1/class/cmake.mk

As I'm currently trying to package a C library that should be available on 
different architectures
i think I have to tell the build process the right architecture. How is this 
dynamically accomplished
with cmake/cdbs as the underlying build system ?

Thanks,
Werner


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4f82f441.2050...@aloah-from-hell.de



Re: hints for creating deb packages with cmake build system

2012-04-09 Thread Werner Detter
Hi Daniel,

 You just specify the architecture `any' in the debian/control file
 
 Architecture: any
 
 dpkg-buildpackage, cdbs and cmake should then figure out the rest for
 you, give correct CFLAGS to your compiler, etc, no matter what machine
 someone tries to build the package on.

Perfect, thanks for your response :)

Regards,
Werner


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4f82f791.8050...@aloah-from-hell.de



Bug#663885: [Pkg-fonts-devel] Bug#663885: RFS: googlefontdirectory-tools/20120309.1-1

2012-03-15 Thread Martin Erik Werner
On Thu, 2012-03-15 at 22:10 +0100, Christian PERRIER wrote:
 Quoting Martin Erik Werner (martinerikwer...@gmail.com):
  Package: sponsorship-requests
  Severity: normal
  X-Debbugs-CC: pkg-fonts-de...@lists.alioth.debian.org
  thanks
  
  Dear mentors and pkg-fontsers,
  
  I am looking for a sponsor for my updated package 
  googlefontdirectory-tools.
 
 E: googlefontdirectory-tools: missing-dep-for-interpreter fontforge = 
 fontforge (usr/share/googlefontdirectory-tools/tools/bbox/vmet.pe)
 N: 
 N:You used an interpreter for a script that is not in an essential
 N:package. In most cases, you will need to add a Dependency on the package
 N:that contains the interpreter. If the dependency is already present,
 N:please file a bug against Lintian with the details of your package so
 N:that its database can be updated.
 N:
 N:In some cases a weaker relationship, such as Suggests or Recommends,
 N:will be more appropriate.
 N:
 N:Severity: important, Certainty: possible
 N:
 N:Check: scripts, Type: binary
 N: 
 E: googlefontdirectory-tools: missing-dep-for-interpreter fontforge = 
 fontforge 
 (usr/share/googlefontdirectory-tools/tools/menusubset/menusubset-khmer.ff)
 E: googlefontdirectory-tools: missing-dep-for-interpreter fontforge = 
 fontforge 
 (usr/share/googlefontdirectory-tools/tools/menusubset/menusubset-korean.ff)
 E: googlefontdirectory-tools: missing-dep-for-interpreter fontforge = 
 fontforge 
 (usr/share/googlefontdirectory-tools/tools/menusubset/menusubset-kufi.ff)
 E: googlefontdirectory-tools: missing-dep-for-interpreter fontforge = 
 fontforge 
 (usr/share/googlefontdirectory-tools/tools/menusubset/menusubset-naskh.ff)
 E: googlefontdirectory-tools: missing-dep-for-interpreter fontforge = 
 fontforge 
 (usr/share/googlefontdirectory-tools/tools/menusubset/menusubset-thai.ff)
 E: googlefontdirectory-tools: missing-dep-for-interpreter fontforge = 
 fontforge 
 (usr/share/googlefontdirectory-tools/tools/menusubset/menusubset-vietnamese.ff)
 E: googlefontdirectory-tools: missing-dep-for-interpreter fontforge = 
 fontforge (usr/share/googlefontdirectory-tools/tools/merge/merge.ff)
 E: googlefontdirectory-tools: missing-dep-for-interpreter fontforge = 
 fontforge (usr/share/googlefontdirectory-tools/tools/ttf2sfd/ttf2sfd.ff)
 b
 
 
 These are probably not important scripts but, still, Suggests:
 fontforge would IMHO be appropriate.
 
 

Please upgrade to lintian 1.5.6, see my initial post for more info ;)

-- 
Martin Erik Werner martinerikwer...@gmail.com


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


Bug#663885: RFS: googlefontdirectory-tools/20120309.1-1

2012-03-14 Thread Martin Erik Werner
Package: sponsorship-requests
Severity: normal
X-Debbugs-CC: pkg-fonts-de...@lists.alioth.debian.org
thanks

Dear mentors and pkg-fontsers,

I am looking for a sponsor for my updated package googlefontdirectory-tools.

 * Package name: googlefontdirectory-tools
   Version : 20120111.1-1
   Upstream Authors: Dave Crossland
   : Khaled Hosny
 * URL : 
http://code.google.com/p/googlefontdirectory/source/browse/tools/
 * License : Apache-2.0  CC0
   Section : fonts

Binary package: googlefontdirectory-tools - various tools for generating, 
analysing and manipulating font files

Changes: 
 googlefontdirectory-tools (20120309.1-1) unstable; urgency=low
 .
   * New upstream release
 - New otf2sfd script
 - New merge script
   * Source taken from mercurial revision 2275:af364e7c88e3
   * Set all python scripts as executable
   * Standards-Version 3.9.3
 - Set final DEP-5 Format: link
   * Add 'fonttools' dependency for setnonhinting-fonttools.py script
   * Use xz compression for source tarball

Lintian:

* On lintian = 1.5.6 this package has a bunch of
E: * missing-dep-for-interpreter fontforge = fontforge
Because it depends on fontforge-nox | fontforge and -nox wasn't added
as a valid interpreter for ff scripts in lintian before (#661363).

P: googlefontdirectory-tools: no-upstream-changelog
Yeah... No setup for existance outside the gfd VCS in this regard.

The package is available at mentors:

  http://mentors.debian.net/package/googlefontdirectory-tools
  dget -x 
http://mentors.debian.net/debian/pool/main/g/googlefontdirectory-tools/googlefontdirectory-tools_20120309.1-1.dsc

Alternatively the source is kept in git at:

  
http://anonscm.debian.org/gitweb/?p=pkg-fonts/googlefontdirectory-tools.git;a=tree
  git clone git://git.debian.org/pkg-fonts/googlefontdirectory-tools.git
(using a standard pristine-tar import-orig layout)


I would be glad if someone uploaded this package for me.

Thanks.

--
Martin Erik Werner martinerikwer...@gmail.com


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


Bug#663885: fixed merge script

2012-03-14 Thread Martin Erik Werner
Oh, crud, I just noticed that the new upstream merge script has an
incorrect shebang that needs patching as well, I've added this and
re-uploaded to mentors and re-pushed to git.

-- 
Martin Erik Werner martinerikwer...@gmail.com


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


  1   2   3   >