| 1 | pkgcore-checks Release Notes |
|---|
| 2 | ============================ |
|---|
| 3 | |
|---|
| 4 | See ChangeLog for full commit logs; this is summarized and major changes. |
|---|
| 5 | |
|---|
| 6 | |
|---|
| 7 | * EAPI2 support for checking use/transitive use deps. |
|---|
| 8 | |
|---|
| 9 | * ticket 216; basically portage doesn't always write out _eclasses_ entries |
|---|
| 10 | in the cache- if they're empty, it won't. pkgcore-checks visibility vcs |
|---|
| 11 | eclass tests assumed otherwise- this is now fixed. |
|---|
| 12 | |
|---|
| 13 | * pcheck now only outputs the number of tests it's running if --debug is |
|---|
| 14 | enabled. |
|---|
| 15 | |
|---|
| 16 | |
|---|
| 17 | 0.4.3: |
|---|
| 18 | |
|---|
| 19 | * ticket 8; false positive unused global USE flags due to not stripping '+-' |
|---|
| 20 | from iuse defaults. |
|---|
| 21 | |
|---|
| 22 | * ticket 7: tune down metadata xml checks verbosity. |
|---|
| 23 | |
|---|
| 24 | * dropped ModularXPortingReport; no longer needed. |
|---|
| 25 | |
|---|
| 26 | |
|---|
| 27 | 0.4.2: |
|---|
| 28 | |
|---|
| 29 | * minor release to be EAPI=1 compatible wrt IUSE defaults |
|---|
| 30 | |
|---|
| 31 | |
|---|
| 32 | 0.4.1: |
|---|
| 33 | |
|---|
| 34 | * fixed ticket 90; NonExistantDeps occasionally wouldn't report later versions |
|---|
| 35 | of an offender. |
|---|
| 36 | |
|---|
| 37 | * --disable-arches option; way to specifically disable an arch (blacklisting) |
|---|
| 38 | instead of having to specify all arches. |
|---|
| 39 | |
|---|
| 40 | |
|---|
| 41 | 0.4: |
|---|
| 42 | |
|---|
| 43 | * update to use snakeoil api. |
|---|
| 44 | |
|---|
| 45 | * Add check to metadata_check.DependencyReport for self-blocking atoms; for |
|---|
| 46 | example, if dev-util/diffball RDEPEND has !dev-util/diffball. |
|---|
| 47 | |
|---|
| 48 | * ticket 82; Fix BadProto result object so it has proper threshold. |
|---|
| 49 | |
|---|
| 50 | * Fix class serialization bug in RestrictsReport. |
|---|
| 51 | |
|---|
| 52 | * profile loadup optimization; pkgcore weakly caches the intermediate nodes, |
|---|
| 53 | pcheck's profile loadup however specifically released the profiles every |
|---|
| 54 | looping; now it temporarily holds onto it, thus allowing the caching to kick |
|---|
| 55 | in. Among other things, cuts file reads down from 1800 to around around 146. |
|---|
| 56 | |
|---|
| 57 | |
|---|
| 58 | 0.3.5: |
|---|
| 59 | |
|---|
| 60 | * addition of __attrs__ to base.Result classes; use this if __slots__ doesn't |
|---|
| 61 | suffice for listing the attrs to pickle. |
|---|
| 62 | |
|---|
| 63 | * Thanks to Michael Sterret for pointing it out; tweak cleanup scan so that it |
|---|
| 64 | notes 1.12 overshadows 1.11 (stable keywords overshadow earlier unstable |
|---|
| 65 | versions): for example- |
|---|
| 66 | 1.11: ~x86 ~amd64 |
|---|
| 67 | 1.12: x86 ~amd64 |
|---|
| 68 | |
|---|
| 69 | |
|---|
| 70 | 0.3.4: |
|---|
| 71 | |
|---|
| 72 | * treat pkg.restrict as a depset. |
|---|
| 73 | |
|---|
| 74 | |
|---|
| 75 | 0.3.3: |
|---|
| 76 | |
|---|
| 77 | * drop digest specific checks; portage now prunes digests on sync regardless |
|---|
| 78 | of whether or not the repo is m2 pure; thus, no way to detect if a missing |
|---|
| 79 | digest is actually a screwup in the repo, or if it's portage being 'special'. |
|---|
| 80 | May re-add the checks down the line, currently however removing them for |
|---|
| 81 | the common case. |
|---|
| 82 | |
|---|
| 83 | * back down check for files directory if manifest2; manifest2 glep didn't |
|---|
| 84 | specify that files directory could be dropped, but portage has deviated there. |
|---|
| 85 | Since been backed down, but getting ahead so we don't need an intermediate |
|---|
| 86 | release when they try it again. |
|---|
| 87 | |
|---|
| 88 | * added check for missing metadata.xml; refactored common error class selection |
|---|
| 89 | logic into base class. |
|---|
| 90 | |
|---|
| 91 | |
|---|
| 92 | 0.3.2: |
|---|
| 93 | |
|---|
| 94 | * correct tracebacks when dealing with a few result objects from repo_metadata |
|---|
| 95 | |
|---|
| 96 | |
|---|
| 97 | 0.3.1: |
|---|
| 98 | |
|---|
| 99 | * makes StaleUnstable abide by --arches; ticket 59 (thanks leio). |
|---|
| 100 | * stop complaining about empty keywords, since they're now allowed instead of |
|---|
| 101 | using -*. |
|---|
| 102 | |
|---|
| 103 | |
|---|
| 104 | 0.3: |
|---|
| 105 | |
|---|
| 106 | * heavy refactoring of reporter subsystem, and clean up of check results. |
|---|
| 107 | Better messages, better output for normal usage. to_xml() methods were |
|---|
| 108 | dropped (XmlReporter handles it on it's own), same for to_str() in favor |
|---|
| 109 | of short_desc and long_desc attributes. |
|---|
| 110 | * whitespace checks now output one result for each classification for an |
|---|
| 111 | ebuild, instead of emitting reports for each line. |
|---|
| 112 | * all remaining 'info' statements are pushed to stderr now. |
|---|
| 113 | * new PickleStream reporter; used to serialize check results, and flush the |
|---|
| 114 | stream out stdout. If you need to get at the data generated, this is the |
|---|
| 115 | sanest way to do it (alternatives require trying to deserialize what a |
|---|
| 116 | reporter does, thus losing data). |
|---|
| 117 | * added new tool replay-pcheck-stream; used to replay a pickle stream through |
|---|
| 118 | alternative reporters. |
|---|
| 119 | |
|---|
| 120 | |
|---|
| 121 | 0.2: |
|---|
| 122 | |
|---|
| 123 | * invocation args have changed- please see readme for details of how to |
|---|
| 124 | use pcheck. |
|---|
| 125 | * test suite added; not yet complete coverage, but 90% of the way there. |
|---|
| 126 | * --list-checks output format is fair bit more human-readable now. |
|---|
| 127 | * better support for overlays (should work fine with appropriate commandline |
|---|
| 128 | options supplied) |
|---|
| 129 | * optimizations, and performance regression fixes; fair bit faster then .1. |
|---|
| 130 | * new checks can be added via pkgcore 0.2 plugins cache. |
|---|
| 131 | * UI improvements; color, and human readable output. |
|---|
| 132 | * --xml option was dropped, use --reporter to specify the desired reporter, |
|---|
| 133 | and --list-reporters to see what reporters are available |
|---|
| 134 | * added --enable, --disable options to prune add/remove specific checks from |
|---|
| 135 | the run. |
|---|
| 136 | * add config based 'suites' that can be ran; basically, sets of tests/targets |
|---|
| 137 | to run via pcheck. See README for details. |
|---|
| 138 | * whitespace checks. |
|---|
| 139 | |
|---|
| 140 | |
|---|
| 141 | 0.1: |
|---|
| 142 | * inital release |
|---|