Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Python client for GStreamer Daemon #39

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions recipes-multimedia/gstreamer/pygstc/0001-Link-license-file.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
From e3283cd0b6505b07785b385058d1524b70e1efb4 Mon Sep 17 00:00:00 2001
From: Greivin Fallas <greivin.fallas@ridgerun.com>
Date: Mon, 20 Apr 2020 20:01:55 -0600
Subject: [PATCH] Link license file in sources folder

---
libgstc/COPYING | 1 +
1 file changed, 1 insertion(+)
create mode 120000 COPYING

diff --git a/COPYING b/COPYING
new file mode 120000
index 0000000..012065c
--- /dev/null
+++ b/COPYING
@@ -0,0 +1 @@
+../COPYING
\ No newline at end of file
--
2.7.4

22 changes: 22 additions & 0 deletions recipes-multimedia/gstreamer/pygstc_1.0.bb
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
SUMMARY = "Python client package to interact with GStreamer Daemon 1.0"
DESCRIPTION = "Python client package for controlling audio and video streaming using TCP connection messages"
HOMEPAGE = "https://developer.ridgerun.com/wiki/index.php?title=Gstd-1.0"
SECTION = "multimedia"
LICENSE = "GPLv2+"

LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"

DEPENDS = "python3 python3-pip gstd"

SRCBRANCH ?= "master"
SRCREV = "d27418bedd2d8356f703ee3039ca8ac1f0762f67"
SRC_URI = "git://github.com/RidgeRun/gstd-1.x.git;protocol=https;branch=${SRCBRANCH} \
file://0001-Link-license-file.patch \
"

S = "${WORKDIR}/git/libgstc"

SRCNAME = "pygstc"

inherit setuptools3