summaryrefslogtreecommitdiff
path: root/sys-process/lsof
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-10-30 15:03:33 +0000
committerV3n3RiX <venerix@koprulu.sector>2022-10-30 15:03:33 +0000
commitc9388864702fdd7b0b56c049eddb41bdb9054dcb (patch)
tree3595822471cd11e6f9f92565ab81ab9c5ee39c3f /sys-process/lsof
parenta41f630aea0b4b71a6c9a088571f1eaaf8413d53 (diff)
gentoo auto-resync : 30:10:2022 - 15:03:33
Diffstat (limited to 'sys-process/lsof')
-rw-r--r--sys-process/lsof/Manifest1
-rw-r--r--sys-process/lsof/files/lsof-4.95.0-clang-15-configure.patch134
2 files changed, 0 insertions, 135 deletions
diff --git a/sys-process/lsof/Manifest b/sys-process/lsof/Manifest
index 972078eec413..a60f8d36ae6f 100644
--- a/sys-process/lsof/Manifest
+++ b/sys-process/lsof/Manifest
@@ -1,5 +1,4 @@
AUX lsof-4.85-cross.patch 1061 BLAKE2B 730a02dfcd433bb6d46d3fecd87aa0913800408d67302bd9a9580ab3fec6e4a88e453890dec348796258eccd4c5185cc8f06ab2029347d632037f24dd0aa066e SHA512 9326a2708910a39ba3b81253c21149f8e4fa44b207e4c2a88f86c9322d2b50e6360760fcb13e00f644aba57ad207106c280db00ebc2d1f3d49405b54681548e8
-AUX lsof-4.95.0-clang-15-configure.patch 4940 BLAKE2B 60ae5f75e430621328da88f76702d7a94c53b0e55f35e155d2ecf24da6327ce2f80c19713534562946e13caf64780706ff513f40ef7db439adc20f793461ec1e SHA512 e4462ce4837a73551ef3a431bd98224be91e187f24e72eec25c4a389a38cf2f75f4913315469460148e6c4f4720bc5e22d0a8ee9e47aff90b8e3e4e1f928261d
AUX lsof-4.95.0-test-typo.patch 935 BLAKE2B 508728789172985e16ba60a1a28cda07ae186499ed4db8c3085329b823f71861c4a4f402c3657a1730dbb14071c211c35659fbb065b0cea7527f53e36bcc5976 SHA512 c648e5ecee68e5fe9959df50509a43d19af24874604d361bf248ea6c42beb10ca9fcd60831638010a9a38e784cad56b8ff8c29557392e6888646abb358a4e5c6
DIST lsof-4.95.0.tar.gz 1343380 BLAKE2B ffb0a656463f8f0e84ddcba36d78a94a8b4b883f0ff043c3821b3236274fb11e04b8c82f84f4e67ab922f021769c2711c1e97716aef3190d640fc321110521a3 SHA512 09c5c4b0ea0530e23b98b96df8485f37c2594028b604097a816aee216a8b1a7bc887071e8727cbaf3c765d0992314a5aa49723572cfe926f88806be18a6b8aef
DIST lsof-4.96.3.tar.gz 1342843 BLAKE2B 79e276d0db5138c356cc8bfa32e6f991ce8860644eb5d02f49ba04ce08076232f0fb8b10e143ee135205de5c64bd053d7bf021e48d666b65ffc01c0a47b76116 SHA512 ad17a73590ffb154a13b8b5de8ada738ce343fcc833012b2a5e9b3bda587785b09ae8bf090a99fba8e84b788c2a6d61eaa7359f939bfa68d2423e604801e2a98
diff --git a/sys-process/lsof/files/lsof-4.95.0-clang-15-configure.patch b/sys-process/lsof/files/lsof-4.95.0-clang-15-configure.patch
deleted file mode 100644
index 2e81a089e273..000000000000
--- a/sys-process/lsof/files/lsof-4.95.0-clang-15-configure.patch
+++ /dev/null
@@ -1,134 +0,0 @@
-https://github.com/lsof-org/lsof/pull/248
-
-From 52f2c48790ced81aeef98807363ec94a867bbd88 Mon Sep 17 00:00:00 2001
-From: Sam James <sam@gentoo.org>
-Date: Mon, 12 Sep 2022 19:02:14 +0100
-Subject: [PATCH] Configure: fix configure tests broken with Clang 15
- (-Wimplicit-int)
-
-Clang 15 makes -Wimplicit-int an error by default.
-
-Before this fix, configure would think localtime() and strftime() support
-was not present.
-
-Signed-off-by: Sam James <sam@gentoo.org>
---- a/Configure
-+++ b/Configure
-@@ -681,7 +681,7 @@ case $LSOF_TGT in # {
-
- rm -f ${LSOF_TMPC}.*
- echo "#include <sys/systemcfg.h>" > ${LSOF_TMPC}.c
-- echo 'main(){ if (__KERNEL_32()) printf("32\\n");' >> ${LSOF_TMPC}.c
-+ echo 'int main(){ if (__KERNEL_32()) printf("32\\n");' >> ${LSOF_TMPC}.c
- echo 'else if (__KERNEL_64()) printf("64\\n");' >> ${LSOF_TMPC}.c
- echo 'else printf("0\\n");' >> ${LSOF_TMPC}.c
- echo "return(0); }" >> ${LSOF_TMPC}.c
-@@ -778,7 +778,7 @@ case $LSOF_TGT in # {
- rm -f ${LSOF_TMPC}.*
- echo "#include <stddef.h>" > ${LSOF_TMPC}.c
- echo "#include <sys/user.h>" >> ${LSOF_TMPC}.c
-- echo "main(){exit((offsetof(struct user, U_irss) & 0x7) ? 1 : 0);}" >>${LSOF_TMPC}.c
-+ echo "int main(){exit((offsetof(struct user, U_irss) & 0x7) ? 1 : 0);}" >>${LSOF_TMPC}.c
- echo "Testing user.h with $LSOF_CC"
- $LSOF_CC ${LSOF_TMPC}.c -o ${LSOF_TMPC}.x
- if ! ${LSOF_TMPC}.x # {
-@@ -811,7 +811,7 @@ case $LSOF_TGT in # {
- # Get xlc version number
-
- rm -f ${LSOF_TMPC}.*
-- echo "main(){}" > ${LSOF_TMPC}.c
-+ echo "int main(){}" > ${LSOF_TMPC}.c
- echo "Getting version number of ${LSOF_CC}."
- $LSOF_CC -c ${LSOF_TMPC}.c -I${LSOF_INCLUDE} -o ${LSOF_TMPC}.o -qlist > /dev/null 2>&1
- LSOF_CCV=`head -1 ${LSOF_TMPC}.lst | sed 's/\(.*\) ---.*/\1/'`
-@@ -1783,7 +1783,7 @@ kernel generation process.
- cat > ${LSOF_TMPC}.c << .LSOF_END_HERE_DOC3
- #undef _KERNEL
- #include <sys/types.h>
--main() {
-+int main() {
- cpumask_t c;
- }
- .LSOF_END_HERE_DOC3
-@@ -2400,7 +2400,7 @@ LOCKF_OWNER4
- # Test for "const void" support.
-
- rm -f ${LSOF_TMPC}.*
-- echo "main() { const void *x; return(0); }" >> $LSOF_TMPC.c
-+ echo "int main() { const void *x; return(0); }" >> $LSOF_TMPC.c
- $LSOF_CC $LSOF_TMPC.c -o $LSOF_TMPC.x > /dev/null 2>&1
- if test $? -eq 0 # {
- then
-@@ -2532,7 +2532,7 @@ LOCKF_OWNER4
- echo ""
- echo "Testing $LSOF_CC for 64 bit support"
- rm -f ${LSOF_TMPC}.*
-- echo "main(){}" > ${LSOF_TMPC}.c
-+ echo "int main(){}" > ${LSOF_TMPC}.c
- LSOF_TMP1=""
- $LSOF_CC ${LSOF_TMPC}.c -o ${LSOF_TMPC}.x > /dev/null 2>&1
- if test $? -eq 0 # {
-@@ -4605,7 +4605,7 @@ return(0); }
- rm -f ${LSOF_TMPC}.*
- echo "#define _KMEMUSER" > ${LSOF_TMPC}.c
- echo "#include <sys/proc/prdata.h>" >> ${LSOF_TMPC}.c
-- echo "main(){" >> ${LSOF_TMPC}.c
-+ echo "int main(){" >> ${LSOF_TMPC}.c
- echo "enum prnodetype p=PR_GWINDOWS;}" >> ${LSOF_TMPC}.c
- echo "Testing prdata.h for PR_GWINDOWS, using $LSOF_CC"
- echo $LSOF_CC | grep gcc > /dev/null
-@@ -4630,7 +4630,7 @@ return(0); }
- rm -f ${LSOF_TMPC}.*
- echo "#define _KMEMUSER" > ${LSOF_TMPC}.c
- echo "#include <sys/proc/prdata.h>" >> ${LSOF_TMPC}.c
-- echo "main(){" >> ${LSOF_TMPC}.c
-+ echo "int main(){" >> ${LSOF_TMPC}.c
- echo "enum prnodetype p=PR_LDT;}" >> ${LSOF_TMPC}.c
- echo "Testing prdata.h for PR_LDT, using $LSOF_CC"
- echo $LSOF_CC | grep gcc > /dev/null
-@@ -4675,7 +4675,7 @@ return(0); }
-
- echo "Testing $LSOF_CC for 64 bit support"
- rm -f ${LSOF_TMPC}.*
-- echo "main(){}" > ${LSOF_TMPC}.c
-+ echo "int main(){}" > ${LSOF_TMPC}.c
- LSOF_TMP1=""
-
- # First try gcc's -m64 option -- it's the most current possibility.
-@@ -4695,7 +4695,7 @@ return(0); }
-
- # Try using the older -mcpu=v9 option with gcc instead of -m64.
-
-- echo "main(){}" > ${LSOF_TMPC}.c
-+ echo "int main(){}" > ${LSOF_TMPC}.c
- $LSOF_CC ${LSOF_TMPC}.c -mcpu=v9 -o ${LSOF_TMPC}.x > /dev/null 2>&1
- if test $? -eq 0 # {
- then
-@@ -4751,7 +4751,7 @@ return(0); }
- echo "Testing $LSOF_CC for 64 bit $LSOF_TMP2 support"
- rm -f ${LSOF_TMPC}.*
- LSOF_TMP3="-xarch=$LSOF_TMP1"
-- echo "main(){}" > ${LSOF_TMPC}.c
-+ echo "int main(){}" > ${LSOF_TMPC}.c
- LSOF_TMP4=`$LSOF_CC ${LSOF_TMPC}.c $LSOF_TMP3 -o ${LSOF_TMPC}.x 2>&1`
- if test $? -eq 0 # {
- then
-@@ -5003,7 +5003,7 @@ return(0); }
- then
- rm -f ${LSOF_TMPC}.*
- echo "#include <sys/vnode.h>" > ${LSOF_TMPC}.c
-- echo "main(){" >> ${LSOF_TMPC}.c
-+ echo "int main(){" >> ${LSOF_TMPC}.c
- echo "enum vtype p=VSOCK;}" >> ${LSOF_TMPC}.c
- echo "Testing vnode.h for VSOCK, using $LSOF_CC"
- echo $LSOF_CC | grep gcc > /dev/null
-@@ -5490,7 +5490,7 @@ fi # }
- rm -f ${LSOF_TMPC}.*
- cat > $LSOF_TMPC.c << .LSOF_END_HERE_DOC2
- #include <time.h>
--main(){
-+int main(){
- time_t cl;
- struct tm *ts;
- char bf[32];
-