xbps-reconfigure(8): new option -i, --ignore to ignore pkgs with -a, --all.

-i, --ignore can be specified multiple times and can be used to
ignore configuration of those packages while configuration of all
packages is being performed.

Close #67
This commit is contained in:
Juan RP
2014-12-09 13:10:48 +01:00
parent 925ec15c3d
commit c8ecf4ac6c
6 changed files with 67 additions and 9 deletions

View File

@ -128,7 +128,7 @@ match_string_in_array(xbps_array_t array, const char *str, int mode)
break;
}
} else if (mode == 1) {
/* match by pkgname */
/* match by pkgname against pkgver */
pkgdep = xbps_string_cstring_nocopy(obj);
if (strchr(pkgdep, '_') == NULL) {
tmp = xbps_xasprintf("%s_1", pkgdep);
@ -146,6 +146,18 @@ match_string_in_array(xbps_array_t array, const char *str, int mode)
}
free(curpkgname);
} else if (mode == 2) {
/* match by pkgver against pkgname */
pkgdep = xbps_string_cstring_nocopy(obj);
curpkgname = xbps_pkg_name(str);
if (curpkgname == NULL)
break;
if (strcmp(curpkgname, pkgdep) == 0) {
free(curpkgname);
found = true;
break;
}
free(curpkgname);
} else if (mode == 3) {
/* match pkgpattern against pkgdep */
pkgdep = xbps_string_cstring_nocopy(obj);
if (strchr(pkgdep, '_') == NULL) {
@ -161,7 +173,7 @@ match_string_in_array(xbps_array_t array, const char *str, int mode)
if (tmp != NULL)
free(tmp);
} else if (mode == 3) {
} else if (mode == 4) {
/* match pkgdep against pkgpattern */
pkgdep = xbps_string_cstring_nocopy(obj);
if (strchr(pkgdep, '_') == NULL) {
@ -195,14 +207,20 @@ xbps_match_pkgname_in_array(xbps_array_t array, const char *pkgname)
return match_string_in_array(array, pkgname, 1);
}
bool
xbps_match_pkgver_in_array(xbps_array_t array, const char *pkgver)
{
return match_string_in_array(array, pkgver, 2);
}
bool
xbps_match_pkgpattern_in_array(xbps_array_t array, const char *pattern)
{
return match_string_in_array(array, pattern, 2);
return match_string_in_array(array, pattern, 3);
}
bool
xbps_match_pkgdep_in_array(xbps_array_t array, const char *pkgver)
{
return match_string_in_array(array, pkgver, 3);
return match_string_in_array(array, pkgver, 4);
}