-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
284 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,5 +34,5 @@ jobs: | |
run: sudo make install | ||
- name: List Pipelines Verification | ||
run: | | ||
gstd | ||
gstd -e | ||
gstd-client list_pipelines |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ SUBDIRS=gstd \ | |
libgstc \ | ||
tests \ | ||
examples \ | ||
docs | ||
docs \ | ||
init | ||
|
||
EXTRA_DIST=autogen.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
gstd (0.12.0-1) unstable; urgency=medium | ||
|
||
* Inint scripts support | ||
* Fix race condition in GstdList | ||
|
||
-- RidgeRun Engineering <[email protected]> Mon, 08 Mar 2021 08:00:00 -0600 | ||
|
||
gstd (0.11.3-1) unstable; urgency=medium | ||
|
||
* Fix Javascript library for Gstd | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,4 @@ | |
# $1 mode | ||
# $2 file | ||
|
||
chmod $1 "${DESTDIR}/${MESON_INSTALL_PREFIX}/$2" | ||
chmod $1 $2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
if WITH_SYSTEMD | ||
#Install service | ||
systemd_servicedir = @GSTD_SYSTEMD_DIR@ | ||
systemd_service_DATA = gstd.service | ||
systemd_service_SCRIPTS = gstd-check-user-xenv.sh | ||
endif | ||
|
||
if WITH_INITD | ||
#Install the script | ||
initd_scriptdir = @GSTD_INITD_DIR@ | ||
initd_script_SCRIPTS = gstd | ||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/sh | ||
|
||
if [ -z "$DISPLAY" ] || [ -z "$XAUTHORITY" ] | ||
then | ||
exit 1 | ||
fi | ||
|
||
systemctl --user import-environment DISPLAY XAUTHORITY |
Oops, something went wrong.