about summary refs log tree commit homepage
path: root/lib
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2019-01-02 21:21:45 +0000
committerEric Wong <e@80x24.org>2019-01-02 21:21:45 +0000
commit551045c44ce46e1e59ba529579ced95f374224fd (patch)
tree7e27e2935094dcdd2ee2a565c5dfd84639787a17 /lib
parent44baf906e73c13577186e3135be4356b33b8be43 (diff)
downloaddtas-551045c44ce46e1e59ba529579ced95f374224fd.tar.gz
A bunch of minor fixes and cleanups accumulating for the past
two years since the last release.  It's tough to remember to
make releases when I'm always running the latest version from
git :x

Most notably, "io_splice" is no longer used for dtas-linux
users since "sleepy_penguin" includes all the functionality
we use.  This is to reduce memory overhead from extra DSOs(*)

There's also some deprecation warning fixes for the
still-undocumented "dtas-mlib" command.

12 changes since v0.15.0 (2017-04-07):

      pipeline: new module for running process pipelines
      console: ensure time calculations are done in UTC
      Rakefile: update path for uploads
      player: support guessing encodings for comments
      get rid of Windows-31J regexps
      mlib: compatibility with Sequel 5.x
      mlib: remove redundant tag massaging and encoding
      mlib: use flock to get around SQLite busy errors
      mlib: ignore files with nil times
      dtas/watchable: check SystemCallError
      mlib: fix unused variable warning
      use sleepy_penguin 3.5+ for splice and tee support

(*) https://udrepper.livejournal.com/8790.html
Diffstat (limited to 'lib')
-rw-r--r--lib/dtas.rb2
-rw-r--r--lib/dtas/buffer.rb2
-rw-r--r--lib/dtas/buffer/read_write.rb2
-rw-r--r--lib/dtas/buffer/splice.rb2
-rw-r--r--lib/dtas/encoding.rb2
-rw-r--r--lib/dtas/mlib.rb2
-rw-r--r--lib/dtas/pipe.rb2
-rw-r--r--lib/dtas/pipeline.rb2
-rw-r--r--lib/dtas/source/sox.rb2
-rw-r--r--lib/dtas/watchable.rb2
10 files changed, 10 insertions, 10 deletions
diff --git a/lib/dtas.rb b/lib/dtas.rb
index 3c2cdb4..9c1b5a5 100644
--- a/lib/dtas.rb
+++ b/lib/dtas.rb
@@ -1,4 +1,4 @@
-# Copyright (C) 2013-2016 all contributors <dtas-all@nongnu.org>
+# Copyright (C) 2013-2019 all contributors <dtas-all@nongnu.org>
 # License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
 # frozen_string_literal: true
 
diff --git a/lib/dtas/buffer.rb b/lib/dtas/buffer.rb
index c3d8ee2..39070d7 100644
--- a/lib/dtas/buffer.rb
+++ b/lib/dtas/buffer.rb
@@ -1,4 +1,4 @@
-# Copyright (C) 2013-2016 all contributors <dtas-all@nongnu.org>
+# Copyright (C) 2013-2019 all contributors <dtas-all@nongnu.org>
 # License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
 # frozen_string_literal: true
 require 'io/wait'
diff --git a/lib/dtas/buffer/read_write.rb b/lib/dtas/buffer/read_write.rb
index 06947a5..04856c7 100644
--- a/lib/dtas/buffer/read_write.rb
+++ b/lib/dtas/buffer/read_write.rb
@@ -1,4 +1,4 @@
-# Copyright (C) 2013-2016 all contributors <dtas-all@nongnu.org>
+# Copyright (C) 2013-2019 all contributors <dtas-all@nongnu.org>
 # License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
 # frozen_string_literal: true
 require 'io/nonblock'
diff --git a/lib/dtas/buffer/splice.rb b/lib/dtas/buffer/splice.rb
index cd00bbb..c6c0ee2 100644
--- a/lib/dtas/buffer/splice.rb
+++ b/lib/dtas/buffer/splice.rb
@@ -1,4 +1,4 @@
-# Copyright (C) 2013-2016 all contributors <dtas-all@nongnu.org>
+# Copyright (C) 2013-2019 all contributors <dtas-all@nongnu.org>
 # License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
 # frozen_string_literal: true
 require 'io/nonblock'
diff --git a/lib/dtas/encoding.rb b/lib/dtas/encoding.rb
index 71c877f..613e376 100644
--- a/lib/dtas/encoding.rb
+++ b/lib/dtas/encoding.rb
@@ -1,4 +1,4 @@
-# Copyright (C) 2018 all contributors <dtas-all@nongnu.org>
+# Copyright (C) 2018-2019 all contributors <dtas-all@nongnu.org>
 # License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
 # frozen_string_literal: true
 
diff --git a/lib/dtas/mlib.rb b/lib/dtas/mlib.rb
index a7e6102..e0f19ab 100644
--- a/lib/dtas/mlib.rb
+++ b/lib/dtas/mlib.rb
@@ -1,5 +1,5 @@
 # -*- encoding: utf-8 -*-
-# Copyright (C) 2015-2016 all contributors <dtas-all@nongnu.org>
+# Copyright (C) 2015-2019 all contributors <dtas-all@nongnu.org>
 # License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
 # frozen_string_literal: true
 #
diff --git a/lib/dtas/pipe.rb b/lib/dtas/pipe.rb
index 97cbd71..58d926c 100644
--- a/lib/dtas/pipe.rb
+++ b/lib/dtas/pipe.rb
@@ -1,4 +1,4 @@
-# Copyright (C) 2013-2016 all contributors <dtas-all@nongnu.org>
+# Copyright (C) 2013-2019 all contributors <dtas-all@nongnu.org>
 # License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
 # frozen_string_literal: true
 begin
diff --git a/lib/dtas/pipeline.rb b/lib/dtas/pipeline.rb
index b04b7f7..b900fee 100644
--- a/lib/dtas/pipeline.rb
+++ b/lib/dtas/pipeline.rb
@@ -1,4 +1,4 @@
-# Copyright (C) 2017 all contributors <dtas-all@nongnu.org>
+# Copyright (C) 2017-2019 all contributors <dtas-all@nongnu.org>
 # License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
 # frozen_string_literal: true
 require_relative '../dtas'
diff --git a/lib/dtas/source/sox.rb b/lib/dtas/source/sox.rb
index 5e967c1..dc23c27 100644
--- a/lib/dtas/source/sox.rb
+++ b/lib/dtas/source/sox.rb
@@ -1,4 +1,4 @@
-# Copyright (C) 2013-2016 all contributors <dtas-all@nongnu.org>
+# Copyright (C) 2013-2019 all contributors <dtas-all@nongnu.org>
 # License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
 # frozen_string_literal: true
 # encoding: binary
diff --git a/lib/dtas/watchable.rb b/lib/dtas/watchable.rb
index 7d2bac4..d0f37af 100644
--- a/lib/dtas/watchable.rb
+++ b/lib/dtas/watchable.rb
@@ -1,4 +1,4 @@
-# Copyright (C) 2013-2016 all contributors <dtas-all@nongnu.org>
+# Copyright (C) 2013-2019 all contributors <dtas-all@nongnu.org>
 # License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
 # frozen_string_literal: true
 begin