File: pip3-manpages.patch

package info (click to toggle)
python-pip 25.1.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 7,496 kB
  • sloc: python: 89,559; sh: 75; makefile: 25
file content (352 lines) | stat: -rw-r--r-- 7,602 bytes parent folder | download
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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
From: Stefano Rivera <stefanor@debian.org>
Date: Tue, 5 Mar 2024 21:11:00 -0400
Subject: Rename manpages pip -> pip3

While we call the binary pip3, the manpages should match.

Forwarded: not-needed
---
 docs/html/conf.py               |  4 ++--
 docs/man/commands/cache.rst     |  6 +++---
 docs/man/commands/check.rst     |  6 +++---
 docs/man/commands/config.rst    |  6 +++---
 docs/man/commands/debug.rst     |  2 +-
 docs/man/commands/download.rst  |  6 +++---
 docs/man/commands/freeze.rst    |  6 +++---
 docs/man/commands/hash.rst      |  6 +++---
 docs/man/commands/help.rst      |  6 +++---
 docs/man/commands/install.rst   |  6 +++---
 docs/man/commands/list.rst      |  6 +++---
 docs/man/commands/lock.rst      |  6 +++---
 docs/man/commands/search.rst    |  6 +++---
 docs/man/commands/show.rst      |  6 +++---
 docs/man/commands/uninstall.rst |  6 +++---
 docs/man/commands/wheel.rst     |  6 +++---
 docs/man/index.rst              | 28 ++++++++++++++--------------
 17 files changed, 59 insertions(+), 59 deletions(-)

diff --git a/docs/html/conf.py b/docs/html/conf.py
index 03df87e..d736e29 100644
--- a/docs/html/conf.py
+++ b/docs/html/conf.py
@@ -122,11 +122,11 @@ def determine_man_pages() -> List[Tuple[str, str, str, str, int]]:
         )
 
     retval = [
-        ("index", "pip", "package manager for Python packages", "pip developers", 1),
+        ("index", "pip3", "package manager for Python packages", "pip developers", 1),
     ]
     for fname in raw_subcommands:
         fname_base = to_document_name(fname, man_dir)
-        outname = "pip-" + fname_base.split("/")[1]
+        outname = "pip3-" + fname_base.split("/")[1]
         description = "description of {} command".format(outname.replace("-", " "))
 
         retval.append((fname_base, outname, description, "pip developers", 1))
diff --git a/docs/man/commands/cache.rst b/docs/man/commands/cache.rst
index 8f8e197..45bac6c 100644
--- a/docs/man/commands/cache.rst
+++ b/docs/man/commands/cache.rst
@@ -1,8 +1,8 @@
 :orphan:
 
-=========
-pip-cache
-=========
+==========
+pip3-cache
+==========
 
 Description
 ***********
diff --git a/docs/man/commands/check.rst b/docs/man/commands/check.rst
index a799742..fe20019 100644
--- a/docs/man/commands/check.rst
+++ b/docs/man/commands/check.rst
@@ -1,8 +1,8 @@
 :orphan:
 
-=========
-pip-check
-=========
+==========
+pip3-check
+==========
 
 Description
 ***********
diff --git a/docs/man/commands/config.rst b/docs/man/commands/config.rst
index bdbeaf6..74b6f6b 100644
--- a/docs/man/commands/config.rst
+++ b/docs/man/commands/config.rst
@@ -1,8 +1,8 @@
 :orphan:
 
-==========
-pip-config
-==========
+===========
+pip3-config
+===========
 
 Description
 ***********
diff --git a/docs/man/commands/debug.rst b/docs/man/commands/debug.rst
index b27ef2b..9f19e79 100644
--- a/docs/man/commands/debug.rst
+++ b/docs/man/commands/debug.rst
@@ -1,7 +1,7 @@
 :orphan:
 
 ==========
-pip-debug
+pip3-debug
 ==========
 
 Description
diff --git a/docs/man/commands/download.rst b/docs/man/commands/download.rst
index 5ffff66..0e2caa9 100644
--- a/docs/man/commands/download.rst
+++ b/docs/man/commands/download.rst
@@ -1,8 +1,8 @@
 :orphan:
 
-============
-pip-download
-============
+=============
+pip3-download
+=============
 
 Description
 ***********
diff --git a/docs/man/commands/freeze.rst b/docs/man/commands/freeze.rst
index f61d87e..7dfdf64 100644
--- a/docs/man/commands/freeze.rst
+++ b/docs/man/commands/freeze.rst
@@ -1,8 +1,8 @@
 :orphan:
 
-==========
-pip-freeze
-==========
+===========
+pip3-freeze
+===========
 
 Description
 ***********
diff --git a/docs/man/commands/hash.rst b/docs/man/commands/hash.rst
index 83d6cfc..ad28237 100644
--- a/docs/man/commands/hash.rst
+++ b/docs/man/commands/hash.rst
@@ -1,8 +1,8 @@
 :orphan:
 
-========
-pip-hash
-========
+=========
+pip3-hash
+=========
 
 Description
 ***********
diff --git a/docs/man/commands/help.rst b/docs/man/commands/help.rst
index 19a8aa8..50b9bf2 100644
--- a/docs/man/commands/help.rst
+++ b/docs/man/commands/help.rst
@@ -1,8 +1,8 @@
 :orphan:
 
-========
-pip-help
-========
+=========
+pip3-help
+=========
 
 Description
 ***********
diff --git a/docs/man/commands/install.rst b/docs/man/commands/install.rst
index c0e9ac6..47a48d8 100644
--- a/docs/man/commands/install.rst
+++ b/docs/man/commands/install.rst
@@ -1,8 +1,8 @@
 :orphan:
 
-===========
-pip-install
-===========
+============
+pip3-install
+============
 
 Description
 ***********
diff --git a/docs/man/commands/list.rst b/docs/man/commands/list.rst
index de6b7d5..9843acb 100644
--- a/docs/man/commands/list.rst
+++ b/docs/man/commands/list.rst
@@ -1,8 +1,8 @@
 :orphan:
 
-========
-pip-list
-========
+=========
+pip3-list
+=========
 
 Description
 ***********
diff --git a/docs/man/commands/lock.rst b/docs/man/commands/lock.rst
index ca1de2c..76f525f 100644
--- a/docs/man/commands/lock.rst
+++ b/docs/man/commands/lock.rst
@@ -1,8 +1,8 @@
 :orphan:
 
-========
-pip-lock
-========
+=========
+pip3-lock
+=========
 
 Description
 ***********
diff --git a/docs/man/commands/search.rst b/docs/man/commands/search.rst
index 00eebc4..b3c5298 100644
--- a/docs/man/commands/search.rst
+++ b/docs/man/commands/search.rst
@@ -1,8 +1,8 @@
 :orphan:
 
-==========
-pip-search
-==========
+===========
+pip3-search
+===========
 
 Description
 ***********
diff --git a/docs/man/commands/show.rst b/docs/man/commands/show.rst
index ce87ef9..57f81c1 100644
--- a/docs/man/commands/show.rst
+++ b/docs/man/commands/show.rst
@@ -1,8 +1,8 @@
 :orphan:
 
-========
-pip-show
-========
+=========
+pip3-show
+=========
 
 Description
 ***********
diff --git a/docs/man/commands/uninstall.rst b/docs/man/commands/uninstall.rst
index 734ce56..c59fca1 100644
--- a/docs/man/commands/uninstall.rst
+++ b/docs/man/commands/uninstall.rst
@@ -1,8 +1,8 @@
 :orphan:
 
-=============
-pip-uninstall
-=============
+==============
+pip3-uninstall
+==============
 
 Description
 ***********
diff --git a/docs/man/commands/wheel.rst b/docs/man/commands/wheel.rst
index 20c3a65..e4eb02b 100644
--- a/docs/man/commands/wheel.rst
+++ b/docs/man/commands/wheel.rst
@@ -1,8 +1,8 @@
 :orphan:
 
-=========
-pip-wheel
-=========
+==========
+pip3-wheel
+==========
 
 Description
 ***********
diff --git a/docs/man/index.rst b/docs/man/index.rst
index f45f0d4..134ff3c 100644
--- a/docs/man/index.rst
+++ b/docs/man/index.rst
@@ -7,12 +7,12 @@ Man Page
 SYNOPSIS
 ********
 
-pip <command> [options]
+pip3 <command> [options]
 
 DESCRIPTION
 ***********
 
-pip is the PyPA recommended package manager for Python packages
+pip3 is the PyPA recommended package manager for Python packages
 
 OPTIONS
 *******
@@ -22,38 +22,38 @@ OPTIONS
 COMMANDS
 ********
 
-pip-install(1)
+pip3-install(1)
     Install packages.
 
-pip-download(1)
+pip3-download(1)
     Download packages.
 
-pip-uninstall(1)
+pip3-uninstall(1)
     Uninstall packages.
 
-pip-freeze(1)
+pip3-freeze(1)
     Output installed packages in requirements format.
 
-pip-lock(1)
+pip3-lock(1)
     Generate a lock file for requirements and their dependencies.
 
-pip-list(1)
+pip3-list(1)
     List installed packages.
 
-pip-show(1)
+pip3-show(1)
     Show information about installed packages.
 
-pip-check(1)
+pip3-check(1)
     Verify installed packages have compatible dependencies.
 
-pip-search(1)
+pip3-search(1)
     Search PyPI for packages.
 
-pip-wheel(1)
+pip3-wheel(1)
     Build wheels from your requirements.
 
-pip-hash(1)
+pip3-hash(1)
     Compute hashes of package archives.
 
-pip-help(1)
+pip3-help(1)
     Show help for pip commands.