[med-svn] [Git][med-team/probcons][master] 5 commits: d/{changelog, copyright}: acknowledge nmu.
Étienne Mollier (@emollier)
gitlab at salsa.debian.org
Mon Sep 8 21:49:44 BST 2025
Étienne Mollier pushed to branch master at Debian Med / probcons
Commits:
f9231056 by Étienne Mollier at 2025-09-08T22:29:23+02:00
d/{changelog,copyright}: acknowledge nmu.
Thanks: Bastian Germann
- - - - -
ceb4fe0d by Étienne Mollier at 2025-09-08T22:38:33+02:00
hardening.patch: also inject CPPFLAGS.
- - - - -
ae15fd29 by Étienne Mollier at 2025-09-08T22:39:42+02:00
d/patches/*: refresh dep3 headers.
These changes notably normalize the last-update timestamp where
needed.
- - - - -
1addf40b by Étienne Mollier at 2025-09-08T22:40:31+02:00
d/control: declare compliance to standards version 4.7.2.
- - - - -
347edb49 by Étienne Mollier at 2025-09-08T22:49:16+02:00
d/changelog: ready for upload to unstable.
- - - - -
7 changed files:
- debian/changelog
- debian/control
- debian/copyright
- debian/patches/fix-gcc-4.5-headers
- debian/patches/fix-gcc-4.6.patch
- debian/patches/hardening.patch
- debian/patches/mayhem.patch
Changes:
=====================================
debian/changelog
=====================================
@@ -1,3 +1,21 @@
+probcons (1.12-15) unstable; urgency=medium
+
+ * Team upload.
+ * hardening.patch: also inject CPPFLAGS.
+ * d/patches/*: refresh dep3 headers.
+ * d/control: declare compliance to standards version 4.7.2.
+
+ -- Étienne Mollier <emollier at debian.org> Mon, 08 Sep 2025 22:47:06 +0200
+
+probcons (1.12-14.1) unstable; urgency=medium
+
+ * Non-maintainer upload.
+ * d/copyright: Drop BSD file reference.
+ Closes: #1111708
+ * d/copyright: Replace the "PD" name with standardized "public-domain".
+
+ -- Bastian Germann <bage at debian.org> Thu, 21 Aug 2025 11:46:47 +0200
+
probcons (1.12-14) unstable; urgency=medium
* Remove outdated copyright file
=====================================
debian/control
=====================================
@@ -5,7 +5,7 @@ Uploaders: Charles Plessy <plessy at debian.org>,
Section: science
Priority: optional
Build-Depends: debhelper-compat (= 13)
-Standards-Version: 4.6.0
+Standards-Version: 4.7.2
Vcs-Browser: https://salsa.debian.org/med-team/probcons
Vcs-Git: https://salsa.debian.org/med-team/probcons.git
Homepage: http://probcons.stanford.edu/
=====================================
debian/copyright
=====================================
@@ -6,7 +6,7 @@ Upstream-Contact: Chuong Do <chuongdo at cs.stanford.edu>
Files: *
Copyright: 2005-2009 Arun S Konagurthu <arun at bx.psu.edu>
The University of Melbourne.
-License: PD
+License: public-domain
PROBCONS has been made freely available as PUBLIC DOMAIN
software and hence is not subject to copyright in the United
States. This system and/or any portion of the source code
@@ -19,9 +19,6 @@ Files: debian/*
Copyright: 2006-2011 Charles Plessy <plessy at debian.org>
2010-2012 Andreas Tille <tille at debian.org>
License: BSD-3-clause
- Copyright (c) The Regents of the University of California.
- All rights reserved.
- .
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
@@ -45,6 +42,3 @@ License: BSD-3-clause
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.
- .
- On Debian systems you can find a copy of BSD license text at
- /usr/share/common-licenses/BSD.
=====================================
debian/patches/fix-gcc-4.5-headers
=====================================
@@ -1,7 +1,7 @@
Author: Matthias Klose <doko at ubuntu.com>
Description: Fix compile issues with gcc version 4.3 and higher
-Origin: http://bugs.debian.org/607728
-Forwarded: yes
+Origin: https://bugs.debian.org/607728
+Forwarded: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=607728#6
--- probcons.orig/ProbabilisticModel.h
+++ probcons/ProbabilisticModel.h
=====================================
debian/patches/fix-gcc-4.6.patch
=====================================
@@ -1,6 +1,6 @@
Author: Andreas Tille <tille at debian.org>
-Last-Update: Mon, 02 May 2011 17:18:09 +0200
-Bug-Debian: http://bugs.debian.org/625036
+Last-Update: 2011-05-02
+Bug-Debian: https://bugs.debian.org/625036
Description: Fix gcc-4.6 build issue
--- probcons.orig/SafeVector.h
=====================================
debian/patches/hardening.patch
=====================================
@@ -1,5 +1,6 @@
Author: Andreas Tille <tille at debian.org>
-Last-Update: Tue, 15 Dec 2015 11:35:22 +0100
+Last-Update: 2025-09-08
+Reviewed-By: Étienne Mollier <emollier at debian.org>
Description: Propagate hardening options
--- a/Makefile
@@ -10,8 +11,8 @@ Description: Propagate hardening options
-CXXFLAGS = -O3 -W -Wall -pedantic -DNDEBUG $(OTHERFLAGS) -funroll-loops
-CXXFLAGS-RNA = -O3 -W -Wall -pedantic -DNDEBUG $(OTHERFLAGS-RNA) -funroll-loops
-+CXXFLAGS-RNA := -O3 -W -Wall -pedantic -DNDEBUG $(OTHERFLAGS-RNA) -funroll-loops $(CXXFLAGS)
-+CXXFLAGS := -O3 -W -Wall -pedantic -DNDEBUG $(OTHERFLAGS) -funroll-loops $(CXXFLAGS)
++CXXFLAGS-RNA := $(CPPFLAGS) -O3 -W -Wall -pedantic -DNDEBUG $(OTHERFLAGS-RNA) -funroll-loops $(CXXFLAGS)
++CXXFLAGS := $(CPPFLAGS) -O3 -W -Wall -pedantic -DNDEBUG $(OTHERFLAGS) -funroll-loops $(CXXFLAGS)
################################################################################
=====================================
debian/patches/mayhem.patch
=====================================
@@ -1,5 +1,5 @@
Author: Andreas Tille <tille at debian.org>
-Last-Update: Tue, 15 Dec 2015 11:35:22 +0100
+Last-Update: 2015-12-15
Bug-Debian: https://bugs.debian.org/716581
https://bugs.debian.org/716505
Description: Fix Mayhem issues
View it on GitLab: https://salsa.debian.org/med-team/probcons/-/compare/94d7a5a22428d91391ef51e318e46bf273d90379...347edb49bac6f47b26a3571976828c7b244f6589
--
View it on GitLab: https://salsa.debian.org/med-team/probcons/-/compare/94d7a5a22428d91391ef51e318e46bf273d90379...347edb49bac6f47b26a3571976828c7b244f6589
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/20250908/19ceeeb8/attachment-0001.htm>
More information about the debian-med-commit
mailing list