dtas 0.17.0 → 0.18.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (137) 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 +1 -1
  6. data/Documentation/dtas-console.pod +1 -1
  7. data/Documentation/dtas-ctl.pod +1 -1
  8. data/Documentation/dtas-cueedit.pod +1 -1
  9. data/Documentation/dtas-enq.pod +1 -1
  10. data/Documentation/dtas-env.pod +1 -1
  11. data/Documentation/dtas-msinkctl.pod +1 -1
  12. data/Documentation/dtas-player.pod +1 -1
  13. data/Documentation/dtas-player_effects.pod +1 -1
  14. data/Documentation/dtas-player_protocol.pod +1 -1
  15. data/Documentation/dtas-player_sink_examples.pod +1 -1
  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 +1 -1
  20. data/Documentation/dtas-xdelay.pod +1 -1
  21. data/Documentation/update-footer.rb +1 -1
  22. data/GIT-VERSION-GEN +2 -2
  23. data/GNUmakefile +1 -1
  24. data/HACKING +1 -1
  25. data/INSTALL +9 -19
  26. data/README +6 -5
  27. data/Rakefile +1 -1
  28. data/TODO +1 -1
  29. data/bin/dtas-archive +1 -1
  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 +1 -1
  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 +1 -1
  45. data/dtas-mpris.gemspec +1 -1
  46. data/dtas.gemspec +1 -1
  47. data/lib/dtas.rb +9 -1
  48. data/lib/dtas/buffer.rb +10 -7
  49. data/lib/dtas/buffer/fiddle_splice.rb +216 -0
  50. data/lib/dtas/buffer/read_write.rb +3 -3
  51. data/lib/dtas/buffer/splice.rb +3 -1
  52. data/lib/dtas/command.rb +1 -1
  53. data/lib/dtas/compat_onenine.rb +1 -1
  54. data/lib/dtas/cue_index.rb +1 -1
  55. data/lib/dtas/disclaimer.rb +1 -1
  56. data/lib/dtas/edit_client.rb +1 -1
  57. data/lib/dtas/encoding.rb +1 -1
  58. data/lib/dtas/fadefx.rb +1 -1
  59. data/lib/dtas/format.rb +1 -1
  60. data/lib/dtas/mcache.rb +1 -1
  61. data/lib/dtas/mlib.rb +1 -1
  62. data/lib/dtas/mlib/migrations/0001_initial.rb +1 -1
  63. data/lib/dtas/nonblock.rb +1 -1
  64. data/lib/dtas/parse_freq.rb +1 -1
  65. data/lib/dtas/parse_time.rb +1 -1
  66. data/lib/dtas/partstats.rb +1 -1
  67. data/lib/dtas/pipe.rb +13 -9
  68. data/lib/dtas/pipeline.rb +1 -1
  69. data/lib/dtas/player.rb +1 -1
  70. data/lib/dtas/player/client_handler.rb +1 -1
  71. data/lib/dtas/process.rb +1 -1
  72. data/lib/dtas/replaygain.rb +1 -1
  73. data/lib/dtas/rg_state.rb +1 -1
  74. data/lib/dtas/serialize.rb +1 -1
  75. data/lib/dtas/sigevent.rb +6 -3
  76. data/lib/dtas/sigevent/efd.rb +3 -1
  77. data/lib/dtas/sigevent/fiddle_efd.rb +38 -0
  78. data/lib/dtas/sigevent/pipe.rb +2 -2
  79. data/lib/dtas/sink.rb +1 -1
  80. data/lib/dtas/source.rb +1 -1
  81. data/lib/dtas/source/av.rb +1 -1
  82. data/lib/dtas/source/av_ff_common.rb +1 -1
  83. data/lib/dtas/source/cmd.rb +1 -1
  84. data/lib/dtas/source/common.rb +1 -1
  85. data/lib/dtas/source/ff.rb +1 -1
  86. data/lib/dtas/source/file.rb +1 -1
  87. data/lib/dtas/source/mp3gain.rb +1 -1
  88. data/lib/dtas/source/sox.rb +1 -1
  89. data/lib/dtas/source/splitfx.rb +1 -1
  90. data/lib/dtas/spawn_fix.rb +1 -1
  91. data/lib/dtas/splitfx.rb +1 -1
  92. data/lib/dtas/state_file.rb +1 -1
  93. data/lib/dtas/tfx.rb +1 -1
  94. data/lib/dtas/track.rb +1 -1
  95. data/lib/dtas/tracklist.rb +1 -1
  96. data/lib/dtas/unix_accepted.rb +1 -1
  97. data/lib/dtas/unix_client.rb +1 -1
  98. data/lib/dtas/unix_server.rb +1 -1
  99. data/lib/dtas/util.rb +1 -1
  100. data/lib/dtas/watchable.rb +59 -58
  101. data/lib/dtas/watchable/fiddle_ino.rb +78 -0
  102. data/lib/dtas/watchable/inotify.rb +13 -0
  103. data/lib/dtas/writable_iter.rb +1 -1
  104. data/lib/dtas/xs.rb +1 -1
  105. data/perl/dtas-graph +1 -1
  106. data/setup.rb +1 -2
  107. data/test/covshow.rb +1 -1
  108. data/test/helper.rb +1 -1
  109. data/test/player_integration.rb +1 -1
  110. data/test/test_buffer.rb +6 -6
  111. data/test/test_encoding.rb +1 -1
  112. data/test/test_env.rb +1 -1
  113. data/test/test_fadefx.rb +1 -1
  114. data/test/test_format.rb +1 -1
  115. data/test/test_format_change.rb +1 -1
  116. data/test/test_mcache.rb +1 -1
  117. data/test/test_mlib.rb +1 -1
  118. data/test/test_parse_freq.rb +1 -1
  119. data/test/test_pipeline.rb +1 -1
  120. data/test/test_player.rb +1 -1
  121. data/test/test_player_client_handler.rb +1 -1
  122. data/test/test_player_integration.rb +1 -1
  123. data/test/test_process.rb +1 -1
  124. data/test/test_rg_integration.rb +1 -1
  125. data/test/test_rg_state.rb +1 -1
  126. data/test/test_sigevent.rb +20 -0
  127. data/test/test_sink.rb +1 -1
  128. data/test/test_sink_pipe_size.rb +13 -16
  129. data/test/test_sink_tee_integration.rb +1 -1
  130. data/test/test_source_av.rb +1 -1
  131. data/test/test_source_sox.rb +1 -1
  132. data/test/test_splitfx.rb +1 -1
  133. data/test/test_tfx.rb +1 -1
  134. data/test/test_tracklist.rb +1 -1
  135. data/test/test_unixserver.rb +1 -1
  136. data/test/test_util.rb +1 -1
  137. metadata +8 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: db19072a9f74af0a63fe5d9d2656b06643acba7e3a64d99de59548583bf535c1
4
- data.tar.gz: 751bdfe20a0ac951a32587a68d1adb860255be610644fd8605f3010c82cc6196
3
+ metadata.gz: a3234969a259bbd208ab8990043cada0a730f7a26fbd926e9faa8e7a817900f6
4
+ data.tar.gz: 20a1d5e7e193a8121c004e87cbe24dd15b760c3a680eb5a85652d5620a06d3b8
5
5
  SHA512:
6
- metadata.gz: 4cd403005637338693031ef441170a7fe1e7da77e86e826b3650e7d70344bafe9b3546c2873003f742da583457de7a544b24007dfecf017f7edd364edd05ce83
7
- data.tar.gz: 282169bd243e103b3fea0398a31671e89c0c9ebba972d7924c4eb9542471410c9dcfa1f1b1c9fa2d0872145cd576aca528e96ec9d746bb889ac7eb5c96e4e286
6
+ metadata.gz: c8538abec27232c2a97be96e9f5d6983fc073c138f78df7472971c2d35242026dc889ab58daddead8e461835cfc334c9a55a9b41035ae4fd685b552e2af618bc
7
+ data.tar.gz: 9919b3bbeeead4c49d07a68e9f65451c243564815f532ba36c85cd3f04dc948af652952fae4168992538f5c17469b8a9a75ca07d81bf75856ee79edfebf4b2c9
data/.gitignore CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2013-2016 all contributors <dtas-all@nongnu.org>
1
+ # Copyright (C) 2013-2020 all contributors <dtas-all@nongnu.org>
2
2
  # License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
3
3
  /GIT-VERSION-FILE
4
4
  /Manifest.txt
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2013-2016 all contributors <dtas-all@nongnu.org>
1
+ # Copyright (C) 2013-2020 all contributors <dtas-all@nongnu.org>
2
2
  # License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
3
3
  *.1
4
4
  *.5
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2013-2016 all contributors <dtas-all@nongnu.org>
1
+ # Copyright (C) 2013-2020 all contributors <dtas-all@nongnu.org>
2
2
  # License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
3
3
  all::
4
4
 
@@ -56,7 +56,7 @@ Number of times to repeat the L<sndfile-cmp(1)> check. Default: 1
56
56
 
57
57
  =head1 COPYRIGHT
58
58
 
59
- Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
59
+ Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
60
60
 
61
61
  License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
62
62
 
@@ -84,7 +84,7 @@ No subscription is necessary to post to the mailing list.
84
84
 
85
85
  =head1 COPYRIGHT
86
86
 
87
- Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
87
+ Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
88
88
 
89
89
  License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
90
90
 
@@ -68,7 +68,7 @@ No subscription is necessary to post to the mailing list.
68
68
 
69
69
  =head1 COPYRIGHT
70
70
 
71
- Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
71
+ Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
72
72
 
73
73
  License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
74
74
 
@@ -29,7 +29,7 @@ No subscription is necessary to post to the mailing list.
29
29
 
30
30
  =head1 COPYRIGHT
31
31
 
32
- Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
32
+ Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
33
33
 
34
34
  License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
35
35
 
@@ -34,7 +34,7 @@ No subscription is necessary to post to the mailing list.
34
34
 
35
35
  =head1 COPYRIGHT
36
36
 
37
- Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
37
+ Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
38
38
 
39
39
  License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
40
40
 
@@ -70,6 +70,6 @@ No subscription is necessary to post to the mailing list.
70
70
 
71
71
  =head1 COPYRIGHT
72
72
 
73
- Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
73
+ Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
74
74
 
75
75
  License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
@@ -51,7 +51,7 @@ No subscription is necessary to post to the mailing list.
51
51
 
52
52
  =head1 COPYRIGHT
53
53
 
54
- Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
54
+ Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
55
55
 
56
56
  License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
57
57
 
@@ -115,7 +115,7 @@ No subscription is necessary to post to the mailing list.
115
115
 
116
116
  =head1 COPYRIGHT
117
117
 
118
- Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
118
+ Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
119
119
 
120
120
  License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
121
121
 
@@ -98,6 +98,6 @@ No subscription is necessary to post to the mailing list.
98
98
 
99
99
  =head1 COPYRIGHT
100
100
 
101
- Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
101
+ Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
102
102
 
103
103
  License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
@@ -470,6 +470,6 @@ No subscription is necessary to post to the mailing list.
470
470
 
471
471
  =head1 COPYRIGHT
472
472
 
473
- Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
473
+ Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
474
474
 
475
475
  License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
@@ -77,7 +77,7 @@ No subscription is necessary to post to the mailing list.
77
77
 
78
78
  =head1 COPYRIGHT
79
79
 
80
- Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
80
+ Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
81
81
 
82
82
  License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
83
83
 
@@ -13,7 +13,7 @@ dtas-sinkedit SINKNAME
13
13
  dtas-sinkedit spawns an editor to allow editing of a sink as a YAML file.
14
14
  See L<dtas-player_protocol(7)> for details on SINKARGS.
15
15
 
16
- On Linux machines with the sleepy_penguin RubyGem installed, L<inotify(7)>
16
+ On Linux machines, L<inotify(7)>
17
17
  is used to monitor the file for changes while the text editor is running.
18
18
  Each time a user finishes saving a file, changes are committed immediately.
19
19
  This behavior may be disabled by using the -N or --no-watch command-line
@@ -70,7 +70,7 @@ No subscription is necessary to post to the mailing list.
70
70
 
71
71
  =head1 COPYRIGHT
72
72
 
73
- Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
73
+ Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
74
74
 
75
75
  License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
76
76
 
@@ -16,7 +16,7 @@ a pipe or file, it is parsed as YAML and fed to the L<dtas-player(1)> instance
16
16
  non-interactively. This is useful for loading various profiles from the
17
17
  filesystem.
18
18
 
19
- On Linux machines with the sleepy_penguin RubyGem installed, L<inotify(7)>
19
+ On Linux machines, L<inotify(7)>
20
20
  is used to monitor the file for changes while the text editor is running.
21
21
  Each time a user finishes saving a file, changes are committed immediately.
22
22
  This behavior may be disabled by using the -N or --no-watch command-line
@@ -77,7 +77,7 @@ No subscription is necessary to post to the mailing list.
77
77
 
78
78
  =head1 COPYRIGHT
79
79
 
80
- Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
80
+ Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
81
81
 
82
82
  License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
83
83
 
@@ -262,7 +262,7 @@ imbalance in a live concert recording from the audience:
262
262
 
263
263
  =head1 COPYRIGHT
264
264
 
265
- Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
265
+ Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
266
266
 
267
267
  License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
268
268
 
@@ -120,7 +120,7 @@ No subscription is necessary to post to the mailing list.
120
120
 
121
121
  =head1 COPYRIGHT
122
122
 
123
- Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
123
+ Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
124
124
 
125
125
  License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
126
126
 
@@ -86,7 +86,7 @@ No subscription is necessary to post to the mailing list.
86
86
 
87
87
  =head1 COPYRIGHT
88
88
 
89
- Copyright 2013-2016 all contributors L<mailto:dtas-all@nongnu.org>
89
+ Copyright 2013-2020 all contributors L<mailto:dtas-all@nongnu.org>
90
90
 
91
91
  License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
92
92
 
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
- # Copyright 2015-2016 all contributors <dtas-all@nongnu.org>
2
+ # Copyright 2015-2020 all contributors <dtas-all@nongnu.org>
3
3
  # License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
4
4
  # frozen_string_literal: true
5
5
  contact = %q{
@@ -1,11 +1,11 @@
1
1
  #!/usr/bin/env ruby
2
- # Copyright (C) 2013-2019 all contributors <dtas-all@nongnu.org>
2
+ # Copyright (C) 2013-2020 all contributors <dtas-all@nongnu.org>
3
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.17.0"
8
+ DEF_VER = "v0.18.0"
9
9
  vn = DEF_VER
10
10
 
11
11
  # First see if there is a version file (included in release tarballs),
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2013-2016 all contributors <dtas-all@nongnu.org>
1
+ # Copyright (C) 2013-2020 all contributors <dtas-all@nongnu.org>
2
2
  # License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
3
3
  all::
4
4
  pkg = dtas
data/HACKING CHANGED
@@ -23,5 +23,5 @@ No subscription is necessary to post to the mailing list.
23
23
 
24
24
  # COPYRIGHT
25
25
 
26
- Copyright 2013-2016 all contributors <dtas-all@nongnu.org>.\
26
+ Copyright 2013-2020 all contributors <dtas-all@nongnu.org>.\
27
27
  License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
data/INSTALL CHANGED
@@ -16,18 +16,7 @@ Debian 7+ users can install dependencies easily:
16
16
 
17
17
  sudo apt-get install sox libsox-fmt-all mp3gain flac ruby-dev
18
18
 
19
- # installing dtas RubyGem on GNU/Linux (Linux kernel 2.6.32+)
20
-
21
- Be sure to have Ruby development headers and a working C compiler.
22
- This will pull in the sleepy_penguin RubyGems for minor
23
- speedups. If you cannot be bothered to have a development
24
- environment, just use "gem install dtas".
25
-
26
- sudo gem install dtas-linux
27
-
28
- This should pull in the "sleepy_penguin" RubyGems
29
-
30
- For future upgrades of dtas (upgrades to dtas-linux will be infrequent)
19
+ For future upgrades of dtas
31
20
 
32
21
  sudo gem update dtas
33
22
 
@@ -39,25 +28,26 @@ For future upgrades of dtas (upgrades to dtas-linux will be infrequent)
39
28
 
40
29
  Grab the latest tarball from our HTTPS site:
41
30
 
42
- https://80x24.org/dtas/2019/dtas-0.17.0.tar.gz
31
+ https://80x24.org/dtas/2020/dtas-0.18.0.tar.gz
43
32
 
44
- $ tar zxvf dtas-0.17.0.tar.gz
45
- $ cd dtas-0.17.0
33
+ $ tar zxvf dtas-0.18.0.tar.gz
34
+ $ cd dtas-0.18.0
46
35
  $ sudo ruby setup.rb
47
36
 
48
- GNU/Linux users may optionally install the "sleepy_penguin" package:
37
+ GNU/Linux users may optionally install the "sleepy_penguin" RubyGem
38
+ for a tiny speed improvement over the default "fiddle" RubyGem.
49
39
 
50
- * sleepy_penguin - https://bogomips.org/sleepy_penguin/
40
+ * sleepy_penguin - https://yhbt.net/sleepy_penguin/
51
41
 
52
42
  # CONTACT
53
43
 
54
44
  Please do not hesitate to send plain-text mail to <dtas-all@nongnu.org>
55
45
  regarding installation and to share your notes/experiences.
56
46
  Mailing list archives available at <https://80x24.org/dtas-all/> or
57
- <ftp://lists.gnu.org/dtas-all>
47
+ <https://lists.gnu.org/archive/html/dtas-all/>
58
48
  No subscription is necessary to post to the mailing list.
59
49
 
60
50
  # COPYRIGHT
61
51
 
62
- Copyright 2013-2019 all contributors <dtas-all@nongnu.org>
52
+ Copyright 2013-2020 all contributors <dtas-all@nongnu.org>
63
53
  License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
data/README CHANGED
@@ -74,10 +74,11 @@ All feedback (comments, results, feature requests, bug reports, patches,
74
74
  pull-requests) via plain-text mail to the mailing list is very much
75
75
  appreciated.
76
76
 
77
- Please send plain-text mail to the list at <dtas-all@nongnu.org>\
78
- HTML mail will not be read. dtas is for GUI-phobes, by GUI-phobes.\
79
- Mailing list archives available at <ftp://lists.gnu.org/dtas-all>
80
- or <https://80x24.org/dtas-all/>
77
+ Please send plain-text mail to the list at <dtas-all@nongnu.org>
78
+ HTML mail will not be read. dtas is for GUI-phobes, by GUI-phobes.
79
+ Mailing list archives available at <https://80x24.org/dtas-all/> or
80
+ <https://lists.gnu.org/archive/html/dtas-all/>.
81
+
81
82
  No subscription is necessary to post to the mailing list.
82
83
  You may also read via:
83
84
  NNTP: <nntp://news.public-inbox.org/inbox.comp.audio.dtas>
@@ -86,7 +87,7 @@ Atom: <https://80x24.org/dtas-all/new.atom>
86
87
 
87
88
  ## Copyright
88
89
 
89
- Copyright 2013-2019 all contributors <dtas-all@nongnu.org>\
90
+ Copyright 2013-2020 all contributors <dtas-all@nongnu.org>
90
91
  License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
91
92
 
92
93
  dtas is copyrighted Free Software by all contributors, see logs
data/Rakefile CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2013-2019 all contributors <dtas-all@nongnu.org>.
1
+ # Copyright (C) 2013-2020 all contributors <dtas-all@nongnu.org>.
2
2
  # License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
3
3
  # frozen_string_literal: true
4
4
  require 'tempfile'
data/TODO CHANGED
@@ -7,5 +7,5 @@
7
7
 
8
8
  # COPYRIGHT
9
9
 
10
- Copyright 2013-2019 all contributors <dtas-all@nongnu.org>
10
+ Copyright 2013-2020 all contributors <dtas-all@nongnu.org>
11
11
  License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
- # Copyright (C) 2015-2016 all contributors <dtas-all@nongnu.org>
2
+ # Copyright (C) 2015-2020 all contributors <dtas-all@nongnu.org>
3
3
  # License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
4
4
  # frozen_string_literal: true
5
5
  usage = "#$0 SOURCE DESTINATION"
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
- # Copyright (C) 2013-2019 all contributors <dtas-all@nongnu.org>
2
+ # Copyright (C) 2013-2020 all contributors <dtas-all@nongnu.org>
3
3
  # License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
4
4
  # frozen_string_literal: true
5
5
  #
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
- # Copyright (C) 2013-2016 all contributors <dtas-all@nongnu.org>
2
+ # Copyright (C) 2013-2020 all contributors <dtas-all@nongnu.org>
3
3
  # License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
4
4
  # frozen_string_literal: true
5
5
  require 'dtas/unix_client'
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
- # Copyright (C) 2013-2016 all contributors <dtas-all@nongnu.org>
2
+ # Copyright (C) 2013-2020 all contributors <dtas-all@nongnu.org>
3
3
  # License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
4
4
  # frozen_string_literal: true
5
5
  require 'tempfile'
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
- # Copyright (C) 2013-2016 all contributors <dtas-all@nongnu.org>
2
+ # Copyright (C) 2013-2020 all contributors <dtas-all@nongnu.org>
3
3
  # License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
4
4
  # frozen_string_literal: true
5
5
  require 'dtas/unix_client'
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
- # Copyright (C) 2015-2016 all contributors <dtas-all@nongnu.org>
2
+ # Copyright (C) 2015-2020 all contributors <dtas-all@nongnu.org>
3
3
  # License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
4
4
  # frozen_string_literal: true
5
5
  usage = "#$0 [-d DATABASE-URI] ACTION [ARGS]"
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
- # Copyright (C) 2013-2016 all contributors <dtas-all@nongnu.org>
2
+ # Copyright (C) 2013-2020 all contributors <dtas-all@nongnu.org>
3
3
  # License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
4
4
  # frozen_string_literal: true
5
5
  require 'yaml'
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
- # Copyright (C) 2013-2016 all contributors <dtas-all@nongnu.org>
2
+ # Copyright (C) 2013-2020 all contributors <dtas-all@nongnu.org>
3
3
  # License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
4
4
  # frozen_string_literal: true
5
5
  # TODO
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
- # Copyright (C) 2013-2016 all contributors <dtas-all@nongnu.org>
2
+ # Copyright (C) 2013-2020 all contributors <dtas-all@nongnu.org>
3
3
  # License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
4
4
  # frozen_string_literal: true
5
5
  Thread.abort_on_exception = $stderr.sync = $stdout.sync = true
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
- # Copyright (C) 2015-2019 all contributors <dtas-all@nongnu.org>
2
+ # Copyright (C) 2015-2020 all contributors <dtas-all@nongnu.org>
3
3
  # License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
4
4
  # frozen_string_literal: true
5
5
  #
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
- # Copyright (C) 2013-2016 all contributors <dtas-all@nongnu.org>
2
+ # Copyright (C) 2013-2020 all contributors <dtas-all@nongnu.org>
3
3
  # License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
4
4
  # frozen_string_literal: true
5
5
  require 'optparse'
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
- # Copyright (C) 2013-2016 all contributors <dtas-all@nongnu.org>
2
+ # Copyright (C) 2013-2020 all contributors <dtas-all@nongnu.org>
3
3
  # License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
4
4
  # frozen_string_literal: true
5
5
  require 'optparse'
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
- # Copyright (C) 2013-2016 all contributors <dtas-all@nongnu.org>
2
+ # Copyright (C) 2013-2020 all contributors <dtas-all@nongnu.org>
3
3
  # License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
4
4
  # frozen_string_literal: true
5
5
  require 'yaml'
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
- # Copyright (C) 2013-2016 all contributors <dtas-all@nongnu.org>
2
+ # Copyright (C) 2013-2020 all contributors <dtas-all@nongnu.org>
3
3
  # License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
4
4
  # frozen_string_literal: true
5
5
  # encoding: binary