[med-svn] [Git][med-team/edflib][master] 8 commits: routine-update: Standards-Version: 4.5.0

Andreas Tille gitlab at salsa.debian.org
Sun Mar 29 12:08:48 BST 2020



Andreas Tille pushed to branch master at Debian Med / edflib


Commits:
9d39b06e by Andreas Tille at 2020-03-29T12:45:11+02:00
routine-update: Standards-Version: 4.5.0

- - - - -
409a7a61 by Andreas Tille at 2020-03-29T12:45:14+02:00
routine-update: Add salsa-ci file

- - - - -
2e2180fb by Andreas Tille at 2020-03-29T12:45:14+02:00
routine-update: Rules-Requires-Root: no

- - - - -
761572bb by Andreas Tille at 2020-03-29T12:55:54+02:00
Its not allowed to feed extra files somewhere else than into debian/ dir

- - - - -
3e50a83b by Andreas Tille at 2020-03-29T12:58:33+02:00
We rather test the devel package

- - - - -
03b6c47d by Andreas Tille at 2020-03-29T13:01:28+02:00
Team upload

- - - - -
a7231f92 by Andreas Tille at 2020-03-29T13:06:19+02:00
Fix makefile

- - - - -
c4054abe by Andreas Tille at 2020-03-29T13:08:36+02:00
Upload to unstable

- - - - -


12 changed files:

- debian/changelog
- debian/control
- + debian/libedf-dev.docs
- debian/examples → debian/libedf-dev.examples
- debian/docs → debian/libedf1.docs
- + debian/salsa-ci.yml
- debian/tests/Makefile
- debian/tests/run-unit-test
- unittest/LICENSE → debian/unittest/LICENSE
- unittest/Makefile → debian/unittest/Makefile
- unittest/README → debian/unittest/README
- unittest/unittest.c → debian/unittest/unittest.c


Changes:

=====================================
debian/changelog
=====================================
@@ -1,9 +1,17 @@
-edflib (1.16-2) UNRELEASED; urgency=medium
+edflib (1.16-2) unstable; urgency=medium
 
+  * Team upload.
+
+  [ Pranav Ballaney ]
   * Add autopkgtest template and debian/README.test
   * Install unittest files and modify Makefile
   * Add autopkgtests
 
+  [ Andreas Tille ]
+  * Standards-Version: 4.5.0 (routine-update)
+  * Add salsa-ci file (routine-update)
+  * Rules-Requires-Root: no (routine-update)
+
  -- Pranav Ballaney <ballaneypranav at gmail.com>  Tue, 24 Mar 2020 22:38:18 +0530
 
 edflib (1.16-1) unstable; urgency=medium


=====================================
debian/control
=====================================
@@ -5,10 +5,11 @@ Section: libs
 Priority: optional
 Build-Depends: debhelper-compat (= 12),
                cmake
-Standards-Version: 4.4.0
+Standards-Version: 4.5.0
 Vcs-Browser: https://salsa.debian.org/med-team/edflib
 Vcs-Git: https://salsa.debian.org/med-team/edflib.git
 Homepage: https://www.teuniz.net/edflib/
+Rules-Requires-Root: no
 
 Package: libedf1
 Architecture: any


=====================================
debian/libedf-dev.docs
=====================================
@@ -0,0 +1,2 @@
+debian/tests/run-unit-test
+debian/README.test


=====================================
debian/examples → debian/libedf-dev.examples
=====================================
@@ -1,4 +1,2 @@
-unittest/unittest.c
+debian/unittest/unittest.c
 debian/tests/Makefile
-edflib.h
-edflib.c
\ No newline at end of file


=====================================
debian/docs → debian/libedf1.docs
=====================================


=====================================
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/tests/Makefile
=====================================
@@ -13,15 +13,12 @@ CFLAGS = -Wall -Wextra -Wshadow -Wformat-nonliteral -Wformat-security -Wtype-lim
 
 all: edflib_test
 
-edflib_test : edflib.o unittest.o
-	$(CC) unittest.o edflib.o -o edflib_test
+edflib_test : unittest.o
+	$(CC) unittest.o -o edflib_test -ledf
 
-unittest.o : unittest.c edflib.h edflib.c
+unittest.o : unittest.c
 	$(CC) $(CFLAGS) -c unittest.c -o unittest.o
 
-edflib.o : edflib.h edflib.c
-	$(CC) $(CFLAGS) -c edflib.c -o edflib.o
-
 clean :
 	$(RM) *.o edflib_test *.[be]df
 


=====================================
debian/tests/run-unit-test
=====================================
@@ -1,14 +1,11 @@
 #!/bin/bash
 set -e
 
-pkg="libedf1"
+pkg="libedf-dev"
 
 export LC_ALL=C.UTF-8
 if [ "${AUTOPKGTEST_TMP}" = "" ] ; then
   AUTOPKGTEST_TMP=$(mktemp -d /tmp/${pkg}-test.XXXXXX)
-  # Double quote below to expand the temporary directory variable now versus
-  # later is on purpose.
-  # shellcheck disable=SC2064
   trap "rm -rf ${AUTOPKGTEST_TMP}" 0 INT QUIT ABRT PIPE TERM
 fi
 
@@ -16,7 +13,6 @@ cp -a /usr/share/doc/${pkg}/examples/* "${AUTOPKGTEST_TMP}"
 
 cd "${AUTOPKGTEST_TMP}"
 
-#do_stuff_to_test_package#
 make
 ./edflib_test
 echo Ran test suite successfully.
\ No newline at end of file


=====================================
unittest/LICENSE → debian/unittest/LICENSE
=====================================


=====================================
unittest/Makefile → debian/unittest/Makefile
=====================================


=====================================
unittest/README → debian/unittest/README
=====================================


=====================================
unittest/unittest.c → debian/unittest/unittest.c
=====================================



View it on GitLab: https://salsa.debian.org/med-team/edflib/-/compare/96d582935fffd9f8e6a37678904fb947d1e44ebc...c4054abe794dad8679bd4e52933f52548ecba25a

-- 
View it on GitLab: https://salsa.debian.org/med-team/edflib/-/compare/96d582935fffd9f8e6a37678904fb947d1e44ebc...c4054abe794dad8679bd4e52933f52548ecba25a
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/20200329/bffa8db0/attachment-0001.html>


More information about the debian-med-commit mailing list