Lance Lin pushed to branch master at Debian Med / mlv-smile
Commits: c9723f6e by Lance Lin at 2024-03-28T22:20:40+07:00 routine-update: Packaging update - - - - - e477017e by Lance Lin at 2024-03-28T22:20:58+07:00 routine-update: Standards-Version: 4.6.2 - - - - - c2755c1a by Lance Lin at 2024-03-28T22:21:26+07:00 Update watch file format version to 4. Changes-By: lintian-brush Fixes: lintian: older-debian-watch-file-standard See-also: https://lintian.debian.org/tags/older-debian-watch-file-standard.html - - - - - 6b710a1d by Lance Lin at 2024-03-28T22:31:58+07:00 d/patches: Replace getpagesize with sysconf (Closes: #1066525) - - - - - 5 changed files: - debian/changelog - debian/control - + debian/patches/replace_getpagesize_with_sysconf.patch - debian/patches/series - debian/watch Changes: ===================================== debian/changelog ===================================== @@ -1,3 +1,12 @@ +mlv-smile (1.47-9) UNRELEASED; urgency=medium + + * Team upload. + * Standards-Version: 4.6.2 (routine-update) + * Update watch file format version to 4 + * d/patches: Replace getpagesize with sysconf (Closes: #1066525) + + -- Lance Lin <[email protected]> Thu, 28 Mar 2024 21:43:49 +0700 + mlv-smile (1.47-8) unstable; urgency=medium [ Helmut Grohne ] ===================================== debian/control ===================================== @@ -6,7 +6,7 @@ Uploaders: Steffen Moeller <[email protected]>, Section: science Priority: optional Build-Depends: debhelper-compat (= 13) -Standards-Version: 4.5.0 +Standards-Version: 4.6.2 Vcs-Browser: https://salsa.debian.org/med-team/mlv-smile Vcs-Git: https://salsa.debian.org/med-team/mlv-smile.git Homepage: http://www-igm.univ-mlv.fr/~marsan/smile_english.html ===================================== debian/patches/replace_getpagesize_with_sysconf.patch ===================================== @@ -0,0 +1,23 @@ +Author: Lance Lin <[email protected]> +Description: Relace getpagesize() with sysconf(_SC_PAGESIZE) +Last-Updated: 28 Mar 2024 + +--- a/P_BLOCS/src/allocateurs.c ++++ b/P_BLOCS/src/allocateurs.c +@@ -42,14 +42,14 @@ + exit(-1); + } + cel->suivant = NULL; +- cel->data = (unsigned char *)malloc(getpagesize()); ++ cel->data = (unsigned char *)malloc(sysconf(_SC_PAGESIZE)); + if (cel->data == NULL) + { + fprintf(stderr,"No Enougth space\nProgram Abord\n"); + exit(-1); + } + cel->current=0; +- cel->max = getpagesize()/obj_size; ++ cel->max = sysconf(_SC_PAGESIZE)/obj_size; + return cel; + } + ===================================== debian/patches/series ===================================== @@ -4,3 +4,4 @@ misc.patch mayhem.patch fix-gcc-10.patch replace-national-encoding-with-UTF8.patch +replace_getpagesize_with_sysconf.patch ===================================== debian/watch ===================================== @@ -1,2 +1,2 @@ -version=3 +version=4 http://www-igm.univ-mlv.fr/~marsan/smile_english.html SMILEv(.*)\.tgz View it on GitLab: https://salsa.debian.org/med-team/mlv-smile/-/compare/c41ced395570d0d433fcea75b197cf5429ef4d18...6b710a1d21459678e69c79747b21f3eb6e4fbe63 -- View it on GitLab: https://salsa.debian.org/med-team/mlv-smile/-/compare/c41ced395570d0d433fcea75b197cf5429ef4d18...6b710a1d21459678e69c79747b21f3eb6e4fbe63 You're receiving this email because of your account on salsa.debian.org.
_______________________________________________ debian-med-commit mailing list [email protected] https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-med-commit
