Projet

Général

Profil

0001-add-mandayejs-common-package-13259.patch

Josué Kouka, 14 décembre 2017 18:37

Télécharger (2,6 ko)

Voir les différences:

Subject: [PATCH] add mandayejs common package (#13259)

 debian/control                          |  4 ++++
 debian/mandayejs_common/__init__.py     |  0
 debian/mandayejs_common/applications.py | 17 +++++++++++++++++
 debian/python-mandayejs-common.dirs     |  1 +
 debian/python-mandayejs-common.install  |  2 ++
 5 files changed, 24 insertions(+)
 create mode 100644 debian/mandayejs_common/__init__.py
 create mode 100644 debian/mandayejs_common/applications.py
 create mode 100644 debian/python-mandayejs-common.dirs
 create mode 100644 debian/python-mandayejs-common.install
debian/control
31 31
Recommends: nginx, phantomjs, publik-base-theme
32 32
Suggests: postgresql
33 33
Description: Authentication Reverse Proxy
34

  
35
Package: python-mandayejs-common
36
Architecture: all
37
Description: Authentication Reverse Proxy Extra Module
debian/mandayejs_common/applications.py
1
# List of MandayeJS App Settings Classes
2

  
3
DEFAULT_APP_SETTINGS = ('mandayejs.applications.Test', 'Test')
4

  
5
APP_SETTINGS_CLASSES = (
6
    DEFAULT_APP_SETTINGS,
7
    ('mandayejs.applications.Archimed', 'Archimed'),
8
    ('mandayejs.applications.Arpege', 'Arpege'),
9
    ('mandayejs.applications.Duonet', 'Duonet'),
10
    ('mandayejs.applications.Imuse', 'Imuse'),
11
    ('mandayejs.applications.Sezhame', 'Sezhame'),
12
    ('mandayejs.applications.Teamnet', 'Teamnet'),
13
)
14

  
15

  
16
def get_application_classes():
17
    return APP_SETTINGS_CLASSES
debian/python-mandayejs-common.dirs
1
/usr/lib/2.7/dist-packages/mandayejs_common/
debian/python-mandayejs-common.install
1
debian/mandayejs_common/__init__.py    /usr/lib/python2.7/dist-packages/mandayejs_common/
2
debian/mandayejs_common/applications.py    /usr/lib/python2.7/dist-packages/mandayejs_common/
0
-