[med-svn] [Git][med-team/qsopt-ex][master] 7 commits: debhelper 11

Andreas Tille gitlab at salsa.debian.org
Tue Oct 30 08:29:22 GMT 2018


Andreas Tille pushed to branch master at Debian Med / qsopt-ex


Commits:
8d11859a by Andreas Tille at 2018-10-30T08:03:07Z
debhelper 11

- - - - -
c5bb0221 by Andreas Tille at 2018-10-30T08:06:33Z
Point Vcs fields to salsa.debian.org

- - - - -
7365aca8 by Andreas Tille at 2018-10-30T08:06:33Z
Standards-Version: 4.2.1

- - - - -
9cd4556a by Andreas Tille at 2018-10-30T08:06:34Z
Secure URI in copyright format

- - - - -
e6566f27 by Andreas Tille at 2018-10-30T08:10:18Z
hardening=+all

- - - - -
76e060e2 by Andreas Tille at 2018-10-30T08:25:17Z
Use d-shlibs

- - - - -
9baaeb72 by Andreas Tille at 2018-10-30T08:27:52Z
Upload to unstable

- - - - -


7 changed files:

- debian/changelog
- debian/compat
- debian/control
- debian/copyright
- − debian/libqsopt-ex-dev.install
- − debian/libqsopt-ex2.install
- debian/rules


Changes:

=====================================
debian/changelog
=====================================
@@ -1,3 +1,15 @@
+qsopt-ex (2.5.10.3-2) unstable; urgency=medium
+
+  * Team upload.
+  * debhelper 11
+  * Point Vcs fields to salsa.debian.org
+  * Standards-Version: 4.2.1
+  * Secure URI in copyright format
+  * hardening=+all
+  * Use d-shlibs
+
+ -- Andreas Tille <tille at debian.org>  Tue, 30 Oct 2018 09:25:41 +0100
+
 qsopt-ex (2.5.10.3-1) unstable; urgency=medium
 
   [ Jon Lund Steffensen ]


=====================================
debian/compat
=====================================
@@ -1 +1 @@
-9
+11


=====================================
debian/control
=====================================
@@ -1,25 +1,21 @@
 Source: qsopt-ex
+Maintainer: Debian Med Packaging Team <debian-med-packaging at lists.alioth.debian.org>
+Uploaders: Afif Elghraoui <afif at ghraoui.name>
 Section: math
 Priority: optional
-Maintainer: Debian Med Packaging Team <debian-med-packaging at lists.alioth.debian.org>
-Uploaders:
-	Afif Elghraoui <afif at ghraoui.name>,
-Build-Depends:
-	debhelper (>= 9),
-	dh-autoreconf,
-	autotools-dev,
-	libgmp-dev,
-Standards-Version: 3.9.6
+Build-Depends: debhelper (>= 11~),
+               d-shlibs,
+               libgmp-dev
+Standards-Version: 4.2.1
+Vcs-Browser: https://salsa.debian.org/med-team/qsopt-ex
+Vcs-Git: https://salsa.debian.org/med-team/qsopt-ex.git
 Homepage: http://www.dii.uchile.cl/~daespino/ESolver_doc/main.html
-Vcs-Git: git://anonscm.debian.org/debian-med/qsopt-ex.git
-Vcs-Browser: http://anonscm.debian.org/cgit/debian-med/qsopt-ex.git
 
 Package: qsopt-ex
 Architecture: any
-Depends:
-	${shlibs:Depends},
-	${misc:Depends},
-	libqsopt-ex2 (= ${binary:Version}),
+Depends: ${shlibs:Depends},
+         ${misc:Depends},
+         libqsopt-ex2 (= ${binary:Version})
 Description: Exact linear programming solver
  QSopt-ex is an implementation of a simplex-based algorithm that returns exact
  rational solutions, taking advantage of the speed of floating-point
@@ -29,12 +25,11 @@ Description: Exact linear programming solver
  This package contains the command-line utilities.
 
 Package: libqsopt-ex-dev
-Section: libdevel
 Architecture: any
-Depends:
-	${shlibs:Depends},
-	${misc:Depends},
-	libqsopt-ex2 (= ${binary:Version}),
+Section: libdevel
+Depends: ${shlibs:Depends},
+         ${misc:Depends},
+         libqsopt-ex2 (= ${binary:Version})
 Description: Exact linear programming solver -- development files
  QSopt-ex is an implementation of a simplex-based algorithm that returns exact
  rational solutions, taking advantage of the speed of floating-point
@@ -44,11 +39,10 @@ Description: Exact linear programming solver -- development files
  This package contains the header files and static library.
 
 Package: libqsopt-ex2
-Section: libs
 Architecture: any
-Depends:
-	${shlibs:Depends},
-	${misc:Depends},
+Section: libs
+Depends: ${shlibs:Depends},
+         ${misc:Depends}
 Description: Exact linear programming solver -- shared library
  QSopt-ex is an implementation of a simplex-based algorithm that returns exact
  rational solutions, taking advantage of the speed of floating-point


=====================================
debian/copyright
=====================================
@@ -1,4 +1,4 @@
-Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
 Upstream-Name: qsopt-ex
 Upstream-Contact:
 	Daniel Espinoza <daespino at gmail.com>


=====================================
debian/libqsopt-ex-dev.install deleted
=====================================
@@ -1,3 +0,0 @@
-usr/include/*
-usr/lib/*-*-*/lib*.a
-usr/lib/*-*-*/lib*.so


=====================================
debian/libqsopt-ex2.install deleted
=====================================
@@ -1 +0,0 @@
-usr/lib/*-*-*/lib*.so.*


=====================================
debian/rules
=====================================
@@ -2,5 +2,16 @@
 
 #export DH_VERBOSE=1
 
+export DEB_BUILD_MAINT_OPTIONS=hardening=+all
+
 %:
-	dh $@ --parallel --with autoreconf
+	dh $@
+
+override_dh_install:
+	dh_install
+	d-shlibmove --commit \
+		    --multiarch \
+		    --devunversioned \
+		    --exclude-la \
+		    --movedev debian/tmp/usr/include/* usr/include \
+		    debian/tmp/usr/lib/*/*.so



View it on GitLab: https://salsa.debian.org/med-team/qsopt-ex/compare/43038c42b538cefbecbeb15a24c226214e4fae1b...9baaeb7242be544cdfe3784e286d6bdfefc6a56c

-- 
View it on GitLab: https://salsa.debian.org/med-team/qsopt-ex/compare/43038c42b538cefbecbeb15a24c226214e4fae1b...9baaeb7242be544cdfe3784e286d6bdfefc6a56c
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/20181030/a7bffe61/attachment-0001.html>


More information about the debian-med-commit mailing list