Staging
v0.8.1
https://foss.heptapod.net/mercurial/hgview
Revision f7b025328483ac81039d4c921afbb9c690cea67a authored by Nicolas Chauvat on 28 May 2009, 13:26:08 UTC, committed by Nicolas Chauvat on 28 May 2009, 13:26:08 UTC
1 parent fa34d81
Raw File
Tip revision: f7b025328483ac81039d4c921afbb9c690cea67a authored by Nicolas Chauvat on 28 May 2009, 13:26:08 UTC
began to get hgqv back into hgview
Tip revision: f7b0253
__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-2009 LOGILAB S.A. (Paris, FRANCE).
http://www.logilab.fr/ -- mailto:contact@logilab.fr  
"""

import glob
modname = 'hgqv'
numversion = (1, 1, 0)
version = '.'.join([str(num) for num in numversion])


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

short_desc = "mercurial interactive history viewer"

long_desc = """
 Its purpose is to easily navigate in a mercurial repository history. It has been
 written with efficiency in mind when dealing with big repositories
 (it should happily be able to handle the browsing of the Linux kernel
 source code repository).

 This is actually a major rework of the Qt version of hgqv.
"""

author = "Logilab"
author_email = "david.douard@logilab.fr"

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


scripts = ['bin/hgqv']
debian_name = 'hgqv'
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/hgqv', ['hgqvlib/qt4/hgqv.ui',
                              'hgqvlib/qt4/filediffviewer.ui',
                              'hgqvlib/qt4/fileviewer.ui',
                              'hgqvlib/qt4/manifestviewer.ui',
                              ]),
              ('share/man/man1', ['doc/hgqv.1',
                                 ]),
              ('share/python-support/mercurial-common/hgext', ['hgext/hgqv.py',]),
              #('../etc/mercurial/hgrc.d', ['hgext/hgqv.rc',]),
              ]

back to top