Skip to content
Snippets Groups Projects
Commit 327afa26 authored by Jenkins's avatar Jenkins
Browse files

submodules: update nightly branch

parents d7005305 46841cfd
No related branches found
No related tags found
No related merge requests found
client-gnome @ 14b2f97f
Subproject commit e5e70ca76c11324eb35df3cc1945361224e3b953 Subproject commit 14b2f97f95646e79eb1f25038ba4573f1439cb0a
daemon @ 51136fdc
Subproject commit 7286e6cb04906d46c00f7829d74f057d828f102f Subproject commit 51136fdc7c21e79e1e4674a3dc178b5d7561df2d
lrc @ 98a6f6dc
Subproject commit 564784bb62cc4128a2174d4744d38365d5a52bf4 Subproject commit 98a6f6dcbaa00724edd72b299a0e013217005abd
...@@ -31,6 +31,7 @@ win_toolset_default = '142' ...@@ -31,6 +31,7 @@ win_toolset_default = '142'
APT_BASED_DISTROS = [ APT_BASED_DISTROS = [
'debian', 'debian',
'ubuntu', 'ubuntu',
'trisquel',
'linuxmint', 'linuxmint',
'raspbian', 'raspbian',
] ]
...@@ -306,7 +307,7 @@ def run_dependencies(args): ...@@ -306,7 +307,7 @@ def run_dependencies(args):
sys.exit(1) sys.exit(1)
else: else:
print("Not yet implemented for current distribution (%s)" % print("Not yet implemented for current distribution (%s). Please continue with the --install instruction. Note: You may need to install some dependencies manually." %
args.distribution) args.distribution)
sys.exit(1) sys.exit(1)
...@@ -506,10 +507,9 @@ def validate_args(parsed_args): ...@@ -506,10 +507,9 @@ def validate_args(parsed_args):
+ ZYPPER_BASED_DISTROS + FLATPAK_BASED_RUNTIMES + ZYPPER_BASED_DISTROS + FLATPAK_BASED_RUNTIMES
if parsed_args.distribution not in supported_distros: if parsed_args.distribution not in supported_distros:
print('Distribution \'{0}\' not supported.\nChoose one of: {1}'.format( print('WARNING: Distribution \'{0}\' not supported.\nChoose one of: {1}'.format(
parsed_args.distribution, ', '.join(supported_distros) parsed_args.distribution, ', '.join(supported_distros)
), file=sys.stderr) ), file=sys.stderr)
sys.exit(1)
# The Qt client support will be added incrementally. # The Qt client support will be added incrementally.
if parsed_args.qt is not None: if parsed_args.qt is not None:
......
...@@ -99,6 +99,8 @@ layout: ...@@ -99,6 +99,8 @@ layout:
bind: $SNAP/gnome-platform/usr/lib/$SNAPCRAFT_ARCH_TRIPLET/webkit2gtk-4.0 bind: $SNAP/gnome-platform/usr/lib/$SNAPCRAFT_ARCH_TRIPLET/webkit2gtk-4.0
/usr/lib/$SNAPCRAFT_ARCH_TRIPLET/alsa-lib: /usr/lib/$SNAPCRAFT_ARCH_TRIPLET/alsa-lib:
bind: $SNAP/usr/lib/$SNAPCRAFT_ARCH_TRIPLET/alsa-lib bind: $SNAP/usr/lib/$SNAPCRAFT_ARCH_TRIPLET/alsa-lib
/usr/share/alsa:
bind: $SNAP/usr/share/alsa
/usr/local/share/jami-gnome: /usr/local/share/jami-gnome:
bind: $SNAP/usr/share/jami-gnome bind: $SNAP/usr/share/jami-gnome
...@@ -120,6 +122,7 @@ apps: ...@@ -120,6 +122,7 @@ apps:
- dbus-ring - dbus-ring
- dbus-jamignome - dbus-jamignome
plugs: plugs:
- alsa
- audio-playback - audio-playback
- audio-record - audio-record
- browser-support - browser-support
...@@ -137,17 +140,26 @@ apps: ...@@ -137,17 +140,26 @@ apps:
- wayland - wayland
- x11 - x11
package-repositories:
- type: apt
ppa: beineri/opt-qt-5.15.2-bionic
# qt515base consists of:
# Qt5Concurrent, Qt5Core, Qt5DBus, Qt5EglFSDeviceIntegration,
# Qt5EglFsKmsSupport, Qt5Gui, Qt5Network, Qt5OpenGL,
# Qt5PrintSupport, Qt5Sql, Qt5Test, Qt5Widgets, Qt5XcbQpa,
# Qt5Xml
parts: parts:
desktop-launch: desktop-launch:
source: https://github.com/ubuntu/snapcraft-desktop-helpers.git source: https://github.com/ubuntu/snapcraft-desktop-helpers.git
plugin: nil plugin: nil
build-packages: build-packages:
- gcc-8
- qtbase5-dev
- dpkg-dev - dpkg-dev
- gcc-8
- qt515base
stage-packages: stage-packages:
- libqt5gui5 - qt515base
- libqt5svg5 # for loading icon themes which are svg - qt515svg # for loading icon themes which are svg
- try: [appmenu-qt5] # not available on core18 - try: [appmenu-qt5] # not available on core18
override-pull: | override-pull: |
snapcraftctl pull snapcraftctl pull
...@@ -193,6 +205,7 @@ parts: ...@@ -193,6 +205,7 @@ parts:
stage-packages: stage-packages:
- libasound2 - libasound2
- libasound2-plugins - libasound2-plugins
- yad
jami: jami:
after: [alsa-mixin] after: [alsa-mixin]
...@@ -200,6 +213,12 @@ parts: ...@@ -200,6 +213,12 @@ parts:
source-type: local source-type: local
plugin: nil plugin: nil
parse-info: [usr/share/metainfo/jami-gnome.appdata.xml] parse-info: [usr/share/metainfo/jami-gnome.appdata.xml]
build-environment:
- QT_BASE_DIR: "/opt/qt515"
- QTDIR: "$QT_BASE_DIR"
- PATH: "$QT_BASE_DIR/bin:$PATH"
- LD_LIBRARY_PATH: "$QT_BASE_DIR/lib:$LD_LIBRARY_PATH"
- PKG_CONFIG_PATH: "$QT_BASE_DIR/lib/pkgconfig:$PKG_CONFIG_PATH"
override-pull: | override-pull: |
snapcraftctl pull snapcraftctl pull
sed -i -E 's|(tmpName) << (PACKAGE_NAME << "_shm_")|\1 << "snap.jami." << \2|' daemon/src/media/video/sinkclient.cpp sed -i -E 's|(tmpName) << (PACKAGE_NAME << "_shm_")|\1 << "snap.jami." << \2|' daemon/src/media/video/sinkclient.cpp
...@@ -292,8 +311,7 @@ parts: ...@@ -292,8 +311,7 @@ parts:
- libwebkit2gtk-4.0-dev - libwebkit2gtk-4.0-dev
- libyaml-cpp-dev - libyaml-cpp-dev
- nasm # seems to be needed for building libvpx on an 18.04 base - nasm # seems to be needed for building libvpx on an 18.04 base
- qtbase5-dev - qt515base
- qttools5-dev
- uuid-dev - uuid-dev
- yasm - yasm
stage-packages: stage-packages:
...@@ -316,11 +334,6 @@ parts: ...@@ -316,11 +334,6 @@ parts:
- libopus0 - libopus0
- libpcre3 - libpcre3
- libqrencode3 - libqrencode3
- libqt5core5a
- libqt5dbus5
- libqt5gui5
- libqt5sql5
- libqt5sql5-sqlite
- libsamplerate0 - libsamplerate0
- libslang2 - libslang2
- libsndfile1 - libsndfile1
...@@ -336,4 +349,5 @@ parts: ...@@ -336,4 +349,5 @@ parts:
- libva2 - libva2
- libvdpau-va-gl1 - libvdpau-va-gl1
- libvdpau1 - libvdpau1
- qt515base
- va-driver-all - va-driver-all
...@@ -29,7 +29,7 @@ cd /opt/ring-project/packaging/rules/snap/ ...@@ -29,7 +29,7 @@ cd /opt/ring-project/packaging/rules/snap/
# set the version and tarball filename # set the version and tarball filename
sed -i "s/RELEASE_VERSION/${RELEASE_VERSION}/g" snapcraft.yaml sed -i "s/RELEASE_VERSION/${RELEASE_VERSION}/g" snapcraft.yaml
snapcraft snapcraft --enable-experimental-package-repositories # requires snapcraft >= 4.4
# move the built snap to output # move the built snap to output
mv *.snap /opt/output/ mv *.snap /opt/output/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment