homebrew-core/Formula/fakeroot.rb

95 lines
3.6 KiB
Ruby

class Fakeroot < Formula
desc "Provide a fake root environment"
homepage "https://tracker.debian.org/pkg/fakeroot"
url "https://deb.debian.org/debian/pool/main/f/fakeroot/fakeroot_1.24.orig.tar.gz"
sha256 "2e045b3160370b8ab4d44d1f8d267e5d1d555f1bb522d650e7167b09477266ed"
license "GPL-3.0"
livecheck do
url "https://deb.debian.org/debian/pool/main/f/fakeroot/"
regex(/href=.*?fakeroot[._-]v?(\d+(?:\.\d+)+)\.orig\.t/i)
end
bottle do
cellar :any
sha256 "c72ae187158b6cce73311fee527ba8bf8d2f0e18340bd66eef57b50b3d45c275" => :catalina
sha256 "6c23e4c601af569c2de802cac685de5d18e6ebafcb53e6c53107aa3feb3d1527" => :mojave
sha256 "df9be392f3579464893be013744b5aa40a7e4e91e01155bd1547e4104d381640" => :high_sierra
end
# Compile is broken. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=766649
# Patches submitted upstream on 24/10/2014, but no reply from maintainer thus far.
patch do
url "https://bugs.debian.org/cgi-bin/bugreport.cgi?msg=5;filename=0001-Implement-openat-2-wrapper-which-handles-optional-ar.patch;att=1;bug=766649"
sha256 "1c9a24aae6dc2a82fa7414454c12d3774991f6264dd798d7916972335602308d"
end
patch do
url "https://bugs.debian.org/cgi-bin/bugreport.cgi?msg=5;filename=0002-OS-X-10.10-introduced-id_t-int-in-gs-etpriority.patch;att=2;bug=766649"
sha256 "e0823a8cfe9f4549eb4f0385a9cd611247c3a11c0452b5f80ea6122af4854b7c"
end
# This patch handles mapping the variadic arguments to the system openat to
# the fixed arguments for our next_openat function.
# Patch has been submitted to
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=766649
patch :DATA
def install
system "./configure", "--disable-dependency-tracking",
"--disable-static",
"--disable-silent-rules",
"--prefix=#{prefix}"
# Yosemite introduces an openat function, which has variadic arguments,
# which the "fancy" wrapping scheme used by fakeroot does not handle. So we
# have to patch the generated file after it is generated.
# Patch has been submitted with detailed explanation to
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=766649
system "make", "wraptmpf.h"
(buildpath/"patch-for-wraptmpf-h").write <<~EOS
diff --git a/wraptmpf.h b/wraptmpf.h
index dbfccc9..0e04771 100644
--- a/wraptmpf.h
+++ b/wraptmpf.h
@@ -575,6 +575,10 @@ static __inline__ int next_mkdirat (int dir_fd, const char *pathname, mode_t mod
#endif /* HAVE_MKDIRAT */
#ifdef HAVE_OPENAT
extern int openat (int dir_fd, const char *pathname, int flags, ...);
+static __inline__ int next_openat (int dir_fd, const char *pathname, int flags, mode_t mode) __attribute__((always_inline));
+static __inline__ int next_openat (int dir_fd, const char *pathname, int flags, mode_t mode) {
+ return openat (dir_fd, pathname, flags, mode);
+}
#endif /* HAVE_OPENAT */
#ifdef HAVE_RENAMEAT
EOS
system "patch < patch-for-wraptmpf-h"
system "make"
system "make", "install"
end
test do
if MacOS.version <= :yosemite
assert_equal "root", shell_output("#{bin}/fakeroot whoami").strip
else
assert_match version.to_s, shell_output("#{bin}/fakeroot -v")
end
end
end
__END__
index 15fdd1d..29d738d 100644
--- a/libfakeroot.c
+++ b/libfakeroot.c
@@ -2446,6 +2446,6 @@ int openat(int dir_fd, const char *pathname, int flags, ...)
va_end(args);
return next_openat(dir_fd, pathname, flags, mode);
}
- return next_openat(dir_fd, pathname, flags);
+ return next_openat(dir_fd, pathname, flags, NULL);
}
#endif