Étienne Mollier pushed to branch master at Debian Med / cdbfasta
Commits: baa8368f by Étienne Mollier at 2021-10-17T00:03:01+02:00 initialize changelog - - - - - eee730f6 by Étienne Mollier at 2021-10-17T00:03:33+02:00 routine-update: Standards-Version: 4.6.0 - - - - - 236f4a55 by Étienne Mollier at 2021-10-17T00:08:36+02:00 add cppflags.patch to apply CPPFLAGS and fortify functions - - - - - 6b884835 by Étienne Mollier at 2021-10-17T00:09:51+02:00 update changelog to upload to unstable - - - - - 4 changed files: - debian/changelog - debian/control - + debian/patches/cppflags.patch - debian/patches/series Changes: ===================================== debian/changelog ===================================== @@ -1,3 +1,11 @@ +cdbfasta (1.00+git20181005.014498c+dfsg-3) unstable; urgency=medium + + * Team upload. + * Standards-Version: 4.6.0 (routine-update) + * add cppflags.patch to apply CPPFLAGS and fortify functions + + -- Étienne Mollier <[email protected]> Sun, 17 Oct 2021 00:09:23 +0200 + cdbfasta (1.00+git20181005.014498c+dfsg-2) unstable; urgency=medium [ Helmut Grohne] ===================================== debian/control ===================================== @@ -10,7 +10,7 @@ Build-Depends: debhelper-compat (= 13), pkg-config, libgclib-dev, help2man -Standards-Version: 4.5.1 +Standards-Version: 4.6.0 Vcs-Browser: https://salsa.debian.org/med-team/cdbfasta Vcs-Git: https://salsa.debian.org/med-team/cdbfasta.git Homepage: https://github.com/gpertea/cdbfasta ===================================== debian/patches/cppflags.patch ===================================== @@ -0,0 +1,33 @@ +Description: apply CPPFLAGS to enable functions fortification +Author: Étienne Mollier <[email protected]> +Forwarded: not-needed +Last-Update: 2021-10-17 +--- +This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ +--- cdbfasta.orig/Makefile ++++ cdbfasta/Makefile +@@ -23,19 +23,19 @@ + endif + + %.o : %.c +- ${CC} ${CFLAGS} -c $< -o $@ ++ ${CC} $(CPPFLAGS) ${CFLAGS} -c $< -o $@ + + %.o : %.cc +- ${CC} ${CFLAGS} -c $< -o $@ ++ ${CC} $(CPPFLAGS) ${CFLAGS} -c $< -o $@ + + %.o : %.C +- ${CC} ${CFLAGS} -c $< -o $@ ++ ${CC} $(CPPFLAGS) ${CFLAGS} -c $< -o $@ + + %.o : %.cpp +- ${CC} ${CFLAGS} -c $< -o $@ ++ ${CC} $(CPPFLAGS) ${CFLAGS} -c $< -o $@ + + %.o : %.cxx +- ${CC} ${CFLAGS} -c $< -o $@ ++ ${CC} $(CPPFLAGS) ${CFLAGS} -c $< -o $@ + + # C/C++ linker + ===================================== debian/patches/series ===================================== @@ -2,3 +2,4 @@ workaround-lintian-false-positive hardening.patch use_debian_packaged_gclib.patch cross.patch +cppflags.patch View it on GitLab: https://salsa.debian.org/med-team/cdbfasta/-/compare/ca6f929df6614b61b6259ac84fde31349fbd73ec...6b8848355e3b0e1694e518494b07f3c46d8e0862 -- View it on GitLab: https://salsa.debian.org/med-team/cdbfasta/-/compare/ca6f929df6614b61b6259ac84fde31349fbd73ec...6b8848355e3b0e1694e518494b07f3c46d8e0862 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
