X-Git-Url: http://git.pld-linux.org/?a=blobdiff_plain;f=rpm-mono.patch;h=6801f0336a4ff30a01b6925b1fcb7f2b4b6d6ec0;hb=ebe974a840ba7c087ac73c4804585a7a7a73a219;hp=419c1386734c92e90f65bad4ad2a82e2bcc549ed;hpb=3d7f11300ebcd183b9fcaf08a05c0291c6cacc90;p=packages%2Frpm.git diff --git a/rpm-mono.patch b/rpm-mono.patch index 419c138..6801f03 100644 --- a/rpm-mono.patch +++ b/rpm-mono.patch @@ -1,124 +1,10 @@ ---- rpm-4.4.3/build/rpmfc.c.orig 2005-11-19 01:11:00.884392480 +0100 -+++ rpm-4.4.3/build/rpmfc.c 2005-11-19 01:13:08.489993480 +0100 -@@ -539,6 +539,9 @@ - - { "Java ", RPMFC_JAVA|RPMFC_INCLUDE }, - -+ /* .NET executables and libraries. file(1) cannot differ it from native win32 executables unfortunatelly */ -+ { "executable PE", RPMFC_MONO|RPMFC_INCLUDE }, -+ - { "current ar archive", RPMFC_STATIC|RPMFC_LIBRARY|RPMFC_ARCHIVE|RPMFC_INCLUDE }, - - { "Zip archive data", RPMFC_COMPRESSED|RPMFC_ARCHIVE|RPMFC_INCLUDE }, -@@ -900,6 +903,35 @@ - } - - /** -+ * Extract .NET dependencies. -+ * @param fc file classifier -+ * @return 0 on success -+ */ -+static int rpmfcMONO(rpmfc fc) -+ /*@globals rpmGlobalMacroContext, h_errno, fileSystem, internalState @*/ -+ /*@modifies fc, rpmGlobalMacroContext, fileSystem, internalState @*/ -+{ -+ const char * fn = fc->fn[fc->ix]; -+ FILE * fp; -+ int xx; -+ -+ fp = fopen(fn, "r"); -+ if (fp == NULL || ferror(fp)) { -+ if (fp) (void) fclose(fp); -+ return -1; -+ } -+ -+ (void) fclose(fp); -+ -+ if (fc->findprov) -+ xx = rpmfcHelper(fc, 'P', "mono", fc->noautoprov, fc->noautoprov_c); -+ if (fc->findreq) -+ xx = rpmfcHelper(fc, 'R', "mono", fc->noautoreq, fc->noautoreq_c); -+ -+ return 0; -+} -+ -+/** - * Extract Elf dependencies. - * @param fc file classifier - * @return 0 on success -@@ -931,6 +963,7 @@ - static struct rpmfcApplyTbl_s rpmfcApplyTable[] = { - { rpmfcELF, RPMFC_ELF }, - { rpmfcSCRIPT, (RPMFC_SCRIPT|RPMFC_PERL|RPMFC_PYTHON|RPMFC_LIBTOOL|RPMFC_PKGCONFIG|RPMFC_BOURNE|RPMFC_JAVA|RPMFC_PHP) }, -+ { rpmfcMONO, RPMFC_MONO }, - { NULL, 0 } - }; - -diff -ruN rpm-4.4.2./build/rpmfc.h rpm-4.4.2/build/rpmfc.h ---- rpm-4.4.2./build/rpmfc.h 2005-08-11 13:11:54.000000000 +0200 -+++ rpm-4.4.2/build/rpmfc.h 2005-08-11 14:10:33.000000000 +0200 -@@ -78,6 +78,7 @@ - RPMFC_PYTHON = (1 << 26), - RPMFC_PHP = (1 << 27), - RPMFC_TCL = (1 << 28), -+ RPMFC_MONO = (1 << 6), - - RPMFC_WHITE = (1 << 29), - RPMFC_INCLUDE = (1 << 30), -diff -ruN rpm-4.4.2./macros.in rpm-4.4.2/macros.in ---- rpm-4.4.2./macros.in 2005-08-11 13:11:54.000000000 +0200 -+++ rpm-4.4.2/macros.in 2005-08-11 17:20:46.276790376 +0200 -@@ -443,6 +443,9 @@ - %__python_provides @RPMCONFIGDIR@/pythondeps.sh --provides - %__python_requires @RPMCONFIGDIR@/pythondeps.sh --requires - -+%__mono_provides @RPMCONFIGDIR@/monodeps.sh --provides -+%__mono_requires @RPMCONFIGDIR@/monodeps.sh --requires -+ +--- rpm-5.3.1/macros/mono.in.wiget 2010-05-30 16:58:43.653464509 +0200 ++++ rpm-5.3.1/macros/mono.in 2010-05-30 16:59:15.576066903 +0200 +@@ -6,5 +6,5 @@ # - # fixowner, fixgroup, and fixperms are run at the end of hardcoded setup - # These macros are necessary only for legacy compatibility, and have moved -diff -ruN rpm-4.4.2./configure.ac rpm-4.4.2/configure.ac ---- rpm-4.4.2./configure.ac 2005-08-11 17:36:01.000000000 +0200 -+++ rpm-4.4.2/configure.ac 2005-08-11 18:11:15.449385328 +0200 -@@ -1355,7 +1355,7 @@ - scripts/php.req scripts/php.prov - rpmio/Makefile rpmdb/Makefile lib/Makefile build/Makefile - scripts/Makefile scripts/brp-redhat -- scripts/macros.perl scripts/macros.php scripts/macros.python -+ scripts/macros.perl scripts/macros.php scripts/macros.python scripts/macros.mono - tools/Makefile - tests/Makefile tests/rpmrc tests/macros tests/hello-test/Makefile - misc/Makefile intl/Makefile po/Makefile.in -diff -ruN rpm-4.4.2./scripts/macros.mono rpm-4.4.2/scripts/macros.mono ---- rpm-4.4.2./scripts/macros.mono 1970-01-01 01:00:00.000000000 +0100 -+++ rpm-4.4.2/scripts/macros.mono 2005-08-11 18:14:44.387621888 +0200 -@@ -0,0 +1,6 @@ -+# Mono specific macro definitions. -+# To make use of these macros insert the following line into your spec file: -+# %include /usr/lib/rpm/macros.mono -+ -+%define __find_requires /usr/bin/mono-find-requires -+%define __find_provides /usr/bin/mono-find-provides -diff -ruN rpm-4.4.2./scripts/macros.mono.in rpm-4.4.2/scripts/macros.mono.in ---- rpm-4.4.2./scripts/macros.mono.in 1970-01-01 01:00:00.000000000 +0100 -+++ rpm-4.4.2/scripts/macros.mono.in 2005-08-11 18:15:49.420735352 +0200 -@@ -0,0 +1,6 @@ -+# Mono specific macro definitions. -+# To make use of these macros insert the following line into your spec file: -+# %include @RPMCONFIGDIR@/macros.mono -+ -+%define __find_requires /usr/bin/mono-find-requires -+%define __find_provides /usr/bin/mono-find-provides -diff -ruN rpm-4.4.2./scripts/Makefile.am rpm-4.4.2/scripts/Makefile.am ---- rpm-4.4.2./scripts/Makefile.am 2005-07-13 14:19:13.000000000 +0200 -+++ rpm-4.4.2/scripts/Makefile.am 2005-08-11 18:13:19.998450992 +0200 -@@ -16,7 +16,7 @@ - rpm.daily rpm.log rpm.xinetd rpm2cpio.sh \ - sql.prov sql.req tcl.req tgpg trpm u_pkg.sh \ - vpkg-provides.sh vpkg-provides2.sh \ -- macros.perl* macros.python* \ -+ macros.perl* macros.python* macros.mono* \ - macros.php* find-*.php find-php-* - - installprefix = $(DESTDIR) + # Note: Used iff _use_internal_dependency_generator is non-zero. The + # helpers are also used by %{_rpmhome}/rpmdeps {--provides|--requires}. +-%__mono_provides %{_rpmhome}/mono-find-provides +-%__mono_requires %{_rpmhome}/mono-find-requires ++%__mono_provides %{nil} ++%__mono_requires %{nil}