--- its-playback-time-0.2017-08-30.3c40fd3.orig/LICENCE +++ its-playback-time-0.2017-08-30.3c40fd3/LICENCE @@ -1,16 +1,22 @@ This directory contains IPBT, an application derived from the PuTTY source base by Simon Tatham. -| PuTTY is copyright 1997-2017 Simon Tatham. +| PuTTY is copyright 1997-2018 Simon Tatham. | | Portions copyright Robert de Bath, Joris van Rantwijk, Delian | Delchev, Andreas Schultz, Jeroen Massar, Wez Furlong, Nicolas Barry, | Justin Bradford, Ben Harris, Malcolm Smith, Ahmad Khalifa, Markus -| Kuhn, and CORE SDI S.A. +| Kuhn, Chris Emerson, Chris Staite, Christopher Odenbach, Colin +| Watson, David Taylor, Ilya Shipitsin, Ion Gaztañaga, Jacob Nevins, +| Jason Andryuk, Jeff Westfahl, Kylie McClain, Leonid Lisovskiy, +| Ondřej Lysoněk, Owen Dunn, Tim Kosse, Zero King, klemens (ka7), +| and CORE SDI S.A. Those portions of IPBT which are not part of PuTTY are copyright -2005-2007 Simon Tatham. The same licence terms apply to them as to -PuTTY: +2005-2007,2009,2011-2012,2014,2016-2017 Simon Tatham with +portions copyright David Damerell. + +The same licence terms apply to them as to PuTTY: | Permission is hereby granted, free of charge, to any person | obtaining a copy of this software and associated documentation files --- its-playback-time-0.2017-08-30.3c40fd3.orig/debian/.gitignore +++ its-playback-time-0.2017-08-30.3c40fd3/debian/.gitignore @@ -0,0 +1,7 @@ +.debhelper +its-playback-time +its-playback-time.substvars +files +autoreconf.after +autoreconf.before +debhelper-build-stamp --- its-playback-time-0.2017-08-30.3c40fd3.orig/debian/changelog +++ its-playback-time-0.2017-08-30.3c40fd3/debian/changelog @@ -1,6 +1,6 @@ -ipbt (0.2017-08-30.3c40fd3-1) unstable; urgency=medium +its-playback-time (0.2017-08-30.3c40fd3-1) unstable; urgency=medium - * Initial upload. + * Initial upload. Closes:#366350. - -- + -- Ian Jackson Tue, 21 Aug 2018 01:55:21 +0100 --- its-playback-time-0.2017-08-30.3c40fd3.orig/debian/control +++ its-playback-time-0.2017-08-30.3c40fd3/debian/control @@ -1,15 +1,18 @@ -Source: ipbt +Source: its-playback-time Section: misc Priority: optional Maintainer: Ian Jackson Standards-Version: 4.2.0.1 -Build-Depends: debhelper (>= 9) +Homepage: https://www.chiark.greenend.org.uk/~sgtatham/ipbt/ +Build-Depends: debhelper (>= 10), ncurses-dev, halibut, + autoconf, autoconf-archive, automake, pkg-config -Package: ipbt +Package: its-playback-time Depends: ${misc:Depends}, ${shlibs:Depends} Suggests: ttyrec Architecture: any Description: ttyrec time-travelling playback tool - ttyrec player which lets you go backwards and forwards through - the recording. (a ttyrec is a timestamped recording of a terminal - session.) + ipbt (It's Playback Time) is a ttyrec player which lets you go + backwards and forwards through the recording. + . + (A ttyrec is a timestamped recording of a terminal session.) --- its-playback-time-0.2017-08-30.3c40fd3.orig/debian/copyright +++ its-playback-time-0.2017-08-30.3c40fd3/debian/copyright @@ -0,0 +1,43 @@ +This is Debian's version of Simon Tatham's ipbt program for +playback of ttyrec files. + +The packaging is Copyright 2018 Ian Jackson, and is licenced under the +same terms as PuTTY. +This directory contains IPBT, an application derived from the PuTTY +source base by Simon Tatham. + +| PuTTY is copyright 1997-2018 Simon Tatham. +| +| Portions copyright Robert de Bath, Joris van Rantwijk, Delian +| Delchev, Andreas Schultz, Jeroen Massar, Wez Furlong, Nicolas Barry, +| Justin Bradford, Ben Harris, Malcolm Smith, Ahmad Khalifa, Markus +| Kuhn, Chris Emerson, Chris Staite, Christopher Odenbach, Colin +| Watson, David Taylor, Ilya Shipitsin, Ion Gaztañaga, Jacob Nevins, +| Jason Andryuk, Jeff Westfahl, Kylie McClain, Leonid Lisovskiy, +| Ondřej Lysoněk, Owen Dunn, Tim Kosse, Zero King, klemens (ka7), +| and CORE SDI S.A. + +Those portions of IPBT which are not part of PuTTY are copyright +2005-2007,2009,2011-2012,2014,2016-2017 Simon Tatham with +portions copyright David Damerell. + +The same licence terms apply to them as to PuTTY: + +| Permission is hereby granted, free of charge, to any person +| obtaining a copy of this software and associated documentation files +| (the "Software"), to deal in the Software without restriction, +| including without limitation the rights to use, copy, modify, merge, +| publish, distribute, sublicense, and/or sell copies of the Software, +| and to permit persons to whom the Software is furnished to do so, +| subject to the following conditions: +| +| The above copyright notice and this permission notice shall be +| included in all copies or substantial portions of the Software. +| +| THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +| EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +| MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +| NONINFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE +| FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF +| CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +| WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --- its-playback-time-0.2017-08-30.3c40fd3.orig/debian/copyright.in +++ its-playback-time-0.2017-08-30.3c40fd3/debian/copyright.in @@ -0,0 +1,5 @@ +This is Debian's version of Simon Tatham's ipbt program for +playback of ttyrec files. + +The packaging is Copyright 2018 Ian Jackson, and is licenced under the +same terms as PuTTY. --- its-playback-time-0.2017-08-30.3c40fd3.orig/debian/rules +++ its-playback-time-0.2017-08-30.3c40fd3/debian/rules @@ -2,3 +2,6 @@ %: dh $@ + +debian/copyright: debian/copyright.in LICENCE + cat $^ >$@.tmp && mv -f $@.tmp $@ --- its-playback-time-0.2017-08-30.3c40fd3.orig/ipbt.c +++ its-playback-time-0.2017-08-30.3c40fd3/ipbt.c @@ -70,16 +70,11 @@ "copyright holders are not all actually relevant, since some of them\n" "contributed code to PuTTY which is not included in IPBT.\n" "\n" - "| PuTTY is copyright 1997-2007 Simon Tatham.\n" - "|\n" - "| Portions copyright Robert de Bath, Joris van Rantwijk, Delian\n" - "| Delchev, Andreas Schultz, Jeroen Massar, Wez Furlong, Nicolas Barry,\n" - "| Justin Bradford, Ben Harris, Malcolm Smith, Ahmad Khalifa, Markus\n" - "| Kuhn, and CORE SDI S.A.\n" + "| PuTTY is copyright Simon Tatham and many other contributors.\n" "\n" "Those portions of IPBT which are not part of PuTTY are copyright\n" - "2005-2007 Simon Tatham. The same licence terms apply to them as to\n" - "PuTTY:\n" + "Simon Tatham and othe rcontributors. The same licence terms apply\n" + "to them as to PuTTY:\n" "\n" "| Permission is hereby granted, free of charge, to any person\n" "| obtaining a copy of this software and associated documentation files\n"