diff options
author | Idan Horowitz <idan.horowitz@gmail.com> | 2021-03-03 23:54:07 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-03-03 23:42:32 +0100 |
commit | c12781a6a2dc074be249c21a31913d9b1458c1c9 (patch) | |
tree | 5bba232a939c08f4076f50800065e7ae2b7224ec /Meta | |
parent | 373a595c567cb467aa1f1c627dcfb4fac94dbf86 (diff) | |
download | serenity-c12781a6a2dc074be249c21a31913d9b1458c1c9.zip |
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. :^)
Diffstat (limited to 'Meta')
-rwxr-xr-x | Meta/check-newlines-at-eof.py | 2 | ||||
-rwxr-xr-x | Meta/check-style.sh | 2 | ||||
-rwxr-xr-x | Meta/lint-clang-format.sh | 2 |
3 files changed, 0 insertions, 6 deletions
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 |