everything related to duct tape audio suite (dtas)
 help / color / mirror / code / Atom feed
Search results ordered by [date|relevance]  view[summary|nested|Atom feed]
thread overview below | download mbox.gz: |
* [ANN] dtas 0.9.0 - duct tape audio suite for *nix
@ 2014-12-22  9:26  6% Eric Wong
  0 siblings, 0 replies; 3+ results
From: Eric Wong @ 2014-12-22  9:26 UTC (permalink / raw)
  To: ruby-talk, dtas-all

Free Software command-line tools for audio playback, mastering, and
whatever else related to audio.  dtas follows the worse-is-better
philosophy and acts as duct tape to combine existing command-line tools
for flexibility and ease-of-development.  dtas is currently implemented
in Ruby (and some embedded shell), but may use other languages in the
future.

Changes:

   dtas 0.9.0 - minor features and speedups

   The major new feature is '>' and '<' keys are now supported
   in the dtas-console interface for dtas-player.
    dtas-tl cat" also received a minor speedup for big tracklists
   via syscall reductions

   shortlog of changes since 0.8.0:

         process: update comment for bug workaround
         process: update comment for bug workaround #2
         compat_onenine: simplify pipe wrapper
         tracklist: favor &:sym_to_proc style
         dtas-console: '>' and '<' keys for tracklist next/prev
         dtas-tl: halve write() syscalls when emitting tracklists
         reduce syscalls in recvmsg invocations
         doc: flesh out "tl" subcommand docs

   The best is yet to come!

* http://dtas.80x24.org/README
* http://dtas.80x24.org/INSTALL
* http://dtas.80x24.org/dtas-player.txt
* http://dtas.80x24.org/NEWS
* git clone git://80x24.org/dtas
* dtas-all@nongnu.org (plain-text only, no HTML mail, please)
* http://80x24.org/dtas-all/

* http://dtas.80x24.org/2014/dtas-0.9.0.tar.gz
  SHA-1 edbd256f4653eed70a52ee972e0e7b2e781fdfdf

* http://dtas.80x24.org/2014/dtas-0.9.0.gem
  SHA-1 41330a9374a2172482b85f27082a5624b72b30cd

-- 
EW


^ permalink raw reply	[relevance 6%]

* [PATCH 2/1] process: update comment for bug workaround #2
  2014-12-08  6:53  8% [PATCH] process: update comment for bug workaround Eric Wong
@ 2014-12-08  6:59 14% ` Eric Wong
  0 siblings, 0 replies; 3+ results
From: Eric Wong @ 2014-12-08  6:59 UTC (permalink / raw)
  To: dtas-all

Followup to commit 698e1f04580839ea29647f285b39b88fcbb46071
"process: update comment for bug workaround"
---
 lib/dtas/process.rb | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lib/dtas/process.rb b/lib/dtas/process.rb
index 020737d..c0ce9a3 100644
--- a/lib/dtas/process.rb
+++ b/lib/dtas/process.rb
@@ -78,7 +78,8 @@ module DTAS::Process # :nodoc:
     env = env_expand(env, opts)
     pid = begin
       Process.spawn(env, *cmd, opts)
-    rescue Errno::EINTR # Ruby bug?
+    rescue Errno::EINTR
+      # workaround for older Rubies https://bugs.ruby-lang.org/issues/8770
       retry
     end
     w.close
-- 
EW

^ permalink raw reply related	[relevance 14%]

* [PATCH] process: update comment for bug workaround
@ 2014-12-08  6:53  8% Eric Wong
  2014-12-08  6:59 14% ` [PATCH 2/1] process: update comment for bug workaround #2 Eric Wong
  0 siblings, 1 reply; 3+ results
From: Eric Wong @ 2014-12-08  6:53 UTC (permalink / raw)
  To: dtas-all; +Cc: Eric Wong

We're certain this is a workaround for a bug.  We may remove the
workaround at some point in the future; but not until the rest of
the world has had a chance to upgrade, too.
---
 lib/dtas/process.rb | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lib/dtas/process.rb b/lib/dtas/process.rb
index d70e6e5..020737d 100644
--- a/lib/dtas/process.rb
+++ b/lib/dtas/process.rb
@@ -49,7 +49,8 @@ module DTAS::Process # :nodoc:
 
     pid = begin
       Process.spawn(env, cmd, opts)
-    rescue Errno::EINTR # Ruby bug?
+    rescue Errno::EINTR
+      # workaround for older Rubies https://bugs.ruby-lang.org/issues/8770
       retry
     end
     warn [ :spawn, pid, cmd ].inspect if $DEBUG
-- 
EW


^ permalink raw reply related	[relevance 8%]

Results 1-3 of 3 | reverse | options above
-- pct% links below jump to the message on this page, permalinks otherwise --
2014-12-08  6:53  8% [PATCH] process: update comment for bug workaround Eric Wong
2014-12-08  6:59 14% ` [PATCH 2/1] process: update comment for bug workaround #2 Eric Wong
2014-12-22  9:26  6% [ANN] dtas 0.9.0 - duct tape audio suite for *nix Eric Wong

Code repositories for project(s) associated with this public inbox

	https://80x24.org/dtas.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).