[Pkg-debile-commits] [debile-web] 01/01: Flatten directory hierarchy

Léo Cavaillé leo.cavaille-guest at alioth.debian.org
Mon Aug 26 12:20:40 UTC 2013


This is an automated email from the git hooks/post-receive script.

leo.cavaille-guest pushed a commit to branch master
in repository debile-web.

commit fba35be1fa32f1d5409802def36f6e1edde7526f
Author: Léo Cavaillé <leo at cavaille.net>
Date:   Mon Aug 26 14:18:35 2013 +0200

    Flatten directory hierarchy
---
 app.py                                       |    2 +-
 {debile => debileweb}/__init__.py            |    0
 {debile => debileweb}/blueprints/__init__.py |    0
 {debile => debileweb}/blueprints/frontend.py |    6 +++---
 {debile => debileweb}/core.py                |    0
 setup.py                                     |    6 +++---
 6 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/app.py b/app.py
index 6b1f819..744ac93 100644
--- a/app.py
+++ b/app.py
@@ -19,7 +19,7 @@
 # DEALINGS IN THE SOFTWARE.
 
 from flask import Flask
-from debile.blueprints.frontend import frontend
+from debileweb.blueprints.frontend import frontend
 
 
 app = Flask(__name__)
diff --git a/debile/__init__.py b/debileweb/__init__.py
similarity index 100%
rename from debile/__init__.py
rename to debileweb/__init__.py
diff --git a/debile/blueprints/__init__.py b/debileweb/blueprints/__init__.py
similarity index 100%
rename from debile/blueprints/__init__.py
rename to debileweb/blueprints/__init__.py
diff --git a/debile/blueprints/frontend.py b/debileweb/blueprints/frontend.py
similarity index 98%
rename from debile/blueprints/frontend.py
rename to debileweb/blueprints/frontend.py
index fcf1f29..8a59dcc 100644
--- a/debile/blueprints/frontend.py
+++ b/debileweb/blueprints/frontend.py
@@ -20,9 +20,9 @@
 
 from flask import Blueprint, render_template, send_file
 from sqlalchemy.orm import joinedload
-from debile.master.orm import Package, Source, Binary, Machine, User, Job, Group
-from debile.master.config import Config
-from debile.master.server import Session
+from debilemaster.orm import Package, Source, Binary, Machine, User, Job, Group
+from debilemaster.config import Config
+from debilemaster.server import Session
 
 from humanize import naturaltime
 from humanize.time import naturaldelta
diff --git a/debile/core.py b/debileweb/core.py
similarity index 100%
rename from debile/core.py
rename to debileweb/core.py
diff --git a/setup.py b/setup.py
index eb7df5c..a0176bd 100755
--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,6 @@
 #!/usr/bin/env python
 
-from debile import __appname__, __version__
+from debileweb import __appname__, __version__
 from setuptools import setup
 
 long_description = open('README.md', 'r').read()
@@ -9,8 +9,8 @@ setup(
     name=__appname__,
     version=__version__,
     packages=[
-        'debile',
-        'debile.blueprints',
+        'debileweb',
+        'debileweb.blueprints',
     ],
     author="Paul Tagliamonte",
     author_email="paultag at debian.org",

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-debile/debile-web.git



More information about the Pkg-debile-commits mailing list