diff options
| author | Woodpecker CI <emmett1.2miligrams@protonmail.com> | 2026-05-24 15:40:32 +0000 |
|---|---|---|
| committer | Woodpecker CI <emmett1.2miligrams@protonmail.com> | 2026-05-24 15:40:32 +0000 |
| commit | dea2a1fa20fc8e843cd85e5920a67b9054d00b2e (patch) | |
| tree | f331ff92dc5fd26f5803b483a24a0a21fd9bb97a /repos/extra/p7zip | |
| parent | ef5bfeb93345a5a681d88e99775622bf28defd8d (diff) | |
| download | alicelinux-dea2a1fa20fc8e843cd85e5920a67b9054d00b2e.tar.gz alicelinux-dea2a1fa20fc8e843cd85e5920a67b9054d00b2e.zip | |
Woodpecker CI ef5bfeb93345a5a681d88e99775622bf28defd8d [SKIP CI]
Diffstat (limited to 'repos/extra/p7zip')
| -rw-r--r-- | repos/extra/p7zip/.checksum | 2 | ||||
| -rw-r--r-- | repos/extra/p7zip/.files | 20 | ||||
| -rw-r--r-- | repos/extra/p7zip/abuild | 14 | ||||
| -rw-r--r-- | repos/extra/p7zip/fix-uintxx_t-redefined.patch | 23 |
4 files changed, 0 insertions, 59 deletions
diff --git a/repos/extra/p7zip/.checksum b/repos/extra/p7zip/.checksum deleted file mode 100644 index 09aa4e3c..00000000 --- a/repos/extra/p7zip/.checksum +++ /dev/null @@ -1,2 +0,0 @@ -baca2c2259e5f18b33e92aa0ad05e7f201a69e1360bc95d0e6405447df417b83 fix-uintxx_t-redefined.patch -650225789fbf2c33981dcbfa11fd6e880b714eca9b4934e24fcf6dd49a3df3b8 p7zip-17.06.tar.gz diff --git a/repos/extra/p7zip/.files b/repos/extra/p7zip/.files deleted file mode 100644 index 3d4adfb1..00000000 --- a/repos/extra/p7zip/.files +++ /dev/null @@ -1,20 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/7z --rwxr-xr-x root/root usr/bin/7za --rwxr-xr-x root/root usr/bin/7zr -drwxr-xr-x root/root usr/lib/ -drwxr-xr-x root/root usr/lib/p7zip/ --rwxr-xr-x root/root usr/lib/p7zip/7z --rwxr-xr-x root/root usr/lib/p7zip/7z.so --rwxr-xr-x root/root usr/lib/p7zip/7zCon.sfx --rwxr-xr-x root/root usr/lib/p7zip/7za --rwxr-xr-x root/root usr/lib/p7zip/7zr -drwxr-xr-x root/root usr/lib/p7zip/Codecs/ --rwxr-xr-x root/root usr/lib/p7zip/Codecs/Rar.so -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/7z.1.gz --rw-r--r-- root/root usr/share/man/man1/7za.1.gz --rw-r--r-- root/root usr/share/man/man1/7zr.1.gz diff --git a/repos/extra/p7zip/abuild b/repos/extra/p7zip/abuild deleted file mode 100644 index 3cb5cdef..00000000 --- a/repos/extra/p7zip/abuild +++ /dev/null @@ -1,14 +0,0 @@ -name=p7zip -version=17.06 -release=1 -source="https://github.com/$name-project/$name/archive/v$version/$name-$version.tar.gz - fix-uintxx_t-redefined.patch" - -build() { - sed '/^gzip/d' -i install.sh - sed -i '160a if(_buffer == nullptr || _size == _pos) return E_FAIL;' CPP/7zip/Common/StreamObjects.cpp - make all3 - make DEST_HOME=/usr \ - DEST_MAN=/usr/share/man \ - DEST_DIR=$PKG install -} diff --git a/repos/extra/p7zip/fix-uintxx_t-redefined.patch b/repos/extra/p7zip/fix-uintxx_t-redefined.patch deleted file mode 100644 index d5d802da..00000000 --- a/repos/extra/p7zip/fix-uintxx_t-redefined.patch +++ /dev/null @@ -1,23 +0,0 @@ -diff --git a/C/hashes/hash.h b/C/hashes/hash.h -index 3abf275..5084b25 100644 ---- a/C/hashes/hash.h -+++ b/C/hashes/hash.h -@@ -42,17 +42,7 @@ - - #include "../7zTypes.h" - --#ifndef _UINT32_T_DECLARED --typedef UInt32 uint32_t; --#define _UINT32_T_DECLARED --#endif -- --#ifndef _UINT64_T_DECLARED --typedef UInt64 uint64_t; --#define _UINT64_T_DECLARED --#endif -- --//#include <stdint.h> -+#include <stdint.h> - - #ifndef min - #define min(a,b) (((a)>(b))?(b):(a)) |