From 7416ccb169a72bab0c550a34315dbb5497f9a502 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Fri, 30 Aug 2019 14:18:49 +0000 Subject: [PATCH] fakeroot: remove from repositories. --- core/fakeroot/build | 27 --------------- core/fakeroot/checksums | 6 ---- core/fakeroot/depends | 3 -- .../busybox_compat_force_abslibpath.patch | 14 -------- core/fakeroot/patches/fakeroot-no64.patch | 17 ---------- core/fakeroot/patches/fakeroot-stdint.patch | 34 ------------------- core/fakeroot/patches/silence-dlerror.patch | 17 ---------- core/fakeroot/patches/xstatjunk.patch | 11 ------ core/fakeroot/sources | 6 ---- core/fakeroot/version | 1 - 10 files changed, 136 deletions(-) delete mode 100755 core/fakeroot/build delete mode 100644 core/fakeroot/checksums delete mode 100644 core/fakeroot/depends delete mode 100644 core/fakeroot/patches/busybox_compat_force_abslibpath.patch delete mode 100644 core/fakeroot/patches/fakeroot-no64.patch delete mode 100644 core/fakeroot/patches/fakeroot-stdint.patch delete mode 100644 core/fakeroot/patches/silence-dlerror.patch delete mode 100644 core/fakeroot/patches/xstatjunk.patch delete mode 100644 core/fakeroot/sources delete mode 100644 core/fakeroot/version diff --git a/core/fakeroot/build b/core/fakeroot/build deleted file mode 100755 index 30556341d..000000000 --- a/core/fakeroot/build +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -e - -patch -p1 < silence-dlerror.patch -patch -p0 < fakeroot-no64.patch -patch -p0 < fakeroot-stdint.patch -patch -p0 < busybox_compat_force_abslibpath.patch -patch -p1 < xstatjunk.patch - -export CONFIG_SHELL=/bin/sh -export CFLAGS="-D_STAT_VER=0 $CFLAGS" - -./bootstrap - -ac_cv_func_capset=no \ -./configure \ - --prefix=/usr \ - --disable-static - -make DESTDIR="$1" install - -# Remove docs. -rm -rf "$1/usr/share/man/nl" -rm -rf "$1/usr/share/man/pt" -rm -rf "$1/usr/share/man/sv" -rm -rf "$1/usr/share/man/fr" -rm -rf "$1/usr/share/man/es" -rm -rf "$1/usr/share/man/de" diff --git a/core/fakeroot/checksums b/core/fakeroot/checksums deleted file mode 100644 index 83ea6799f..000000000 --- a/core/fakeroot/checksums +++ /dev/null @@ -1,6 +0,0 @@ -009cd6696a931562cf1c212bb57ca441a4a2d45cd32c3190a35c7ae98506f4f6 fakeroot_1.23.orig.tar.xz -d0a6aa8aa462eb4b390d02e177d07df3f2ed5b7961595a22dd38a94043ad8290 busybox_compat_force_abslibpath.patch -4fd7a4c8d05dd71414c3e82887780b76d93f599944260c41d769cb463e660bbf fakeroot-no64.patch -1b0be39e41ce78116de4db7aed1b025a64427d780f666a860ed30ad1512588ad fakeroot-stdint.patch -347f6496c93ed0d91dcb554db92602b50520a16308e3b8bc33822bd69966267b silence-dlerror.patch -c4350c514797f0b48440d412380fe1d612958e3cbf1f3b74e3eb5faf2bad6ee0 xstatjunk.patch diff --git a/core/fakeroot/depends b/core/fakeroot/depends deleted file mode 100644 index 913d92924..000000000 --- a/core/fakeroot/depends +++ /dev/null @@ -1,3 +0,0 @@ -linux-headers make -automake make -libtool make diff --git a/core/fakeroot/patches/busybox_compat_force_abslibpath.patch b/core/fakeroot/patches/busybox_compat_force_abslibpath.patch deleted file mode 100644 index 2bd1b4129..000000000 --- a/core/fakeroot/patches/busybox_compat_force_abslibpath.patch +++ /dev/null @@ -1,14 +0,0 @@ -- Always force absolute path for LD_PRELOAD. -- Make getopt test work with busybox implementation. - ---- scripts/fakeroot.in.orig 2011-12-01 05:00:36.000000000 +0100 -+++ scripts/fakeroot.in 2012-02-01 16:04:04.707499043 +0100 -@@ -33,7 +33,7 @@ fatal () - FAKEROOT_PREFIX=@prefix@ - FAKEROOT_BINDIR=@bindir@ - --USEABSLIBPATH=@LDPRELOADABS@ -+USEABSLIBPATH=1 - LIB=lib@fakeroot_transformed@@DLSUFFIX@ - PATHS=@libdir@:${FAKEROOT_PREFIX}/lib64/libfakeroot:${FAKEROOT_PREFIX}/lib32/libfakeroot - FAKED=${FAKEROOT_BINDIR}/@faked_transformed@ diff --git a/core/fakeroot/patches/fakeroot-no64.patch b/core/fakeroot/patches/fakeroot-no64.patch deleted file mode 100644 index 03f70ef45..000000000 --- a/core/fakeroot/patches/fakeroot-no64.patch +++ /dev/null @@ -1,17 +0,0 @@ ---- libfakeroot.c.orig -+++ libfakeroot.c -@@ -81,12 +81,14 @@ - #define SEND_STAT64(a,b,c) send_stat64(a,b,c) - #define SEND_GET_STAT(a,b) send_get_stat(a,b) - #define SEND_GET_STAT64(a,b) send_get_stat64(a,b) -+#define SEND_GET_XATTR(a,b,c) send_get_xattr(a,b,c) - #define SEND_GET_XATTR64(a,b,c) send_get_xattr64(a,b,c) - #else - #define SEND_STAT(a,b,c) send_stat(a,b) - #define SEND_STAT64(a,b,c) send_stat64(a,b) - #define SEND_GET_STAT(a,b) send_get_stat(a) - #define SEND_GET_STAT64(a,b) send_get_stat64(a) -+#define SEND_GET_XATTR(a,b,c) send_get_xattr(a,b) - #define SEND_GET_XATTR64(a,b,c) send_get_xattr64(a,b) - #endif - diff --git a/core/fakeroot/patches/fakeroot-stdint.patch b/core/fakeroot/patches/fakeroot-stdint.patch deleted file mode 100644 index fa4abbd35..000000000 --- a/core/fakeroot/patches/fakeroot-stdint.patch +++ /dev/null @@ -1,34 +0,0 @@ ---- faked.c.orig -+++ faked.c -@@ -514,11 +514,11 @@ - - #ifdef FAKEROOT_DB_PATH - if (find_path(i->buf.dev, i->buf.ino, roots, path)) -- fprintf(f,"mode=%llo,uid=%llu,gid=%llu,nlink=%llu,rdev=%llu %s\n", -+ fprintf(f,"mode=%"PRIo64",uid=%"PRIu64",gid=%"PRIu64",nlink=%"PRIu64",rdev=%"PRIu64" %s\n", - (uint64_t) i->buf.mode,(uint64_t) i->buf.uid,(uint64_t) i->buf.gid, - (uint64_t) i->buf.nlink,(uint64_t) i->buf.rdev,path); - #else -- fprintf(f,"dev=%llx,ino=%llu,mode=%llo,uid=%llu,gid=%llu,nlink=%llu,rdev=%llu\n", -+ fprintf(f,"dev=%"PRIx64",ino=%"PRIu64",mode=%"PRIo64",uid=%"PRIu64",gid=%"PRIu64",nlink=%"PRIu64",rdev=%"PRIu64"\n", - (uint64_t) i->buf.dev,(uint64_t) i->buf.ino,(uint64_t) i->buf.mode, - (uint64_t) i->buf.uid,(uint64_t) i->buf.gid,(uint64_t) i->buf.nlink, - (uint64_t) i->buf.rdev); -@@ -544,7 +544,7 @@ - - while(1){ - #ifdef FAKEROOT_DB_PATH -- r=scanf("mode=%llo,uid=%llu,gid=%llu,nlink=%llu,rdev=%llu "DB_PATH_SCAN"\n", -+ r=scanf("mode=%"PRIo64",uid=%"PRIu64",gid=%"PRIu64",nlink=%"PRIu64",rdev=%"PRIu64" "DB_PATH_SCAN"\n", - &stmode, &stuid, &stgid, &stnlink, &strdev, &path); - if (r != 6) - break; -@@ -559,7 +559,7 @@ - stdev = path_st.st_dev; - stino = path_st.st_ino; - #else -- r=scanf("dev=%llx,ino=%llu,mode=%llo,uid=%llu,gid=%llu,nlink=%llu,rdev=%llu\n", -+ r=scanf("dev=%"PRIx64",ino=%"PRIu64",mode=%"PRIo64",uid=%"PRIu64",gid=%"PRIu64",nlink=%"PRIu64",rdev=%"PRIu64"\n", - &stdev, &stino, &stmode, &stuid, &stgid, &stnlink, &strdev); - if (r != 7) - break; diff --git a/core/fakeroot/patches/silence-dlerror.patch b/core/fakeroot/patches/silence-dlerror.patch deleted file mode 100644 index a4472d8f7..000000000 --- a/core/fakeroot/patches/silence-dlerror.patch +++ /dev/null @@ -1,17 +0,0 @@ -diff --git a/libfakeroot.c b/libfakeroot.c -index f867758..7ef6e47 100644 ---- a/libfakeroot.c -+++ b/libfakeroot.c -@@ -256,10 +256,12 @@ void load_library_symbols(void){ - /* clear dlerror() just in case dlsym() legitimately returns NULL */ - msg = dlerror(); - *(next_wrap[i].doit)=dlsym(get_libc(), next_wrap[i].name); -+#ifdef LIBFAKEROOT_DEBUGGING - if ( (msg = dlerror()) != NULL){ - fprintf (stderr, "dlsym(%s): %s\n", next_wrap[i].name, msg); - /* abort ();*/ - } -+#endif /* LIBFAKEROOT_DEBUGGING */ - } - } - diff --git a/core/fakeroot/patches/xstatjunk.patch b/core/fakeroot/patches/xstatjunk.patch deleted file mode 100644 index 0b4e9d6d6..000000000 --- a/core/fakeroot/patches/xstatjunk.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- fakeroot-1.18.4.orig/configure.ac 2012-06-02 18:23:41.000000000 +0000 -+++ fakeroot-1.18.4/configure.ac 2015-09-24 23:15:56.917470073 +0000 -@@ -301,7 +301,7 @@ - FUNC=`echo $SEARCH|sed -e 's/.*%//'` - PRE=`echo $SEARCH|sed -e 's/%.*//'` - FOUND= -- for WRAPPED in __${PRE}x${FUNC} _${PRE}x${FUNC} __${PRE}${FUNC}13 ${PRE}${FUNC}; do -+ for WRAPPED in ${PRE}${FUNC}; do - AC_CHECK_FUNCS($WRAPPED,FOUND=$WRAPPED) - dnl - dnl to unconditionally define only the _* functions, comment out the 2 lines above, diff --git a/core/fakeroot/sources b/core/fakeroot/sources deleted file mode 100644 index 9ef721f9e..000000000 --- a/core/fakeroot/sources +++ /dev/null @@ -1,6 +0,0 @@ -https://deb.debian.org/debian/pool/main/f/fakeroot/fakeroot_1.23.orig.tar.xz -patches/busybox_compat_force_abslibpath.patch -patches/fakeroot-no64.patch -patches/fakeroot-stdint.patch -patches/silence-dlerror.patch -patches/xstatjunk.patch diff --git a/core/fakeroot/version b/core/fakeroot/version deleted file mode 100644 index e444ac9cb..000000000 --- a/core/fakeroot/version +++ /dev/null @@ -1 +0,0 @@ -1.23 6