summaryrefslogtreecommitdiff
path: root/doc/apt-patterns.7.xml
Commit message (Collapse)AuthorAgeFilesLines
* Fix "string match{ing,es}" and whitespace typo in apt-patterns(7)Chris Leick2020-04-051-2/+2
|
* Release 1.9.91.9.9Julian Andres Klode2020-02-041-1/+1
|
* apt-patterns(7): Document | operator, (), and add an exampleJulian Andres Klode2020-02-041-1/+7
| | | | Missed that in pu/short-patterns.
* apt-patterns(7): Some updates and rationaleJulian Andres Klode2020-02-031-3/+10
|
* patterns: Parse sequence of patterns as ?andJulian Andres Klode2020-02-031-1/+1
|
* patterns: Implement unary !Julian Andres Klode2020-02-031-1/+1
|
* Implement short patterns (patterns starting with ~)Julian Andres Klode2020-02-031-18/+18
| | | | | | Also make pattern detector in cacheset and private's list accept such patterns. We probably should just try to parse and see if it is a (start of a) pattern.
* Release 1.9.51.9.5Julian Andres Klode2019-12-021-1/+1
|
* patterns: Add ?sectionJulian Andres Klode2019-11-261-0/+3
|
* patterns: Add ?all-versionsJulian Andres Klode2019-11-261-0/+3
|
* patterns: Implement ?narrow(...), as ?any-version(?and(...))Julian Andres Klode2019-11-261-0/+6
| | | | | This is pure syntactic sugar - ?narrow does not exist in the abstract syntax.
* patterns: Add ?any-versionJulian Andres Klode2019-11-261-0/+11
|
* patterns: Add ?originJulian Andres Klode2019-11-251-0/+3
|
* patterns: Add ?archiveJulian Andres Klode2019-11-251-0/+3
|
* patterns: Add ?source-name and ?source-versionJulian Andres Klode2019-11-251-0/+6
|
* patterns: Add ?versionJulian Andres Klode2019-11-251-0/+11
|
* Add ?virtual patternJulian Andres Klode2019-08-151-0/+5
| | | | This matches any package that does not have versions.
* Add the ?exact-name patternJulian Andres Klode2019-08-151-0/+3
| | | | | | The ?exact-name pattern matches the name exactly, there is no substring matching going on, or any regular expression or fnmatch magic.
* Add ?essential patternJulian Andres Klode2019-08-151-0/+3
| | | | | | This matches all packages where at least one of the versions is marked essential; or well, whenver apt considers a package essential.
* Add ?broken patternJulian Andres Klode2019-08-151-0/+3
| | | | | This matches all packages that have broken dependencies in the installed version or the version selected for install.
* Add ?config-files and ?installed patternsJulian Andres Klode2019-08-151-0/+9
| | | | | | These two are mutually exclusive states of installed-ness. And ?installed package is fully unpacked and configured; a ?config-files package only has config files left.
* Add ?obsolete and ?upgradable patternsJulian Andres Klode2019-08-151-0/+6
| | | | | | | | | These match packages that have no version in a repository, or where an upgrade is available. Notably, ?and(?obsolete,?upgradable) == ?false because an upgradable package is by definition not obsolete.
* Add ?automatic and ?garbage patternsJulian Andres Klode2019-08-151-0/+11
| | | | | | These patterns allow you to identify automatically installed packages, as well as automatically installed packages that are no longer reachable from the manually installed ones.
* Add patterns for the existing CacheFilter::Matcher classesJulian Andres Klode2019-08-151-2/+36
| | | | | | | This implements the basic logic patterns: ?and ?false ?not ?or ?true and the basic package patterns: ?architecture ?name ?x-name-fnmatch
* doc: Add apt-patterns(7) manual pageJulian Andres Klode2019-08-151-0/+87
This does not describe much yet, as there's not much to talk about.