View | Details | Raw Unified | Return to bug 198899
Collapse All | Expand All

(-)b/docs/pkg-version.8 (-4 / +3 lines)
Lines 162-170 Automatic repository catalogue updates are only attempted when the Link Here
162
effective UID of the process has write access to the package database.
162
effective UID of the process has write access to the package database.
163
Otherwise they are silently ignored.
163
Otherwise they are silently ignored.
164
.It Fl r Ar reponame , Cm --repository Ar reponame
164
.It Fl r Ar reponame , Cm --repository Ar reponame
165
When using
165
Compare installed package versions to packages available from the
166
.Fl R
167
compare installed package versions to packages available from the
168
named repository only, irrespective of the configured
166
named repository only, irrespective of the configured
169
.Dq active
167
.Dq active
170
status from
168
status from
Lines 172-178 status from Link Here
172
By default all repository catalogues marked
170
By default all repository catalogues marked
173
.Dq active
171
.Dq active
174
are used for version comparisons.
172
are used for version comparisons.
175
.Fl R
173
Implies
174
.Fl R .
176
.It Fl o , Cm --origin
175
.It Fl o , Cm --origin
177
Display package origin, instead of package name.
176
Display package origin, instead of package name.
178
.It Fl q , Cm --quiet
177
.It Fl q , Cm --quiet
(-)b/src/version.c (+1 lines)
Lines 853-858 exec_version(int argc, char **argv) Link Here
853
			opt |= VERSION_SOURCE_REMOTE;
853
			opt |= VERSION_SOURCE_REMOTE;
854
			break;
854
			break;
855
		case 'r':
855
		case 'r':
856
			opt |= VERSION_SOURCE_REMOTE;
856
			reponame = optarg;
857
			reponame = optarg;
857
			break;
858
			break;
858
		case 'T':
859
		case 'T':

Return to bug 198899