localdeb feature of mmaker was broken
Michael Bunk <mb-bdq14YP6qtTFlEURE6xjZ1aTQe2KTcn/@public.gmane.org> Wed, 17 Oct 2007 18:26:15 +0200
| Newsgroups | gmane.linux.morphix.devel |
|---|---|
| Message-ID | <[email protected]> |
This is a multi-part message in MIME format.
--------------010403090501070300060209
Content-Type: text/plain; charset=ISO-8859-15; format=flowed
Content-Transfer-Encoding: 7bit
I tried to install my new cloop .deb, but failed to integrate my private
debian repository. I found the localdeb feature in the docs/source of
mmaker, but my .deb was not installed.
It turns out that it is better to call the right function...
Best regards,
Michael
--------------010403090501070300060209
Content-Type: text/x-diff;
name="mmaker.correctly-parse-local-deblist-and-2-typos.patch"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
filename*0="mmaker.correctly-parse-local-deblist-and-2-typos.patch"
Index: debian/mmaker.1
===================================================================
--- debian/mmaker.1 (Revision 2564)
+++ debian/mmaker.1 (Arbeitskopie)
@@ -67,7 +67,7 @@
.PP
\fI\-v\fR
.RS 4
-Verbose mode \- hepful for debugging.
+Verbose mode \- helpful for debugging.
.RE
.PP
\fI\-i\fR
Index: src/main.c
===================================================================
--- src/main.c (Revision 2564)
+++ src/main.c (Arbeitskopie)
@@ -178,7 +178,7 @@
}
else {
if (miniroot != NULL && strcmp(module->type,"basemod") == 0) {
- printf("Info: Building miniroot from temporary dxirectory using mkminiroot-morphix\n");
+ printf("Info: Building miniroot from temporary directory using mkminiroot-morphix\n");
if (g_file_test("/usr/sbin/mkminiroot-morphix",G_FILE_TEST_EXISTS) == TRUE) {
printf("Info: mkminiroot-morphix exists\n");
cmdline = g_strdup_printf("/usr/sbin/mkminiroot-morphix %s %s/miniroot-dir %s",module->dirname,getTempRoot(),miniroot);
Index: libmorphix/parsemod.c
===================================================================
--- libmorphix/parsemod.c (Revision 2564)
+++ libmorphix/parsemod.c (Arbeitskopie)
@@ -345,7 +345,7 @@
parsePatchlist(doc,cur,module);
}
if (!xmlStrcmp(cur->name, ((const xmlChar *)"localdeblist"))) {
- parseCommandlist(doc,cur,module);
+ parseLocalDeblist(doc,cur,module);
}
if (!xmlStrcmp(cur->name, ((const xmlChar *)"commandlist"))) {
parseCommandlist(doc,cur,module);
--------------010403090501070300060209
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems? Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
--------------010403090501070300060209
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
_______________________________________________
Morphix-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/morphix-devel
--------------010403090501070300060209--