]> git.pld-linux.org Git - packages/rpm.git/blame - rpm-mono.patch
- actually package javaprov stuff
[packages/rpm.git] / rpm-mono.patch
CommitLineData
0eb0b57c
JB
1--- rpm-4.4.8/lib/rpmfc.c.orig 2005-11-19 01:11:00.884392480 +0100
2+++ rpm-4.4.8/lib/rpmfc.c 2005-11-19 01:13:08.489993480 +0100
3@@ -539,6 +539,10 @@
dc6aae45
JB
4
5 { "Java ", RPMFC_JAVA|RPMFC_INCLUDE },
63b0a9d7 6
7+ /* .NET executables and libraries. file(1) cannot differ it from native win32 executables unfortunatelly */
0eb0b57c 8+ { "PE executable", RPMFC_MONO|RPMFC_INCLUDE },
3d7f1130 9+ { "executable PE", RPMFC_MONO|RPMFC_INCLUDE },
63b0a9d7 10+
11 { "current ar archive", RPMFC_STATIC|RPMFC_LIBRARY|RPMFC_ARCHIVE|RPMFC_INCLUDE },
12
13 { "Zip archive data", RPMFC_COMPRESSED|RPMFC_ARCHIVE|RPMFC_INCLUDE },
0eb0b57c 14@@ -900,6 +904,35 @@
63b0a9d7 15 }
16
17 /**
18+ * Extract .NET dependencies.
19+ * @param fc file classifier
63b0a9d7 20+ * @return 0 on success
21+ */
dc6aae45 22+static int rpmfcMONO(rpmfc fc)
63b0a9d7 23+ /*@globals rpmGlobalMacroContext, h_errno, fileSystem, internalState @*/
24+ /*@modifies fc, rpmGlobalMacroContext, fileSystem, internalState @*/
25+{
26+ const char * fn = fc->fn[fc->ix];
27+ FILE * fp;
28+ int xx;
29+
30+ fp = fopen(fn, "r");
31+ if (fp == NULL || ferror(fp)) {
32+ if (fp) (void) fclose(fp);
33+ return -1;
34+ }
35+
36+ (void) fclose(fp);
37+
dc6aae45
JB
38+ if (fc->findprov)
39+ xx = rpmfcHelper(fc, 'P', "mono", fc->noautoprov, fc->noautoprov_c);
40+ if (fc->findreq)
41+ xx = rpmfcHelper(fc, 'R', "mono", fc->noautoreq, fc->noautoreq_c);
63b0a9d7 42+
43+ return 0;
44+}
45+
46+/**
47 * Extract Elf dependencies.
48 * @param fc file classifier
dc6aae45
JB
49 * @return 0 on success
50@@ -931,6 +963,7 @@
51 static struct rpmfcApplyTbl_s rpmfcApplyTable[] = {
52 { rpmfcELF, RPMFC_ELF },
53 { rpmfcSCRIPT, (RPMFC_SCRIPT|RPMFC_PERL|RPMFC_PYTHON|RPMFC_LIBTOOL|RPMFC_PKGCONFIG|RPMFC_BOURNE|RPMFC_JAVA|RPMFC_PHP) },
63b0a9d7 54+ { rpmfcMONO, RPMFC_MONO },
55 { NULL, 0 }
56 };
57
0eb0b57c
JB
58--- rpm-4.4.8./lib/rpmfc.h 2005-08-11 13:11:54.000000000 +0200
59+++ rpm-4.4.8/lib/rpmfc.h 2005-08-11 14:10:33.000000000 +0200
63b0a9d7 60@@ -78,6 +78,7 @@
61 RPMFC_PYTHON = (1 << 26),
62 RPMFC_PHP = (1 << 27),
63 RPMFC_TCL = (1 << 28),
64+ RPMFC_MONO = (1 << 6),
65
66 RPMFC_WHITE = (1 << 29),
67 RPMFC_INCLUDE = (1 << 30),
68diff -ruN rpm-4.4.2./macros.in rpm-4.4.2/macros.in
69--- rpm-4.4.2./macros.in 2005-08-11 13:11:54.000000000 +0200
70+++ rpm-4.4.2/macros.in 2005-08-11 17:20:46.276790376 +0200
71@@ -443,6 +443,9 @@
72 %__python_provides @RPMCONFIGDIR@/pythondeps.sh --provides
73 %__python_requires @RPMCONFIGDIR@/pythondeps.sh --requires
74
23061c8d
JB
75+%__mono_provides %{nil}
76+%__mono_requires %{nil}
63b0a9d7 77+
78 #
79 # fixowner, fixgroup, and fixperms are run at the end of hardcoded setup
80 # These macros are necessary only for legacy compatibility, and have moved
This page took 0.044092 seconds and 4 git commands to generate.