Update Debian packaging
Various improvements to Debian packaging:
- Depend on python-yapps and python3-yapps for YAPPS runtime.
- Use PYBUILD_NAME instead of debian/*.install files.
- Use python3-sphinx instead of obsolete Python 2 version.
- Always build Python 3 package.
- Run tests at build time and adds relevant packages to Build-Depends.
- Add superficial autopkgtest using autodep8.
- Add autopkgtest script to run unittest against installed packages.
- Add Vcs-Hg and Vcs-Browser fields.
- Update Standards-Version to 4.3.0.
In order to run the tests at build time and with autopkgtest, they need
to be made part of the Python source package. The manifest has been
modified accordingly.
# copyright 2004-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
# contact http://www.logilab.fr/ -- mailto:contact@logilab.fr
#
# This file is part of rql.
#
# rql is free software: you can redistribute it and/or modify it under the
# terms of the GNU Lesser General Public License as published by the Free
# Software Foundation, either version 2.1 of the License, or (at your option)
# any later version.
#
# rql 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 Lesser General Public License for more
# details.
#
# You should have received a copy of the GNU Lesser General Public License along
# with rql. If not, see <http://www.gnu.org/licenses/>.
from __future__ import print_function
from rql.rqlparse import parse
import sys
from rql.nodes import *
from rql.stmts import *
builder = {
"Constant": Constant,
"Function": Function,
"Relation": Relation,
"Comparison": Comparison,
"And": AND,
"Or": OR,
"VariableRef": VariableRef,
"Insert": Insert,
"Select": Select,
"Delete": Delete,
"Update": Update,
"MathExpression": MathExpression,
"Sort": Sort,
"Sortterm": SortTerm,
}
if len(sys.argv) < 2:
print("Usage: bench_cpprql file")
print(" file: a file containing rql queries")
sys.exit(1)
f = open(sys.argv[1])
for l in f:
# print(l, end="")
x = parse(l, builder)
print(".", end="")