[med-svn] [Git][med-team/orthanc-webviewer][master] 11 commits: Configured control file for autopkgtest

Israel Komolehin (@Komolehin) gitlab at salsa.debian.org
Mon Oct 23 11:59:10 BST 2023



Israel Komolehin pushed to branch master at Debian Med / orthanc-webviewer


Commits:
93b13f7e by Komolehin Israel Timilehin at 2023-10-23T08:47:10+00:00
Configured control file for autopkgtest

- - - - -
1a8d5d6c by Komolehin Israel Timilehin at 2023-10-23T08:48:05+00:00
Set upstream test executable from build result

- - - - -
1d89e50e by Komolehin Israel Timilehin at 2023-10-23T08:49:32+00:00
Setup autopkgtest for upstream executable test

- - - - -
3e0d9e1e by Komolehin Israel Timilehin at 2023-10-23T09:52:12+00:00
Added salsa-ci file

- - - - -
7457fe82 by Komolehin Israel Timilehin at 2023-10-23T10:06:36+00:00
Added debian/tests/UnitTests source

- - - - -
9e824b68 by Komolehin Israel Timilehin at 2023-10-23T10:08:38+00:00
Updated changelog

- - - - -
257a6906 by Komolehin Israel Timilehin at 2023-10-23T10:20:41+00:00
Updated test comment

- - - - -
0fb39f50 by Komolehin Israel Timilehin at 2023-10-23T10:41:55+00:00
Updated source/include-binaries

- - - - -
a163e9c3 by Komolehin Israel Timilehin at 2023-10-23T10:42:36+00:00
Fixed mismatched overrides warning

- - - - -
fe4ee8d4 by Komolehin Israel Timilehin at 2023-10-23T10:43:18+00:00
Fixed source missing error

- - - - -
bca07280 by Komolehin Israel Timilehin at 2023-10-23T10:47:01+00:00
Updated changelog

- - - - -


7 changed files:

- debian/changelog
- + debian/salsa-ci.yml
- debian/source.lintian-overrides
- debian/source/include-binaries
- + debian/tests/UnitTests
- + debian/tests/control
- + debian/tests/run-upstream-test


Changes:

=====================================
debian/changelog
=====================================
@@ -1,3 +1,20 @@
+orthanc-webviewer (2.8-3) UNRELEASED; urgency=medium
+
+  * Configured control file for autopkgtest
+  * Set upstream test executable from build result
+  * Setup autopkgtest for upstream executable test
+  * Configured control file for autopkgtest
+  * Set upstream test executable from build result
+  * Setup autopkgtest for upstream executable test
+  * Added salsa-ci file
+  * Added debian/tests/UnitTests source
+  * Updated test comment
+  * Updated source/include-binaries
+  * Fixed mismatched overrides warning
+  * Fixed source missing error
+
+ -- Komolehin Israel Timilehin <komolehinisrael at gmail.com>  Mon, 23 Oct 2023 10:46:17 +0000
+
 orthanc-webviewer (2.8-2) unstable; urgency=medium
 
   * Updated d/copyright


=====================================
debian/salsa-ci.yml
=====================================
@@ -0,0 +1,4 @@
+---
+include:
+  - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/salsa-ci.yml
+  - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/pipeline-jobs.yml


=====================================
debian/source.lintian-overrides
=====================================
@@ -1,6 +1,8 @@
 # The following files are wrongly interpreted as minimified
 # JavaScript by lintian, which is not the case.
 # cf. https://lists.debian.org/debian-med/2015/09/msg00135.html
-orthanc-webviewer source: source-is-missing debian/JS/cornerstone-0.11.0/cornerstone.js
-orthanc-webviewer source: source-is-missing debian/JS/jsPanel-2.3.3/mobile-detect.js
-orthanc-webviewer source: source-is-missing debian/JS/pako-0.2.5/pako_inflate.js
+orthanc-webviewer source: source-is-missing [debian/JS/cornerstone-0.11.0/cornerstone.js]
+orthanc-webviewer source: source-is-missing [debian/JS/jsPanel-2.3.3/mobile-detect.js]
+orthanc-webviewer source: source-is-missing [debian/JS/pako-0.2.5/pako_inflate.js]
+orthanc-webviewer source: source-is-missing [debian/JS/jquery-ui-1.11.3/jquery-ui.js]
+orthanc-webviewer source: source-is-missing [debian/tests/UnitTests]
\ No newline at end of file


=====================================
debian/source/include-binaries
=====================================
@@ -15,3 +15,8 @@ debian/JS/jsPanel-2.3.3/images/icon-sprite-20x20.jpg
 debian/JS/jsPanel-2.3.3/images/icon-sprite-32x32.jpg
 debian/JS/jsPanel-2.3.3/images/resize-handle.png
 debian/JS/jsPanel-2.3.3/images/ui-icons_454545_256x240.png
+debian/JS/cornerstone-0.11.0/cornerstone.js
+debian/JS/jquery-ui-1.11.3/jquery-ui.js
+debian/JS/jsPanel-2.3.3/mobile-detect.js
+debian/JS/pako-0.2.5/pako_inflate.js
+debian/tests/UnitTests
\ No newline at end of file


=====================================
debian/tests/UnitTests
=====================================
Binary files /dev/null and b/debian/tests/UnitTests differ


=====================================
debian/tests/control
=====================================
@@ -0,0 +1,2 @@
+Tests: run-upstream-test
+Restrictions: allow-stderr


=====================================
debian/tests/run-upstream-test
=====================================
@@ -0,0 +1,23 @@
+#!/bin/bash
+set -e
+
+pkg=orthanc-webviewer
+CUR_DIR=`pwd`
+
+
+if [ "${AUTOPKGTEST_TMP}" = "" ] ; then
+  AUTOPKGTEST_TMP=$(mktemp -d /tmp/${pkg}-test.XXXXXX)
+  trap "rm -rf ${AUTOPKGTEST_TMP}" 0 INT QUIT ABRT PIPE TERM
+fi
+
+
+cp ${CUR_DIR}/debian/tests/UnitTests* -a "${AUTOPKGTEST_TMP}"
+
+
+cd "${AUTOPKGTEST_TMP}"
+
+# Run upstream executable test
+./UnitTests
+
+
+



View it on GitLab: https://salsa.debian.org/med-team/orthanc-webviewer/-/compare/0efffef9d3302be113a8015718fa2753fd33d65c...bca07280cbdac9ad546019fee4b40f349154185a

-- 
View it on GitLab: https://salsa.debian.org/med-team/orthanc-webviewer/-/compare/0efffef9d3302be113a8015718fa2753fd33d65c...bca07280cbdac9ad546019fee4b40f349154185a
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/20231023/f45344f8/attachment-0001.htm>


More information about the debian-med-commit mailing list