diff options
author | Ulrich Mueller <ulm@gentoo.org> | 2011-05-01 08:57:33 -0700 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2011-05-01 08:57:33 -0700 |
commit | 4e02baaa767e13c3b99ddeca1e9a8a05abd30783 (patch) | |
tree | fbbe133f6eab3c97b11799df7c8bfbb32cf9491b | |
parent | 693681562c7795473efd0caaa05b8d52b28f75db (diff) | |
download | portage-4e02baaa767e13c3b99ddeca1e9a8a05abd30783.tar.gz portage-4e02baaa767e13c3b99ddeca1e9a8a05abd30783.tar.bz2 portage-4e02baaa767e13c3b99ddeca1e9a8a05abd30783.zip |
repoman: Check for PROVIDE.
This will fix bug #365505.
-rwxr-xr-x | bin/repoman | 5 | ||||
-rw-r--r-- | man/repoman.1 | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/bin/repoman b/bin/repoman index f3956d68c..c89f2b8d4 100755 --- a/bin/repoman +++ b/bin/repoman @@ -366,6 +366,7 @@ qahelp={ "metadata.bad":"Bad metadata.xml files", "metadata.warning":"Warnings in metadata.xml files", "portage.internal":"The ebuild uses an internal Portage function", + "virtual.oldstyle":"The ebuild PROVIDEs an old-style virtual (see GLEP 37)", "virtual.versioned":"PROVIDE contains virtuals with versions", "virtual.exists":"PROVIDE contains existing package names", "virtual.unavailable":"PROVIDE contains a virtual which contains no profile default", @@ -1548,6 +1549,10 @@ for x in scanlist: stats["virtual.exists"]+=1 fails["virtual.exists"].append(x+"/"+y+".ebuild: "+prov_cp) + if myaux.get("PROVIDE"): + stats["virtual.oldstyle"]+=1 + fails["virtual.oldstyle"].append(relative_path) + for pos, missing_var in enumerate(missingvars): if not myaux.get(missing_var): if catdir == "virtual" and \ diff --git a/man/repoman.1 b/man/repoman.1 index 162b62b45..7c3402448 100644 --- a/man/repoman.1 +++ b/man/repoman.1 @@ -353,6 +353,9 @@ Ebuild uses D, ROOT, ED, EROOT or EPREFIX with helpers .B virtual.exists PROVIDE contains existing package names .TP +.B virtual.oldstyle +The ebuild PROVIDEs an old-style virtual (see GLEP 37) +.TP .B virtual.unavailable PROVIDE contains a virtual which contains no profile default .TP |