dtas 0.14.2 → 0.15.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (125) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -1
  3. data/Documentation/.gitignore +1 -1
  4. data/Documentation/GNUmakefile +1 -1
  5. data/Documentation/dtas-archive.pod +2 -2
  6. data/Documentation/dtas-console.pod +2 -2
  7. data/Documentation/dtas-ctl.pod +2 -2
  8. data/Documentation/dtas-cueedit.pod +2 -2
  9. data/Documentation/dtas-enq.pod +2 -2
  10. data/Documentation/dtas-env.pod +2 -2
  11. data/Documentation/dtas-msinkctl.pod +2 -2
  12. data/Documentation/dtas-player.pod +2 -2
  13. data/Documentation/dtas-player_effects.pod +2 -2
  14. data/Documentation/dtas-player_protocol.pod +19 -4
  15. data/Documentation/dtas-player_sink_examples.pod +2 -2
  16. data/Documentation/dtas-sinkedit.pod +2 -2
  17. data/Documentation/dtas-sourceedit.pod +2 -2
  18. data/Documentation/dtas-splitfx.pod +1 -1
  19. data/Documentation/dtas-tl.pod +2 -2
  20. data/Documentation/dtas-xdelay.pod +2 -2
  21. data/Documentation/update-footer.rb +3 -3
  22. data/GIT-VERSION-GEN +2 -2
  23. data/GNUmakefile +1 -1
  24. data/HACKING +2 -2
  25. data/INSTALL +10 -10
  26. data/README +6 -5
  27. data/Rakefile +5 -5
  28. data/TODO +1 -1
  29. data/bin/dtas-archive +2 -2
  30. data/bin/dtas-console +1 -1
  31. data/bin/dtas-ctl +1 -1
  32. data/bin/dtas-cueedit +1 -1
  33. data/bin/dtas-enq +1 -1
  34. data/bin/dtas-mlib +1 -1
  35. data/bin/dtas-msinkctl +1 -1
  36. data/bin/dtas-partstats +1 -1
  37. data/bin/dtas-player +1 -1
  38. data/bin/dtas-readahead +19 -8
  39. data/bin/dtas-sinkedit +1 -1
  40. data/bin/dtas-sourceedit +1 -1
  41. data/bin/dtas-splitfx +1 -1
  42. data/bin/dtas-tl +1 -1
  43. data/bin/dtas-xdelay +1 -1
  44. data/dtas-linux.gemspec +2 -2
  45. data/dtas-mpris.gemspec +2 -2
  46. data/dtas.gemspec +2 -2
  47. data/lib/dtas.rb +15 -2
  48. data/lib/dtas/buffer.rb +1 -1
  49. data/lib/dtas/buffer/read_write.rb +1 -1
  50. data/lib/dtas/buffer/splice.rb +1 -2
  51. data/lib/dtas/command.rb +1 -1
  52. data/lib/dtas/compat_onenine.rb +1 -1
  53. data/lib/dtas/cue_index.rb +1 -1
  54. data/lib/dtas/disclaimer.rb +1 -1
  55. data/lib/dtas/edit_client.rb +1 -1
  56. data/lib/dtas/fadefx.rb +2 -2
  57. data/lib/dtas/format.rb +9 -5
  58. data/lib/dtas/mcache.rb +31 -0
  59. data/lib/dtas/mlib.rb +11 -7
  60. data/lib/dtas/mlib/migrations/0001_initial.rb +1 -1
  61. data/lib/dtas/nonblock.rb +1 -1
  62. data/lib/dtas/parse_freq.rb +1 -1
  63. data/lib/dtas/parse_time.rb +1 -1
  64. data/lib/dtas/partstats.rb +2 -3
  65. data/lib/dtas/pipe.rb +1 -1
  66. data/lib/dtas/player.rb +2 -1
  67. data/lib/dtas/player/client_handler.rb +74 -16
  68. data/lib/dtas/process.rb +1 -1
  69. data/lib/dtas/replaygain.rb +1 -1
  70. data/lib/dtas/rg_state.rb +4 -9
  71. data/lib/dtas/serialize.rb +1 -1
  72. data/lib/dtas/sigevent.rb +1 -1
  73. data/lib/dtas/sigevent/efd.rb +1 -1
  74. data/lib/dtas/sigevent/pipe.rb +1 -1
  75. data/lib/dtas/sink.rb +1 -1
  76. data/lib/dtas/source.rb +2 -1
  77. data/lib/dtas/source/av.rb +1 -1
  78. data/lib/dtas/source/av_ff_common.rb +7 -3
  79. data/lib/dtas/source/cmd.rb +1 -1
  80. data/lib/dtas/source/common.rb +1 -1
  81. data/lib/dtas/source/ff.rb +1 -1
  82. data/lib/dtas/source/file.rb +1 -1
  83. data/lib/dtas/source/mp3gain.rb +1 -1
  84. data/lib/dtas/source/sox.rb +59 -32
  85. data/lib/dtas/spawn_fix.rb +1 -1
  86. data/lib/dtas/splitfx.rb +11 -6
  87. data/lib/dtas/state_file.rb +1 -1
  88. data/lib/dtas/tfx.rb +1 -1
  89. data/lib/dtas/track.rb +1 -1
  90. data/lib/dtas/tracklist.rb +1 -1
  91. data/lib/dtas/unix_accepted.rb +1 -1
  92. data/lib/dtas/unix_client.rb +1 -1
  93. data/lib/dtas/unix_server.rb +1 -1
  94. data/lib/dtas/util.rb +1 -1
  95. data/lib/dtas/writable_iter.rb +1 -1
  96. data/lib/dtas/xs.rb +1 -1
  97. data/perl/dtas-graph +1 -1
  98. data/test/covshow.rb +1 -1
  99. data/test/helper.rb +1 -1
  100. data/test/player_integration.rb +1 -1
  101. data/test/test_buffer.rb +11 -7
  102. data/test/test_env.rb +1 -1
  103. data/test/test_fadefx.rb +1 -1
  104. data/test/test_format.rb +1 -1
  105. data/test/test_format_change.rb +1 -1
  106. data/test/test_mcache.rb +19 -0
  107. data/test/test_mlib.rb +1 -1
  108. data/test/test_parse_freq.rb +1 -1
  109. data/test/test_player.rb +1 -1
  110. data/test/test_player_client_handler.rb +1 -1
  111. data/test/test_player_integration.rb +1 -1
  112. data/test/test_process.rb +1 -1
  113. data/test/test_rg_integration.rb +2 -2
  114. data/test/test_rg_state.rb +9 -2
  115. data/test/test_sink.rb +1 -1
  116. data/test/test_sink_pipe_size.rb +1 -1
  117. data/test/test_sink_tee_integration.rb +1 -1
  118. data/test/test_source_av.rb +1 -1
  119. data/test/test_source_sox.rb +2 -1
  120. data/test/test_splitfx.rb +1 -1
  121. data/test/test_tfx.rb +1 -1
  122. data/test/test_tracklist.rb +1 -1
  123. data/test/test_unixserver.rb +1 -1
  124. data/test/test_util.rb +1 -1
  125. metadata +6 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0bc3ffcf67bb7f7e020a386299244ce66f10ad4d
4
- data.tar.gz: 62e5cb485569bee19c6d68ca70fadf335585fc4d
3
+ metadata.gz: b38ad68d0ac0b303e95ef7a6de996581fd4a5c73
4
+ data.tar.gz: 84066e2d52ede911d045b0d9f62a6d0cb741a0a3
5
5
  SHA512:
6
- metadata.gz: 69ffea1179687f8bb6f73bdde76a6b9e1b7d47e39744f17398f392abf1d48b501ec4874b9b282e7143b0f02aa166e0910d3b4d3ca3935f0194d601d346f0fd5f
7
- data.tar.gz: bd7f43ad66ba88d8c5d1ca2e0225a38d9a2c7125961bd19e1f74ccbbe44a5be9bd19f4540a8f386ef4f4f75da8c70a5c126fa29dd642130185ec37c53f76951d
6
+ metadata.gz: e02cd6429e8df6fca2d6d0745e5fa1094910c6688ecbbc404d309f044a6abba32dfc0f0b03f60f5d8a487f94fc64fe6cedc0365c5a5cf539fb6d1db80b05bcad
7
+ data.tar.gz: 8849acee6e2ec2ec588f686d7d56e741db25e480a8d9661d0feee4f95fe6f8dbd030ae07806654b7aa6020abd46243bfab8a7f33e25e977467aafe1b7a824352
data/.gitignore CHANGED
@@ -1,5 +1,5 @@
1
1
  # Copyright (C) 2013-2016 all contributors <dtas-all@nongnu.org>
2
- # License: GPL-3.0+ (https://www.gnu.org/licenses/gpl-3.0.txt)
2
+ # License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
3
3
  /GIT-VERSION-FILE
4
4
  /Manifest.txt
5
5
  /NEWS
@@ -1,5 +1,5 @@
1
1
  # Copyright (C) 2013-2016 all contributors <dtas-all@nongnu.org>
2
- # License: GPL-3.0+ (https://www.gnu.org/licenses/gpl-3.0.txt)
2
+ # License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
3
3
  *.1
4
4
  *.5
5
5
  *.7
@@ -1,5 +1,5 @@
1
1
  # Copyright (C) 2013-2016 all contributors <dtas-all@nongnu.org>
2
- # License: GPL-3.0+ (https://www.gnu.org/licenses/gpl-3.0.txt)
2
+ # License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
3
3
  all::
4
4
 
5
5
  INSTALL = install
@@ -58,13 +58,13 @@ Number of times to repeat the L<sndfile-cmp(1)> check. Default: 1
58
58
 
59
59
  Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
60
60
 
61
- License: GPL-3.0+ L<http://www.gnu.org/licenses/gpl-3.0.txt>
61
+ License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
62
62
 
63
63
  =head1 CONTACT
64
64
 
65
65
  All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
66
66
 
67
- Mailing list archives available at L<http://80x24.org/dtas-all/>
67
+ Mailing list archives available at L<https://80x24.org/dtas-all/>
68
68
  and L<ftp://lists.gnu.org/dtas-all/>
69
69
 
70
70
  No subscription is necessary to post to the mailing list.
@@ -77,7 +77,7 @@ a problem.
77
77
 
78
78
  All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
79
79
 
80
- Mailing list archives available at L<http://80x24.org/dtas-all/>
80
+ Mailing list archives available at L<https://80x24.org/dtas-all/>
81
81
  and L<ftp://lists.gnu.org/dtas-all/>
82
82
 
83
83
  No subscription is necessary to post to the mailing list.
@@ -86,7 +86,7 @@ No subscription is necessary to post to the mailing list.
86
86
 
87
87
  Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
88
88
 
89
- License: GPL-3.0+ L<http://www.gnu.org/licenses/gpl-3.0.txt>
89
+ License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
90
90
 
91
91
  =head1 SEE ALSO
92
92
 
@@ -61,7 +61,7 @@ This defaults to ~/.dtas/player.sock
61
61
 
62
62
  All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
63
63
 
64
- Mailing list archives available at L<http://80x24.org/dtas-all/>
64
+ Mailing list archives available at L<https://80x24.org/dtas-all/>
65
65
  and L<ftp://lists.gnu.org/dtas-all/>
66
66
 
67
67
  No subscription is necessary to post to the mailing list.
@@ -70,7 +70,7 @@ No subscription is necessary to post to the mailing list.
70
70
 
71
71
  Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
72
72
 
73
- License: GPL-3.0+ L<http://www.gnu.org/licenses/gpl-3.0.txt>
73
+ License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
74
74
 
75
75
  =head1 SEE ALSO
76
76
 
@@ -22,7 +22,7 @@ VISUAL / EDITOR - your favorite *nix text editor, defaults to 'vi' if unset.
22
22
 
23
23
  All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
24
24
 
25
- Mailing list archives available at L<http://80x24.org/dtas-all/>
25
+ Mailing list archives available at L<https://80x24.org/dtas-all/>
26
26
  and L<ftp://lists.gnu.org/dtas-all/>
27
27
 
28
28
  No subscription is necessary to post to the mailing list.
@@ -31,7 +31,7 @@ No subscription is necessary to post to the mailing list.
31
31
 
32
32
  Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
33
33
 
34
- License: GPL-3.0+ L<http://www.gnu.org/licenses/gpl-3.0.txt>
34
+ License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
35
35
 
36
36
  =head1 SEE ALSO
37
37
 
@@ -27,7 +27,7 @@ This defaults to ~/.dtas/player.sock
27
27
 
28
28
  All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
29
29
 
30
- Mailing list archives available at L<http://80x24.org/dtas-all/>
30
+ Mailing list archives available at L<https://80x24.org/dtas-all/>
31
31
  and L<ftp://lists.gnu.org/dtas-all/>
32
32
 
33
33
  No subscription is necessary to post to the mailing list.
@@ -36,7 +36,7 @@ No subscription is necessary to post to the mailing list.
36
36
 
37
37
  Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
38
38
 
39
- License: GPL-3.0+ L<http://www.gnu.org/licenses/gpl-3.0.txt>
39
+ License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
40
40
 
41
41
  =head1 SEE ALSO
42
42
 
@@ -63,7 +63,7 @@ temporary files are placed for most programs.
63
63
 
64
64
  All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
65
65
 
66
- Mailing list archives available at L<http://80x24.org/dtas-all/>
66
+ Mailing list archives available at L<https://80x24.org/dtas-all/>
67
67
  and L<ftp://lists.gnu.org/dtas-all/>
68
68
 
69
69
  No subscription is necessary to post to the mailing list.
@@ -72,4 +72,4 @@ No subscription is necessary to post to the mailing list.
72
72
 
73
73
  Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
74
74
 
75
- License: GPL-3.0+ L<http://www.gnu.org/licenses/gpl-3.0.txt>
75
+ License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
@@ -44,7 +44,7 @@ This defaults to ~/.dtas/player.sock
44
44
 
45
45
  All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
46
46
 
47
- Mailing list archives available at L<http://80x24.org/dtas-all/>
47
+ Mailing list archives available at L<https://80x24.org/dtas-all/>
48
48
  and L<ftp://lists.gnu.org/dtas-all/>
49
49
 
50
50
  No subscription is necessary to post to the mailing list.
@@ -53,7 +53,7 @@ No subscription is necessary to post to the mailing list.
53
53
 
54
54
  Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
55
55
 
56
- License: GPL-3.0+ L<http://www.gnu.org/licenses/gpl-3.0.txt>
56
+ License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
57
57
 
58
58
  =head1 SEE ALSO
59
59
 
@@ -108,7 +108,7 @@ state across restarts of dtas-player.
108
108
 
109
109
  All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
110
110
 
111
- Mailing list archives available at L<http://80x24.org/dtas-all/>
111
+ Mailing list archives available at L<https://80x24.org/dtas-all/>
112
112
  and L<ftp://lists.gnu.org/dtas-all/>
113
113
 
114
114
  No subscription is necessary to post to the mailing list.
@@ -117,7 +117,7 @@ No subscription is necessary to post to the mailing list.
117
117
 
118
118
  Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
119
119
 
120
- License: GPL-3.0+ L<http://www.gnu.org/licenses/gpl-3.0.txt>
120
+ License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
121
121
 
122
122
  =head1 SEE ALSO
123
123
 
@@ -91,7 +91,7 @@ playback hardware are applied at the sink:
91
91
 
92
92
  All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
93
93
 
94
- Mailing list archives available at L<http://80x24.org/dtas-all/>
94
+ Mailing list archives available at L<https://80x24.org/dtas-all/>
95
95
  and L<ftp://lists.gnu.org/dtas-all/>
96
96
 
97
97
  No subscription is necessary to post to the mailing list.
@@ -100,4 +100,4 @@ No subscription is necessary to post to the mailing list.
100
100
 
101
101
  Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
102
102
 
103
- License: GPL-3.0+ L<http://www.gnu.org/licenses/gpl-3.0.txt>
103
+ License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
@@ -96,7 +96,7 @@ Commands here should be alphabetized according to `LC_ALL=C sort'
96
96
 
97
97
  PENDING: this may be renamed to "queue clear" or "queue-clear"
98
98
 
99
- =item cue - display the index/offsets of the embedded cue sheet
99
+ =item cue - display the index/offsets of the embedded CUE sheet
100
100
 
101
101
  =item cue next - skip to the next cue sheet offset
102
102
 
@@ -109,11 +109,26 @@ This may just seek to the beginning
109
109
  if there is no embedded cue sheet or if we are playing the first
110
110
  (embedded) track.
111
111
 
112
- =item cue goto INTEGER - go to the cue index denoted by INTEGER
112
+ =item cue goto INTEGER [TIMESTAMP] - go to the cue index denoted by INTEGER
113
113
 
114
114
  0 is first track as returned by "cue".
115
115
  Negative values of INTEGER allows selecting track relative to the last
116
116
  track (-1 is the last track, -2 is the penultimate, and so on).
117
+ The optional TIMESTAMP allows starting the index track at a given
118
+ point, negative values allow going to a set point before the given
119
+ index. In other words: "cue goto 1 -5" seeks to the last five seconds
120
+ of the first track while "cue goto 1 5" seeks to the fifth second of
121
+ the second track
122
+
123
+ =item cue seek TIMESTAMP - seek within the current cue index
124
+
125
+ Like the normal "seek" command, but this confines the seeking
126
+ within the currently playing index. As with "seek",
127
+ "+" and "-" prefixes allow seeking relative to the currently
128
+ playing position
129
+
130
+ Using a "=-" prefix allows seeking to the previous track within
131
+ the CUE sheet, relative to the currently playing track.
117
132
 
118
133
  =item current - output information about the current track/command in YAML
119
134
 
@@ -448,7 +463,7 @@ another client socket to issue non-watch commands.
448
463
 
449
464
  All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
450
465
 
451
- Mailing list archives available at L<http://80x24.org/dtas-all/>
466
+ Mailing list archives available at L<https://80x24.org/dtas-all/>
452
467
  and L<ftp://lists.gnu.org/dtas-all/>
453
468
 
454
469
  No subscription is necessary to post to the mailing list.
@@ -457,4 +472,4 @@ No subscription is necessary to post to the mailing list.
457
472
 
458
473
  Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
459
474
 
460
- License: GPL-3.0+ L<http://www.gnu.org/licenses/gpl-3.0.txt>
475
+ License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
@@ -70,7 +70,7 @@ See L<dtas-xdelay(1)>.
70
70
 
71
71
  All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
72
72
 
73
- Mailing list archives available at L<http://80x24.org/dtas-all/>
73
+ Mailing list archives available at L<https://80x24.org/dtas-all/>
74
74
  and L<ftp://lists.gnu.org/dtas-all/>
75
75
 
76
76
  No subscription is necessary to post to the mailing list.
@@ -79,7 +79,7 @@ No subscription is necessary to post to the mailing list.
79
79
 
80
80
  Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
81
81
 
82
- License: GPL-3.0+ L<http://www.gnu.org/licenses/gpl-3.0.txt>
82
+ License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
83
83
 
84
84
  =head1 SEE ALSO
85
85
 
@@ -63,7 +63,7 @@ This defaults to ~/.dtas/player.sock
63
63
 
64
64
  All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
65
65
 
66
- Mailing list archives available at L<http://80x24.org/dtas-all/>
66
+ Mailing list archives available at L<https://80x24.org/dtas-all/>
67
67
  and L<ftp://lists.gnu.org/dtas-all/>
68
68
 
69
69
  No subscription is necessary to post to the mailing list.
@@ -72,7 +72,7 @@ No subscription is necessary to post to the mailing list.
72
72
 
73
73
  Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
74
74
 
75
- License: GPL-3.0+ L<http://www.gnu.org/licenses/gpl-3.0.txt>
75
+ License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
76
76
 
77
77
  =head1 SEE ALSO
78
78
 
@@ -70,7 +70,7 @@ This defaults to ~/.dtas/player.sock
70
70
 
71
71
  All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
72
72
 
73
- Mailing list archives available at L<http://80x24.org/dtas-all/>
73
+ Mailing list archives available at L<https://80x24.org/dtas-all/>
74
74
  and L<ftp://lists.gnu.org/dtas-all/>
75
75
 
76
76
  No subscription is necessary to post to the mailing list.
@@ -79,7 +79,7 @@ No subscription is necessary to post to the mailing list.
79
79
 
80
80
  Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
81
81
 
82
- License: GPL-3.0+ L<http://www.gnu.org/licenses/gpl-3.0.txt>
82
+ License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
83
83
 
84
84
  =head1 SEE ALSO
85
85
 
@@ -264,7 +264,7 @@ imbalance in a live concert recording from the audience:
264
264
 
265
265
  Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
266
266
 
267
- License: GPL-3.0+ L<http://www.gnu.org/licenses/gpl-3.0.txt>
267
+ License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
268
268
 
269
269
  =head1 SEE ALSO
270
270
 
@@ -113,7 +113,7 @@ This defaults to ~/.dtas/player.sock
113
113
 
114
114
  All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
115
115
 
116
- Mailing list archives available at L<http://80x24.org/dtas-all/>
116
+ Mailing list archives available at L<https://80x24.org/dtas-all/>
117
117
  and L<ftp://lists.gnu.org/dtas-all/>
118
118
 
119
119
  No subscription is necessary to post to the mailing list.
@@ -122,7 +122,7 @@ No subscription is necessary to post to the mailing list.
122
122
 
123
123
  Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
124
124
 
125
- License: GPL-3.0+ L<http://www.gnu.org/licenses/gpl-3.0.txt>
125
+ License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
126
126
 
127
127
  =head1 SEE ALSO
128
128
 
@@ -79,7 +79,7 @@ are greatly appreciated.
79
79
 
80
80
  All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
81
81
 
82
- Mailing list archives available at L<http://80x24.org/dtas-all/>
82
+ Mailing list archives available at L<https://80x24.org/dtas-all/>
83
83
  and L<ftp://lists.gnu.org/dtas-all/>
84
84
 
85
85
  No subscription is necessary to post to the mailing list.
@@ -88,7 +88,7 @@ No subscription is necessary to post to the mailing list.
88
88
 
89
89
  Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
90
90
 
91
- License: GPL-3.0+ L<http://www.gnu.org/licenses/gpl-3.0.txt>
91
+ License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
92
92
 
93
93
  =head1 SEE ALSO
94
94
 
@@ -1,11 +1,11 @@
1
1
  #!/usr/bin/env ruby
2
2
  # Copyright 2015-2016 all contributors <dtas-all@nongnu.org>
3
- # License: GPL-3.0+ <http://www.gnu.org/licenses/gpl-3.0.txt>
3
+ # License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
4
4
  # frozen_string_literal: true
5
5
  contact = %q{
6
6
  All feedback welcome via plain-text mail to: L<mailto:dtas-all@nongnu.org>
7
7
 
8
- Mailing list archives available at L<http://80x24.org/dtas-all/>
8
+ Mailing list archives available at L<https://80x24.org/dtas-all/>
9
9
  and L<ftp://lists.gnu.org/dtas-all/>
10
10
 
11
11
  No subscription is necessary to post to the mailing list.
@@ -14,7 +14,7 @@
14
14
  copyright = %q{
15
15
  Copyright %s all contributors L<mailto:dtas-all@nongnu.org>
16
16
 
17
- License: GPL-3.0+ L<http://www.gnu.org/licenses/gpl-3.0.txt>
17
+ License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
18
18
  }
19
19
 
20
20
  ENV['TZ'] = 'UTC'
@@ -1,11 +1,11 @@
1
1
  #!/usr/bin/env ruby
2
2
  # Copyright (C) 2013-2016 all contributors <dtas-all@nongnu.org>
3
- # License: GPL-3.0+ (https://www.gnu.org/licenses/gpl-3.0.txt)
3
+ # License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
4
4
  # frozen_string_literal: true
5
5
  CONSTANT = "DTAS::VERSION"
6
6
  RVF = "lib/dtas/version.rb"
7
7
  GVF = "GIT-VERSION-FILE"
8
- DEF_VER = "v0.14.2"
8
+ DEF_VER = "v0.15.0"
9
9
  vn = DEF_VER
10
10
 
11
11
  # First see if there is a version file (included in release tarballs),
@@ -1,5 +1,5 @@
1
1
  # Copyright (C) 2013-2016 all contributors <dtas-all@nongnu.org>
2
- # License: GPL-3.0+ (https://www.gnu.org/licenses/gpl-3.0.txt)
2
+ # License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
3
3
  all::
4
4
  pkg = dtas
5
5
  RUBY = ruby
data/HACKING CHANGED
@@ -17,11 +17,11 @@ We use git(7) and develop dtas on a public mailing list like git
17
17
  developers do. Please send patches via git-send-email(1) to the public
18
18
  mailing list at <dtas-all@nongnu.org>. Pull requests should be
19
19
  formatted using git-request-pull(1).\
20
- Mailing list archives available at <http://80x24.org/dtas-all/> and
20
+ Mailing list archives available at <https://80x24.org/dtas-all/> and
21
21
  <ftp://lists.gnu.org/dtas-all/>\
22
22
  No subscription is necessary to post to the mailing list.
23
23
 
24
24
  # COPYRIGHT
25
25
 
26
26
  Copyright 2013-2016 all contributors <dtas-all@nongnu.org>.\
27
- License: GPL-3.0+ <http://www.gnu.org/licenses/gpl-3.0.txt>
27
+ License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
data/INSTALL CHANGED
@@ -37,29 +37,29 @@ For future upgrades of dtas (upgrades to dtas-linux will be infrequent)
37
37
 
38
38
  # installing dtas via tarball and setup.rb
39
39
 
40
- Grab the latest tarball from our HTTP site:
40
+ Grab the latest tarball from our HTTPS site:
41
41
 
42
- http://dtas.80x24.org/2016/dtas-0.14.2.tar.gz
42
+ https://80x24.org/dtas/2017/dtas-0.15.0.tar.gz
43
43
 
44
- $ tar zxvf dtas-0.14.2.tar.gz
45
- $ cd dtas-0.14.2
44
+ $ tar zxvf dtas-0.15.0.tar.gz
45
+ $ cd dtas-0.15.0
46
46
  $ sudo ruby setup.rb
47
47
 
48
48
  GNU/Linux users may optionally install "io_splice" and
49
49
  "sleepy_penguin" packages:
50
50
 
51
- * io_splice - http://bogomips.org/ruby_io_splice/
52
- * sleepy_penguin - http://bogomips.org/sleepy_penguin/
51
+ * io_splice - https://bogomips.org/ruby_io_splice/
52
+ * sleepy_penguin - https://bogomips.org/sleepy_penguin/
53
53
 
54
54
  # CONTACT
55
55
 
56
56
  Please do not hesitate to send plain-text mail to <dtas-all@nongnu.org>
57
57
  regarding installation and to share your notes/experiences.
58
- Mailing list archives available at <http://80x24.org/dtas-all/> or
59
- <ftp://lists.gnu.org/dtas-all>\
58
+ Mailing list archives available at <https://80x24.org/dtas-all/> or
59
+ <ftp://lists.gnu.org/dtas-all>
60
60
  No subscription is necessary to post to the mailing list.
61
61
 
62
62
  # COPYRIGHT
63
63
 
64
- Copyright 2013-2016 all contributors <dtas-all@nongnu.org>\
65
- License: GPL-3.0+ <http://www.gnu.org/licenses/gpl-3.0.txt>
64
+ Copyright 2013-2016 all contributors <dtas-all@nongnu.org>
65
+ License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>