[med-svn] [Git][med-team/saint][master] 7 commits: d/copyright: drop the old FSF mail address.
Étienne Mollier (@emollier)
gitlab at salsa.debian.org
Thu Dec 18 19:50:16 GMT 2025
Étienne Mollier pushed to branch master at Debian Med / saint
Commits:
6645df8e by Étienne Mollier at 2025-12-18T20:26:17+01:00
d/copyright: drop the old FSF mail address.
- - - - -
b38713c9 by Étienne Mollier at 2025-12-18T20:27:12+01:00
d/control: drop redundant Rules-Requires-Root: no.
- - - - -
7e2bb830 by Étienne Mollier at 2025-12-18T20:28:58+01:00
ld-as-needed.patch: normalize dep3 header.
- - - - -
3115d535 by Étienne Mollier at 2025-12-18T20:39:17+01:00
d/watch: convert from v3 to v5 sf.net redirector.
- - - - -
27bf0920 by Étienne Mollier at 2025-12-18T20:46:02+01:00
stabilize-makefile.patch: new: more robustness.
Closes: #1105603
- - - - -
20130055 by Étienne Mollier at 2025-12-18T20:49:07+01:00
d/control: declare compliance to standards version 4.7.2.
- - - - -
e065e79e by Étienne Mollier at 2025-12-18T20:49:45+01:00
d/changelog: ready for upload to unstable.
- - - - -
7 changed files:
- debian/changelog
- debian/control
- debian/copyright
- debian/patches/ld-as-needed.patch
- debian/patches/series
- + debian/patches/stabilize-makefile.patch
- debian/watch
Changes:
=====================================
debian/changelog
=====================================
@@ -1,3 +1,15 @@
+saint (2.5.0+dfsg-5) unstable; urgency=medium
+
+ * Team upload.
+ * d/copyright: drop the old FSF mail address.
+ * d/control: drop redundant Rules-Requires-Root: no.
+ * ld-as-needed.patch: normalize dep3 header.
+ * d/watch: convert from v3 to v5 sf.net redirector.
+ * stabilize-makefile.patch: new: more robustness. (Closes: #1105603)
+ * d/control: declare compliance to standards version 4.7.2.
+
+ -- Étienne Mollier <emollier at debian.org> Thu, 18 Dec 2025 20:49:31 +0100
+
saint (2.5.0+dfsg-4) unstable; urgency=medium
* Team Upload.
=====================================
debian/control
=====================================
@@ -6,11 +6,10 @@ Section: science
Priority: optional
Build-Depends: debhelper-compat (= 13),
libgsl-dev
-Standards-Version: 4.5.0
+Standards-Version: 4.7.2
Vcs-Browser: https://salsa.debian.org/med-team/saint
Vcs-Git: https://salsa.debian.org/med-team/saint.git
Homepage: http://saint-apms.sourceforge.net/Main.html
-Rules-Requires-Root: no
Package: saint
Architecture: any
=====================================
debian/copyright
=====================================
@@ -29,11 +29,6 @@ License: GPL-3+
PURPOSE. See the GNU General Public License for more
details.
.
- You should have received a copy of the GNU General Public
- License along with this package; if not, write to the Free
- Software Foundation, Inc., 51 Franklin St, Fifth Floor,
- Boston, MA 02110-1301 USA
- .
On Debian systems, the full text of the GNU General Public
License version 3 can be found in the file
`/usr/share/common-licenses/GPL-3'.
=====================================
debian/patches/ld-as-needed.patch
=====================================
@@ -1,5 +1,8 @@
Description: fix build failure with ld --as-needed
libraries need to be placed after objects needing them
+Author: Thorsten Alteholz <alteholz at debian.org>
+Last-Update: 2013-06-01
+
--- a/Makefile
+++ b/Makefile
@@ -43,7 +43,7 @@ all: makeDirs \
=====================================
debian/patches/series
=====================================
@@ -1,3 +1,4 @@
fix-makefile.patch
ld-as-needed.patch
fix-gcc10-build.patch
+stabilize-makefile.patch
=====================================
debian/patches/stabilize-makefile.patch
=====================================
@@ -0,0 +1,59 @@
+Description: fix unordered make invocations.
+Author: Étienne Mollier <emollier at debian.org>
+Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1105603
+Forwarded: no
+Last-Update: 2025-12-18
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+--- saint.orig/Makefile
++++ saint/Makefile
+@@ -36,11 +36,10 @@
+ saint-spc-noctrl-matrix \
+ saint-spc-noctrl \
+ saint-spc-ctrl \
+- saint-int-ctrl \
+- clean
++ saint-int-ctrl
+ @echo -e "\n\n### All executables are in $(TOPDIR)/bin ###\n\n"
+
+-saint-reformat:
++saint-reformat: makeDirs
+ $(CC) $(CFLAGS) -c $(SRC)/SAINTreformat/*.c $(SRC)/SAINTreformat/*.h
+ mv *.o $(BUILD)
+ $(CC) $(LDFLAGS) $(BUILD)/*.o -o $(TARGET)/saint-reformat $(LIBS)
+@@ -49,7 +48,7 @@
+ @echo
+
+
+-saint-spc-noctrl-matrix:
++saint-spc-noctrl-matrix: makeDirs
+ $(CC) $(CFLAGS) -c $(SRC)/SAINTspc-noctrl-matrix/*.c $(SRC)/SAINTspc-noctrl-matrix/*.h
+ mv *.o $(BUILD)
+ $(CC) $(LDFLAGS) $(BUILD)/*.o -o $(TARGET)/saint-spc-noctrl-matrix $(LIBS)
+@@ -57,7 +56,7 @@
+ @echo
+ @echo
+
+-saint-spc-noctrl:
++saint-spc-noctrl: makeDirs
+ $(CC) $(CFLAGS) -c $(SRC)/SAINTspc-noctrl/*.c $(SRC)/SAINTspc-noctrl/*.h
+ mv *.o $(BUILD)
+ $(CC) $(LDFLAGS) $(BUILD)/*.o -o $(TARGET)/saint-spc-noctrl $(LIBS)
+@@ -66,7 +65,7 @@
+ @echo
+
+
+-saint-spc-ctrl:
++saint-spc-ctrl: makeDirs
+ $(CC) $(CFLAGS) -c $(SRC)/SAINTspc-ctrl/*.c $(SRC)/SAINTspc-ctrl/*.h
+ mv *.o $(BUILD)
+ $(CC) $(LDFLAGS) $(BUILD)/*.o -o $(TARGET)/saint-spc-ctrl $(LIBS)
+@@ -75,7 +74,7 @@
+ @echo
+
+
+-saint-int-ctrl:
++saint-int-ctrl: makeDirs
+ $(CC) $(CFLAGS) -c $(SRC)/SAINTint-ctrl/*.c $(SRC)/SAINTint-ctrl/*.h
+ mv *.o $(BUILD)
+ $(CC) $(LDFLAGS) $(BUILD)/*.o -o $(TARGET)/saint-int-ctrl $(LIBS)
=====================================
debian/watch
=====================================
@@ -1,3 +1,6 @@
-version=3
-opts="repacksuffix=+dfsg,dversionmangle=s/\+dfsg//g" \
- http://sf.net/saint-apms/SAINT_v\.?([.\d]+)\.zip
+Version: 5
+
+Source: https://sf.net/saint-apms/
+Matching-Pattern: SAINT_v at ANY_VERSION@@ARCHIVE_EXT@
+Repack-Suffix: +dfsg
+DVersion-Mangle: auto
View it on GitLab: https://salsa.debian.org/med-team/saint/-/compare/c60f15d13e726a91d797dd327930003b16a9f57e...e065e79e72500c5fc12fbf5e4d1973f0457f84d1
--
View it on GitLab: https://salsa.debian.org/med-team/saint/-/compare/c60f15d13e726a91d797dd327930003b16a9f57e...e065e79e72500c5fc12fbf5e4d1973f0457f84d1
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/20251218/af3595af/attachment-0001.htm>
More information about the debian-med-commit
mailing list