From 8d0fca4c6ffb5997c7ef1b7d67ccf576c6f08b6d Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Mon, 24 Nov 2014 17:47:47 +0100 Subject: [PATCH 1/6] Initial packaging --- .gitignore | 4 ++++ changelog | 5 +++++ compat | 1 + control | 10 ++++++++++ copyright | 18 ++++++++++++++++++ dirs | 1 + ldapsaisie-supann.install | 2 ++ rules | 4 ++++ 8 files changed, 45 insertions(+) create mode 100644 .gitignore create mode 100644 changelog create mode 100644 compat create mode 100644 control create mode 100644 copyright create mode 100644 dirs create mode 100644 ldapsaisie-supann.install create mode 100755 rules diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0ba0bb1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +files +ldapsaisie.debhelper.log +ldapsaisie.substvars +ldapsaisie diff --git a/changelog b/changelog new file mode 100644 index 0000000..397299a --- /dev/null +++ b/changelog @@ -0,0 +1,5 @@ +ldapsaisie-supann (1.0-1psl1) unstable; urgency=low + + * Pre-release 1 for PSL project + + -- Benjamin Dauvergne Mon, 24 Nov 2014 14:40:00 +0200 diff --git a/compat b/compat new file mode 100644 index 0000000..c793025 --- /dev/null +++ b/compat @@ -0,0 +1 @@ +7 \ No newline at end of file diff --git a/control b/control new file mode 100644 index 0000000..9184090 --- /dev/null +++ b/control @@ -0,0 +1,10 @@ +Source: ldapsaisie-supann +Section: admin +Priority: extra +Build-Depends: debhelper +Maintainer: Benjamin Dauvergne + +Package: ldapsaisie-supann +Architecture: all +Pre-Depends: ldapsaisie +Description: adaptations and basic configuration for using ldapsaisie on a SUPANN directory diff --git a/copyright b/copyright new file mode 100644 index 0000000..90d6b1d --- /dev/null +++ b/copyright @@ -0,0 +1,18 @@ +This package was initiated by Benjamin Dauvergne on +Tue, 24 Nov 2014 22:35:12 +0200. + +Copyright: + + ldapsaisie is copyright (C) 2014 Entr'ouvert + + This software is issued from GNU GENERAL PUBLIC LICENSE Version 2 + +License: + + You can use it under GNU GENERAL PUBLIC LICENSE Version 2 policy + + For more information on GNU GENERAL PUBLIC LICENSE Version 2 policy, + please refer to COPYING. + +The Debian packaging is (C) 2014, Benjamin Dauvergne and +is licensed under the GPL, see `/usr/share/common-licenses/GPL'.7 diff --git a/dirs b/dirs new file mode 100644 index 0000000..7484d6d --- /dev/null +++ b/dirs @@ -0,0 +1 @@ +usr/lib/ldapsaisie-supann diff --git a/ldapsaisie-supann.install b/ldapsaisie-supann.install new file mode 100644 index 0000000..493fa7f --- /dev/null +++ b/ldapsaisie-supann.install @@ -0,0 +1,2 @@ +local/* etc/ldapsaisie/local/ +ldapsaisie.conf /etc/apache2/sites-available/ diff --git a/rules b/rules new file mode 100755 index 0000000..2d33f6a --- /dev/null +++ b/rules @@ -0,0 +1,4 @@ +#!/usr/bin/make -f + +%: + dh $@ From 92cabfcf70d1e3a5e4515290374dfee884c7361f Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Wed, 26 Nov 2014 17:23:49 +0100 Subject: [PATCH 2/6] Add php5 to pre-depends --- control | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/control b/control index 9184090..543e3b0 100644 --- a/control +++ b/control @@ -6,5 +6,5 @@ Maintainer: Benjamin Dauvergne Package: ldapsaisie-supann Architecture: all -Pre-Depends: ldapsaisie +Pre-Depends: ldapsaisie, libapache2-mod-php5 Description: adaptations and basic configuration for using ldapsaisie on a SUPANN directory From 16c61ed1d30f7aee9c7953f260ffb45b1189efb5 Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Wed, 26 Nov 2014 17:24:18 +0100 Subject: [PATCH 3/6] Add a conffiles --- ldapsaisie-supann.conffiles | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 ldapsaisie-supann.conffiles diff --git a/ldapsaisie-supann.conffiles b/ldapsaisie-supann.conffiles new file mode 100644 index 0000000..157f570 --- /dev/null +++ b/ldapsaisie-supann.conffiles @@ -0,0 +1,6 @@ +/etc/ldapsaisie/local/conf/config.inc.php +/etc/ldapsaisie/local/conf/config.LSaddons.php +/etc/ldapsaisie/local/conf/LSaddons/config.LSaddons.supann.php +/etc/ldapsaisie/local/conf/LSobjects/config.LSobjects.LSsupannEntite.php +/etc/ldapsaisie/local/conf/LSobjects/config.LSobjects.LSsupannGroup.php +/etc/ldapsaisie/local/conf/LSobjects/config.LSobjects.LSsupannPerson.php From 334c45fa9e217c6b97264601a33939e8c5b6230f Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Wed, 26 Nov 2014 17:25:02 +0100 Subject: [PATCH 4/6] bump release to psl2 --- changelog | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/changelog b/changelog index 397299a..deb61fb 100644 --- a/changelog +++ b/changelog @@ -1,3 +1,9 @@ +ldapsaisie-supann (1.0-1psl2) unstable; urgency=low + + * Pre-release 2 for PSL project + + -- Benjamin Dauvergne Mon, 26 Nov 2014 14:40:00 +0200 + ldapsaisie-supann (1.0-1psl1) unstable; urgency=low * Pre-release 1 for PSL project From 728c0cf3fff810b06ddb0fac0e019c7d07bdd1d1 Mon Sep 17 00:00:00 2001 From: Thomas NOEL Date: Thu, 27 Nov 2014 11:28:37 +0100 Subject: [PATCH 5/6] debian/changelog: v0.0 --- changelog | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/changelog b/changelog index deb61fb..d30b731 100644 --- a/changelog +++ b/changelog @@ -1,11 +1,5 @@ -ldapsaisie-supann (1.0-1psl2) unstable; urgency=low +ldapsaisie-supann (0.0-1) unstable; urgency=low - * Pre-release 2 for PSL project - - -- Benjamin Dauvergne Mon, 26 Nov 2014 14:40:00 +0200 - -ldapsaisie-supann (1.0-1psl1) unstable; urgency=low - - * Pre-release 1 for PSL project + * first commit (fake) -- Benjamin Dauvergne Mon, 24 Nov 2014 14:40:00 +0200 From 86362f6c012c6c71afc53928663e86d321b01ed6 Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Sun, 14 Dec 2014 23:21:04 +0100 Subject: [PATCH 6/6] Ajoute les nouveaux fichiers de configuration --- ldapsaisie-supann.conffiles | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ldapsaisie-supann.conffiles b/ldapsaisie-supann.conffiles index 157f570..84582a0 100644 --- a/ldapsaisie-supann.conffiles +++ b/ldapsaisie-supann.conffiles @@ -1,6 +1,10 @@ /etc/ldapsaisie/local/conf/config.inc.php +/etc/ldapsaisie/local/conf/config.local.inc.php /etc/ldapsaisie/local/conf/config.LSaddons.php /etc/ldapsaisie/local/conf/LSaddons/config.LSaddons.supann.php /etc/ldapsaisie/local/conf/LSobjects/config.LSobjects.LSsupannEntite.php +/etc/ldapsaisie/local/conf/LSobjects/config.LSobjects.LSsupannEntiteBase.php /etc/ldapsaisie/local/conf/LSobjects/config.LSobjects.LSsupannGroup.php /etc/ldapsaisie/local/conf/LSobjects/config.LSobjects.LSsupannPerson.php +/etc/ldapsaisie/local/conf/LSobjects/config.LSobjects.LSsupannPersonOrGroup.php +/etc/ldapsaisie/local/conf/LSobjects/config.LSobjects.LSsupannOrg.php