From cf3ba528285bf1fe0d0708a87c2612991295fdae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Sat, 25 Mar 2023 11:09:04 +0100 Subject: [PATCH] core: remove obsolete cpack config This config was used to build binary package of WeeChat, which was never released in this format. --- CMakeLists.txt | 29 ----------------------------- ChangeLog.adoc | 1 + 2 files changed, 1 insertion(+), 29 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e7c9f4b89..d6fd3ce4d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -295,32 +295,3 @@ endif() # desktop file install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/weechat.desktop DESTINATION ${DATAROOTDIR}/applications) - -# packages -set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Fast, light and extensible chat client") -set(CPACK_PACKAGE_VENDOR "Sébastien Helleu") -set(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_CURRENT_SOURCE_DIR}/README.adoc") -set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/COPYING") -set(CPACK_PACKAGE_VERSION_MAJOR ${VERSION_MAJOR}) -set(CPACK_PACKAGE_VERSION_MINOR ${VERSION_MINOR}) -set(CPACK_PACKAGE_VERSION_PATCH ${VERSION_PATCH}) - -# binary package -set(CPACK_GENERATOR "STGZ;TGZ;TBZ2") -set(CPACK_PACKAGE_FILE_NAME weechat-binary-${VERSION}) - -# source package -set(CPACK_SOURCE_GENERATOR "TGZ;TBZ2") -set(CPACK_SOURCE_PACKAGE_FILE_NAME weechat-${VERSION}) -set(CPACK_SOURCE_IGNORE_FILES - "/\\\\.git" "/build/" "/m4/" - "/autom4te\\\\.cache/" "/ABOUT-NLS$" "/config\\\\.guess$" "/config\\\\.h$" - "/config\\\\.h.in$" "/config\\\\.log$" "/config\\\\.rpath$" - "/config\\\\.status$" "/config\\\\.sub$" "/configure$" "/depcomp$" - "/install-sh$" "/missing$" "/intl/" "/libtool$" "/\\\\.libs/" - "/ltmain\\\\.sh$" "/\\\\.deps/" "/html/" "/html1/" "/Makefile$" - "/Makefile\\\\.in$" "stamp" "/po/.*\\\\.header$" "\\\\.gmo$" "~$" "\\\\.o$" - "\\\\.lo$" "\\\\.a$" "\\\\.la$" "\\\\.lai$" "\\\\.Plo$" "/weechat$" -) - -include(CPack) diff --git a/ChangeLog.adoc b/ChangeLog.adoc index 330b15c3f..2b4161251 100644 --- a/ChangeLog.adoc +++ b/ChangeLog.adoc @@ -64,6 +64,7 @@ Build:: * core: remove build with autotools (issue #1860) * core: remove RPM packaging * core: remove build of .bz2 and .zst files in `make dist` + * core: remove obsolete cpack config [[v3.8]] == Version 3.8 (2023-01-08)