[med-svn] [Git][med-team/liblemon][master] 6 commits: d/watch: convert to watch file version 5.
Étienne Mollier (@emollier)
gitlab at salsa.debian.org
Thu Oct 2 20:12:05 BST 2025
Étienne Mollier pushed to branch master at Debian Med / liblemon
Commits:
c363e9c6 by Étienne Mollier at 2025-10-02T20:24:20+02:00
d/watch: convert to watch file version 5.
- - - - -
696e2bf0 by Étienne Mollier at 2025-10-02T20:53:52+02:00
cmake-4.patch: new: bump minimum cmake to 3.10.
Closes: #1113170
- - - - -
82ea2616 by Étienne Mollier at 2025-10-02T20:54:36+02:00
d/control: declare compliance to standards version 4.7.2.
- - - - -
3777669e by Étienne Mollier at 2025-10-02T20:59:03+02:00
d/control: drop redundant Rules-Requires-Root: no.
- - - - -
243c716f by Étienne Mollier at 2025-10-02T21:10:46+02:00
d/patches/*: normalize dep3 header.
- - - - -
de49d60c by Étienne Mollier at 2025-10-02T21:11:39+02:00
d/changelog: ready for upload to unstable.
- - - - -
13 changed files:
- debian/changelog
- debian/control
- debian/patches/0002-Threadsafe-CplexEnv-473.patch
- debian/patches/0003-Fix-wrong-iteration-in-ListGraph-snapshot-part-II.-5.patch
- debian/patches/0004-Add-missing-include-to-capacity_scaling.h-600.patch
- debian/patches/0005-Add-missing-break-statement-to-dimacs-solver-609.patch
- + debian/patches/cmake-4.patch
- debian/patches/dummy-test-check.diff
- debian/patches/dynamic_lib.patch
- debian/patches/fix_libname.patch
- debian/patches/pkg-config.patch
- debian/patches/series
- debian/watch
Changes:
=====================================
debian/changelog
=====================================
@@ -1,3 +1,14 @@
+liblemon (1.3.1+dfsg-7) unstable; urgency=medium
+
+ * Team upload.
+ * d/watch: convert to watch file version 5.
+ * cmake-4.patch: new: bump minimum cmake to 3.10. (Closes: #1113170)
+ * d/control: declare compliance to standards version 4.7.2.
+ * d/control: drop redundant Rules-Requires-Root: no.
+ * d/patches/*: normalize dep3 header.
+
+ -- Étienne Mollier <emollier at debian.org> Thu, 02 Oct 2025 21:11:32 +0200
+
liblemon (1.3.1+dfsg-6) unstable; urgency=medium
* Fix pkg-config --libs response
=====================================
debian/control
=====================================
@@ -12,11 +12,10 @@ Build-Depends: debhelper-compat (= 13),
graphviz,
libjs-mathjax,
ghostscript
-Standards-Version: 4.6.1
+Standards-Version: 4.7.2
Vcs-Browser: https://salsa.debian.org/med-team/liblemon
Vcs-Git: https://salsa.debian.org/med-team/liblemon.git
Homepage: https://lemon.cs.elte.hu/trac/lemon
-Rules-Requires-Root: no
Package: liblemon1.3.1
Architecture: any
=====================================
debian/patches/0002-Threadsafe-CplexEnv-473.patch
=====================================
@@ -1,6 +1,6 @@
-From: Alpar Juttner <alpar at cs.elte.hu>
-Date: Wed, 6 May 2015 16:01:26 +0200
-Subject: Threadsafe CplexEnv (#473)
+Author: Alpar Juttner <alpar at cs.elte.hu>
+Last-Update: 2015-05-06
+Description: Threadsafe CplexEnv (#473)
---
lemon/cplex.cc | 43 ++++++++++++++++++++++++++++++-------------
=====================================
debian/patches/0003-Fix-wrong-iteration-in-ListGraph-snapshot-part-II.-5.patch
=====================================
@@ -1,6 +1,6 @@
-From: Alpar Juttner <alpar at cs.elte.hu>
-Date: Fri, 22 May 2015 17:47:18 +0200
-Subject: Fix wrong iteration in ListGraph snapshot, part II. (#598)
+Author: Alpar Juttner <alpar at cs.elte.hu>
+Last-Update: 2015-05-22
+Description: Fix wrong iteration in ListGraph snapshot, part II. (#598)
---
lemon/list_graph.h | 4 ++--
=====================================
debian/patches/0004-Add-missing-include-to-capacity_scaling.h-600.patch
=====================================
@@ -1,6 +1,6 @@
-From: Peter Kovacs <kpeter at inf.elte.hu>
-Date: Fri, 2 Oct 2015 17:41:28 +0200
-Subject: Add missing #include to capacity_scaling.h (#600)
+Author: Peter Kovacs <kpeter at inf.elte.hu>
+Last-Update: 2015-10-02
+Description: Add missing #include to capacity_scaling.h (#600)
---
lemon/capacity_scaling.h | 1 +
=====================================
debian/patches/0005-Add-missing-break-statement-to-dimacs-solver-609.patch
=====================================
@@ -1,6 +1,6 @@
-From: Peter Kovacs <kpeter at inf.elte.hu>
-Date: Thu, 22 Mar 2018 18:46:56 +0100
-Subject: Add missing break statement to dimacs-solver (#609)
+Author: Peter Kovacs <kpeter at inf.elte.hu>
+Last-Update: 2018-03-22
+Description: Add missing break statement to dimacs-solver (#609)
---
tools/dimacs-solver.cc | 3 +++
=====================================
debian/patches/cmake-4.patch
=====================================
@@ -0,0 +1,19 @@
+Description: bump cmake minimum required to 3.10.
+ Portability to cmake 4 and beyond also required dropping the CMP0048
+ enforcement to the OLD behavior.
+Author: Étienne Mollier <emollier at debian.org>
+Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1113170
+Forwarded: no
+Last-Update: 2025-10-02
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+--- liblemon.orig/CMakeLists.txt
++++ liblemon/CMakeLists.txt
+@@ -1,6 +1,4 @@
+-CMAKE_MINIMUM_REQUIRED(VERSION 2.8)
+-
+-CMAKE_POLICY(SET CMP0048 OLD)
++CMAKE_MINIMUM_REQUIRED(VERSION 3.10)
+
+ SET(PROJECT_NAME "LEMON")
+ PROJECT(${PROJECT_NAME})
=====================================
debian/patches/dummy-test-check.diff
=====================================
@@ -1,4 +1,7 @@
-check is a dummy target
+Description: check is a dummy target
+Author: zhaofeng-shu33 <616545598 at qq.com>
+Last-Update: 2020-07-06
+
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -251,7 +251,7 @@
=====================================
debian/patches/dynamic_lib.patch
=====================================
@@ -1,5 +1,5 @@
Author: Andreas Tille <tille at debian.org>
-Last-Update: Fri, 05 Aug 2016 09:37:09 +0200
+Last-Update: 2016-08-05
Description: Create static and shared library
--- a/lemon/CMakeLists.txt
=====================================
debian/patches/fix_libname.patch
=====================================
@@ -1,5 +1,5 @@
Author: Andreas Tille <tille at debian.org>
-Last-Update: Fri, 05 Aug 2016 09:37:09 +0200
+Last-Update: 2016-08-05
Description: For some strange reason the library name is libemon
under UNIX. It does not seem to be a typo but it also makes no real
sense to me - so renaming to liblemon
=====================================
debian/patches/pkg-config.patch
=====================================
@@ -1,7 +1,7 @@
Description: Fix pkg-config --libs response
Bug-Debian: https://bugs.debian.org/1015955
Author: Andreas Tille <tille at debian.org>
-Last-Update: Mon, 25 Jul 2022 20:32:54 +0200
+Last-Update: 2022-07-25
--- a/lemon/lemon.pc.in
+++ b/lemon/lemon.pc.in
=====================================
debian/patches/series
=====================================
@@ -6,3 +6,4 @@ fix_libname.patch
0005-Add-missing-break-statement-to-dimacs-solver-609.patch
dummy-test-check.diff
pkg-config.patch
+cmake-4.patch
=====================================
debian/watch
=====================================
@@ -1,4 +1,8 @@
-version=4
+Version: 5
-opts="repacksuffix=+dfsg,dversionmangle=s/\+dfsg//g,repack,compression=xz" \
- https://lemon.cs.elte.hu/trac/lemon/wiki/Downloads .*/sources/lemon-(\d[.\d]+)\.tar\.gz
+Source: https://lemon.cs.elte.hu/trac/lemon/wiki/Downloads
+Matching-Pattern: .*/sources/lemon-(\d[.\d]+)\.tar\.gz
+Compression: xz
+Dversionmangle: s/\+dfsg//g
+Repack: yes
+Repacksuffix: +dfsg
View it on GitLab: https://salsa.debian.org/med-team/liblemon/-/compare/450414bd51270b35477cb4726d77331dd04539d2...de49d60c2199daaad3b34250828c04e59d185dab
--
View it on GitLab: https://salsa.debian.org/med-team/liblemon/-/compare/450414bd51270b35477cb4726d77331dd04539d2...de49d60c2199daaad3b34250828c04e59d185dab
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/20251002/9a4bfc2e/attachment-0001.htm>
More information about the debian-med-commit
mailing list