packages feed

kafka-device-spacenav 0.2.1.2 → 1.0.0.0

raw patch · 7 files changed

+78/−53 lines, 7 filesdep ~aesondep ~basedep ~binaryPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: aeson, base, binary, bytestring, cereal, kafka-device, yaml

API changes (from Hackage documentation)

Files

+ default.nix view
@@ -0,0 +1,20 @@+{+  mkDerivation, stdenv+, aeson, base, binary, bytestring, cereal, kafka-device, yaml+}:++mkDerivation {+  pname = "kafka-device-spacenav";+  version = "1.0.0.0";+  src = ./.;+  isLibrary = true;+  isExecutable = true;+  libraryHaskellDepends = [+    aeson base binary bytestring cereal kafka-device yaml+  ];+  executableHaskellDepends = [+  ];+  homepage = "https://bitbucket.org/functionally/kafka-device-spacenav";+  description = "Linux SpaceNavigator events via a Kafka message broker";+  license = stdenv.lib.licenses.mit;+}
kafka-device-spacenav.cabal view
@@ -1,51 +1,56 @@-name:                kafka-device-spacenav-version:             0.2.1.2-synopsis:            Linux SpaceNavigator events via a Kafka message broker-description:         This package contains functions for passing Linux device events from a SpaceNavigator \<<http://www.3dconnexion.com/products/spacemouse/spacenavigator.html>\> to topics on a Kafka message broker \<<https://kafka.apache.org/>\>.  Also see \<<https://hackage.haskell.org/package/kafka-device/>\>.-license:             MIT-license-file:        LICENSE-author:              Brian W Bush <consult@brianwbush.info>-maintainer:          Brian W Bush <consult@brianwbush.info>-copyright:           (c) 2016-17 Brian W Bush-category:            Hardware-build-type:          Simple-cabal-version:       >= 1.10-stability:           Experimental-homepage:            https://bitbucket.org/functionally/kafka-device-spacenav-bug-reports:         https://bwbush.atlassian.net/projects/HKAFDEV/issues/-package-url:         https://bitbucket.org/functionally/kafka-device-spacenav/downloads/kafka-device-spacenav-$version.tar.gz+name         : kafka-device-spacenav+version      : 1.0.0.0+synopsis     : Linux SpaceNavigator events via a Kafka message broker+description  : This package contains functions for passing Linux device events from a SpaceNavigator \<<http://www.3dconnexion.com/products/spacemouse/spacenavigator.html>\> to topics on a Kafka message broker \<<https://kafka.apache.org/>\>.  Also see \<<https://hackage.haskell.org/package/kafka-device/>\>.+license      : MIT+license-file : LICENSE+author       : Brian W Bush <code@functionally.io>+maintainer   : Brian W Bush <code@functionally.io>+copyright    : (c) 2016-19 Brian W Bush+category     : Hardware+build-type   : Simple+cabal-version: >= 1.10+stability    : Production+homepage     : https://bitbucket.org/functionally/kafka-device-spacenav+bug-reports  : https://bwbush.atlassian.net/projects/HKAFDEV/issues/+package-url  : https://bitbucket.org/functionally/kafka-device-spacenav/downloads/kafka-device-spacenav-$version.tar.gz -extra-source-files:  ReadMe.md-                     sample.yaml+extra-source-files: ReadMe.md+                    default.nix+                    sample.yaml  source-repository head-  type: git+  type    : git   location: https://bitbucket.org/functionally/kafka-device-spacenav   library-  exposed-modules:  Network.UI.Kafka.SpaceNav+  exposed-modules : Network.UI.Kafka.SpaceNav                     Network.UI.Kafka.SpaceNav.Interpretation                     System.Hardware.Linux.Input                     System.Hardware.Linux.SpaceNav-  build-depends:    base         >= 4.8 && < 5-               ,    aeson        >= 0.11.3-               ,    binary       >= 0.7.2-               ,    bytestring   >= 0.10.6-               ,    cereal       >= 0.5.4-               ,    kafka-device >= 0.2.1.2-  hs-source-dirs:   src-  ghc-options:      -Wall+  build-depends   : base         >= 4.8 && < 5+                  , aeson        >= 1.3.1+                  , binary       >= 0.8.5.1+                  , bytestring   >= 0.10.8+                  , cereal       >= 0.5.7+                  , kafka-device >= 1.0.0+  hs-source-dirs  : src+  ghc-options     : -Wall   default-language: Haskell2010  executable kafka-device-spacenav-  main-is:          Main.hs-  build-depends:    base-               ,    aeson-               ,    binary-               ,    bytestring-               ,    cereal-               ,    kafka-device-               ,    yaml         >= 0.8.22-  hs-source-dirs:   src-  ghc-options:      -Wall+  main-is         : Main.hs+  other-modules   : Network.UI.Kafka.SpaceNav+                    Network.UI.Kafka.SpaceNav.Interpretation+                    System.Hardware.Linux.Input+                    System.Hardware.Linux.SpaceNav+  build-depends   : base         >= 4.8 && < 5+                  , aeson        >= 1.3.1+                  , binary       >= 0.8.5.1+                  , bytestring   >= 0.10.8+                  , cereal       >= 0.5.7+                  , kafka-device >= 1.0.0+                  , yaml         >= 0.8.32+  hs-source-dirs  : src+  ghc-options     : -Wall   default-language: Haskell2010
src/Main.hs view
@@ -1,9 +1,9 @@ {-| Module      :  $Header$-Copyright   :  (c) 2016-17 Brian W Bush+Copyright   :  (c) 2016-19 Brian W Bush License     :  MIT-Maintainer  :  Brian W Bush <consult@brianwbush.info>-Stability   :  Experimental+Maintainer  :  Brian W Bush <code@functionally.io>+Stability   :  Production Portability :  Linux  Produce events for a Kafka topic from a SpaceNavigator \<<http://www.3dconnexion.com/products/spacemouse/spacenavigator.html>\> on Linux.
src/Network/UI/Kafka/SpaceNav.hs view
@@ -1,9 +1,9 @@ {-| Module      :  $Header$-Copyright   :  (c) 2016-17 Brian W Bush+Copyright   :  (c) 2016-19 Brian W Bush License     :  MIT-Maintainer  :  Brian W Bush <consult@brianwbush.info>-Stability   :  Experimental+Maintainer  :  Brian W Bush <code@functionally.io>+Stability   :  Production Portability :  Linux  Produce events for a Kafka topic from a SpaceNavigator \<<http://www.3dconnexion.com/products/spacemouse/spacenavigator.html>\> on Linux.
src/Network/UI/Kafka/SpaceNav/Interpretation.hs view
@@ -1,9 +1,9 @@ {-| Module      :  $Header$-Copyright   :  (c) 2016-17 Brian W Bush+Copyright   :  (c) 2016-19 Brian W Bush License     :  MIT-Maintainer  :  Brian W Bush <consult@brianwbush.info>-Stability   :  Experimental+Maintainer  :  Brian W Bush <code@functionally.io>+Stability   :  Production Portability :  Linux  Produce interpreted events for a Kafka topic from a SpaceNavigator \<<http://www.3dconnexion.com/products/spacemouse/spacenavigator.html>\> on Linux.
src/System/Hardware/Linux/Input.hs view
@@ -1,9 +1,9 @@ {-| Module      :  $Header$-Copyright   :  (c) 2016-17 Brian W Bush+Copyright   :  (c) 2016-19 Brian W Bush License     :  MIT-Maintainer  :  Brian W Bush <consult@brianwbush.info>-Stability   :  Experimental+Maintainer  :  Brian W Bush <code@functionally.io>+Stability   :  Production Portability :  Linux  Parse events from Linux /dev/input streams.  See \<<https://github.com/torvalds/linux/blob/master/include/uapi/linux/input.h>\> for details.
src/System/Hardware/Linux/SpaceNav.hs view
@@ -1,9 +1,9 @@ {-| Module      :  $Header$-Copyright   :  (c) 2016-17 Brian W Bush+Copyright   :  (c) 2016-19 Brian W Bush License     :  MIT-Maintainer  :  Brian W Bush <consult@brianwbush.info>-Stability   :  Experimental+Maintainer  :  Brian W Bush <code@functionally.io>+Stability   :  Production Portability :  Linux  Interpret events from a SpaceNavigator \<<http://www.3dconnexion.com/products/spacemouse/spacenavigator.html>\>.