Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
v1993 committed Jun 12, 2024
1 parent e3a4a0e commit 83c9971
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 20 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
.flatpak-builder/
.flatpak/
.vscode/
.buildconfig
2 changes: 0 additions & 2 deletions flatpak/.gitignore

This file was deleted.

37 changes: 27 additions & 10 deletions flatpak/org.v1993.NXDumpClient.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
app-id: org.v1993.NXDumpClient
runtime: org.gnome.Platform
runtime-version: '45'
runtime-version: '46'
sdk: org.gnome.Sdk
command: nxdumpclient
finish-args:
Expand All @@ -20,11 +20,16 @@ modules:
- name: blueprint-compiler
buildsystem: meson
cleanup:
- "*"
- '*'
sources:
- type: git
url: https://gitlab.gnome.org/jwestman/blueprint-compiler
tag: v0.10.0
url: https://gitlab.gnome.org/jwestman/blueprint-compiler.git
tag: v0.12.0
commit: 66b43c36cf1017c878762007373964a096b3d2a5
x-checker-data:
type: git
tag-pattern: ^v([\d.]+)$
version-scheme: semantic

- name: libgusb
buildsystem: meson
Expand All @@ -44,12 +49,18 @@ modules:
- /share/man
- /share/pkgconfig
- /share/vala
- "*.la"
- "*.a"
- '*.la'
- '*.a'
sources:
- type: archive
url: https://github.com/hughsie/libgusb/releases/download/0.4.7/libgusb-0.4.7.tar.xz
sha256: 8acdd015c6f572555f8ec54c045e2d340baeb08468f6be519369c713794234f7
url: https://github.com/hughsie/libgusb/releases/download/0.4.9/libgusb-0.4.9.tar.xz
sha256: 9df5ef301d6a4b361002aa52cce1165a87a89744055879bdbab31e7e86f1e846
x-checker-data:
type: json
url: https://api.github.com/repos/hughsie/libgusb/releases/latest
version-query: .tag_name
url-query: .assets[] | select(.name=="libgusb-" + $version + ".tar.xz")
| .browser_download_url

- name: libportal
buildsystem: meson
Expand All @@ -70,12 +81,18 @@ modules:
- /share/man
- /share/pkgconfig
- /share/vala
- "*.la"
- "*.a"
- '*.la'
- '*.a'
sources:
- type: archive
url: https://github.com/flatpak/libportal/releases/download/0.7.1/libportal-0.7.1.tar.xz
sha256: 297b90b263fad22190a26b8c7e8ea938fe6b18fb936265e588927179920d3805
x-checker-data:
type: json
url: https://api.github.com/repos/flatpak/libportal/releases/latest
version-query: .tag_name
url-query: .assets[] | select(.name=="libportal-" + $version + ".tar.xz")
| .browser_download_url

- name: nxdumpclient
buildsystem: meson
Expand Down
2 changes: 1 addition & 1 deletion src/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ nxdc_sources += gnome.compile_resources('nxdumpclient-resources',
source_dir: [ nxdc_blueprints_build_dir, '..' / 'data' ]
)

has_gresource_fixes = false # meson.project_version() => '1.3.0' or whenever https://github.com/mesonbuild/meson/pull/12418 lands
has_gresource_fixes = meson.project_version() >= '1.4.0' # https://github.com/mesonbuild/meson/pull/12418

if not has_gresource_fixes
extra_vala_args += [ '--gresourcesdir', nxdc_blueprints_build_dir ]
Expand Down
10 changes: 4 additions & 6 deletions subprojects/blueprint-compiler.wrap
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
[wrap-file]
directory = blueprint-compiler-v0.10.0
source_url = https://gitlab.gnome.org/jwestman/blueprint-compiler/-/archive/v0.10.0/blueprint-compiler-v0.10.0.tar.gz
source_filename = blueprint-compiler-v0.10.0.tar.gz
source_hash = 2bc729b36897d0959a9890fb0997c9847aa9d2fc9356520bd8a46ed0b51ff4c0
source_fallback_url = https://github.com/mesonbuild/wrapdb/releases/download/blueprint-compiler_0.10.0-1/blueprint-compiler-v0.10.0.tar.gz
wrapdb_version = 0.10.0-1
directory = blueprint-compiler-v0.12.0
source_url = https://gitlab.gnome.org/jwestman/blueprint-compiler/-/archive/v0.12.0/blueprint-compiler-v0.12.0.tar.gz
source_filename = blueprint-compiler-v0.12.0.tar.gz
source_hash = 6dbb4ea851cec164030abded5949ea77ff92032e23527e1c0597d7efe0c36a81

[provide]
program_names = blueprint-compiler

0 comments on commit 83c9971

Please sign in to comment.