File: functionalselectors.t2t

package info (click to toggle)
cupt 2.10.4%2Bnmu2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 3,144 kB
  • sloc: cpp: 23,642; perl: 1,599; sh: 40; makefile: 19
file content (246 lines) | stat: -rw-r--r-- 10,080 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
Functional selectors in Cupt
Eugene V. Lyubimkin
%%date

%!preproc(man): '%man% ' ''
%!postproc(man): "^(\.TH.*) 1 "  "\1 7 "
%!postproc(man): ' \(#\w+\)' ''
%!options(html): --toc
%!postproc(html): <HEAD> '<HEAD>\n<STYLE>body{margin:2em;}</STYLE>'
%!postproc: '^the_end_of_the_config_area' ''
%!preproc: '%regex_syntax\((.*?)\)%' "``\1(``//regex//``)``"

the_end_of_the_config_area

%man% = NAME =
%man%
%man% cupt_functionselectors - syntax of functional selectors in cupt package manager
%man%

= AIM =

Functional selectors are used for fine-grained selection of versions. While
standard mechanisms provide a way to select versions by package name, version
string and/or distribution, functional selectors embed a microlanguage to
select versions by their various properties.

= SYNTAX =

Functional selector expression (FSE) consists of **function name** and **list of arguments**:

'//function_name//``(``//argument1//, //argument2//, ... //argumentN//``)``'

Every argument can be a FSE itself or a string. Arguments are separated by the
comma (``,``).  Additional whitespace characters (space, tab, newline) are
allowed (and ignored by parser) anywhere except between the function name and
the opening bracket.

If the argument is a string and contains commas or round brackets, the argument
should be quoted by placing the ``/`` character around it
('``/``//argument//``/``').

If the function receives no arguments, arguments bracked may be omitted:
'//function_name//' is an equivalent to '//function_name//``()``'.

The expression '//argument1// ``&`` //argument2// ``&`` ... ``&``
//argumentN//' is a special short form for '``and(``//argument1//,
//argument2//, ...
//argumentN//``)``'. Similarly, the expression '//argument1// ``|``
//argument2// ``|`` ... ``|`` //argumentN//'
is a special short form for '``or(``//argument1//, //argument2//, ...
//argumentN//``)``'

= FUNCTION REFERENCE =

== Logic functions ==

Receive FSEs as arguments.

|| Function name and arguments | Argument count | Returns versions which... |
| ``and(``//fse1//, //fse2//, ... //fseN//``)`` | ≥ 1 | satisfy all of the //fse1//..//fseN// |
| ``or(``//fse1//, //fse2//, ... //fseN//``)`` | ≥ 1 | satisfy any of the //fse1//..//fseN// |
| ``not(``//fse//``)`` | 1 | don't satisfy //fse// |
| ``xor(``//fse1//, //fse2//``)`` | 2 | satisfy either //fse1// or //fse2// but not both |

== Package property functions ==

|| Function name and arguments | Short alias | Returns versions which... | Notes |
| ``package:name(``//regex//``)`` | ``Pn`` | package name matches //regex// |
| ``package:installed()`` | ``Pi`` | belong to to installed packages | applies only to binary versions |
| ``package:automatically-installed()`` | ``Pai`` | belong to automatically installed packages | applies only to binary versions |

== Common version property functions ==

Apply to source and binary versions.

|| Function name and arguments | Short alias | Returns versions which... |
| %regex_syntax(version)% | ``v`` | version string matches //regex// |
| %regex_syntax(maintainer)% | ``m`` | maintainer matches //regex// |
| %regex_syntax(priority)% | ``p`` | priority matches //regex// |
| %regex_syntax(section)% | ``s`` | section matches //regex// |
| ``trusted()`` | ``t`` | come from at least one release with a valid cryptographic signature |
| ``field(``//field_name//, //regex//``)`` | ``f`` | value¹ of the non-standard (not recognized by Cupt) field //field_name// matches //regex// | 

¹If the version does not contain a field //field_name//, its value is assumed being empty string; and it can still match if regular expression matches empty string.

=== release-related functions ===

Functions from this family receive one string argument (//regex//) and return
versions which come from at least one release where //property// (see the
following table) matches the regular expression //regex//.

|| Function name | Short alias | //Property// |
| ``release:archive`` | ``Ra`` | archive |
| ``release:codename`` | ``Rn`` | codename |
| ``release:component`` | ``Rc`` | component |
| ``release:version`` | ``Rv`` | version |
| ``release:vendor`` | ``Ro`` | vendor |
| ``release:origin`` | ``Ru`` | origin (base URI) |

== Binary version property functions ==

Apply only to binary versions.

|| Function name and arguments | Short alias | Returns versions which... |
| %regex_syntax(source-package)% | ``sp`` | source package matches //regex// |
| %regex_syntax(source-version)% | ``sv`` | source version string matches //regex// |
| ``essential()`` | ``e`` | have 'Essential' flag set |
| ``important()`` |  | have 'Important' flag set |
| ``installed()`` | ``i`` | are installed in the system |
| %regex_syntax(description)% | ``d`` | description matches //regex// |
| %regex_syntax(provides)% | ``o`` | provides at least one virtual package which matches //regex// |

== Source version property functions ==

Apply only to source versions.

|| Function name and arguments | Short alias | Returns versions which... |
| %regex_syntax(uploaders)% | ``u`` | have at least one uploader which matches //regex// |

== Binary relation functions ==

Apply only to binary versions.

=== forward dependencies ===

Functions from this family receive one FSE-argument (//fse//) and return all versions
which satisfy the dependency of type //relation type// for //fse// (see the following table).

|| Function name | Short alias | //Relation type// |
| ``pre-depends`` | ``Ypd`` | Pre-Depends |
| ``depends`` | ``Yd`` | Depends |
| ``recommends`` | ``Yr`` | Recommends |
| ``suggests`` | ``Ys`` | Suggests |
| ``enhances`` | ``Ye`` | Enhances |
| ``conflicts`` | ``Yc`` | Conflicts |
| ``breaks`` | ``Yb`` | Breaks |
| ``replaces`` | ``Yrp`` | Replaces |

=== reverse dependencies ===

Functions from this family receive one FSE-argument (//fse//) and return all
versions for which at least one version from //fse// satisfies the dependency
of type //relation type// (see the following table).

|| Function name | Short alias | //Relation type// |
| ``reverse-pre-depends`` | ``YRpd`` | Pre-Depends |
| ``reverse-depends`` | ``YRd`` | Depends |
| ``reverse-recommends`` | ``YRr`` | Recommends |
| ``reverse-suggests`` | ``YRs`` | Suggests |
| ``reverse-enhances`` | ``YRe`` | Enhances |
| ``reverse-conflicts`` | ``YRc`` | Conflicts |
| ``reverse-breaks`` | ``YRb`` | Breaks |
| ``reverse-replaces`` | ``YRrp`` | Replaces |

== Source relation functions ==

=== forward dependencies ===

Apply only to source versions and return binary versions.

Functions from this family receive one FSE-argument (//fse//) and return all
versions which satisfy the build-time dependency of type //relation type// for
//fse// (see the following table).

|| Function name | Short alias | //Relation type// |
| ``build-depends`` | ``Zbd`` | Build-Depends |
| ``build-depends-indep`` | ``Zbdi`` | Build-Depends-Indep |
| ``build-depends-arch`` |  | Build-Depends-Arch |
| ``build-conflicts`` | ``Zbc`` | Build-Conflicts |
| ``build-conflicts-indep`` | ``Zbci`` | Build-Conflicts-Indep |
| ``build-conflicts-arch`` |  | Build-Conflicts-Arch |

=== reverse dependencies ===

Apply only to binary versions and return source versions.

Functions from this family receive one FSE-argument (//fse//) and return all
versions for which at least one version from //fse// satisfies the
build-dependency of type //relation type// (see the following table).

|| Function name | Short alias | //Relation type// |
| ``reverse-build-depends`` | ``ZRbd`` | Build-Depends |
| ``reverse-build-depends-indep`` | ``ZRbdi`` | Build-Depends-Indep |
| ``reverse-build-depends-arch`` |  | Build-Depends-Arch |
| ``reverse-build-conflicts`` | ``ZRbc`` | Build-Conflicts |
| ``reverse-build-conflicts-indep`` | ``ZRbci`` | Build-Conflicts-Indep |
| ``reverse-build-conflicts-arch`` |  | Build-Conflicts-Arch |

== Metafunctions ==

=== defining functions ===

The function **``with``** defines a user function with no parameters
which can be used as FSE-argument in the subexpression.

Syntax:

``with(``//function_name//, //function_expression//, //subexpression//``)``

|| Argument | Meaning |
| //function_name// | user-defined function name, must start with an underscore (``_``) |
| //function_expression// | FSE, function value |
| //subexpression// | FSE which the defined function can be used in |

This function returns the value of //subexpression//.

=== recursing ===

The function **``recursive``** defines a recursive transformation FSE.

Syntax:

``recursive(``//subresult_function_name//, //initial_subresult//, //iterating_expression//``)``

|| Argument | Meaning |
| //subresult_function_name// | user-defined function name, must start with an underscore (``_``) |
| //initial_subresult// | FSE, initial value of //subresult_function_name// |
| //subexpression// | FSE to compute on each recurse iteration, which //subresult_function_name// to be used in |

The function works as follows:

+ //subresult_function_name// defined as //initial_subresult//
+ the value of //iterating_expression// is computed
+ if this value is equal to //subresult_function_name()// its returned as function result 
+ //subresult_function_name// redefined as ``or(``//subresult_function_name//, //iterating_expression//``)``
+ go to step 2


=== mapping ===

The function **``fmap``** applies many functions to the same expression and combines their results.

The expression

``fmap(``//fse//, //function_name_1//, ..., //function_name_N//``)``

is equivalent to

``or(``//function_name_1//``(``//fse//``)``, ..., //function_name_N//``(``//fse//``))``

== Miscellaneous ==

|| Function name and arguments | Value |
| ``best(``//fse//``)`` | filters out those versions from //fse// for which there are another version of the same package and higher pin |
| ``binary-to-source(``//binary_fse//``)`` | converts binary versions, selected by //binary_fse//, to their corresponding source versions |
| ``source-to-binary(``//source_fse//``)`` | converts source versions, selected by //source_fse//, to lists of their corresponding binary versions |