From c12781a6a2dc074be249c21a31913d9b1458c1c9 Mon Sep 17 00:00:00 2001 From: Idan Horowitz Date: Wed, 3 Mar 2021 23:54:07 +0200 Subject: LibCore+LibHTTP+LibGfx: Switch to LibCompress This commit removes the only 3rd party library (and its usages) in serenity: puff, which is used for deflate decompression. and replaces it with the existing original serenity implementation in LibCompress. :^) --- Meta/check-newlines-at-eof.py | 2 -- Meta/check-style.sh | 2 -- Meta/lint-clang-format.sh | 2 -- 3 files changed, 6 deletions(-) (limited to 'Meta') diff --git a/Meta/check-newlines-at-eof.py b/Meta/check-newlines-at-eof.py index 052813b657..57ff5f9517 100755 --- a/Meta/check-newlines-at-eof.py +++ b/Meta/check-newlines-at-eof.py @@ -22,8 +22,6 @@ files = subprocess.run( ":!:Base", ":!:Kernel/FileSystem/ext2_fs.h", ":!:Userland/Libraries/LibC/getopt.cpp", - ":!:Userland/Libraries/LibCore/puff.h", - ":!:Userland/Libraries/LibCore/puff.cpp", ":!:Userland/Libraries/LibELF/exec_elf.h" ], capture_output=True diff --git a/Meta/check-style.sh b/Meta/check-style.sh index b0d1310aeb..c127385493 100755 --- a/Meta/check-style.sh +++ b/Meta/check-style.sh @@ -42,8 +42,6 @@ done < <(git ls-files -- \ ':!:Base' \ ':!:Kernel/FileSystem/ext2_fs.h' \ ':!:Userland/Libraries/LibC/getopt.cpp' \ - ':!:Userland/Libraries/LibCore/puff.h' \ - ':!:Userland/Libraries/LibCore/puff.cpp' \ ':!:Userland/Libraries/LibELF/exec_elf.h' \ ) diff --git a/Meta/lint-clang-format.sh b/Meta/lint-clang-format.sh index 0aa4c90d6e..42e5a4d0be 100755 --- a/Meta/lint-clang-format.sh +++ b/Meta/lint-clang-format.sh @@ -14,8 +14,6 @@ if [ "$#" -eq "1" ]; then ':!:Kernel/FileSystem/ext2_fs.h' \ ':!:Userland/Libraries/LibC/getopt.cpp' \ ':!:Userland/Libraries/LibC/syslog.h' \ - ':!:Userland/Libraries/LibCore/puff.h' \ - ':!:Userland/Libraries/LibCore/puff.cpp' \ ':!:Userland/Libraries/LibELF/exec_elf.h' ) else -- cgit v1.2.3