Skip to content
Commits on Source (6)
plip (1.4.3~b+dfsg-3) unstable; urgency=medium
* Update d/{control,rules,tests/} to use python3, Closes: #937303
* Update d/control, bump Policy to 4.4.1, use debhelper-compat(=12)
* Drop empty d/patches
-- Alexandre Mestiashvili <mestia@debian.org> Mon, 14 Oct 2019 18:15:14 +0200
plip (1.4.3~b+dfsg-2) unstable; urgency=medium
* Team upload.
......
......@@ -3,16 +3,16 @@ Maintainer: Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.
Uploaders: Alexandre Mestiashvili <mestia@debian.org>
Section: python
Priority: optional
Build-Depends: debhelper (>= 11),
Build-Depends: debhelper-compat (= 12),
dh-python,
help2man,
python-all,
python-lxml,
python-numpy,
python-openbabel,
python-setuptools,
python-future
Standards-Version: 4.2.1
python3-all,
python3-lxml,
python3-numpy,
python3-openbabel,
python3-setuptools,
python3-future
Standards-Version: 4.4.1
Vcs-Browser: https://salsa.debian.org/med-team/plip
Vcs-Git: https://salsa.debian.org/med-team/plip.git
Homepage: https://projects.biotec.tu-dresden.de/plip-web/plip/
......@@ -20,8 +20,8 @@ Homepage: https://projects.biotec.tu-dresden.de/plip-web/plip/
Package: plip
Architecture: all
Depends: ${misc:Depends},
${python:Depends},
python-openbabel
${python3:Depends},
python3-openbabel
Suggests: pymol
Description: fully automated protein-ligand interaction profiler
The Protein-Ligand Interaction Profiler (PLIP) is a tool to analyze
......
Index: plip/plip/plipcmd.py
===================================================================
--- plip.orig/plip/plipcmd.py
+++ plip/plip/plipcmd.py
@@ -1,4 +1,4 @@
-#! /usr/bin/env python
+#!/usr/bin/python2
"""
Protein-Ligand Interaction Profiler - Analyze and visualize protein-ligand interactions in PDB files.
plipcmd.py - Main script for PLIP command line execution.
executableIsForPython2Not3.patch
......@@ -2,7 +2,7 @@
export PYBUILD_NAME=plip
%:
dh $@ --with python2 --buildsystem=pybuild
dh $@ --with python3 --buildsystem=pybuild
include /usr/share/dpkg/pkg-info.mk
......
......@@ -3,4 +3,4 @@
set -e
cd plip/test
python test_special_cases.py
python3 test_special_cases.py
......@@ -3,4 +3,4 @@
set -e
cd plip/test
python test_xml_parser.py
python3 test_xml_parser.py