packages feed

WAVE 0.1.1 → 0.1.2

raw patch · 4 files changed

+36/−34 lines, 4 filesdep ~basedep ~bytestringsetup-changedPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: base, bytestring

API changes (from Hackage documentation)

Files

− README
@@ -1,22 +0,0 @@-WAVE -- WAVE format audio file IO library-version 0.1-Bart Massey <bart@cs.pdx.edu>-8 March 2008--This library provides Data.WAVE, a module for reading and-writing audio files in the WAVE audio format.  See the-Haddock documentation for the gory details.--I have used this code with ghc 6.6 and ghc 6.8 on Linux,-although the current cabal setup has only been tested with-cabal 1.2 and ghc 6.8.  It is a fairly standard-Hackage-ready package, to the extent I know how to construct-such.--This is definitely a simple implementation: a number of-"advanced" WAVE features are not supported (such as-nonlinear encodings), and non-WAVE audio files are in no way-supported.  I thought others might find it useful, though; I-also have released other code that depends on it.--Have fun with it, and let me know if there are problems.
+ README.md view
@@ -0,0 +1,17 @@+# WAVE format audio file IO library+Copyright &copy; 2008-2014 Bart Massey++This library provides `Data.WAVE`, a module for reading and+writing audio files in the+[WAVE](http://en.wikipedia.org/wiki/WAV) audio file format.+See the Haddock documentation for the gory details.++This is definitely a simple implementation: a number of+"advanced" WAVE features are not supported (such as+nonlinear encodings), and non-WAVE audio files are in no way+supported.  I thought others might find it useful, though. I+also have released other code that depends on it.++This program is licensed under the "3-clause 'new' BSD+License". Please see the file `COPYING` in this distribution+for license terms.
Setup.hs view
@@ -1,7 +1,2 @@---- Copyright (C) 2007 Bart Massey---- ALL RIGHTS RESERVED---- Please see the file COPYING in this software---- distribution for license information.- import Distribution.Simple main = defaultMain
WAVE.cabal view
@@ -1,16 +1,28 @@ Name: WAVE-Description: Module for reading and writing audio files in the WAVE audio format.+Description: Module for reading and writing audio files in WAVE format. Build-Type: Simple-Version: 0.1.1+Version: 0.1.2 License: BSD3 License-File: COPYING Author: Bart Massey <bart@cs.pdx.edu>-Copyright: Copyright (C) 2007 Bart Massey+Copyright: Copyright (c) 2014 Bart Massey Maintainer: Bart Massey <bart@cs.pdx.edu>-Homepage: http://wiki.cs.pdx.edu/bartforge/truelevel+Homepage: http://github.com/BartMassey/WAVE Category: Data, Sound-Build-Depends: base, bytestring Synopsis: WAVE audio file IO library-Exposed-Modules: Data.WAVE Stability: Alpha-Extra-Source-Files: README+Extra-Source-Files: README.md+Cabal-Version: >=1.6++Library+  Exposed-Modules: Data.WAVE+  Build-Depends: base >=4&&<5, bytestring>=0.10&&<1++Source-repository head+  Type: git+  Location: https://github.com/BartMassey/WAVE.git++Source-repository this+  Type: git+  Location: https://github.com/BartMassey/WAVE.git+  Tag: v0.1.2