Author: coudot
Date: 2010-07-29 14:53:57 +0200 (Thu, 29 Jul 2010)
New Revision: 115

Added:
   self-service-password/trunk/packaging/debian/conf/
   self-service-password/trunk/packaging/debian/conf/self-service-password
   self-service-password/trunk/packaging/debian/self-service-password.install
Removed:
   self-service-password/trunk/packaging/debian/postinst
   self-service-password/trunk/packaging/debian/prerm
Modified:
   self-service-password/trunk/packaging/debian/changelog
   self-service-password/trunk/packaging/debian/conffiles
   self-service-password/trunk/packaging/debian/control
   self-service-password/trunk/packaging/debian/copyright
   self-service-password/trunk/packaging/debian/rules
Log:
A lot of work on Debian packaging files (references #185)

Modified: self-service-password/trunk/packaging/debian/changelog
===================================================================
--- self-service-password/trunk/packaging/debian/changelog      2010-07-29 
08:32:41 UTC (rev 114)
+++ self-service-password/trunk/packaging/debian/changelog      2010-07-29 
12:53:57 UTC (rev 115)
@@ -1,4 +1,4 @@
-self-service-pasword (0.4) unstable; urgency=low
+ltb-project-self-service-password (0.4-1) unstable; urgency=low
 
     * Bug #183: Corrected german translations
     * Bug #189: Accentued characters in passwords are not well managed

Added: self-service-password/trunk/packaging/debian/conf/self-service-password
===================================================================
--- self-service-password/trunk/packaging/debian/conf/self-service-password     
                        (rev 0)
+++ self-service-password/trunk/packaging/debian/conf/self-service-password     
2010-07-29 12:53:57 UTC (rev 115)
@@ -0,0 +1,12 @@
+<VirtualHost *:80>
+       ServerName ssp.example.com
+
+       DocumentRoot /usr/share/ltb-self-service-password
+       DirectoryIndex index.php
+
+       AddDefaultCharset UTF-8
+
+       LogLevel warn
+       ErrorLog /var/log/apache2/ssp_error.log
+       CustomLog /var/log/apache2/ssp_access.log combined
+</VirtualHost>

Modified: self-service-password/trunk/packaging/debian/conffiles
===================================================================
--- self-service-password/trunk/packaging/debian/conffiles      2010-07-29 
08:32:41 UTC (rev 114)
+++ self-service-password/trunk/packaging/debian/conffiles      2010-07-29 
12:53:57 UTC (rev 115)
@@ -1,3 +1,2 @@
 /usr/share/self-service-password/config.inc.php
 /etc/apache2/sites-available/self-service-password
-/etc/apache2/sites-available/self-service-password-ssl

Modified: self-service-password/trunk/packaging/debian/control
===================================================================
--- self-service-password/trunk/packaging/debian/control        2010-07-29 
08:32:41 UTC (rev 114)
+++ self-service-password/trunk/packaging/debian/control        2010-07-29 
12:53:57 UTC (rev 115)
@@ -1,13 +1,15 @@
 Source: self-service-password
-Architecture: all
+Section: web
+Priority: extra
 Maintainer: Clement Oudot <[email protected]>
 Uploaders: Felix Bartels <[email protected]>
-Section: free/web
-Build-Depends: debhelper (>= 4.0.0)
-Standards-Version: 3.6.2.2
-Priority: optional
+Build-Depends: debhelper (>= 7)
+Standards-Version: 3.8.3
+Homepage: http://ltb-project.org/wiki/documentation/self-service-password
+
+Package: self-service-password
 Depends: php5, php5-ldap
-Homepage: http://ltb-project.org/wiki/documentation/self-service-password
-Description: LDAP password change interface
+Architecture: all
+Description: LDAP password change web interface
  Self Service Password is a simple PHP application that allows users to change 
their password on an LDAP directory.
  Self Service Password is provided by LDAP Tool Box project: 
http://ltb-project.org

Modified: self-service-password/trunk/packaging/debian/copyright
===================================================================
--- self-service-password/trunk/packaging/debian/copyright      2010-07-29 
08:32:41 UTC (rev 114)
+++ self-service-password/trunk/packaging/debian/copyright      2010-07-29 
12:53:57 UTC (rev 115)
@@ -4,6 +4,13 @@
 Source: http://ltb-project.org/wiki/documentation/self-service-password
 
 Files: *
-Copyright: 2009-2012, LTB-Project
+Copyright: 2009-2012, LTB-Project, Clement Oudot, Jonathan Clarke, Felix 
Bartels
+
 License: GPL
+    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 1, or (at your option)
+    any later version.
+    On Debian GNU/Linux systems, the complete text of the GNU General
+    Public License can be found in `/usr/share/common-licenses/GPL'
 

Deleted: self-service-password/trunk/packaging/debian/postinst
===================================================================
--- self-service-password/trunk/packaging/debian/postinst       2010-07-29 
08:32:41 UTC (rev 114)
+++ self-service-password/trunk/packaging/debian/postinst       2010-07-29 
12:53:57 UTC (rev 115)
@@ -1,22 +0,0 @@
-#!/bin/sh
-
-set -e
-
-# enable self-service-password for apache
-if [ -x "`which a2ensite`" ]; then
-  a2ensite self-service-password
-fi
-
-if [ -x "`which a2ensite`" ]; then
-  a2ensite self-service-password-ssl
-fi
-echo "####################################################"
-echo "To activate self-service-password you have to change"
-echo "example.com to your corresponding domain name in"
-echo "/etc/init.d/apache2/sites-enabled"
-echo "####################################################"
-echo "####################################################"
-echo "You can also protect self-service-passwird via SSL"
-echo "Just insert your certificate into self-service-password-ssl"
-echo "####################################################"
-exit 0

Deleted: self-service-password/trunk/packaging/debian/prerm
===================================================================
--- self-service-password/trunk/packaging/debian/prerm  2010-07-29 08:32:41 UTC 
(rev 114)
+++ self-service-password/trunk/packaging/debian/prerm  2010-07-29 12:53:57 UTC 
(rev 115)
@@ -1,14 +0,0 @@
-#!/bin/sh
-
-set -e
-
-# disable self-service-password for apache
-if [ -x "`which a2dissite`" ]; then
-  a2dissite self-service-password || true
-fi
-
-if [ -x "`which a2dissite`" ]; then
-  a2dissite self-service-password-ssl || true
-fi
-
-exit 0

Modified: self-service-password/trunk/packaging/debian/rules
===================================================================
--- self-service-password/trunk/packaging/debian/rules  2010-07-29 08:32:41 UTC 
(rev 114)
+++ self-service-password/trunk/packaging/debian/rules  2010-07-29 12:53:57 UTC 
(rev 115)
@@ -1,7 +1,7 @@
 #!/usr/bin/make -f
 
 export DH_VERBOSE=1
-export DH_COMPAT=4
+export DH_COMPAT=7
 
 %:
        dh $@

Added: 
self-service-password/trunk/packaging/debian/self-service-password.install
===================================================================
--- self-service-password/trunk/packaging/debian/self-service-password.install  
                        (rev 0)
+++ self-service-password/trunk/packaging/debian/self-service-password.install  
2010-07-29 12:53:57 UTC (rev 115)
@@ -0,0 +1,8 @@
+# PHP files
+../*.php   usr/share/self-service-password/
+../lang/*  usr/share/self-service-password/lang/
+../pages/* usr/share/self-service-password/pages/
+../style/* usr/share/self-service-password/style/
+
+# Apache configuration
+debian/conf/* etc/apache2/sites-available/

_______________________________________________
ltb-changes mailing list
[email protected]
http://lists.ltb-project.org/listinfo/ltb-changes

Reply via email to