Staging
v0.5.0
https://foss.heptapod.net/mercurial/hgview
Raw File
Tip revision: fee1917d2dd60fcea8dcaf8be6de1844c10ee010 authored by Graziella Toutoungis on 02 March 2009, 07:37:31 UTC
Prepare packet debian: version 0.10.2
Tip revision: fee1917
__pkginfo__.py
# pylint: disable-msg=W0622
# coding: iso-8859-1
# 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; either version 2 of the License, or (at your option) any later
# version.
#
# 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.,
# 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
"""Copyright (c) 2000-2008 LOGILAB S.A. (Paris, FRANCE).
http://www.logilab.fr/ -- mailto:contact@logilab.fr  
"""

import glob
modname = 'hgview'
numversion = (0, 10, 2)
version = '.'.join([str(num) for num in numversion])


license = 'GPL'
copyright = '''Copyright © 2007-2008 LOGILAB S.A. (Paris, FRANCE).
http://www.logilab.fr/ -- mailto:contact@logilab.fr'''

short_desc = "mercurial interactive history viewer"

long_desc = """
 Its purpose is similar to the hgk tool of mercurial, and it has been
 written with efficiency in mind when dealing with big repositories
 (it can happily be used to browse Linux kernel source code
 repository).
"""

author = "Logilab"
author_email = "devel@logilab.fr"

# TODO - publish
web = "http://www.logilab.org/projects/%s" % modname
ftp = "ftp://ftp.logilab.org/pub/%s" % modname


scripts = ['bin/hgview']
debian_name = 'hgview'
debian_maintainer = 'Alexandre Fayolle' 
debian_maintainer_email = 'alexandre.fayolle@logilab.fr'
pyversions = ["2.4", "2.5"]

debian_handler = 'python-dep-standalone'
 
from os.path import join
include_dirs = [] #join('tests', 'data'), join('tests', 'packages')]
data_files = [('share/hgview', ['hgview/gtk/hgview.glade',
                                 'hgview/qt4/hgview.ui']),
              ('share/man/man1', ['hgview.1',
                                 ]),]

back to top