[lemonldap-ng] 05/07: Create /run/llng-fastcgi-server at startup

2016-03-06 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch master
in repository lemonldap-ng.

commit 045ff000de1fc3c0557c28b42c8cb3bc1665389e
Author: Xavier Guimard 
Date:   Sun Mar 6 12:45:02 2016 +0100

Create /run/llng-fastcgi-server at startup
---
 debian/lemonldap-ng-fastcgi-server.init | 13 +
 debian/lemonldap-ng-fastcgi-server.postinst | 17 -
 debian/lemonldap-ng-fastcgi-server.service  |  2 ++
 debian/lemonldap-ng-fastcgi-server.upstart  |  2 +-
 4 files changed, 16 insertions(+), 18 deletions(-)

diff --git a/debian/lemonldap-ng-fastcgi-server.init 
b/debian/lemonldap-ng-fastcgi-server.init
index 77c0d55..62a0f05 100755
--- a/debian/lemonldap-ng-fastcgi-server.init
+++ b/debian/lemonldap-ng-fastcgi-server.init
@@ -35,6 +35,19 @@ if [ -z "$SOCKET" ]; then
SOCKET=/var/run/llng-fastcgi-server/llng-fastcgi.sock
 fi
 
+for f in "$PID" "$SOCKET"; do
+   DIR=`dirname "$f"`
+   if [ ! -d "$DIR" ]; then
+   mkdir -p "$DIR"
+   if [ -n "$USER" ]; then
+   chown "$USER" "$DIR"
+   fi
+   if [ -n "$GROUP" ]; then
+   chgrp "$GROUP" "$DIR"
+   fi
+   fi
+done
+
 DAEMON_OPTS="-p ${PID} -u ${USER} -g ${GROUP} -s ${SOCKET}"
 
 if [ -z "$CUSTOM_FUNCTIONS_FILE" ]; then
diff --git a/debian/lemonldap-ng-fastcgi-server.postinst 
b/debian/lemonldap-ng-fastcgi-server.postinst
deleted file mode 100644
index cc7aaf1..000
--- a/debian/lemonldap-ng-fastcgi-server.postinst
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-
-set -e
-
-USER="www-data"
-GROUP="www-data"
-CHOWN="/bin/chown"
-ID="/usr/bin/id"
-
-if ! test -d /var/run/llng-fastcgi-server; then
-  rm -rf /var/run/llng-fastcgi-server
-  mkdir /var/run/llng-fastcgi-server
-fi
-$CHOWN $USER:$GROUP /var/run/llng-fastcgi-server
-
-#DEBHELPER#
-exit 0
diff --git a/debian/lemonldap-ng-fastcgi-server.service 
b/debian/lemonldap-ng-fastcgi-server.service
index c42d592..5c024ec 100644
--- a/debian/lemonldap-ng-fastcgi-server.service
+++ b/debian/lemonldap-ng-fastcgi-server.service
@@ -7,6 +7,8 @@ 
Documentation=http://lemonldap-ng.org/documentation/latest/fastcgiserver
 Type=forking
 EnvironmentFile=/etc/default/lemonldap-ng-fastcgi-server
 PIDFile=/var/run/llng-fastcgi-server/llng-fastcgi-server.pid
+ExecStartPre=-/bin/mkdir /var/run/llng-fastcgi-server
+ExecStartPre=/bin/chown www-data:www-data /var/run/llng-fastcgi-server
 ExecStart=/usr/sbin/llng-fastcgi-server
 ExecStop=-/sbin/start-stop-daemon --quiet --stop --retry QUIT/5 --pidfile 
${PID}
 KillMode=mixed
diff --git a/debian/lemonldap-ng-fastcgi-server.upstart 
b/debian/lemonldap-ng-fastcgi-server.upstart
index 1326a48..46515f6 100644
--- a/debian/lemonldap-ng-fastcgi-server.upstart
+++ b/debian/lemonldap-ng-fastcgi-server.upstart
@@ -10,5 +10,5 @@ pre-start script
 [ -x /usr/sbin/llng-fastcgi-server ] || { stop; exit 0; }
 end script  
 
-exec /usr/sbin/llng-fastcgi-server -u www-data -g www-data -s 
/var/run/llng-fastcgi-server/llng-fastcgi.sock -p 
/var/run/llng-fastcgi-server/llng-fastcgi-server.pid
+exec mkdir /var/run/llng-fastcgi-server; chown www-data:www-data 
/var/run/llng-fastcgi-server && /usr/sbin/llng-fastcgi-server -u www-data -g 
www-data -s /var/run/llng-fastcgi-server/llng-fastcgi.sock -p 
/var/run/llng-fastcgi-server/llng-fastcgi-server.pid
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/lemonldap-ng.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[lemonldap-ng] 06/07: Update README

2016-03-06 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch master
in repository lemonldap-ng.

commit 0d6c4da6047d40b7d36458a7f6f96267cc8aa5f7
Author: Xavier Guimard 
Date:   Sun Mar 6 12:53:06 2016 +0100

Update README
---
 debian/lemonldap-ng.README.Debian | 4 
 1 file changed, 4 insertions(+)

diff --git a/debian/lemonldap-ng.README.Debian 
b/debian/lemonldap-ng.README.Debian
index 781a4e8..2b5920a 100644
--- a/debian/lemonldap-ng.README.Debian
+++ b/debian/lemonldap-ng.README.Debian
@@ -47,6 +47,10 @@ Enable the components you've installed:
   ln -s ../sites-available/manager-nginx.conf
 
   # Handler
+  # Warning: if no site is protected (see example files for this), the
+  # $lmremote_user variable will not be set. So you can't load this file since
+  # it includes /etc/lemonldap/nginx-lmlog.conf that requires at least one
+  # protected virtual host.
   ln -s ../sites-available/handler-nginx.conf
 
 Customize then, then reload nginx

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/lemonldap-ng.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[lemonldap-ng] 02/07: Move psessions dir from portal to common

2016-03-06 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch master
in repository lemonldap-ng.

commit 70af135dbcce3c8030a32c325a8fe7931445b01a
Author: Xavier Guimard 
Date:   Sun Mar 6 10:32:04 2016 +0100

Move psessions dir from portal to common
---
 debian/liblemonldap-ng-common-perl.dirs | 1 +
 debian/liblemonldap-ng-portal-perl.dirs | 2 --
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/debian/liblemonldap-ng-common-perl.dirs 
b/debian/liblemonldap-ng-common-perl.dirs
index ba4ac69..d958d0a 100644
--- a/debian/liblemonldap-ng-common-perl.dirs
+++ b/debian/liblemonldap-ng-common-perl.dirs
@@ -1,2 +1,3 @@
 /var/lib/lemonldap-ng/conf
 /var/lib/lemonldap-ng/sessions/lock
+/var/lib/lemonldap-ng/psessions/lock
diff --git a/debian/liblemonldap-ng-portal-perl.dirs 
b/debian/liblemonldap-ng-portal-perl.dirs
index a7a9f4f..5e53001 100644
--- a/debian/liblemonldap-ng-portal-perl.dirs
+++ b/debian/liblemonldap-ng-portal-perl.dirs
@@ -1,4 +1,2 @@
 /var/lib/lemonldap-ng/captcha
-/var/lib/lemonldap-ng/sessions/lock
-/var/lib/lemonldap-ng/psessions/lock
 /var/lib/lemonldap-ng/notifications

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/lemonldap-ng.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[lemonldap-ng] 03/07: Move psessions dir from portal to common

2016-03-06 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch master
in repository lemonldap-ng.

commit 3a2c77b24ffe611783704b0fd18b116ab01848bf
Author: Xavier Guimard 
Date:   Sun Mar 6 10:32:39 2016 +0100

Move psessions dir from portal to common
---
 debian/liblemonldap-ng-portal-perl.dirs | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/debian/liblemonldap-ng-portal-perl.dirs 
b/debian/liblemonldap-ng-portal-perl.dirs
index 5e53001..a7a9f4f 100644
--- a/debian/liblemonldap-ng-portal-perl.dirs
+++ b/debian/liblemonldap-ng-portal-perl.dirs
@@ -1,2 +1,4 @@
 /var/lib/lemonldap-ng/captcha
+/var/lib/lemonldap-ng/sessions/lock
+/var/lib/lemonldap-ng/psessions/lock
 /var/lib/lemonldap-ng/notifications

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/lemonldap-ng.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[lemonldap-ng] branch master updated (384ea5d -> 06af83a)

2016-03-06 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a change to branch master
in repository lemonldap-ng.

  from  384ea5d   back to UNRELEASED, TODO added to d/changelog
   new  1e4d6a5   Add documentation field in systemd service file
   new  70af135   Move psessions dir from portal to common
   new  3a2c77b   Move psessions dir from portal to common
   new  23e832c   Add psessions dirs in lintian overrides
   new  045ff00   Create /run/llng-fastcgi-server at startup
   new  0d6c4da   Update README
   new  06af83a   Update d/ch

The 7 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/changelog | 11 +--
 debian/lemonldap-ng-fastcgi-server.init  | 13 +
 debian/lemonldap-ng-fastcgi-server.postinst  | 17 -
 debian/lemonldap-ng-fastcgi-server.service   |  3 +++
 debian/lemonldap-ng-fastcgi-server.upstart   |  2 +-
 debian/lemonldap-ng.README.Debian|  4 
 debian/liblemonldap-ng-common-perl.dirs  |  1 +
 debian/liblemonldap-ng-common-perl.lintian-overrides |  2 ++
 8 files changed, 33 insertions(+), 20 deletions(-)
 delete mode 100644 debian/lemonldap-ng-fastcgi-server.postinst

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/lemonldap-ng.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[lemonldap-ng] 04/07: Add psessions dirs in lintian overrides

2016-03-06 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch master
in repository lemonldap-ng.

commit 23e832c4112a1e42fb040670705e8585d6a7d186
Author: Xavier Guimard 
Date:   Sun Mar 6 10:33:21 2016 +0100

Add psessions dirs in lintian overrides
---
 debian/liblemonldap-ng-common-perl.lintian-overrides | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/debian/liblemonldap-ng-common-perl.lintian-overrides 
b/debian/liblemonldap-ng-common-perl.lintian-overrides
index 042f46f..4e91d2a 100644
--- a/debian/liblemonldap-ng-common-perl.lintian-overrides
+++ b/debian/liblemonldap-ng-common-perl.lintian-overrides
@@ -11,3 +11,5 @@ liblemonldap-ng-common-perl: non-standard-file-perm 
var/lib/lemonldap-ng/conf/lm
 # directory, so it must not be readable by all but must be writable by www-data
 liblemonldap-ng-common-perl: non-standard-dir-perm 
var/lib/lemonldap-ng/sessions/ 0770 != 0755
 liblemonldap-ng-common-perl: non-standard-dir-perm 
var/lib/lemonldap-ng/sessions/lock/ 0770 != 0755
+liblemonldap-ng-common-perl: non-standard-dir-perm 
var/lib/lemonldap-ng/psessions/ 0770 != 0755
+liblemonldap-ng-common-perl: non-standard-dir-perm 
var/lib/lemonldap-ng/psessions/lock/ 0770 != 0755

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/lemonldap-ng.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[lemonldap-ng] 07/07: Update d/ch

2016-03-06 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch master
in repository lemonldap-ng.

commit 06af83a7006546a32a54f47fb2121487515a8cf9
Author: Xavier Guimard 
Date:   Sun Mar 6 12:55:19 2016 +0100

Update d/ch
---
 debian/changelog | 11 +--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 0916ca1..97099a6 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-lemonldap-ng (1.9.0-1) UNRELEASED; urgency=medium
+lemonldap-ng (1.9.0-1) unstable; urgency=medium
 
   TODO:
   I think there is a problem with the server and its PID-file:
@@ -13,10 +13,15 @@ lemonldap-ng (1.9.0-1) UNRELEASED; urgency=medium
   - maybe also something is needed for systemd (probably tmpfiles.d), no idea
 about upstart
 
+  => Thanks Gregor for your report. I've modified files to do this
+
   lintian issues some easy-to-fix tags:
   wildcard-matches-nothing-in-dep5-copyright,
   unused-file-paragraph-in-dep5-copyright, unused-override
 
+  => using "lintian  -i -v -I -E --pedantic", I can't see this warnings. Which
+ option must be set ?
+
   [ Xavier Guimard ]
   * Move priority from optional to extra to be compliant to 2.5 policy chapter
 (some dependencies are in extra section)
@@ -57,11 +62,13 @@ lemonldap-ng (1.9.0-1) UNRELEASED; urgency=medium
 - Remove "source-is-missing" lintian overrides
 - Replace duplicate files by links in doc
 - Hide false positive lintian warning about privacy breach
+- Add psessions directories in lintian overrides
   * debian/rules:
 - Update make variables
 - Use USEDEBIANLIBS=yes in make install
+  * Update README.Debian
 
- -- Xavier Guimard   Sat, 05 Mar 2016 14:37:51 +0100
+ -- Xavier Guimard   Sun, 06 Mar 2016 12:54:44 +0100
 
 lemonldap-ng (1.4.6-3) unstable; urgency=medium
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/lemonldap-ng.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[lemonldap-ng] 01/07: Add documentation field in systemd service file

2016-03-06 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch master
in repository lemonldap-ng.

commit 1e4d6a5e8f922ee2bcaf3b1dc3044f92bcb6d594
Author: Xavier Guimard 
Date:   Sun Mar 6 10:31:33 2016 +0100

Add documentation field in systemd service file
---
 debian/lemonldap-ng-fastcgi-server.service | 1 +
 1 file changed, 1 insertion(+)

diff --git a/debian/lemonldap-ng-fastcgi-server.service 
b/debian/lemonldap-ng-fastcgi-server.service
index bc33665..c42d592 100644
--- a/debian/lemonldap-ng-fastcgi-server.service
+++ b/debian/lemonldap-ng-fastcgi-server.service
@@ -1,6 +1,7 @@
 [Unit]
 Description=FastCGI server for Lemonldap::NG websso system
 After=network.target
+Documentation=http://lemonldap-ng.org/documentation/latest/fastcgiserver
 
 [Service]
 Type=forking

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/lemonldap-ng.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[lemonldap-ng] branch master updated (06af83a -> 824ea00)

2016-03-06 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a change to branch master
in repository lemonldap-ng.

  from  06af83a   Update d/ch
   new  824ea00   Add ${perl:Depends} for FastCGI server

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/control | 1 +
 1 file changed, 1 insertion(+)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/lemonldap-ng.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[lemonldap-ng] 01/01: Add ${perl:Depends} for FastCGI server

2016-03-06 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch master
in repository lemonldap-ng.

commit 824ea00f0b3a1a285a8d713b7974e7e15d62f953
Author: Xavier Guimard 
Date:   Sun Mar 6 13:01:14 2016 +0100

Add ${perl:Depends} for FastCGI server
---
 debian/control | 1 +
 1 file changed, 1 insertion(+)

diff --git a/debian/control b/debian/control
index fa68ade..d7a5fa9 100644
--- a/debian/control
+++ b/debian/control
@@ -110,6 +110,7 @@ Description: French documentation of Lemonldap::NG Web-SSO 
system
 Package: lemonldap-ng-fastcgi-server
 Architecture: all
 Depends: ${misc:Depends},
+ ${perl:Depends},
  nginx-extras | nginx,
  liblemonldap-ng-handler-perl,
  libplack-perl

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/lemonldap-ng.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[lemonldap-ng] 01/01: add comments to d/changelog

2016-03-06 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a commit to branch master
in repository lemonldap-ng.

commit 6df28cc6237fd7aaa282343ddfdd02e5fb2a3683
Author: gregor herrmann 
Date:   Sun Mar 6 13:49:26 2016 +0100

add comments to d/changelog

Gbp-Dch: Ignore
---
 debian/changelog | 34 +++---
 1 file changed, 23 insertions(+), 11 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 97099a6..35748ad 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,18 +2,10 @@ lemonldap-ng (1.9.0-1) unstable; urgency=medium
 
   TODO:
   I think there is a problem with the server and its PID-file:
-  debian/lemonldap-ng-fastcgi-server.postinst creates
-  /var/run/llng-fastcgi-server; but /var/run is a symlink to /run, and /run is
-  (often?) on a tmpfs, so /var/run/llng-fastcgi-server will simply be gone
-  after a reboot. this means:
-  - in debian/lemonldap-ng-fastcgi-server.postinst this can probably be
-removed
-  - the mkdir+chown needs to happen in debian/lemonldap-ng-fastcgi-server.init
-for sysvinit
-  - maybe also something is needed for systemd (probably tmpfiles.d), no idea
-about upstart
-
+  [..]
   => Thanks Gregor for your report. I've modified files to do this
+  ==> I think for systemd tmpfiles.d would be the canonical approach but your
+  solution probably works as well
 
   lintian issues some easy-to-fix tags:
   wildcard-matches-nothing-in-dep5-copyright,
@@ -21,6 +13,26 @@ lemonldap-ng (1.9.0-1) unstable; urgency=medium
 
   => using "lintian  -i -v -I -E --pedantic", I can't see this warnings. Which
  option must be set ?
+  ==> they are all "I:" so -I should be enough; and this works for me
+ (normally I have a ~/.lintianrc):
+ lintian -I -E --pedantic --show-overrides --no-tag-display-limit 
lemonldap-ng_1.9.0-1_amd64.changes
+ the resulting I: tags are:
+  I: lemonldap-ng source: wildcard-matches-nothing-in-dep5-copyright 
lemonldap-ng-portal/example/skins/common/portal.js (paragraph at line 22)
+  I: lemonldap-ng source: wildcard-matches-nothing-in-dep5-copyright 
lemonldap-ng-manager/example/skins/default/images/tree/* (paragraph at line 73)
+  I: lemonldap-ng source: wildcard-matches-nothing-in-dep5-copyright 
*jquery.elastic.source.js (paragraph at line 81)
+  I: lemonldap-ng source: wildcard-matches-nothing-in-dep5-copyright 
*jquery-ui*.css (paragraph at line 85)
+  I: lemonldap-ng source: wildcard-matches-nothing-in-dep5-copyright 
*/ui-lightness/images/* (paragraph at line 85)
+  I: lemonldap-ng source: wildcard-matches-nothing-in-dep5-copyright 
lemonldap-ng-manager/example/skins/default/images/apps-logos/* (paragraph at 
line 128)
+  I: lemonldap-ng source: wildcard-matches-nothing-in-dep5-copyright 
lemonldap-ng-manager/example/skins/default/images/*arrow* (paragraph at line 
128)
+  I: lemonldap-ng source: wildcard-matches-nothing-in-dep5-copyright 
scripts/CSS/Minifier.pm (paragraph at line 139)
+  I: lemonldap-ng source: wildcard-matches-nothing-in-dep5-copyright 
scripts/JavaScript/Minifier.pm (paragraph at line 139)
+  I: lemonldap-ng source: unused-file-paragraph-in-dep5-copyright 
paragraph at line 139
+  I: lemonldap-ng source: unused-file-paragraph-in-dep5-copyright 
paragraph at line 22
+  I: lemonldap-ng source: unused-file-paragraph-in-dep5-copyright 
paragraph at line 81
+  I: lemonldap-ng source: unused-license-paragraph-in-dep5-copyright 
gpl-3+ (paragraph at line 823)
+  I: liblemonldap-ng-handler-perl: unused-override non-standard-dir-perm 
var/lib/lemonldap-ng/sessions/ 0770 != 0755
+  I: liblemonldap-ng-handler-perl: unused-override non-standard-dir-perm 
var/lib/lemonldap-ng/sessions/lock/ 0770 != 0755
+
 
   [ Xavier Guimard ]
   * Move priority from optional to extra to be compliant to 2.5 policy chapter

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/lemonldap-ng.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[lemonldap-ng] branch master updated (824ea00 -> 6df28cc)

2016-03-06 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a change to branch master
in repository lemonldap-ng.

  from  824ea00   Add ${perl:Depends} for FastCGI server
   new  6df28cc   add comments to d/changelog

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/changelog | 34 +++---
 1 file changed, 23 insertions(+), 11 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/lemonldap-ng.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[libnet-domain-tld-perl] 03/06: Update years of upstream and packaging copyright.

2016-03-06 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a commit to branch master
in repository libnet-domain-tld-perl.

commit 219e5f55073cf77476b72b9997287c0bfd563381
Author: gregor herrmann 
Date:   Sun Mar 6 17:02:16 2016 +0100

Update years of upstream and packaging copyright.
---
 debian/copyright | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/copyright b/debian/copyright
index 88bfcaf..7c33e53 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -4,12 +4,12 @@ Upstream-Contact: Alex Pavlovic 
(alex.pavlo...@taskforce-1.com)
 Source: https://metacpan.org/release/Net-Domain-TLD
 
 Files: *
-Copyright: 2003-2014, Alex Pavlovic (alex.pavlo...@taskforce-1.com)
+Copyright: 2003-2016, Alex Pavlovic (alex.pavlo...@taskforce-1.com)
 License: Artistic or GPL-1+
 
 Files: debian/*
 Copyright: 2004, Marc Brockschmidt 
- 2006-2015, gregor herrmann 
+ 2006-2016, gregor herrmann 
  2008, Brian Cassidy 
  2011, Nicholas Bamber 
  2014, Daniel Lintott 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libnet-domain-tld-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[libnet-domain-tld-perl] 06/06: releasing package libnet-domain-tld-perl version 1.74-1

2016-03-06 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a commit to branch master
in repository libnet-domain-tld-perl.

commit 7db7bd1679d766a006bea3675d01ad2aa2b573c7
Author: gregor herrmann 
Date:   Sun Mar 6 17:04:23 2016 +0100

releasing package libnet-domain-tld-perl version 1.74-1
---
 debian/changelog | 7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 7cbcbc0..c85e162 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-libnet-domain-tld-perl (1.74-1) UNRELEASED; urgency=medium
+libnet-domain-tld-perl (1.74-1) unstable; urgency=medium
 
   [ Salvatore Bonaccorso ]
   * debian/control: Use HTTPS transport protocol for Vcs-Git URI
@@ -7,8 +7,11 @@ libnet-domain-tld-perl (1.74-1) UNRELEASED; urgency=medium
   * New upstream release.
 Fixes "Please package new upstream release 1.74"
 (Closes: #816390)
+  * Update years of upstream and packaging copyright.
+  * Declare compliance with Debian Policy 3.9.7.
+  * Bump debhelper compatibility level to 9.
 
- -- gregor herrmann   Sun, 06 Mar 2016 17:00:07 +0100
+ -- gregor herrmann   Sun, 06 Mar 2016 17:03:07 +0100
 
 libnet-domain-tld-perl (1.73-1) unstable; urgency=medium
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libnet-domain-tld-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[libnet-domain-tld-perl] branch pristine-tar updated (6046769 -> 2172130)

2016-03-06 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a change to branch pristine-tar
in repository libnet-domain-tld-perl.

  from  6046769   pristine-tar data for 
libnet-domain-tld-perl_1.73.orig.tar.gz
   new  2172130   pristine-tar data for 
libnet-domain-tld-perl_1.74.orig.tar.gz

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 libnet-domain-tld-perl_1.74.orig.tar.gz.delta | Bin 0 -> 1134 bytes
 libnet-domain-tld-perl_1.74.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 libnet-domain-tld-perl_1.74.orig.tar.gz.delta
 create mode 100644 libnet-domain-tld-perl_1.74.orig.tar.gz.id

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libnet-domain-tld-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[libnet-domain-tld-perl] annotated tag debian/1.74-1 created (now d25fb62)

2016-03-06 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a change to annotated tag debian/1.74-1
in repository libnet-domain-tld-perl.

at  d25fb62   (tag)
   tagging  7db7bd1679d766a006bea3675d01ad2aa2b573c7 (commit)
  replaces  debian/1.73-1
 tagged by  gregor herrmann
on  Sun Mar 6 17:04:23 2016 +0100

- Log -
tagging package libnet-domain-tld-perl version debian/1.74-1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQJ8BAABCgBmBQJW3FUHXxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXREMUUxMzE2RTkzQTc2MEE4MTA0RDg1RkFC
QjNBNjgwMTg2NDlBQTA2AAoJELs6aAGGSaoGRxcQAJAU42DGzCDO8Qwqvh7mYCI0
oxSUbzYw7PYFI2Yge7G2UHmVLbGrgkEaERJuT2HQl2tZN6VUVkZHuTNHjLZ4mS//
TaaXUleyU23+3typ/H6Mq2cF/x1jb234yd5awi7cTNv71hCD7Mu6vdPrx5jjBQ4a
pJvegHCuW24wJ9f4iFuCUmeWaopS7Bw9glF1GnEftx/dyLojjQmUPdVSQHPHLvOD
QoWrCwBpPcnxrfwqih/DusjSn8j+j3fRmkXNp9H142ggMCC82Axpqohm5ofvobLN
7ardxPTZEGwssnwfSQ5TZJmXDqda13vO8J7oEBcHkWom3EDN1O/ykkog7uy7svkH
wVIwlFLp2mLs6kRmdBieqEJRAwwcC2EH5ZZ/sIyZOxuraAeFIo1RAvvPE43qOejr
UaNQZRGFjCivRzyJuZBlvH1l5UOtxGcNhYSTzaiZQkpv3QEkb8rxoqM0B6U5Yn0+
GjmA+ukE7BO4nJimCKf9cDctyVfx2mpsQm7Y/GrdTMqIbgThaTfPa0Cn2kb2y3fK
sM3k6buQLMPrOWej0S7PpBCAYI1yNy1RnPm50RXlJklTG2XcFj0cDuVLpOW+5uuV
3W5GBCPGWqqe1aeus2CZyU+ixBJAZL5Cmiq2G5lBE3LR82wZALQnVjwwxOBAvqz7
LGjYgp0wlrgufR4wqsCy
=QqID
-END PGP SIGNATURE-

Salvatore Bonaccorso (2):
  debian/control: Use HTTPS transport protocol for Vcs-Git URI
  update changelog

gregor herrmann (7):
  Imported Upstream version 1.74
  Merge tag 'upstream/1.74'
  New upstream release. Fixes "Please package new upstream release 1.74" 
(Closes: #816390)
  Update years of upstream and packaging copyright.
  Declare compliance with Debian Policy 3.9.7.
  Bump debhelper compatibility level to 9.
  releasing package libnet-domain-tld-perl version 1.74-1

---

This annotated tag includes the following new commits:

   new  3f96a9c   Merge tag 'upstream/1.74'
   new  9357e0f   New upstream release. Fixes "Please package new upstream 
release 1.74" (Closes: #816390)
   new  219e5f5   Update years of upstream and packaging copyright.
   new  07a7662   Declare compliance with Debian Policy 3.9.7.
   new  b2afdb9   Bump debhelper compatibility level to 9.
   new  7db7bd1   releasing package libnet-domain-tld-perl version 1.74-1

The 6 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libnet-domain-tld-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[libnet-domain-tld-perl] annotated tag upstream/1.74 created (now 7b569d5)

2016-03-06 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a change to annotated tag upstream/1.74
in repository libnet-domain-tld-perl.

at  7b569d5   (tag)
   tagging  6b8b966a270a4a1bd21b5a5ebe9bd2d061d7eb8e (commit)
  replaces  upstream/1.73
 tagged by  gregor herrmann
on  Sun Mar 6 17:00:06 2016 +0100

- Log -
Upstream version 1.74

gregor herrmann (1):
  Imported Upstream version 1.74

---

No new revisions were added by this update.

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libnet-domain-tld-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[libnet-domain-tld-perl] 01/06: Merge tag 'upstream/1.74'

2016-03-06 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a commit to branch master
in repository libnet-domain-tld-perl.

commit 3f96a9cfa1fa9c5628d91fcde40ef4495400ac1f
Merge: 2e91cb2 6b8b966
Author: gregor herrmann 
Date:   Sun Mar 6 17:00:07 2016 +0100

Merge tag 'upstream/1.74'

Upstream version 1.74

 Changes   |   5 +-
 META.json |   5 +-
 META.yml  |  15 +-
 README|   2 +-
 lib/Net/Domain/TLD.pm | 727 ++
 5 files changed, 638 insertions(+), 116 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libnet-domain-tld-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[libnet-domain-tld-perl] 04/06: Declare compliance with Debian Policy 3.9.7.

2016-03-06 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a commit to branch master
in repository libnet-domain-tld-perl.

commit 07a7662e592e9de2c334156014c8af0ddcc21c39
Author: gregor herrmann 
Date:   Sun Mar 6 17:02:30 2016 +0100

Declare compliance with Debian Policy 3.9.7.
---
 debian/control | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index 3625980..070dad3 100644
--- a/debian/control
+++ b/debian/control
@@ -8,7 +8,7 @@ Section: perl
 Priority: optional
 Build-Depends: debhelper (>= 8)
 Build-Depends-Indep: perl
-Standards-Version: 3.9.6
+Standards-Version: 3.9.7
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libnet-domain-tld-perl.git
 Vcs-Git: 
https://anonscm.debian.org/git/pkg-perl/packages/libnet-domain-tld-perl.git
 Homepage: https://metacpan.org/release/Net-Domain-TLD

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libnet-domain-tld-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[lemonldap-ng] branch master updated (6df28cc -> 9b5798b)

2016-03-06 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a change to branch master
in repository lemonldap-ng.

  from  6df28cc   add comments to d/changelog
   new  e487856   Remove unused lintian overrides
   new  3fc98c7   Update d/copy
   new  1efe77a   Use systemd/tmpfile.d for fastcgi server
   new  9b5798b   Update d/ch

The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/changelog   | 39 ++
 debian/copyright   | 27 ++-
 debian/lemonldap-ng-fastcgi-server.service |  2 --
 debian/lemonldap-ng-fastcgi-server.tmpfile |  1 +
 .../liblemonldap-ng-handler-perl.lintian-overrides |  4 ---
 5 files changed, 6 insertions(+), 67 deletions(-)
 create mode 100644 debian/lemonldap-ng-fastcgi-server.tmpfile
 delete mode 100644 debian/liblemonldap-ng-handler-perl.lintian-overrides

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/lemonldap-ng.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[lemonldap-ng] 03/04: Use systemd/tmpfile.d for fastcgi server

2016-03-06 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch master
in repository lemonldap-ng.

commit 1efe77aa123f2155e6ad1d4d4350505b2e7e0a72
Author: Xavier Guimard 
Date:   Sun Mar 6 17:42:08 2016 +0100

Use systemd/tmpfile.d for fastcgi server

Thanks to Gregor :-)
---
 debian/lemonldap-ng-fastcgi-server.service | 2 --
 debian/lemonldap-ng-fastcgi-server.tmpfile | 1 +
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/debian/lemonldap-ng-fastcgi-server.service 
b/debian/lemonldap-ng-fastcgi-server.service
index 5c024ec..c42d592 100644
--- a/debian/lemonldap-ng-fastcgi-server.service
+++ b/debian/lemonldap-ng-fastcgi-server.service
@@ -7,8 +7,6 @@ 
Documentation=http://lemonldap-ng.org/documentation/latest/fastcgiserver
 Type=forking
 EnvironmentFile=/etc/default/lemonldap-ng-fastcgi-server
 PIDFile=/var/run/llng-fastcgi-server/llng-fastcgi-server.pid
-ExecStartPre=-/bin/mkdir /var/run/llng-fastcgi-server
-ExecStartPre=/bin/chown www-data:www-data /var/run/llng-fastcgi-server
 ExecStart=/usr/sbin/llng-fastcgi-server
 ExecStop=-/sbin/start-stop-daemon --quiet --stop --retry QUIT/5 --pidfile 
${PID}
 KillMode=mixed
diff --git a/debian/lemonldap-ng-fastcgi-server.tmpfile 
b/debian/lemonldap-ng-fastcgi-server.tmpfile
new file mode 100644
index 000..1d2088a
--- /dev/null
+++ b/debian/lemonldap-ng-fastcgi-server.tmpfile
@@ -0,0 +1 @@
+d  /run/llng-fastcgi-server0755www-datawww-data
-   -

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/lemonldap-ng.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[lemonldap-ng] 01/04: Remove unused lintian overrides

2016-03-06 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch master
in repository lemonldap-ng.

commit e48785627b3d02c90db2961abf7d80dc5369ba69
Author: Xavier Guimard 
Date:   Sun Mar 6 17:23:33 2016 +0100

Remove unused lintian overrides
---
 debian/liblemonldap-ng-handler-perl.lintian-overrides | 4 
 1 file changed, 4 deletions(-)

diff --git a/debian/liblemonldap-ng-handler-perl.lintian-overrides 
b/debian/liblemonldap-ng-handler-perl.lintian-overrides
deleted file mode 100644
index d465419..000
--- a/debian/liblemonldap-ng-handler-perl.lintian-overrides
+++ /dev/null
@@ -1,4 +0,0 @@
-# If file storage is used for sessions, user passord may be stored in this
-# directory, so it must not be readable by all but must be writable by www-data
-liblemonldap-ng-handler-perl: non-standard-dir-perm 
var/lib/lemonldap-ng/sessions/ 0770 != 0755
-liblemonldap-ng-handler-perl: non-standard-dir-perm 
var/lib/lemonldap-ng/sessions/lock/ 0770 != 0755

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/lemonldap-ng.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[lemonldap-ng] 02/04: Update d/copy

2016-03-06 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch master
in repository lemonldap-ng.

commit 3fc98c7ff63c9bc30f167ff4f3384c64de99e870
Author: Xavier Guimard 
Date:   Sun Mar 6 17:40:56 2016 +0100

Update d/copy
---
 debian/copyright | 27 ++-
 1 file changed, 2 insertions(+), 25 deletions(-)

diff --git a/debian/copyright b/debian/copyright
index 6457342..f8c461d 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -19,7 +19,7 @@ Copyright: 2005-2016, Xavier Guimard 
  2008-2012, Thomas Chemineau 
 License: GPL-2+
 
-Files: lemonldap-ng-portal/example/skins/common/portal.js
+Files: lemonldap-ng-portal/example/skins/common/js/portal.js
 Copyright: 2005-2016, Xavier Guimard 
  2006-2016, Clement Oudot 
  2008-2012, Thomas Chemineau 
@@ -70,19 +70,11 @@ Copyright: Various artists
 License: CC-BY-NC-ND-3.0 or GFDL-1.3
 Comment: dowloaded from http://commons.wikimedia.org
 
-Files: *tree.js lemonldap-ng-manager/example/skins/default/images/tree/*
-Copyright: 2008, Peter Panov 
-License: BSD-3-Clause
-
 Files: *jquery.base64.js
 Copyright: Muhammad Hussein Fattahizadeh 
 License: GPL-2+
 
-Files: *jquery.elastic.source.js
-Copyright: Jan Jarfalk - http://www.unwrongest.com
-License: Expat
-
-Files: *jquery-ui*.js *jquery-ui*.css */ui-lightness/images/*
+Files: lemonldap-ng-portal/example/skins/common/js/jquery-ui-*
 Copyright: 2008 Paul Bakaus (ui.jquery.com)
  Brandon Aaron
  David Bolter
@@ -126,8 +118,6 @@ Copyright: 2015, Eli Grey http://eligrey.com
 License: Expat
 
 Files: lemonldap-ng-portal/example/skins/common/apps/*
- lemonldap-ng-manager/example/skins/default/images/apps-logos/*
- lemonldap-ng-manager/example/skins/default/images/*arrow*
  doc/media/icons/*
 Copyright: 2006-2007 Everaldo Coelho, Crystal Project
 License: LGPL-3
@@ -136,10 +126,6 @@ Files: doc/media/icons/flags/*
 Copyright: Mark James
 License: CC-3
 
-Files: scripts/CSS/Minifier.pm scripts/JavaScript/Minifier.pm
-Copyright: 2007, Peter Michaux 
-License: Artistic or GPL-1+
-
 Files: scripts/doxygenfilter scripts/DoxyGen/Filter.pm
  scripts/DoxyGen/SQLFilter.pm
 Copyright: 2002, Bart Schuller
@@ -820,15 +806,6 @@ License: GPL-2+
  On Debian systems, the complete text of version 2 of the GNU General
  Public License can be found in `/usr/share/common-licenses/GPL-2'
 
-License: GPL-3+
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 3, or (at your option)
- any later version.
- .
- On Debian systems, the complete text of version 3 of the GNU General
- Public License can be found in `/usr/share/common-licenses/GPL-3'
-
 License: LGPL-2
  This program is free software; you can redistribute it and/or modify
  it under the terms of the GNU Lesser General Public License as

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/lemonldap-ng.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[lemonldap-ng] 04/04: Update d/ch

2016-03-06 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch master
in repository lemonldap-ng.

commit 9b5798b6194655da305a3b2caac67405a2969c50
Author: Xavier Guimard 
Date:   Sun Mar 6 17:42:26 2016 +0100

Update d/ch
---
 debian/changelog | 39 +++
 1 file changed, 3 insertions(+), 36 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 35748ad..79adb0c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,39 +1,5 @@
 lemonldap-ng (1.9.0-1) unstable; urgency=medium
 
-  TODO:
-  I think there is a problem with the server and its PID-file:
-  [..]
-  => Thanks Gregor for your report. I've modified files to do this
-  ==> I think for systemd tmpfiles.d would be the canonical approach but your
-  solution probably works as well
-
-  lintian issues some easy-to-fix tags:
-  wildcard-matches-nothing-in-dep5-copyright,
-  unused-file-paragraph-in-dep5-copyright, unused-override
-
-  => using "lintian  -i -v -I -E --pedantic", I can't see this warnings. Which
- option must be set ?
-  ==> they are all "I:" so -I should be enough; and this works for me
- (normally I have a ~/.lintianrc):
- lintian -I -E --pedantic --show-overrides --no-tag-display-limit 
lemonldap-ng_1.9.0-1_amd64.changes
- the resulting I: tags are:
-  I: lemonldap-ng source: wildcard-matches-nothing-in-dep5-copyright 
lemonldap-ng-portal/example/skins/common/portal.js (paragraph at line 22)
-  I: lemonldap-ng source: wildcard-matches-nothing-in-dep5-copyright 
lemonldap-ng-manager/example/skins/default/images/tree/* (paragraph at line 73)
-  I: lemonldap-ng source: wildcard-matches-nothing-in-dep5-copyright 
*jquery.elastic.source.js (paragraph at line 81)
-  I: lemonldap-ng source: wildcard-matches-nothing-in-dep5-copyright 
*jquery-ui*.css (paragraph at line 85)
-  I: lemonldap-ng source: wildcard-matches-nothing-in-dep5-copyright 
*/ui-lightness/images/* (paragraph at line 85)
-  I: lemonldap-ng source: wildcard-matches-nothing-in-dep5-copyright 
lemonldap-ng-manager/example/skins/default/images/apps-logos/* (paragraph at 
line 128)
-  I: lemonldap-ng source: wildcard-matches-nothing-in-dep5-copyright 
lemonldap-ng-manager/example/skins/default/images/*arrow* (paragraph at line 
128)
-  I: lemonldap-ng source: wildcard-matches-nothing-in-dep5-copyright 
scripts/CSS/Minifier.pm (paragraph at line 139)
-  I: lemonldap-ng source: wildcard-matches-nothing-in-dep5-copyright 
scripts/JavaScript/Minifier.pm (paragraph at line 139)
-  I: lemonldap-ng source: unused-file-paragraph-in-dep5-copyright 
paragraph at line 139
-  I: lemonldap-ng source: unused-file-paragraph-in-dep5-copyright 
paragraph at line 22
-  I: lemonldap-ng source: unused-file-paragraph-in-dep5-copyright 
paragraph at line 81
-  I: lemonldap-ng source: unused-license-paragraph-in-dep5-copyright 
gpl-3+ (paragraph at line 823)
-  I: liblemonldap-ng-handler-perl: unused-override non-standard-dir-perm 
var/lib/lemonldap-ng/sessions/ 0770 != 0755
-  I: liblemonldap-ng-handler-perl: unused-override non-standard-dir-perm 
var/lib/lemonldap-ng/sessions/lock/ 0770 != 0755
-
-
   [ Xavier Guimard ]
   * Move priority from optional to extra to be compliant to 2.5 policy chapter
 (some dependencies are in extra section)
@@ -74,13 +40,14 @@ lemonldap-ng (1.9.0-1) unstable; urgency=medium
 - Remove "source-is-missing" lintian overrides
 - Replace duplicate files by links in doc
 - Hide false positive lintian warning about privacy breach
-- Add psessions directories in lintian overrides
+- Add psessions directories in lintian overrides and move all sessions
+  relative overrides to common
   * debian/rules:
 - Update make variables
 - Use USEDEBIANLIBS=yes in make install
   * Update README.Debian
 
- -- Xavier Guimard   Sun, 06 Mar 2016 12:54:44 +0100
+ -- Xavier Guimard   Sun, 06 Mar 2016 17:42:11 +0100
 
 lemonldap-ng (1.4.6-3) unstable; urgency=medium
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/lemonldap-ng.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[libnet-domain-tld-perl] branch master updated (2e91cb2 -> 7db7bd1)

2016-03-06 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a change to branch master
in repository libnet-domain-tld-perl.

  from  2e91cb2   update changelog
  adds  6b8b966   Imported Upstream version 1.74
   new  3f96a9c   Merge tag 'upstream/1.74'
   new  9357e0f   New upstream release. Fixes "Please package new upstream 
release 1.74" (Closes: #816390)
   new  219e5f5   Update years of upstream and packaging copyright.
   new  07a7662   Declare compliance with Debian Policy 3.9.7.
   new  b2afdb9   Bump debhelper compatibility level to 9.
   new  7db7bd1   releasing package libnet-domain-tld-perl version 1.74-1

The 6 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 Changes   |   5 +-
 META.json |   5 +-
 META.yml  |  15 +-
 README|   2 +-
 debian/changelog  |  13 +-
 debian/compat |   2 +-
 debian/control|   4 +-
 debian/copyright  |   4 +-
 lib/Net/Domain/TLD.pm | 727 ++
 9 files changed, 654 insertions(+), 123 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libnet-domain-tld-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[libnet-domain-tld-perl] 05/06: Bump debhelper compatibility level to 9.

2016-03-06 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a commit to branch master
in repository libnet-domain-tld-perl.

commit b2afdb925c5c2d896e960986db1da8259836c3d8
Author: gregor herrmann 
Date:   Sun Mar 6 17:02:30 2016 +0100

Bump debhelper compatibility level to 9.
---
 debian/compat  | 2 +-
 debian/control | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/compat b/debian/compat
index 45a4fb7..ec63514 100644
--- a/debian/compat
+++ b/debian/compat
@@ -1 +1 @@
-8
+9
diff --git a/debian/control b/debian/control
index 070dad3..d9b1dc4 100644
--- a/debian/control
+++ b/debian/control
@@ -6,7 +6,7 @@ Uploaders: Marc Brockschmidt ,
Daniel Lintott 
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 8)
+Build-Depends: debhelper (>= 9)
 Build-Depends-Indep: perl
 Standards-Version: 3.9.7
 Vcs-Browser: 
https://anonscm.debian.org/cgit/pkg-perl/packages/libnet-domain-tld-perl.git

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libnet-domain-tld-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[libnet-domain-tld-perl] 01/01: pristine-tar data for libnet-domain-tld-perl_1.74.orig.tar.gz

2016-03-06 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a commit to branch pristine-tar
in repository libnet-domain-tld-perl.

commit 21721300a837999431cf641043a4fad2c9099e23
Author: gregor herrmann 
Date:   Sun Mar 6 17:00:06 2016 +0100

pristine-tar data for libnet-domain-tld-perl_1.74.orig.tar.gz
---
 libnet-domain-tld-perl_1.74.orig.tar.gz.delta | Bin 0 -> 1134 bytes
 libnet-domain-tld-perl_1.74.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/libnet-domain-tld-perl_1.74.orig.tar.gz.delta 
b/libnet-domain-tld-perl_1.74.orig.tar.gz.delta
new file mode 100644
index 000..a20f542
Binary files /dev/null and b/libnet-domain-tld-perl_1.74.orig.tar.gz.delta 
differ
diff --git a/libnet-domain-tld-perl_1.74.orig.tar.gz.id 
b/libnet-domain-tld-perl_1.74.orig.tar.gz.id
new file mode 100644
index 000..56d325c
--- /dev/null
+++ b/libnet-domain-tld-perl_1.74.orig.tar.gz.id
@@ -0,0 +1 @@
+92a254174a4e1d5b08f3c10f93aa5c66e9456a68

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libnet-domain-tld-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[libnet-domain-tld-perl] 02/06: New upstream release. Fixes "Please package new upstream release 1.74" (Closes: #816390)

2016-03-06 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a commit to branch master
in repository libnet-domain-tld-perl.

commit 9357e0fd91b1c4535ca41a6d1f3a494af9f03826
Author: gregor herrmann 
Date:   Sun Mar 6 17:01:46 2016 +0100

New upstream release. Fixes "Please package new upstream release 1.74" 
(Closes: #816390)
---
 debian/changelog | 10 --
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index cb90da5..7cbcbc0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,14 @@
-libnet-domain-tld-perl (1.73-2) UNRELEASED; urgency=medium
+libnet-domain-tld-perl (1.74-1) UNRELEASED; urgency=medium
 
+  [ Salvatore Bonaccorso ]
   * debian/control: Use HTTPS transport protocol for Vcs-Git URI
 
- -- Salvatore Bonaccorso   Sat, 30 Jan 2016 20:05:40 +0100
+  [ gregor herrmann ]
+  * New upstream release.
+Fixes "Please package new upstream release 1.74"
+(Closes: #816390)
+
+ -- gregor herrmann   Sun, 06 Mar 2016 17:00:07 +0100
 
 libnet-domain-tld-perl (1.73-1) unstable; urgency=medium
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libnet-domain-tld-perl.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[lemonldap-ng] annotated tag debian/1.9.0-1 created (now 6b3630a)

2016-03-06 Thread gregor herrmann
This is an automated email from the git hooks/post-receive script.

gregoa pushed a change to annotated tag debian/1.9.0-1
in repository lemonldap-ng.

at  6b3630a   (tag)
   tagging  9b5798b6194655da305a3b2caac67405a2969c50 (commit)
  replaces  debian/1.4.6-3
 tagged by  gregor herrmann
on  Sun Mar 6 19:38:05 2016 +0100

- Log -
tagging package lemonldap-ng version debian/1.9.0-1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQJ8BAABCgBmBQJW3HkNXxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXREMUUxMzE2RTkzQTc2MEE4MTA0RDg1RkFC
QjNBNjgwMTg2NDlBQTA2AAoJELs6aAGGSaoGUCAQAJ6Bz0863S7iHf0gJQCQMXXE
YLK3CGaoThRkWiTvyAqXulWXRp1UlPOQjvPEZKe15va0Gg+GImXhH6Rp/aDa+TGG
NpyI6yoYe4VXYxJDd++Jy8gweDdB8zFuzbp69pMe+GdbWq4mRPdVoxXemTxOaPI6
bKB+BwA7nip2NJSxbnYDs5JuKbDwkhmGDdf06Uk4WiFKtCD9A/JhmrNUz+ejomY7
OOo1xWj2snaz4hHQlJCTYA24AipoNfT6JlD8Tyw15T7Gi5iTVX+oDoeUzx179NJf
FiKsiETyXnJH+qZ3z6owALiLw5kAyG5TQ7aPIGS7jHAyTPwwwcKe2cGnUs5PaUmo
CqJ5bS8oF7mY0vld99mzB1v+KgpFLB+/PtnvHzsnchfnYQhqMOqGzzBZHB1JSCXT
ddtK8+8XH61Hbb6d6HyhaJtdoCpgAcHpZILz/KLWvPTfV1tLoJBhVxIpVbGzv4B7
E4C3BFPMCmpxvf0eVffMcT5lYvz0Zhn9pRn2i9v0TSAFPZ6kMTB4C1Bfv+HunMP+
AD4EuMvcA5BqIr43LxtBNZZvT9JpOykKnEnUebalBYXkqoFBrZW06D4y24XsrcJ2
bZ9TYL8SocujnvakRmZPfUnkINGqkiw24Wa/V2naWPuxPk4XmuTXHc1kioIZHWIN
ab3Ibvn1ojrvXobosfmL
=LvQI
-END PGP SIGNATURE-

Salvatore Bonaccorso (2):
  debian/control: Use HTTPS transport protocol for Vcs-Git URI
  update changelog

Xavier Guimard (55):
  Move priority from optional to extra
  Update lintian-overrides for another false positive
  Replace some duplicated icons in doc by links
  Replace MIT license by Expat as asked by cme
  Install README.Debian only for lemonldap-ng metapackage
  Imported Upstream version 1.9.0
  Merge tag 'upstream/1.9.0'
  Update d/copy
  Update dependencies
  Update description (+OpenID-Connect)
  Add openid-connect-provider and openid-connect-relying-party virtual 
packages
  Update description (+OpenID-Connect)
  Move liblemonldap-ng-cli-perl conflict to liblemonldap-ng-common-perl
  Bump Standards-Version to 3.9.7
  Add lemonldap-ng-fr-doc and lemonldap-ng-fastcgi-server new packages
  Add systemd files for lemonldap-ng-fastcgi-server
  Update README.Debian location
  Install fr doc
  Add Nginx doc in README.Debian
  Install new man pages
  Change first conf file name
  Update install files
  Remove README.Debian from lib* (#814381)
  Update doc
  Update symlinks
  Update make variables
  Remove patches now in upstream
  Remove manager preinst file
  Unused paths
  Remove old shared-js-libs patch
  Remove "source-is-missing" lintian overrides
  Replace duplicate files by links in doc
  Remove lemonldap-ng-docs since README.Debian has moved
  Hide false positive lintian warning about privacy breach
  Spelling errors patch (reported)
  Keep angularjs files until libjs-angularjs reaches 1.4.0
  Update series
  Update examples files
  Update portal dirs
  Update portal dirs
  Add javascript patch to use javascript-common
  Use USEDEBIANLIBS=yes in make install
  Update d/ch
  Add documentation field in systemd service file
  Move psessions dir from portal to common
  Move psessions dir from portal to common
  Add psessions dirs in lintian overrides
  Create /run/llng-fastcgi-server at startup
  Update README
  Update d/ch
  Add ${perl:Depends} for FastCGI server
  Remove unused lintian overrides
  Update d/copy
  Use systemd/tmpfile.d for fastcgi server
  Update d/ch

gregor herrmann (2):
  back to UNRELEASED, TODO added to d/changelog
  add comments to d/changelog

---

No new revisions were added by this update.

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/lemonldap-ng.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[lemonldap-ng] 01/01: Add NEWS entry

2016-03-06 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch master
in repository lemonldap-ng.

commit 556d131d56b3f833ef1e61f252afcf77ae3af2ff
Author: Xavier Guimard 
Date:   Mon Mar 7 07:14:11 2016 +0100

Add NEWS entry
---
 debian/NEWS  | 59 
 debian/changelog |  6 ++
 2 files changed, 65 insertions(+)

diff --git a/debian/NEWS b/debian/NEWS
index 0332673..1b54143 100644
--- a/debian/NEWS
+++ b/debian/NEWS
@@ -1,3 +1,62 @@
+lemonldap-ng (1.9.0-2) UNRELEASED; urgency=medium
+
+  1) Configuration and sessions storage
+
+  From now, Lemonldap::NG uses JSON serialization to store configuration and
+  sessions instead of Storable::nfreeze Perl function. This permits one to have
+  heterogenous servers connected to the same LLNG organization (32/64 bits or
+  different Perl versions). Old format still works but:
+   * configuration backends: new format is applied at first configuration
+ save,
+   * sessions storages: new format is applied for each new session or when
+ updating an existing session. You can force LemonLDAP::NG to keep the old
+ serialization method by setting useStorable to 1 in sessions backend
+ options if you have some custom hooks.
+ Note that this behaviour only affects modules Apache::Session::File, SQL
+ database and Apache::Session::LDAP
+
+  If you have more than one server and don't want to stop the SSO service, 
start
+  upgrading in the following order:
+   * servers that have only handlers;
+   * portal servers (all together if your load balancer doesn't keep state by
+ user or client IP and if users use the menu);
+   * manager server
+
+  2) Manage Ajax requests when sessions expires
+
+  To request for authentication, handlers sent a 302 HTTP code even if request
+  was an Ajax one. From now, after redirection, portal will send a 401 code
+  with a WWW-Authenticate header containing "SSO portal-URL". This is a little
+  HTTP protocol hook created because browsers follow redirection transparently.
+  If you want to keep old behaviour, set noAjaxHook to 1 (in General Parameters
+  -> Advanced -> Handler redirections -> Keep redirections for Ajax).
+
+  3) New "Multi" authentication scheme
+
+  The Multi backend configuration has changed. Now the stacks are defined in
+  separate attributes:
+   * multiAuthStack
+   * multiUserDBStack
+
+  So an old configuration like this:
+
+authentication = Multi LDAP;DBI
+userDB = Multi LDAP;DBI
+
+  Must be replaced by:
+
+authentication   = Multi
+userDB   = Multi
+multiAuthStack   = LDAP;DBI
+multiUserDBStack = LDAP;DBI
+
+  4) Form replay
+
+  Management of form replay has been rewritten. If you uses this experimental
+  feature, you must edit your configuration and rewrite it.
+
+ -- Xavier Guimard   Mon, 07 Mar 2016 07:12:08 +0100
+
 lemonldap-ng (1.4.6-1) unstable; urgency=medium
 
   Handler files "My::Package" are no longer installed by default as a module
diff --git a/debian/changelog b/debian/changelog
index 79adb0c..5bcc310 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+lemonldap-ng (1.9.0-2) UNRELEASED; urgency=medium
+
+  * Add NEWS entry
+
+ -- Xavier Guimard   Mon, 07 Mar 2016 07:11:32 +0100
+
 lemonldap-ng (1.9.0-1) unstable; urgency=medium
 
   [ Xavier Guimard ]

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/lemonldap-ng.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits


[lemonldap-ng] branch master updated (9b5798b -> 556d131)

2016-03-06 Thread Xavier Guimard
This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a change to branch master
in repository lemonldap-ng.

  from  9b5798b   Update d/ch
   new  556d131   Add NEWS entry

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/NEWS  | 59 
 debian/changelog |  6 ++
 2 files changed, 65 insertions(+)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/lemonldap-ng.git

___
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits