Merge lp:~smoser/ssh-import-id/trunk.udpate-debian-packaging into lp:ssh-import-id

Proposed by Scott Moser
Status: Rejected
Rejected by: Scott Moser
Proposed branch: lp:~smoser/ssh-import-id/trunk.udpate-debian-packaging
Merge into: lp:ssh-import-id
Diff against target: 595 lines (+546/-4)
6 files modified
ChangeLog (+541/-0)
debian/changelog (+1/-1)
debian/compat (+1/-1)
debian/control (+1/-1)
debian/rules (+1/-1)
debian/source/format (+1/-0)
To merge this branch: bzr merge lp:~smoser/ssh-import-id/trunk.udpate-debian-packaging
Reviewer Review Type Date Requested Status
ssh-import-id Pending
Review via email: mp+342403@code.launchpad.net

Commit message

update debian packaging

 debian/compat: change version 7 to 9
 debian/control: Standards-Version from 3.9.6 -> 4.1.3
 debian/rules: bit of a cleanup/simplification of pep8 usage.
 debian/source/format: declare source format 3.0

Description of the change

Not sure what to do about that ChangeLog file.
It is in the upstream source tarball. which will make debuild complain if it is not present.
maybe you're doing somethign to handle that.

To post a comment you must log in.
Revision history for this message
Scott Moser (smoser) wrote :

Not sure what to do about that ChangeLog file.
It is in the upstream source tarball. which will make debuild complain if it is not present.
maybe you're doing somethign to handle that.

You probably want to do something there.

Revision history for this message
Scott Moser (smoser) wrote :

this is all into git repo.

Unmerged revisions

228. By Scott Moser

capital unreleased

227. By Scott Moser

no pycache

226. By Scott Moser

add pycache artifact from tarball

225. By Scott Moser

re-add pyc file

224. By Scott Moser

one more

223. By Scott Moser

put it back

222. By Scott Moser

try version at 5.8

221. By Scott Moser

update changelog

220. By Scott Moser

debian/control: bump standards version

219. By Scott Moser

debian/compat: bump version 7 to 9

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== added file 'ChangeLog'
2--- ChangeLog 1970-01-01 00:00:00 +0000
3+++ ChangeLog 2018-03-29 16:03:08 +0000
4@@ -0,0 +1,541 @@
5+ssh-import-id (5.7) released; urgency=medium
6+
7+ [ Scott Moser ]
8+ * ssh_import_id/__init__.py: LP: #1570997
9+ - read_keyfile: use getpass and expanduser if HOME not set.
10+ If the HOME environment variable was not set, then use getpass and
11+ expanduser to try to find the right path.
12+ Recreate was as simple as:
13+ env -u HOME ssh-import-id bob
14+
15+ [ Dustin Kirkland ]
16+ * ssh_import_id/__init__.py:
17+ - fix typo, missing colon
18+
19+ -- Dustin Kirkland <kirkland@ubuntu.com> Fri, 16 Sep 2016 10:13:35 -0500
20+
21+ssh-import-id (5.6-0ubuntu1) yakkety; urgency=medium
22+
23+ [ Mitsuya Shibata ]
24+ * ssh_import_id/__init__.py: LP: #1565275
25+ - fix bug, where only the last key from github was getting added
26+
27+ -- Dustin Kirkland <kirkland@ubuntu.com> Fri, 16 Sep 2016 10:13:31 -0500
28+
29+ssh-import-id (5.5-0ubuntu1) xenial; urgency=medium
30+
31+ * debian/control, debian/rules, setup.py, ssh_import_id/__init__.py:
32+ - patches adapted from Barry Warsaw
33+ - drop pkg_resources as a dependency
34+ - hardcode/update module version in __init__.py
35+ - should fix python 3.5 unit test failures
36+
37+ -- Dustin Kirkland <kirkland@ubuntu.com> Thu, 18 Feb 2016 12:38:56 -0800
38+
39+ssh-import-id (5.4-0ubuntu1) xenial; urgency=medium
40+
41+ * debian/rules:
42+ - disable python 3.5 tests; fix ftbfs as unit tests try to import
43+ ssh_import_id, which is the module we're trying to build here
44+
45+ -- Dustin Kirkland <kirkland@ubuntu.com> Tue, 16 Feb 2016 16:54:14 -0800
46+
47+ssh-import-id (5.3-0ubuntu1) xenial; urgency=medium
48+
49+ * setup.py:
50+ - try fixing ftbfs by removing py_modules
51+
52+ -- Dustin Kirkland <kirkland@ubuntu.com> Tue, 16 Feb 2016 12:16:57 -0800
53+
54+ssh-import-id (5.2-0ubuntu1) xenial; urgency=medium
55+
56+ * debian/control:
57+ - try to fix ftbfs, seems we need python3-requests in the build stage
58+
59+ -- Dustin Kirkland <kirkland@ubuntu.com> Tue, 16 Feb 2016 11:24:48 -0800
60+
61+ssh-import-id (5.1-0ubuntu1) xenial; urgency=medium
62+
63+ * debian/control:
64+ - add shlibs to depends, hopefully fix ftbfs
65+
66+ -- Dustin Kirkland <kirkland@ubuntu.com> Thu, 11 Feb 2016 22:13:39 -0600
67+
68+ssh-import-id (5.0-0ubuntu1) xenial; urgency=medium
69+
70+ * === added directory etc, === added directory etc/ssh, === added
71+ directory ssh_import_id, === added directory usr, === added
72+ directory usr/bin, === added directory usr/share, === added
73+ directory usr/share/man, === added directory usr/share/man/man1,
74+ bin/ssh-import-id-gh => usr/bin/ssh-import-id-gh, bin/ssh-import-id-
75+ lp => usr/bin/ssh-import-id-lp, bin/ssh-import-id =>
76+ ssh_import_id/__init__.py (properties changed: +x to -x),
77+ debian/control, debian/install, debian/manpages, debian/rules, ===
78+ removed directory bin, setup.py, ssh-import-id.1 =>
79+ usr/share/man/man1/ssh-import-id.1, ssh_import_id =>
80+ etc/ssh/ssh_import_id, usr/bin/ssh-import-id:
81+ - build depend on dh-python
82+ - simplify package install, etc/ and usr/
83+ - syntax check both locations
84+ - build an ssh_import_id python package/module
85+ - put all common functionality into an ssh_import_id module
86+ - add a browser useragent string, for protocol version support on the server
87+ - move ssh-import-id-lp and ssh-import-id-gh functionality into a base
88+ python function, and wrap those with shell
89+ - remove a couple of subcommand shell outs by using native python calls
90+ * setup.py, ssh_import_id/__init__.py:
91+ - bump major version to 5.0, major changes here
92+ * debian/rules, setup.py:
93+ - add scripts back to setup.py
94+ * ssh_import_id/__init__.py:
95+ - add extra blank line back, for readability
96+ * debian/control, ssh_import_id/__init__.py:
97+ - use pkg_resources to get __version__, depend on package
98+
99+ -- Dustin Kirkland <kirkland@ubuntu.com> Sat, 30 Jan 2016 09:46:50 -0600
100+
101+ssh-import-id (4.5-0ubuntu1) wily; urgency=medium
102+
103+ [ Andres Riancho and Dustin Kirkland ]
104+ * bin/ssh-import-id-gh: LP: #1397332
105+ - handle two github error conditions (rate limiting and user
106+ not found)
107+
108+ -- Dustin Kirkland <kirkland@ubuntu.com> Mon, 05 Oct 2015 18:32:53 -0500
109+
110+ssh-import-id (4.4-0ubuntu1) wily; urgency=medium
111+
112+ * bin/ssh-import-id-gh, bin/ssh-import-id-lp, setup_helpers.py,
113+ setup.py: LP: #1428840
114+ - make ssh-import-id work with both python2.7 and python3
115+ - revert previous changes with classifiers and testing for
116+ python3
117+
118+ -- Dustin Kirkland <kirkland@ubuntu.com> Mon, 05 Oct 2015 18:15:51 -0500
119+
120+ssh-import-id (4.3-0ubuntu1) wily; urgency=medium
121+
122+ * === added symlink README, setup.py, === target is uREADME.md:
123+ - fix setup.py classifiers
124+ * setup.py:
125+ - require 3.2 final
126+ * setup.py (properties changed: -x to +x):
127+ - make executable
128+
129+ -- Dustin Kirkland <kirkland@ubuntu.com> Mon, 05 Oct 2015 17:52:27 -0500
130+
131+ssh-import-id (4.2-0ubuntu1) wily; urgency=medium
132+
133+ [ Barry Warsaw and Dustin Kirkland ]
134+ * setup_helpers.py, setup.py:
135+ - ensure that pypi/pip installs require python3,
136+ https://github.com/cmars/ssh-import-id/issues/6
137+
138+ -- Dustin Kirkland <kirkland@ubuntu.com> Mon, 05 Oct 2015 17:44:17 -0500
139+
140+ssh-import-id (4.1-0ubuntu1) vivid; urgency=medium
141+
142+ * setup.py:
143+ - clean up some whitespace and indenting issues
144+
145+ -- Dustin Kirkland <kirkland@ubuntu.com> Tue, 06 Jan 2015 14:39:26 -0600
146+
147+ssh-import-id (4.0-0ubuntu1) utopic; urgency=low
148+
149+ [ Andrew Starr-Bochicchio ]
150+ * Port to python3 (LP: #1252474).
151+
152+ [ Dustin Kirkland ]
153+ * setup.py:
154+ - bump to 4.0, to note the significant change to python3
155+
156+ -- Dustin Kirkland <kirkland@ubuntu.com> Mon, 28 Apr 2014 15:12:44 -0700
157+
158+ssh-import-id (3.21-0ubuntu1) trusty; urgency=low
159+
160+ * bin/ssh-import-id: LP: #1285295
161+ - re-authorizing existing keys should exit 0
162+ - update logging
163+
164+ -- Dustin Kirkland <kirkland@ubuntu.com> Thu, 27 Feb 2014 09:39:22 -0600
165+
166+ssh-import-id (3.20-0ubuntu1) trusty; urgency=low
167+
168+ * bin/ssh-import-id: LP: #1274426
169+ - ensure that we exit zero if any of the id's that we try to import
170+ affect 0 keys (ie, if we fail to do something we were asked to do)
171+ - however, we should continue to try to succeed, as much as possible,
172+ even if one of the earlier accounts failed
173+
174+ -- Dustin Kirkland <kirkland@ubuntu.com> Thu, 30 Jan 2014 09:22:45 +0000
175+
176+ssh-import-id (3.19-0ubuntu1) saucy; urgency=low
177+
178+ * debian/control:
179+ - drop the breaks/replaces ssh-import; this package hasn't existed for
180+ eons; we should never realistically encounter it any more
181+ - add vcs-browser
182+
183+ -- Dustin Kirkland <kirkland@ubuntu.com> Fri, 16 Aug 2013 15:33:24 -0500
184+
185+ssh-import-id (3.18-0ubuntu1) saucy; urgency=low
186+
187+ * attic/ssh-import-id, attic/ssh-import-id.py, === removed directory
188+ attic:
189+ - fully deprecate the old versions of these scripts; no longer necessary
190+ * debian/control:
191+ - bump standards
192+ - merge some minor changes from Andrew Starr-Bochicchio
193+ - add Andrew Starr-Bochicchio <asb@debian.org> as an uploader
194+ - adjust formatting and indentation to match Andrew's
195+ * debian/copyright:
196+ - update debian copyright file format
197+ * debian/postinst:
198+ - add inline comments for Debian
199+ * debian/watch:
200+ - add a debian watch file
201+
202+ -- Dustin Kirkland <kirkland@ubuntu.com> Fri, 16 Aug 2013 15:17:16 -0500
203+
204+ssh-import-id (3.17-0ubuntu1) saucy; urgency=low
205+
206+ * Another no-change release for Ubuntu
207+
208+ -- Dustin Kirkland <kirkland@ubuntu.com> Mon, 29 Apr 2013 09:49:51 -0500
209+
210+ssh-import-id (3.16-0ubuntu1) saucy; urgency=low
211+
212+ * Empty release for upload to Ubuntu saucy
213+ - ssh-import-id 3.15 was released after raring closed, but before
214+ saucy opened
215+
216+ -- Dustin Kirkland <kirkland@ubuntu.com> Mon, 29 Apr 2013 09:40:34 -0500
217+
218+ssh-import-id (3.15-0ubuntu1) sexy; urgency=low
219+
220+ * bin/ssh-import-id: LP: #1172434
221+ - create the keyfile destination directory, if necessary
222+
223+ -- Dustin Kirkland <kirkland@ubuntu.com> Wed, 24 Apr 2013 21:41:01 -0500
224+
225+ssh-import-id (3.14-0ubuntu1) raring; urgency=low
226+
227+ * bin/ssh-import-id-gh, bin/ssh-import-id-lp: LP: #1155252
228+ - python requests module must be >= 1.1.0, for ssl certificate
229+ verification and proper quoting; fall back to wget if module
230+ is available, but older
231+
232+ -- Dustin Kirkland <kirkland@ubuntu.com> Fri, 15 Mar 2013 10:12:40 -0500
233+
234+ssh-import-id (3.13-0ubuntu1) raring; urgency=low
235+
236+ * debian/rules:
237+ - fix FTBFS, no need to syntax check setup.py
238+
239+ -- Dustin Kirkland <kirkland@ubuntu.com> Fri, 15 Feb 2013 16:58:04 -0600
240+
241+ssh-import-id (3.12-0ubuntu1) raring; urgency=low
242+
243+ * debian/control:
244+ - note github.com in the package description
245+ * bin/ssh-import-id, ssh-import-id.1:
246+ - rename the --revoke option to --remove
247+ - we're not really "revoking" keys, but rather just removing them
248+ from the authorized_keys file
249+
250+ -- Dustin Kirkland <kirkland@ubuntu.com> Fri, 15 Feb 2013 15:03:53 -0600
251+
252+ssh-import-id (3.11-0ubuntu1) raring; urgency=low
253+
254+ * bin/ssh-import-id:
255+ - cleanup tempfiles left around in case we die() early
256+
257+ -- Dustin Kirkland <kirkland@ubuntu.com> Fri, 08 Feb 2013 12:35:13 -0600
258+
259+ssh-import-id (3.10-0ubuntu1) raring; urgency=low
260+
261+ * bin/ssh-import-id:
262+ - show key type in info messages
263+
264+ -- Dustin Kirkland <kirkland@ubuntu.com> Thu, 07 Feb 2013 17:45:18 -0600
265+
266+ssh-import-id (3.9-0ubuntu1) raring; urgency=low
267+
268+ * bin/ssh-import-id-lp:
269+ - ensure that URL is not None before using it
270+ - fixes exception when URL is not defined in config file and not in
271+ the environment
272+
273+ -- Dustin Kirkland <kirkland@ubuntu.com> Thu, 07 Feb 2013 11:33:29 -0600
274+
275+ssh-import-id (3.8-0ubuntu1) raring; urgency=low
276+
277+ * No change release; our Python and Debian/Ubuntu version numbers got
278+ out of sync due to a bug in my release script
279+
280+ -- Dustin Kirkland <kirkland@ubuntu.com> Thu, 07 Feb 2013 11:20:40 -0600
281+
282+ssh-import-id (3.7-0ubuntu1) raring; urgency=low
283+
284+ * bin/ssh-import-id-lp:
285+ - another fix for Mac OS X
286+
287+ -- Dustin Kirkland <kirkland@ubuntu.com> Thu, 07 Feb 2013 10:16:59 -0600
288+
289+ssh-import-id (3.6-0ubuntu1) raring; urgency=low
290+
291+ * setup.py:
292+ - fix pip install on Mac
293+
294+ -- Dustin Kirkland <kirkland@ubuntu.com> Thu, 07 Feb 2013 09:52:36 -0600
295+
296+ssh-import-id (3.5-0ubuntu1) raring; urgency=low
297+
298+ * bin/ssh-import-id, ssh-import-id.1:
299+ - support key revocation through a -r|--revoke option
300+ - only revokes keys that we label as adding (starting with this release)
301+ * debian/control, debian/rules, setup.py:
302+ - fix lintian warnings
303+ - clean up pypi pkginfo
304+
305+ -- Dustin Kirkland <kirkland@ubuntu.com> Wed, 06 Feb 2013 16:39:54 -0600
306+
307+ssh-import-id (3.4-0ubuntu1) raring; urgency=low
308+
309+ * setup.py:
310+ - bump version
311+ * debian/control, debian/rules:
312+ - run pep8 at build for python syntax checking
313+ - still trying to fix 10.04 build
314+ * bin/ssh-import-id-lp:
315+ - fix pep8 warning
316+
317+ -- Dustin Kirkland <kirkland@ubuntu.com> Tue, 05 Feb 2013 17:37:53 -0600
318+
319+ssh-import-id (3.3-0ubuntu1) raring; urgency=low
320+
321+ * debian/control, debian/rules:
322+ - get this building on 10.04/lucid, borrowed build logic from swift
323+
324+ -- Dustin Kirkland <kirkland@ubuntu.com> Tue, 05 Feb 2013 12:42:21 -0600
325+
326+ssh-import-id (3.2-0ubuntu1) raring; urgency=low
327+
328+ * debian/control:
329+ - need setuptools for compilation
330+
331+ -- Dustin Kirkland <kirkland@ubuntu.com> Tue, 05 Feb 2013 11:53:45 -0600
332+
333+ssh-import-id (3.1-0ubuntu1) raring; urgency=low
334+
335+ * debian/control:
336+ - ensure we have python packaging build dependencies
337+ * debian/control, debian/rules:
338+ - clean up python build dependencies, fix problem where
339+ dh_pysupport pulls in python-support as a dependency
340+
341+ -- Dustin Kirkland <kirkland@ubuntu.com> Tue, 05 Feb 2013 10:05:21 -0600
342+
343+ssh-import-id (3.0-0ubuntu1) raring; urgency=low
344+
345+ [ Dustin Kirkland ]
346+ * setup.py:
347+ - bump major version to 3.x since this is a complete rewrite in Python
348+ - add support for gh:username (github) as well as lp:username (launchpad)
349+ * bin/ssh-auth-id => bin/ssh-import-id, bin/ssh-auth-id-gh => bin/ssh-
350+ import-id-gh, bin/ssh-auth-id-lp => bin/ssh-import-id-lp, README.md,
351+ setup.py:
352+ - rename Casey's ssh-auth-id command to ssh-import-id with this merge
353+ * bin/ssh-import-id, bin/ssh-import-id-gh, bin/ssh-import-id-lp,
354+ setup.py:
355+ - get these pep8 clean with
356+ pep8 --verbose --repeat --ignore W191,E501
357+ * bin/ssh-import-id, bin/ssh-import-id-gh, bin/ssh-import-id-lp:
358+ - drop the "starts with ssh-" check
359+ - bad assumption, since my ecdsa key starts with "ecdsa-sha2-nistp256"
360+ - if it's a bad key, then ssh-keygen -l -f will shake that out
361+ - support wget as a fallback, when python requests module is not available
362+ - loop over each id in argv
363+ - import subprocess
364+ * === added directory attic, debian/control, ssh-import-id =>
365+ attic/ssh-import-id, ssh-import-id.py => attic/ssh-import-id.py:
366+ - relocate the old shell utility and the monolithic python utility to
367+ the attic for now; these should be removed entirely from the source
368+ tree in due time
369+ * debian/install:
370+ - remove binaries from the install, let setup.py handle these for us
371+ * bin/ssh-import-id:
372+ - support -o|--output - for stdout
373+ - return all parts of the fingerprint on validation (size, hash, name, type)
374+ - index into the fingerprint for the hash
375+ - print all parts of the fingerprint in info messages
376+ + this is essential to the security of ssh-import-id, for key fingerprint
377+ collision avoidance
378+ - use a helper function to print to stdout just as easily a filename
379+ - identify keys by their tuple, [length, hash, type]
380+ * debian/links, README.md, ssh-import-id.1:
381+ - update documentation
382+ * bin/ssh-import-id-lp, debian/postinst, ssh_import_id:
383+ - support URL environment variable and system-wide URL definition in conf
384+ file
385+ - port conf file from shell to JSON syntax
386+ - add a postinst script to smooth migration from ssh-import-id < 3.0
387+ - ignore errors in postinst script (nothing more we can do, really)
388+ * bin/ssh-import-id-gh, bin/ssh-import-id-lp, debian/postinst,
389+ ssh_import_id:
390+ - use wget --no-verbose rather than --quiet, so that error messages from
391+ wget (such as SSL cert errors) get propagated
392+ - use json syntax for configuration file
393+ * bin/ssh-import-id:
394+ - stdout file descriptor cannot be opened multiple times cleanly
395+
396+ [ Casey Marshall and Dustin Kirkland ]
397+ * === added directory bin, bin/ssh-auth-id, bin/ssh-auth-id-gh,
398+ bin/ssh-auth-id-lp, LICENSE, README.md, setup.py:
399+ - import Casey's subcommands implementation from his ssh-auth-id fork
400+ on github
401+
402+ -- Dustin Kirkland <kirkland@ubuntu.com> Tue, 05 Feb 2013 01:38:31 -0600
403+
404+ssh-import-id (2.13-0ubuntu1) raring; urgency=low
405+
406+ * ssh-import-id:
407+ - completely rewrite the validate_keys function
408+ - fix our broken, crappy regular expressions, and instead, rely on
409+ SSH's ssh-keygen -l to validate keys by calculating fingerprints
410+ - display fingerprints on stderr, such that users can verify those
411+ or discard it
412+ * debian/control:
413+ - depend on openssh-client, which provides the ssh-keygen command
414+ - bump standards
415+
416+ -- Dustin Kirkland <kirkland@ubuntu.com> Tue, 23 Oct 2012 17:31:55 -0500
417+
418+ssh-import-id (2.12-0ubuntu1) quantal; urgency=low
419+
420+ [ Jani Uusitalo ]
421+ * ssh_import_id: LP: #997143
422+ - fix typo in comment
423+
424+ -- Dustin Kirkland <kirkland@ubuntu.com> Sat, 12 May 2012 19:58:12 -0700
425+
426+ssh-import-id (2.11-0ubuntu1) quantal; urgency=low
427+
428+ [ Dražen Lučanin ]
429+ * ssh-import-id: LP: #990501
430+ - ensure there are newlines at the end of keys
431+ - add 2 blank lines between each key for readability
432+
433+ -- Dustin Kirkland <kirkland@ubuntu.com> Sun, 06 May 2012 10:46:33 -0500
434+
435+ssh-import-id (2.10-0ubuntu1) precise; urgency=low
436+
437+ * === added directory img, img/ssh-import-id_14.png, img/ssh-import-
438+ id_192.png, img/ssh-import-id_64.png, img/ssh-import-id.png:
439+ - add logos to revision control
440+ * ssh-import-id, ssh-import-id.1: LP: #944367
441+ - add -e parameter, which says "don't clean my environment"
442+ - helps if someone needs to set $https_proxy
443+
444+ -- Dustin Kirkland <kirkland@ubuntu.com> Sat, 03 Mar 2012 08:32:25 -0600
445+
446+ssh-import-id (2.9-0ubuntu1) precise; urgency=low
447+
448+ * debian/control:
449+ - we don't technically break openssh-server; this could cause
450+ openssh-server to be removed; that's bad
451+
452+ -- Dustin Kirkland <kirkland@ubuntu.com> Tue, 31 Jan 2012 16:01:56 -0600
453+
454+ssh-import-id (2.8-0ubuntu1) precise; urgency=low
455+
456+ [ Soren Hansen ]
457+ * ssh-import-id: LP: #918131
458+ - Sequences of a's were getting filtered from public keys
459+
460+ -- Dustin Kirkland <kirkland@ubuntu.com> Wed, 18 Jan 2012 09:48:23 -0600
461+
462+ssh-import-id (2.7-0ubuntu1) precise; urgency=low
463+
464+ * ssh-import-id: LP: #885205, LP: #702932
465+ - fix bug where lines are merged if they don't include a "= "
466+ - instead, check for lines that begin with "^ssh-"
467+ * ssh-import-id:
468+ - line up sed whitespace
469+
470+ -- Dustin Kirkland <kirkland@ubuntu.com> Mon, 16 Jan 2012 17:42:51 -0600
471+
472+ssh-import-id (2.6-0ubuntu1) precise; urgency=low
473+
474+ * Revert the last commit, removing the ssh-import-lp-id link, as this
475+ breaks tab completion. Instead, let's fix the ssh-import-lp-id
476+ caller and SRU it; LP: #870112
477+
478+ -- Dustin Kirkland <kirkland@ubuntu.com> Wed, 14 Dec 2011 09:07:00 -0600
479+
480+ssh-import-id (2.5-0ubuntu2) oneiric; urgency=low
481+
482+ * provide a symlink so ssh-import-id can be invoked as
483+ ssh-import-lp-id (LP: #870112)
484+
485+ -- Scott Moser <smoser@ubuntu.com> Fri, 07 Oct 2011 13:08:44 -0400
486+
487+ssh-import-id (2.5-0ubuntu1) natty; urgency=low
488+
489+ * ssh-import-id: enable users to override URL with a per-use
490+ environment variable
491+
492+ -- Dustin Kirkland <kirkland@ubuntu.com> Wed, 20 Apr 2011 15:38:50 -0400
493+
494+ssh-import-id (2.4-0ubuntu1) natty; urgency=low
495+
496+ [ Scott Moser ]
497+ * ssh-import-id:
498+ - fix import of users whose keys have blank lines and dos EOL
499+ - do not require /etc/ssh/ssh_import_id to be present
500+
501+ -- Dustin Kirkland <kirkland@ubuntu.com> Fri, 15 Apr 2011 09:48:30 -0500
502+
503+ssh-import-id (2.3-0ubuntu1) natty; urgency=low
504+
505+ * ssh-import-id: ensure that ~/.ssh is created, fix regression
506+ introduced by smoser ;-)
507+
508+ -- Dustin Kirkland <kirkland@ubuntu.com> Tue, 11 Jan 2011 11:12:40 -0600
509+
510+ssh-import-id (2.2-0ubuntu1) natty; urgency=low
511+
512+ [ Scott Moser ]
513+ * use getopt, send 'info' to stderr, add '--output', LP: #688574
514+ - support '--help'
515+ - add '--output' or '-o' option to write downloaded and
516+ verified data to a named file (supporting '-' for stdout) rather
517+ that writing to users .ssh/authorized_keys
518+ - send 'info' output to standard error rather than standard out
519+ This is required to deal with '--output -'
520+ * remove carriage returns from key strings (LP: #651698)
521+
522+ [ Dustin Kirkland ]
523+ * ssh-import-id.1: updated to reflect smoser's changes
524+ * debian/install, ssh_import_id, ssh-import-id: allow for URL to be
525+ admin-configurable, to point to other SSH public key stores besides
526+ Launchpad.net
527+ * ssh-import-id.1: document /etc/ssh/ssh_import_id
528+
529+ -- Dustin Kirkland <kirkland@ubuntu.com> Mon, 10 Jan 2011 12:56:32 -0600
530+
531+ssh-import-id (2.1-0ubuntu1) natty; urgency=low
532+
533+ * debian/control: change the Conflicts to a Breaks, as pointed out
534+ by cjwatson, per Debian policy section 7.6
535+
536+ -- Dustin Kirkland <kirkland@ubuntu.com> Wed, 05 Jan 2011 08:59:24 -0600
537+
538+ssh-import-id (2.0-0ubuntu1) natty; urgency=low
539+
540+ * Split the ssh-import-id utility out of the openssh package;
541+ cjwatson doesn't want to see bugs about the tool, nor be bothered
542+ with the maintenance thereof, hence a new package
543+ * Relicensing the code and documentation from BSD -> GPLv3
544+
545+ -- Dustin Kirkland <kirkland@ubuntu.com> Tue, 04 Jan 2011 16:16:30 -0600
546
547=== modified file 'debian/changelog'
548--- debian/changelog 2017-07-11 20:51:44 +0000
549+++ debian/changelog 2018-03-29 16:03:08 +0000
550@@ -1,4 +1,4 @@
551-ssh-import-id (5.8) unreleased; urgency=medium
552+ssh-import-id (5.8-0ubuntu1) UNRELEASED; urgency=medium
553
554 * UNRELEASED
555
556
557=== modified file 'debian/compat'
558--- debian/compat 2010-12-15 18:19:12 +0000
559+++ debian/compat 2018-03-29 16:03:08 +0000
560@@ -1,1 +1,1 @@
561-7
562+9
563
564=== modified file 'debian/control'
565--- debian/control 2016-02-18 19:03:56 +0000
566+++ debian/control 2018-03-29 16:03:08 +0000
567@@ -9,7 +9,7 @@
568 python3-pep8,
569 python3-requests (>= 1.1.0),
570 python3-setuptools
571-Standards-Version: 3.9.6
572+Standards-Version: 4.1.3
573 X-Python3-Version: >= 3.2
574 Homepage: http://launchpad.net/ssh-import-id
575 Vcs-Browser: http://bazaar.launchpad.net/~ssh-import-id/ssh-import-id/trunk/files
576
577=== modified file 'debian/rules'
578--- debian/rules 2016-02-18 19:03:56 +0000
579+++ debian/rules 2018-03-29 16:03:08 +0000
580@@ -2,7 +2,7 @@
581
582 override_dh_auto_build:
583 # Check syntax
584- python3 /usr/lib/python3/dist-packages/pep8.py --verbose --repeat --ignore W191,E501,E121 ssh_import_id/* usr/bin/ssh-import-id
585+ python3 -m pep8 --verbose --ignore W191,E501,E121 ssh_import_id/ usr/bin/
586 dh_auto_build
587
588 %:
589
590=== added directory 'debian/source'
591=== added file 'debian/source/format'
592--- debian/source/format 1970-01-01 00:00:00 +0000
593+++ debian/source/format 2018-03-29 16:03:08 +0000
594@@ -0,0 +1,1 @@
595+3.0 (quilt)

Subscribers

People subscribed via source and target branches