[med-svn] [Git][med-team/ball][master] 9 commits: Remove outdated lintian-overrides
Andreas Tille (@tille)
gitlab at salsa.debian.org
Thu Sep 23 08:49:29 BST 2021
Andreas Tille pushed to branch master at Debian Med / ball
Commits:
aa0e1735 by Andreas Tille at 2021-09-23T08:27:48+02:00
Remove outdated lintian-overrides
- - - - -
c7629dba by Andreas Tille at 2021-09-23T08:29:42+02:00
Add missing DEP3 header
- - - - -
c89a4847 by Andreas Tille at 2021-09-23T08:34:41+02:00
Use 2to3 to convert Python2 script to Python3
- - - - -
884fceda by Andreas Tille at 2021-09-23T08:36:01+02:00
routine-update: Fix watchfile to detect new versions on github
- - - - -
a1b1ea3b by Andreas Tille at 2021-09-23T08:36:15+02:00
routine-update: Standards-Version: 4.6.0
- - - - -
283d7387 by Andreas Tille at 2021-09-23T08:36:15+02:00
routine-update: debhelper-compat 13
- - - - -
bec5ebe1 by Andreas Tille at 2021-09-23T08:36:21+02:00
routine-update: Rules-Requires-Root: no
- - - - -
54799a9a by Andreas Tille at 2021-09-23T08:36:32+02:00
Set upstream metadata fields: Bug-Database, Bug-Submit.
Changes-By: lintian-brush
Fixes: lintian: upstream-metadata-missing-bug-tracking
See-also: https://lintian.debian.org/tags/upstream-metadata-missing-bug-tracking.html
- - - - -
0c3df8fd by Andreas Tille at 2021-09-23T09:47:57+02:00
routine-update: Ready to upload to unstable
- - - - -
9 changed files:
- − debian/ballview.lintian-overrides
- debian/changelog
- debian/control
- − debian/libball1.5-doc.lintian-overrides
- + debian/patches/2to3.patch
- debian/patches/missing_GLEW
- debian/patches/series
- debian/upstream/metadata
- debian/watch
Changes:
=====================================
debian/ballview.lintian-overrides deleted
=====================================
@@ -1,2 +0,0 @@
-ballview binary: postinst-does-not-call-installdocs
-ballview binary: prerm-does-not-call-installdocs
=====================================
debian/changelog
=====================================
@@ -1,9 +1,20 @@
-ball (1.5.0+git20180813.37fc53c-7) UNRELEASED; urgency=medium
+ball (1.5.0+git20180813.37fc53c-7) unstable; urgency=medium
+ [ Nilesh Patra ]
* Team upload.
* Fix FTBFS with glibc (Closes: #994480)
- -- Nilesh Patra <nilesh at debian.org> Thu, 23 Sep 2021 00:53:04 +0530
+ [ Andreas Tille ]
+ * Remove outdated lintian-overrides
+ * Add missing DEP3 header
+ * Use 2to3 to convert Python2 script to Python3
+ * Fix watchfile to detect new versions on github (routine-update)
+ * Standards-Version: 4.6.0 (routine-update)
+ * debhelper-compat 13 (routine-update)
+ * Rules-Requires-Root: no (routine-update)
+ * Set upstream metadata fields: Bug-Database, Bug-Submit.
+
+ -- Nilesh Patra <nilesh at debian.org> Thu, 23 Sep 2021 08:36:39 +0200
ball (1.5.0+git20180813.37fc53c-6) unstable; urgency=medium
=====================================
debian/control
=====================================
@@ -4,7 +4,7 @@ Uploaders: Andreas Tille <tille at debian.org>,
Steffen Moeller <moeller at debian.org>
Section: science
Priority: optional
-Build-Depends: debhelper-compat (= 12),
+Build-Depends: debhelper-compat (= 13),
dh-python,
qtbase5-dev,
qttools5-dev,
@@ -39,10 +39,11 @@ Build-Depends-Indep: doxygen,
texlive-latex-recommended,
texlive-fonts-recommended,
texlive-latex-extra
-Standards-Version: 4.5.0
+Standards-Version: 4.6.0
Vcs-Browser: https://salsa.debian.org/med-team/ball
Vcs-Git: https://salsa.debian.org/med-team/ball.git
Homepage: http://www.ball-project.org/
+Rules-Requires-Root: no
Package: libball1.5-data
Architecture: all
=====================================
debian/libball1.5-doc.lintian-overrides deleted
=====================================
@@ -1,2 +0,0 @@
-libball1.5-doc binary: postinst-does-not-call-installdocs
-libball1.5-doc binary: prerm-does-not-call-installdocs
=====================================
debian/patches/2to3.patch
=====================================
@@ -0,0 +1,55 @@
+Author: Andreas Tille <tille at debian.org>
+Last-Update: Thu, 23 Sep 2021 08:32:46 +0200
+Description: Use 2to3 to convert Python2 script to Python3
+
+--- a/data/Amber/converter/parmConverter.py
++++ b/data/Amber/converter/parmConverter.py
+@@ -1,16 +1,16 @@
+-#!/usr/bin/python
++#!/usr/bin/python3
+
+ import sys
+
+ from amberparser import *
+
+ def printUsage():
+- print "\nUsage: ./parmConvert.py -i filename [-m file1 .. fileN] [-o output_file]\n"
+- print "paramConvert accepts the following parameters:"
+- print "\t--help Show this help and exit."
+- print "\t-p,--parm filename The pram*.dat file which should be processed"
+- print "\t-i,--in file1, .. , fileN The .in files that should be processed"
+- print "\t-m,--mod file1 .. fileN A list of frcmod files"
++ print("\nUsage: ./parmConvert.py -i filename [-m file1 .. fileN] [-o output_file]\n")
++ print("paramConvert accepts the following parameters:")
++ print("\t--help Show this help and exit.")
++ print("\t-p,--parm filename The pram*.dat file which should be processed")
++ print("\t-i,--in file1, .. , fileN The .in files that should be processed")
++ print("\t-m,--mod file1 .. fileN A list of frcmod files")
+
+
+ inputFile=""
+@@ -44,13 +44,13 @@ while i < len(sys.argv):
+ i += 1
+ modFiles=sys.argv[start:i]
+ else:
+- print "Unknown parameter " + sys.argv[i]
++ print("Unknown parameter " + sys.argv[i])
+ printUsage()
+ exit(-1)
+ i += 1
+
+ if inputFile == "":
+- print "You must specify an input file!"
++ print("You must specify an input file!")
+ printUsage()
+ exit(-1)
+
+@@ -66,7 +66,7 @@ if outputFile == "":
+ try:
+ output = open(outputFile, "w")
+ except:
+- print "Could not open " + outputFile + " for writing"
++ print("Could not open " + outputFile + " for writing")
+ exit(-1)
+
+ #line = input.readline()
=====================================
debian/patches/missing_GLEW
=====================================
@@ -1,3 +1,7 @@
+Author: Michael R. Crusoe
+Last-Update: 2020-02-19 18:12:17 +0100
+Description: Fix build by adding missing GLEW
+
--- ball.orig/source/APPLICATIONS/BALLVIEW/CMakeLists.txt
+++ ball/source/APPLICATIONS/BALLVIEW/CMakeLists.txt
@@ -46,7 +46,7 @@
=====================================
debian/patches/series
=====================================
@@ -1,3 +1,4 @@
python3.patch
fix-ftbfs-char.patch
missing_GLEW
+2to3.patch
=====================================
debian/upstream/metadata
=====================================
@@ -1,5 +1,7 @@
# Collection of meta-data about the upstream project,
# see http://wiki.debian.org/UpstreamMetadata for reference.
+Bug-Database: https://github.com/BALL-Project/ball/issues
+Bug-Submit: https://github.com/BALL-Project/ball/issues/new
Reference:
- Author: >
Andreas Moll and Andreas Hildebrandt and Hans-Peter Lenhof and
=====================================
debian/watch
=====================================
@@ -8,4 +8,4 @@ opts="mode=git,pretty=1.5.0+git%cd.%h" \
# once this is fixed the old watch file can be brought into effect again:
#
# opts="uversionmangle=s/_/./g;s/-BETA/~beta/" \
-# https://github.com/BALL-Project/ball/releases .*/archive/V?(\d[-\d._BETA]+)\.(?:tar(?:\.gz|\.bz2)?|tgz)
+# https://github.com/BALL-Project/ball/releases .*/V?(\d[-\d._BETA]+)\.(?:tar(?:\.gz|\.bz2)?|tgz)
View it on GitLab: https://salsa.debian.org/med-team/ball/-/compare/4f0327e9f2d7bbc8fd723c4431c9fe4efe6b0dae...0c3df8fd1047150e8d34058829ffd4bd0a587d5c
--
View it on GitLab: https://salsa.debian.org/med-team/ball/-/compare/4f0327e9f2d7bbc8fd723c4431c9fe4efe6b0dae...0c3df8fd1047150e8d34058829ffd4bd0a587d5c
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/debian-med-commit/attachments/20210923/3535ae1c/attachment-0001.htm>
More information about the debian-med-commit
mailing list