# HG changeset patch # User greg # Date 1257159669 -3600 # Node ID fb571ae783bc1361d88bbd2bc53bb27944ad707e # Parent f386d870e8e42c349cdd3960a0f661b7b5019b87 Replace \"lolitech\" contact by \"edouard\" contact diff -r f386d870e8e4 -r fb571ae783bc debian/README.Debian --- 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 @@ - -- lolitech Wed, 21 Nov 2007 17:01:50 +0100 + -- edouard Wed, 21 Nov 2007 17:01:50 +0100 diff -r f386d870e8e4 -r fb571ae783bc debian/changelog --- 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) - -- lolitech Wed, 21 Nov 2007 17:01:50 +0100 + -- edouard Wed, 21 Nov 2007 17:01:50 +0100 diff -r f386d870e8e4 -r fb571ae783bc debian/control --- 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 +Maintainer: edouard Build-Depends: debhelper (>= 5), bison, flex Standards-Version: 3.7.2 diff -r f386d870e8e4 -r fb571ae783bc debian/copyright --- 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 on +This package was debianized by edouard > on Wed, 21 Nov 2007 17:01:50 +0100. It was downloaded from @@ -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 and +The Debian packaging is (C) 2007, edouard and is licensed under the GPL, see above. diff -r f386d870e8e4 -r fb571ae783bc debian/docs --- 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 diff -r f386d870e8e4 -r fb571ae783bc setup.py --- 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