* [Buildroot] [PATCH 1/3] package/kodi-peripheral-joystick: new package
@ 2017-05-07 11:32 Bernd Kuhls
2017-05-07 11:32 ` [Buildroot] [PATCH 2/3] package/kodi-peripheral-steamcontroller: " Bernd Kuhls
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Bernd Kuhls @ 2017-05-07 11:32 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/kodi-peripheral-joystick/Config.in | 11 +++++++++++
.../kodi-peripheral-joystick.hash | 2 ++
.../kodi-peripheral-joystick/kodi-peripheral-joystick.mk | 15 +++++++++++++++
package/kodi/Config.in | 4 ++++
4 files changed, 32 insertions(+)
create mode 100644 package/kodi-peripheral-joystick/Config.in
create mode 100644 package/kodi-peripheral-joystick/kodi-peripheral-joystick.hash
create mode 100644 package/kodi-peripheral-joystick/kodi-peripheral-joystick.mk
diff --git a/package/kodi-peripheral-joystick/Config.in b/package/kodi-peripheral-joystick/Config.in
new file mode 100644
index 0000000000..4175676182
--- /dev/null
+++ b/package/kodi-peripheral-joystick/Config.in
@@ -0,0 +1,11 @@
+config BR2_PACKAGE_KODI_PERIPHERAL_JOYSTICK
+ bool "kodi-peripheral-joystick"
+ depends on BR2_PACKAGE_HAS_UDEV
+ select BR2_PACKAGE_KODI_PLATFORM
+ help
+ Kodi joystick support (drivers and button maps)
+
+ https://github.com/xbmc/peripheral.joystick
+
+comment "joystick support needs udev /dev management"
+ depends on !BR2_PACKAGE_HAS_UDEV
diff --git a/package/kodi-peripheral-joystick/kodi-peripheral-joystick.hash b/package/kodi-peripheral-joystick/kodi-peripheral-joystick.hash
new file mode 100644
index 0000000000..ca2bdc378c
--- /dev/null
+++ b/package/kodi-peripheral-joystick/kodi-peripheral-joystick.hash
@@ -0,0 +1,2 @@
+# Locally computed
+sha256 c2025c4ec280b44b5d8bb1c34185a94cc105f66f0b762087804bb7d2d633d999 kodi-peripheral-joystick-v1.3.2.tar.gz
diff --git a/package/kodi-peripheral-joystick/kodi-peripheral-joystick.mk b/package/kodi-peripheral-joystick/kodi-peripheral-joystick.mk
new file mode 100644
index 0000000000..f0cad13a27
--- /dev/null
+++ b/package/kodi-peripheral-joystick/kodi-peripheral-joystick.mk
@@ -0,0 +1,15 @@
+################################################################################
+#
+# kodi-peripheral-joystick
+#
+################################################################################
+
+# This cset is on the branch 'Krypton'
+# When Kodi is updated, then this should be updated to the corresponding branch
+KODI_PERIPHERAL_JOYSTICK_VERSION = v1.3.2
+KODI_PERIPHERAL_JOYSTICK_SITE = $(call github,xbmc,peripheral.joystick,$(KODI_PERIPHERAL_JOYSTICK_VERSION))
+KODI_PERIPHERAL_JOYSTICK_LICENSE = GPL-2.0+
+KODI_PERIPHERAL_JOYSTICK_LICENSE_FILES = src/addon.cpp
+KODI_PERIPHERAL_JOYSTICK_DEPENDENCIES = kodi-platform udev
+
+$(eval $(cmake-package))
diff --git a/package/kodi/Config.in b/package/kodi/Config.in
index aef2aaf3e7..3f0cac684d 100644
--- a/package/kodi/Config.in
+++ b/package/kodi/Config.in
@@ -299,6 +299,10 @@ menu "Inputstream addons"
source "package/kodi-inputstream-rtmp/Config.in"
endmenu
+menu "Peripheral addons"
+ source "package/kodi-peripheral-joystick/Config.in"
+endmenu
+
menu "PVR addons"
source "package/kodi-pvr-argustv/Config.in"
source "package/kodi-pvr-dvblink/Config.in"
--
2.11.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 2/3] package/kodi-peripheral-steamcontroller: new package
2017-05-07 11:32 [Buildroot] [PATCH 1/3] package/kodi-peripheral-joystick: new package Bernd Kuhls
@ 2017-05-07 11:32 ` Bernd Kuhls
2017-05-07 11:32 ` [Buildroot] [PATCH 3/3] package/kodi-peripheral-xarcade: " Bernd Kuhls
2017-07-16 14:22 ` [Buildroot] [PATCH 1/3] package/kodi-peripheral-joystick: " Thomas Petazzoni
2 siblings, 0 replies; 4+ messages in thread
From: Bernd Kuhls @ 2017-05-07 11:32 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/kodi-peripheral-steamcontroller/Config.in | 8 ++++++++
.../kodi-peripheral-steamcontroller.hash | 2 ++
.../kodi-peripheral-steamcontroller.mk | 13 +++++++++++++
package/kodi/Config.in | 1 +
4 files changed, 24 insertions(+)
create mode 100644 package/kodi-peripheral-steamcontroller/Config.in
create mode 100644 package/kodi-peripheral-steamcontroller/kodi-peripheral-steamcontroller.hash
create mode 100644 package/kodi-peripheral-steamcontroller/kodi-peripheral-steamcontroller.mk
diff --git a/package/kodi-peripheral-steamcontroller/Config.in b/package/kodi-peripheral-steamcontroller/Config.in
new file mode 100644
index 0000000000..a994f4c9fb
--- /dev/null
+++ b/package/kodi-peripheral-steamcontroller/Config.in
@@ -0,0 +1,8 @@
+config BR2_PACKAGE_KODI_PERIPHERAL_STEAMCONTROLLER
+ bool "kodi-peripheral-steamcontroller"
+ select BR2_PACKAGE_KODI_PLATFORM
+ select BR2_PACKAGE_LIBUSB
+ help
+ Steam controller driver for Kodi
+
+ https://github.com/kodi-game/peripheral.steamcontroller
diff --git a/package/kodi-peripheral-steamcontroller/kodi-peripheral-steamcontroller.hash b/package/kodi-peripheral-steamcontroller/kodi-peripheral-steamcontroller.hash
new file mode 100644
index 0000000000..c0b3bf6e22
--- /dev/null
+++ b/package/kodi-peripheral-steamcontroller/kodi-peripheral-steamcontroller.hash
@@ -0,0 +1,2 @@
+# Locally computed
+sha256 d5547b78ba84c9743c884a9377c398b540bfcf23e467e1edf8be2625d400c205 kodi-peripheral-steamcontroller-ef527cd81cfcd6c8342691f5c764e5c51df1fca2.tar.gz
diff --git a/package/kodi-peripheral-steamcontroller/kodi-peripheral-steamcontroller.mk b/package/kodi-peripheral-steamcontroller/kodi-peripheral-steamcontroller.mk
new file mode 100644
index 0000000000..98cccc8520
--- /dev/null
+++ b/package/kodi-peripheral-steamcontroller/kodi-peripheral-steamcontroller.mk
@@ -0,0 +1,13 @@
+################################################################################
+#
+# kodi-peripheral-steamcontroller
+#
+################################################################################
+
+KODI_PERIPHERAL_STEAMCONTROLLER_VERSION = ef527cd81cfcd6c8342691f5c764e5c51df1fca2
+KODI_PERIPHERAL_STEAMCONTROLLER_SITE = $(call github,kodi-game,peripheral.steamcontroller,$(KODI_PERIPHERAL_STEAMCONTROLLER_VERSION))
+KODI_PERIPHERAL_STEAMCONTROLLER_LICENSE = GPL-2.0+
+KODI_PERIPHERAL_STEAMCONTROLLER_LICENSE_FILES = src/addon.cpp
+KODI_PERIPHERAL_STEAMCONTROLLER_DEPENDENCIES = kodi-platform libusb
+
+$(eval $(cmake-package))
diff --git a/package/kodi/Config.in b/package/kodi/Config.in
index 3f0cac684d..aac4b4463d 100644
--- a/package/kodi/Config.in
+++ b/package/kodi/Config.in
@@ -301,6 +301,7 @@ endmenu
menu "Peripheral addons"
source "package/kodi-peripheral-joystick/Config.in"
+ source "package/kodi-peripheral-steamcontroller/Config.in"
endmenu
menu "PVR addons"
--
2.11.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 3/3] package/kodi-peripheral-xarcade: new package
2017-05-07 11:32 [Buildroot] [PATCH 1/3] package/kodi-peripheral-joystick: new package Bernd Kuhls
2017-05-07 11:32 ` [Buildroot] [PATCH 2/3] package/kodi-peripheral-steamcontroller: " Bernd Kuhls
@ 2017-05-07 11:32 ` Bernd Kuhls
2017-07-16 14:22 ` [Buildroot] [PATCH 1/3] package/kodi-peripheral-joystick: " Thomas Petazzoni
2 siblings, 0 replies; 4+ messages in thread
From: Bernd Kuhls @ 2017-05-07 11:32 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/kodi-peripheral-xarcade/Config.in | 6 ++++++
.../kodi-peripheral-xarcade/kodi-peripheral-xarcade.hash | 2 ++
package/kodi-peripheral-xarcade/kodi-peripheral-xarcade.mk | 13 +++++++++++++
package/kodi/Config.in | 1 +
4 files changed, 22 insertions(+)
create mode 100644 package/kodi-peripheral-xarcade/Config.in
create mode 100644 package/kodi-peripheral-xarcade/kodi-peripheral-xarcade.hash
create mode 100644 package/kodi-peripheral-xarcade/kodi-peripheral-xarcade.mk
diff --git a/package/kodi-peripheral-xarcade/Config.in b/package/kodi-peripheral-xarcade/Config.in
new file mode 100644
index 0000000000..8d3c678523
--- /dev/null
+++ b/package/kodi-peripheral-xarcade/Config.in
@@ -0,0 +1,6 @@
+config BR2_PACKAGE_KODI_PERIPHERAL_XARCADE
+ bool "kodi-peripheral-xarcade"
+ help
+ X-Arcade Tankstick support for Kodi
+
+ https://github.com/kodi-game/peripheral.xarcade
diff --git a/package/kodi-peripheral-xarcade/kodi-peripheral-xarcade.hash b/package/kodi-peripheral-xarcade/kodi-peripheral-xarcade.hash
new file mode 100644
index 0000000000..48dc5a0415
--- /dev/null
+++ b/package/kodi-peripheral-xarcade/kodi-peripheral-xarcade.hash
@@ -0,0 +1,2 @@
+# Locally computed
+sha256 cd503e7f1413214693c28b59f19f3fffe0a54cff5c29d43b2eca9bb31c10edeb kodi-peripheral-xarcade-f1875ba4b7aa6ce85ec40fedf48ed5501c79e5fd.tar.gz
diff --git a/package/kodi-peripheral-xarcade/kodi-peripheral-xarcade.mk b/package/kodi-peripheral-xarcade/kodi-peripheral-xarcade.mk
new file mode 100644
index 0000000000..c4ddba3eb5
--- /dev/null
+++ b/package/kodi-peripheral-xarcade/kodi-peripheral-xarcade.mk
@@ -0,0 +1,13 @@
+################################################################################
+#
+# kodi-peripheral-xarcade
+#
+################################################################################
+
+KODI_PERIPHERAL_XARCADE_VERSION = f1875ba4b7aa6ce85ec40fedf48ed5501c79e5fd
+KODI_PERIPHERAL_XARCADE_SITE = $(call github,kodi-game,peripheral.xarcade,$(KODI_PERIPHERAL_XARCADE_VERSION))
+KODI_PERIPHERAL_XARCADE_LICENSE = GPL-2.0+
+KODI_PERIPHERAL_XARCADE_LICENSE_FILES = src/addon.cpp
+KODI_PERIPHERAL_XARCADE_DEPENDENCIES = kodi
+
+$(eval $(cmake-package))
diff --git a/package/kodi/Config.in b/package/kodi/Config.in
index aac4b4463d..79512170fb 100644
--- a/package/kodi/Config.in
+++ b/package/kodi/Config.in
@@ -302,6 +302,7 @@ endmenu
menu "Peripheral addons"
source "package/kodi-peripheral-joystick/Config.in"
source "package/kodi-peripheral-steamcontroller/Config.in"
+ source "package/kodi-peripheral-xarcade/Config.in"
endmenu
menu "PVR addons"
--
2.11.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 1/3] package/kodi-peripheral-joystick: new package
2017-05-07 11:32 [Buildroot] [PATCH 1/3] package/kodi-peripheral-joystick: new package Bernd Kuhls
2017-05-07 11:32 ` [Buildroot] [PATCH 2/3] package/kodi-peripheral-steamcontroller: " Bernd Kuhls
2017-05-07 11:32 ` [Buildroot] [PATCH 3/3] package/kodi-peripheral-xarcade: " Bernd Kuhls
@ 2017-07-16 14:22 ` Thomas Petazzoni
2 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2017-07-16 14:22 UTC (permalink / raw)
To: buildroot
Hello,
On Sun, 7 May 2017 13:32:03 +0200, Bernd Kuhls wrote:
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> ---
> package/kodi-peripheral-joystick/Config.in | 11 +++++++++++
> .../kodi-peripheral-joystick.hash | 2 ++
> .../kodi-peripheral-joystick/kodi-peripheral-joystick.mk | 15 +++++++++++++++
> package/kodi/Config.in | 4 ++++
> 4 files changed, 32 insertions(+)
> create mode 100644 package/kodi-peripheral-joystick/Config.in
> create mode 100644 package/kodi-peripheral-joystick/kodi-peripheral-joystick.hash
> create mode 100644 package/kodi-peripheral-joystick/kodi-peripheral-joystick.mk
Series applied. Thanks!
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2017-07-16 14:22 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-07 11:32 [Buildroot] [PATCH 1/3] package/kodi-peripheral-joystick: new package Bernd Kuhls
2017-05-07 11:32 ` [Buildroot] [PATCH 2/3] package/kodi-peripheral-steamcontroller: " Bernd Kuhls
2017-05-07 11:32 ` [Buildroot] [PATCH 3/3] package/kodi-peripheral-xarcade: " Bernd Kuhls
2017-07-16 14:22 ` [Buildroot] [PATCH 1/3] package/kodi-peripheral-joystick: " Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox