1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
#!/usr/bin/python3
# Deb-o-Matic
#
# Copyright (C) 2007-2014 Luca Falavigna
#
# Author: Luca Falavigna <dktrkranz@debian.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 3 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
import os
from distutils.core import setup
from distutils.command.install_data import install_data
from glob import glob
from re import sub
from subprocess import call
for po in glob(os.path.join('po', '*.po')):
mo = os.path.join('locale', os.path.splitext(os.path.basename(po))[0],
'LC_MESSAGES/debomatic.mo')
if not os.path.isdir(os.path.dirname(mo)):
os.makedirs(os.path.dirname(mo))
call(['msgfmt', '-o', mo, po])
class InstallData(install_data):
def run(self):
call(['make', '-C', 'docs', 'latexpdf'])
self.data_files.extend([('share/doc/debomatic',
['docs/_build/latex/Deb-o-Matic.pdf'])])
self.install_files('etc')
self.install_files('lib')
self.install_files('modules', 'share/debomatic')
self.install_files('pbuilderhooks', 'share/debomatic')
self.install_files('locale', 'share')
install_data.run(self)
def install_files(self, rootdir, prefix=''):
filelist = []
for root, subFolders, files in os.walk(rootdir):
dirlist = []
for file in files:
dirlist.append(os.path.join(root, file))
if dirlist:
filelist.append((os.path.join(prefix, root), dirlist))
if not prefix:
orig_prefix = self.install_dir
orig_data_files = self.data_files
self.install_dir = sub('/*usr/*$', '/', self.install_dir)
self.data_files = filelist
install_data.run(self)
self.install_dir = orig_prefix
self.data_files = orig_data_files
else:
self.data_files.extend(filelist)
setup(name='debomatic',
version='0.13',
author='Luca Falavigna',
author_email='dktrkranz@debian.org',
description='Automatic build machine for Debian source packages',
url='https://launchpad.net/debomatic/',
license='GNU GPL',
packages=['Debomatic'],
scripts=['debomatic'],
data_files=[('share/man/man1', ['docs/debomatic.1'])],
cmdclass={'install_data': InstallData})
|