get ride of ORE tags

This commit is contained in:
Aurelien Foret 2005-05-02 08:05:47 +00:00
parent 22967aeba5
commit a53bf50189
2 changed files with 5 additions and 8 deletions

View File

@ -259,11 +259,10 @@ int pacman_deptest(list_t *targets)
return(1);
}
/* ORE
* For ADD transaction, implement a hack to alpm_trans_addtarget() to add
* a dummy target based on the pattern: "__dummy__|version|dep1|dep2|..."
* where "dummy" is the package name, "version" its version, and every dep?
* the content of the "depends" field.
/* We use a hidden facility from alpm_trans_addtarget() to add a dummy
* target to the transaction (see the library code for details).
* It allows us to use alpm_trans_prepare() to check dependencies of the
* given target.
*/
str = (char *)malloc(strlen("name=dummy|version=1.0-1")+1);
strcpy(str, "name=dummy|version=1.0-1");

View File

@ -446,9 +446,7 @@ int pacman_sync(list_t *targets)
MSG(NL, ":: It is recommended that you allow pacman to upgrade itself\n");
MSG(NL, ":: first, then you can re-run the operation with the newer version.\n");
MSG(NL, "::\n");
if(yesno(":: Upgrade pacman first? [Y/n] ")) {
/* ORE
we should substitute existing targets with "pacman" */
if(!yesno(":: Upgrade anyway? [Y/n] ")) {
retval = 0;
alpm_trans_release();
goto cleanup;