postprocess/CustomTarget_signing.mk | 5 ++--- postprocess/signing/no_signing.txt | 16 ---------------- 2 files changed, 2 insertions(+), 19 deletions(-)
New commits: commit 2f292a33d38123afc530e9dc5de65324fb7de79d Author: Thorsten Behrens <[email protected]> AuthorDate: Wed Feb 26 06:19:18 2025 +0100 Commit: Thorsten Behrens <[email protected]> CommitDate: Thu Feb 27 02:21:05 2025 +0100 Add firebird intl DLLs for code signing Change-Id: Ic67f51ddc2e8957c4cc228a98a888a4129aac36e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/182198 Tested-by: Jenkins Reviewed-by: Thorsten Behrens <[email protected]> diff --git a/postprocess/CustomTarget_signing.mk b/postprocess/CustomTarget_signing.mk index 435a6d33e327..01d0dc2e60ea 100644 --- a/postprocess/CustomTarget_signing.mk +++ b/postprocess/CustomTarget_signing.mk @@ -53,6 +53,7 @@ ifneq ($(ENABLE_DBGUTIL),TRUE) $(INSTDIR)/$(LIBO_BIN_FOLDER)/python-core-$(PYTHON_VERSION)/lib/*.pyd \ $(INSTDIR)/$(LIBO_BIN_FOLDER)/python-core-$(PYTHON_VERSION)/lib/distutils/command/*.exe \ $(INSTDIR)/program/shlxthdl/*.dll \ + $(INSTDIR)/intl/*.dll \ $(INSTDIR)/sdk/cli/*.dll \ $(INSTDIR)/sdk/bin/*.exe \ && rm $$EXCLUDELIST && touch $@ commit e6e7a403da1f43a167f8ef666bc529b51c9b53ec Author: Thorsten Behrens <[email protected]> AuthorDate: Wed Feb 26 10:55:44 2025 +0100 Commit: Thorsten Behrens <[email protected]> CommitDate: Thu Feb 27 02:20:47 2025 +0100 tdf#160568 start signing cli DLLs as well There does not seem to be any downside not signing those anymore (the 2007er commit excluding them mentions rebasing, which is no longer used), and according to tdf#160568 a number of upsides. So lets start doing it now. Change-Id: If56a8c94dcbf431b55929142ddcb24a671e93a6e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/182213 Tested-by: Jenkins Reviewed-by: Thorsten Behrens <[email protected]> diff --git a/postprocess/CustomTarget_signing.mk b/postprocess/CustomTarget_signing.mk index 6c061e86afeb..435a6d33e327 100644 --- a/postprocess/CustomTarget_signing.mk +++ b/postprocess/CustomTarget_signing.mk @@ -19,7 +19,6 @@ TIMESTAMPURL ?= "http://timestamp.globalsign.com/scripts/timestamp.dll" $(call gb_CustomTarget_get_workdir,postprocess/signing)/signing.done: \ $(SRCDIR)/postprocess/signing/signing.pl \ - $(SRCDIR)/postprocess/signing/no_signing.txt \ $(call gb_Module_get_target,extras) \ $(call gb_Postprocess_get_target,AllLibraries) \ $(call gb_Postprocess_get_target,AllExecutables) \ @@ -32,8 +31,7 @@ $(call gb_CustomTarget_get_workdir,postprocess/signing)/signing.done: ifeq ($(COM),MSC) ifneq ($(ENABLE_DBGUTIL),TRUE) EXCLUDELIST=$(shell $(gb_MKTEMP)) && \ - cat $(SRCDIR)/postprocess/signing/no_signing.txt > $$EXCLUDELIST && \ - echo "$(foreach lib,$(gb_MERGEDLIBS),$(call gb_Library_get_filename,$(lib)))" | tr ' ' ' ' >> $$EXCLUDELIST && \ + echo "$(foreach lib,$(gb_MERGEDLIBS),$(call gb_Library_get_filename,$(lib)))" | tr ' ' ' ' > $$EXCLUDELIST && \ $(if $(BUILD_X64),chmod u+w $(foreach lib,$(MSVC_DLLS),$(INSTDIR)/program/shlxthdl/$(lib)) &&) \ $(PERL) $(SRCDIR)/postprocess/signing/signing.pl \ -e $$EXCLUDELIST \ diff --git a/postprocess/signing/no_signing.txt b/postprocess/signing/no_signing.txt deleted file mode 100644 index 6de68e2e8cc2..000000000000 --- a/postprocess/signing/no_signing.txt +++ /dev/null @@ -1,16 +0,0 @@ -cli_basetypes.dll -cli_cppuhelper.dll -cli_uretypes.dll -cli_oootypes.dll -cli_ure.dll -policy.1.0.cli_uretypes.dll -policy.1.0.cli_oootypes.dll -policy.1.0.cli_ure.dll -policy.1.0.cli_cppuhelper.dll -policy.1.0.cli_basetypes.dll -Windows6.1-KB2999226-x64.msu -Windows6.1-KB2999226-x86.msu -Windows8.1-KB2999226-x64.msu -Windows8.1-KB2999226-x86.msu -Windows8-RT-KB2999226-x64.msu -Windows8-RT-KB2999226-x86.msu
