88 lines
3.7 KiB
Ruby
88 lines
3.7 KiB
Ruby
class Fakeroot < Formula
|
|
desc "Provide a fake root environment"
|
|
homepage "https://tracker.debian.org/pkg/fakeroot"
|
|
url "https://mirrors.ocf.berkeley.edu/debian/pool/main/f/fakeroot/fakeroot_1.20.2.orig.tar.bz2"
|
|
mirror "https://mirrorservice.org/sites/ftp.debian.org/debian/pool/main/f/fakeroot/fakeroot_1.20.2.orig.tar.bz2"
|
|
sha256 "7c0a164d19db3efa9e802e0fc7cdfeff70ec6d26cdbdc4338c9c2823c5ea230c"
|
|
|
|
bottle do
|
|
cellar :any
|
|
rebuild 1
|
|
sha256 "54f63ac03028f613f78e59ab94c003d6ebc80d3b400ad0c8150f809361b2767b" => :sierra
|
|
sha256 "2d97e0b44126223c3c4ced30219e98d02c58caa5246e561557acb0e46a59a082" => :el_capitan
|
|
sha256 "8826383a8dcef74009b3813a0297732daba8c6dc0fad6ccef0cafda1086a347a" => :yosemite
|
|
sha256 "3f3a1a9c01102dd3fa90cd0d83c55745b5b8d44769128831cf050dd413a03402" => :mavericks
|
|
sha256 "88f49412644e3182a2208e782a91f0da7aec1fc64655baf9c7b4696429ceaf50" => :mountain_lion
|
|
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.undent
|
|
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
|
|
assert_equal "root", shell_output("#{bin}/fakeroot whoami").strip
|
|
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
|