From lukeshu at lukeshu.com Sat Apr 3 20:57:15 2021 From: lukeshu at lukeshu.com (Luke Shumaker) Date: Sat, 3 Apr 2021 14:57:15 -0600 Subject: [arch-projects] [dbscripts] [PATCH] Update license status Message-ID: <20210403205715.2198254-1-lukeshu@lukeshu.com> From: Luke Shumaker I hereby confirm that I license my work on dbscripts under the GPLv2-or-later. --- LICENSE_STATUS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- Happy hacking, ~ Luke Shumaker diff --git a/LICENSE_STATUS.md b/LICENSE_STATUS.md index 611f11f..ac4c2e3 100644 --- a/LICENSE_STATUS.md +++ b/LICENSE_STATUS.md @@ -19,6 +19,7 @@ GPL-2.0-or-later. This covers the following contributions: The following additional contributors have been contacted and agreed to the licensing update: +- 23 Luke Shumaker - 16 Francois Charette - 16 Thomas B?chler - 13 Xavier Chantry @@ -40,7 +41,6 @@ licensing update: We still need to contact these people and acquire a license grant or otherwise resolve the status of their contributions. -- 23 Luke Shumaker - 15 Eric B?langer - 7 Abhishek Dasgupta - 3 Daniel J Griffiths -- 2.31.1 From eschwartz at archlinux.org Tue Apr 13 21:18:30 2021 From: eschwartz at archlinux.org (Eli Schwartz) Date: Tue, 13 Apr 2021 17:18:30 -0400 Subject: [arch-projects] [devtools] [PATCH] sync makepkg.conf with the pacman package Message-ID: <20210413211830.1335462-1-eschwartz@archlinux.org> Aside for comments, this implements the buildflags RFC from: https://lists.archlinux.org/pipermail/arch-dev-public/2021-March/030374.html https://gitlab.archlinux.org/archlinux/rfcs/-/merge_requests/3 Signed-off-by: Eli Schwartz --- makepkg-x86_64.conf | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/makepkg-x86_64.conf b/makepkg-x86_64.conf index 3a1384f..16a6247 100644 --- a/makepkg-x86_64.conf +++ b/makepkg-x86_64.conf @@ -38,15 +38,20 @@ CARCH="x86_64" CHOST="x86_64-pc-linux-gnu" #-- Compiler and Linker Flags -CPPFLAGS="-D_FORTIFY_SOURCE=2" -CFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fno-plt" -CXXFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fno-plt" +#CPPFLAGS="" +CFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions \ + -Wp,-D_FORTIFY_SOURCE=2,-D_GLIBCXX_ASSERTIONS \ + -Wformat -Werror=format-security \ + -fstack-clash-protection -fcf-protection" +CXXFLAGS="$CFLAGS" LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now" +#RUSTFLAGS="-C opt-level=2" #-- Make Flags: change this for DistCC/SMP systems #MAKEFLAGS="-j2" #-- Debugging flags DEBUG_CFLAGS="-g -fvar-tracking-assignments" DEBUG_CXXFLAGS="-g -fvar-tracking-assignments" +#DEBUG_RUSTFLAGS="-C debuginfo=2" ######################################################################### # BUILD ENVIRONMENT @@ -89,7 +94,7 @@ BUILDENV=(!distcc color !ccache check !sign) # OPTIONS=(strip docs !libtool !staticlibs emptydirs zipman purge !debug) -#-- File integrity checks to use. Valid: md5, sha1, sha256, sha384, sha512 +#-- File integrity checks to use. Valid: md5, sha1, sha224, sha256, sha384, sha512, b2 INTEGRITY_CHECK=(md5) #-- Options to be used when stripping binaries. See `man strip' for details. STRIP_BINARIES="--strip-all" -- 2.31.1