Replace \"lolitech\" contact by \"edouard\" contact
authorgreg
Mon, 02 Nov 2009 12:01:09 +0100
changeset 214 fb571ae783bc
parent 213 f386d870e8e4
child 215 15c98c40f6f4
Replace \"lolitech\" contact by \"edouard\" contact
debian/README.Debian
debian/changelog
debian/control
debian/copyright
debian/docs
setup.py
--- a/debian/README.Debian	Wed Oct 28 13:50:56 2009 +0100
+++ b/debian/README.Debian	Mon Nov 02 12:01:09 2009 +0100
@@ -3,4 +3,4 @@
 
 <possible notes regarding this package - if none, delete this file>
 
- -- lolitech <gregory.trelat@lolitech.fr>  Wed, 21 Nov 2007 17:01:50 +0100
+ -- edouard <edouard.tisserant@gmail.com>  Wed, 21 Nov 2007 17:01:50 +0100
--- a/debian/changelog	Wed Oct 28 13:50:56 2009 +0100
+++ b/debian/changelog	Mon Nov 02 12:01:09 2009 +0100
@@ -2,5 +2,5 @@
 
   * Initial release (Closes: #nnnn)  <nnnn is the bug number of your ITP>
 
- -- lolitech <gregory.trelat@lolitech.fr>  Wed, 21 Nov 2007 17:01:50 +0100
+ -- edouard <edouard.tisserant@gmail.com>  Wed, 21 Nov 2007 17:01:50 +0100
 
--- a/debian/control	Wed Oct 28 13:50:56 2009 +0100
+++ b/debian/control	Mon Nov 02 12:01:09 2009 +0100
@@ -1,7 +1,7 @@
 Source: matiec
 Section: devel
 Priority: standard
-Maintainer: lolitech <gregory.trelat@lolitech.fr>
+Maintainer: edouard <edouard.tisserant@gmail.com>
 Build-Depends: debhelper (>= 5), bison, flex
 Standards-Version: 3.7.2
 
--- a/debian/copyright	Wed Oct 28 13:50:56 2009 +0100
+++ b/debian/copyright	Mon Nov 02 12:01:09 2009 +0100
@@ -1,4 +1,4 @@
-This package was debianized by lolitech <gregory.trelat@lolitech.fr> on
+This package was debianized by edouard <edouard.tisserant@gmail.com>> on
 Wed, 21 Nov 2007 17:01:50 +0100.
 
 It was downloaded from <fill in http/ftp site>
@@ -27,7 +27,7 @@
 On Debian systems, the complete text of the GNU General
 Public License can be found in `/usr/share/common-licenses/GPL'.
 
-The Debian packaging is (C) 2007, lolitech <gregory.trelat@lolitech.fr> and
+The Debian packaging is (C) 2007, edouard <edouard.tisserant@gmail.com> and
 is licensed under the GPL, see above.
 
 
--- a/debian/docs	Wed Oct 28 13:50:56 2009 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-readme
--- a/setup.py	Wed Oct 28 13:50:56 2009 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,39 +0,0 @@
-import os,sys
-from distutils.core import setup
-
-install_dir=os.path.join("LOLITech","matiec")
-
-data_files=[]
-os.getcwd()
-os.chdir(os.getcwd())
-
-def generate(base_dir):
-    listfile=[]
-    if base_dir == "":
-        directory = "."
-    else:
-        directory = base_dir
-    data_files.append((os.path.join(install_dir, base_dir), listfile))
-
-    for element in os.listdir(directory):
-        element_path=os.path.join(base_dir, element)
-        if os.path.isdir(element_path):
-            basename_element=os.path.basename(element_path)
-            if basename_element == "lib":
-                generate(element_path)
-        elif os.path.isfile(element_path):
-            ext_element=os.path.splitext(element)
-            if ext_element[1] == ".exe" or ext_element[1] == ".h" or ext_element[1] == ".txt" or ext_element[1] == ".c":
-                listfile.append(element_path)
-
-generate("")
-
-setup(name='MatIEC',
-      version='0.1',
-      description='IEC to C Compiler',
-      author='Mario de Sousa, Edouard Tisserant, Laurent Bessard',
-      author_email='edouard.tisserant@lolitech.fr,laurent.bessard@lolitech.fr,gregory.trelat@lolitech.fr',
-      url='http://www.beremiz.org',
-      license='GPL',
-      data_files=data_files, # Add files to install
-)
\ No newline at end of file