packages feed

ALUT 2.4.0.1 → 2.4.0.2

raw patch · 19 files changed

+99/−27 lines, 19 filesdep +ALUTdep +prettynew-component:exe:Basic-HelloWorldnew-component:exe:Basic-OpenALInfonew-component:exe:Basic-PlayFilenew-component:exe:TestSuite-TestErrorStuffnew-component:exe:TestSuite-TestFileLoadernew-component:exe:TestSuite-TestMemoryLoadernew-component:exe:TestSuite-TestVersionnew-component:exe:TestSuite-TestWaveformsPVP ok

version bump matches the API change (PVP)

Dependencies added: ALUT, pretty

API changes (from Hackage documentation)

Files

ALUT.cabal view
@@ -1,5 +1,5 @@ name: ALUT-version: 2.4.0.1+version: 2.4.0.2 synopsis: A binding for the OpenAL Utility Toolkit description:   A Haskell binding for the OpenAL Utility Toolkit, which makes@@ -9,7 +9,7 @@   <http://distro.ibiblio.org/rootlinux/rootlinux-ports/more/freealut/freealut-1.1.0/doc/alut.html>. homepage: https://github.com/haskell-openal/ALUT bug-reports: https://github.com/haskell-openal/ALUT/issues-copyright: Copyright (C) 2005-2015 Sven Panne+copyright: Copyright (C) 2005-2016 Sven Panne license: BSD3 license-file: LICENSE author: Sven Panne@@ -20,14 +20,6 @@ extra-source-files:   CHANGELOG.md   README.md-  examples/Basic/HelloWorld.hs-  examples/Basic/OpenALInfo.hs-  examples/Basic/PlayFile.hs-  examples/TestSuite/TestErrorStuff.hs-  examples/TestSuite/TestFileLoader.hs-  examples/TestSuite/TestMemoryLoader.hs-  examples/TestSuite/TestVersion.hs-  examples/TestSuite/TestWaveforms.hs   examples/TestSuite/file1.wav   examples/TestSuite/file2.au   examples/TestSuite/file3.raw@@ -37,6 +29,10 @@     When compiling under Windows, use the native libraries instead of e.g. the     ones coming with Cygwin. +flag BuildExamples+  description: Build various ALUT examples.+  default: False+ library   exposed-modules:     Sound.ALUT@@ -69,6 +65,78 @@       frameworks: ALUT     else       extra-libraries: alut++executable Basic-HelloWorld+  if !flag(BuildExamples)+    buildable: False+  main-is: HelloWorld.hs+  build-depends: base >= 3 && < 5, ALUT+  hs-source-dirs: examples/Basic+  default-language: Haskell2010+  ghc-options: -Wall++executable Basic-OpenALInfo+  if !flag(BuildExamples)+    buildable: False+  main-is: OpenALInfo.hs+  build-depends: base >= 3 && < 5, pretty, ALUT+  hs-source-dirs: examples/Basic+  default-language: Haskell2010+  ghc-options: -Wall++executable Basic-PlayFile+  if !flag(BuildExamples)+    buildable: False+  main-is: PlayFile.hs+  build-depends: base >= 3 && < 5, ALUT+  hs-source-dirs: examples/Basic+  default-language: Haskell2010+  ghc-options: -Wall++executable TestSuite-TestErrorStuff+  if !flag(BuildExamples)+    buildable: False+  main-is: TestErrorStuff.hs+  build-depends: base >= 3 && < 5, ALUT+  hs-source-dirs: examples/TestSuite+  default-language: Haskell2010+  ghc-options: -Wall++executable TestSuite-TestFileLoader+  if !flag(BuildExamples)+    buildable: False+  main-is: TestFileLoader.hs+  build-depends: base >= 3 && < 5, ALUT+  hs-source-dirs: examples/TestSuite+  default-language: Haskell2010+  ghc-options: -Wall++executable TestSuite-TestMemoryLoader+  if !flag(BuildExamples)+    buildable: False+  main-is: TestMemoryLoader.hs+  build-depends: base >= 3 && < 5, ALUT+  hs-source-dirs: examples/TestSuite+  default-language: Haskell2010+  ghc-options: -Wall++executable TestSuite-TestVersion+  if !flag(BuildExamples)+    buildable: False+  main-is: TestVersion.hs+  build-depends: base >= 3 && < 5, ALUT+  hs-source-dirs: examples/TestSuite+  default-language: Haskell2010+  ghc-options: -Wall++executable TestSuite-TestWaveforms+  if !flag(BuildExamples)+    buildable: False+  main-is: TestWaveforms.hs+  build-depends: base >= 3 && < 5, ALUT+  hs-source-dirs: examples/TestSuite+  default-language: Haskell2010+  ghc-options: -Wall  source-repository head   type: git
CHANGELOG.md view
@@ -1,3 +1,7 @@+2.4.0.2+-------+* Build examples via cabal.+ 2.4.0.1 ------- * Relaxed upper version bound for `transformers`.
LICENSE view
@@ -1,4 +1,4 @@-Copyright (c) 2005-2015, Sven Panne+Copyright (c) 2005-2016, Sven Panne All rights reserved.  Redistribution and use in source and binary forms, with or without
examples/Basic/HelloWorld.hs view
@@ -1,6 +1,6 @@ {-    HelloWorld.hs (adapted from hello_world.c in freealut)-   Copyright (c) Sven Panne 2005-2015+   Copyright (c) Sven Panne 2005-2016    This file is part of the ALUT package & distributed under a BSD-style license.    See the file LICENSE. -}
examples/Basic/OpenALInfo.hs view
@@ -1,6 +1,6 @@ {-    OpenALInfo.hs (modeled after OpenGL's glxinfo)-   Copyright (c) Sven Panne 2005-2015+   Copyright (c) Sven Panne 2005-2016    This file is part of the ALUT package & distributed under a BSD-style license.    See the file LICENSE. -}
examples/Basic/PlayFile.hs view
@@ -1,6 +1,6 @@ {-    PlayFile.hs (adapted from playfile.c in freealut)-   Copyright (c) Sven Panne 2005-2015+   Copyright (c) Sven Panne 2005-2016    This file is part of the ALUT package & distributed under a BSD-style license.    See the file LICENSE. -}
examples/TestSuite/TestErrorStuff.hs view
@@ -1,6 +1,6 @@ {-    TestErrorStuff.hs (adapted from test_errorstuff.c in freealut)-   Copyright (c) Sven Panne 2005-2015+   Copyright (c) Sven Panne 2005-2016    This file is part of the ALUT package & distributed under a BSD-style license.    See the file LICENSE. -}
examples/TestSuite/TestFileLoader.hs view
@@ -1,6 +1,6 @@ {-    TestFileLoader.hs (adapted from test_fileloader.c in freealut)-   Copyright (c) Sven Panne 2005-2015+   Copyright (c) Sven Panne 2005-2016    This file is part of the ALUT package & distributed under a BSD-style license.    See the file LICENSE. -}
examples/TestSuite/TestMemoryLoader.hs view
@@ -1,6 +1,6 @@ {-    TestMemoryLoader.hs (adapted from test_memoryloader.c in freealut)-   Copyright (c) Sven Panne 2005-2015+   Copyright (c) Sven Panne 2005-2016    This file is part of the ALUT package & distributed under a BSD-style license.    See the file LICENSE. -}
examples/TestSuite/TestVersion.hs view
@@ -1,6 +1,6 @@ {-    TestVersion.hs (adapted from test_version.c in freealut)-   Copyright (c) Sven Panne 2005-2015+   Copyright (c) Sven Panne 2005-2016    This file is part of the ALUT package & distributed under a BSD-style license.    See the file LICENSE. -}
examples/TestSuite/TestWaveforms.hs view
@@ -1,6 +1,6 @@ {-    TestWaveforms.hs (adapted from test_waveforms.c in freealut)-   Copyright (c) Sven Panne 2005-2015+   Copyright (c) Sven Panne 2005-2016    This file is part of the ALUT package & distributed under a BSD-style license.    See the file LICENSE. -}
src/Sound/ALUT.hs view
@@ -1,7 +1,7 @@ -------------------------------------------------------------------------------- -- | -- Module      :  Sound.ALUT--- Copyright   :  (c) Sven Panne 2005-2015+-- Copyright   :  (c) Sven Panne 2005-2016 -- License     :  BSD3 -- -- Maintainer  :  Sven Panne <svenpanne@gmail.com>
src/Sound/ALUT/Config.hs view
@@ -3,7 +3,7 @@ -------------------------------------------------------------------------------- -- | -- Module      :  Sound.ALUT.Config--- Copyright   :  (c) Sven Panne 2005-2015+-- Copyright   :  (c) Sven Panne 2005-2016 -- License     :  BSD3 -- -- Maintainer  :  Sven Panne <svenpanne@gmail.com>
src/Sound/ALUT/Constants.hs view
@@ -2,7 +2,7 @@ -------------------------------------------------------------------------------- -- | -- Module      :  Sound.ALUT.Constants--- Copyright   :  (c) Sven Panne 2005-2015+-- Copyright   :  (c) Sven Panne 2005-2016 -- License     :  BSD3 -- -- Maintainer  :  Sven Panne <svenpanne@gmail.com>
src/Sound/ALUT/Errors.hs view
@@ -2,7 +2,7 @@ -------------------------------------------------------------------------------- -- | -- Module      :  Sound.ALUT.Errors--- Copyright   :  (c) Sven Panne 2005-2015+-- Copyright   :  (c) Sven Panne 2005-2016 -- License     :  BSD3 -- -- Maintainer  :  Sven Panne <svenpanne@gmail.com>
src/Sound/ALUT/Initialization.hs view
@@ -1,7 +1,7 @@ -------------------------------------------------------------------------------- -- | -- Module      :  Sound.ALUT.Initialization--- Copyright   :  (c) Sven Panne 2005-2015+-- Copyright   :  (c) Sven Panne 2005-2016 -- License     :  BSD3 -- -- Maintainer  :  Sven Panne <svenpanne@gmail.com>
src/Sound/ALUT/Loaders.hs view
@@ -1,7 +1,7 @@ -------------------------------------------------------------------------------- -- | -- Module      :  Sound.ALUT.Loaders--- Copyright   :  (c) Sven Panne 2005-2015+-- Copyright   :  (c) Sven Panne 2005-2016 -- License     :  BSD3 -- -- Maintainer  :  Sven Panne <svenpanne@gmail.com>
src/Sound/ALUT/Sleep.hs view
@@ -1,7 +1,7 @@ -------------------------------------------------------------------------------- -- | -- Module      :  Sound.ALUT.Sleep--- Copyright   :  (c) Sven Panne 2005-2015+-- Copyright   :  (c) Sven Panne 2005-2016 -- License     :  BSD3 -- -- Maintainer  :  Sven Panne <svenpanne@gmail.com>
src/Sound/ALUT/Version.hs view
@@ -1,7 +1,7 @@ -------------------------------------------------------------------------------- -- | -- Module      :  Sound.ALUT.Version--- Copyright   :  (c) Sven Panne 2005-2015+-- Copyright   :  (c) Sven Panne 2005-2016 -- License     :  BSD3 -- -- Maintainer  :  Sven Panne <svenpanne@gmail.com>