Browse Source

fix git.zrythm.org URLs

use_builds_script
Alexandros Theodotou 2 years ago
parent
commit
0a0c55cb56
Signed by: alex
GPG Key ID: 022EAE42313D70F3
  1. 2
      .gitmodules
  2. 2
      debian/copyright
  3. 2
      ext/cerbero
  4. 2
      meson.build
  5. 2
      sources/meson.build
  6. 4
      tools/gen_osx_installer_brew.sh

2
.gitmodules vendored

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
[submodule "ext/cerbero"]
path = ext/cerbero
url = https://git.zrythm.org/git/cerbero.git
url = https://git.zrythm.org/alex/cerbero.git
branch = zrythm
[submodule "ext/macos-installer-builder"]
path = ext/macos-installer-builder

2
debian/copyright vendored

@ -1,7 +1,7 @@ @@ -1,7 +1,7 @@
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: zrythm
Upstream-Contact: Alexandros Theodotou <alex@zrythm.org>
Source: https://git.zrythm.org/cgit/zrythm
Source: https://git.zrythm.org/zrythm/zrythm
Files: *
Copyright: Copyright 2018-2019 Alexandros Theodotou <alex@zrythm.org>

2
ext/cerbero

@ -1 +1 @@ @@ -1 +1 @@
Subproject commit ccc59adc930f26709cebab41ab8da0498b93b884
Subproject commit 1addf70339e2e2000fe8154eabf952a906202d6e

2
meson.build

@ -40,7 +40,7 @@ lsp_dsp_lib_ver = get_option ('lsp-dsp-lib-ver') @@ -40,7 +40,7 @@ lsp_dsp_lib_ver = get_option ('lsp-dsp-lib-ver')
build_trial = get_option ('build-trial')
orig_inner_dir_name = 'zrythm-' + zrythm_git_ver
orig_zrythm_src_tarball_filename = orig_inner_dir_name + '.tar.gz'
orig_zrythm_src_tarball_url = 'https://git.zrythm.org/cgit/zrythm/snapshot/' + orig_zrythm_src_tarball_filename
orig_zrythm_src_tarball_url = 'https://git.zrythm.org/zrythm/zrythm/archive/' + zrythm_git_ver + '.tar.gz'
zrythm_inner_dir_name = 'zrythm-' + zrythm_pkg_ver
zrythm_src_tarball_filename = zrythm_inner_dir_name + '.tar.gz'
zplugins_src_tarball_filename = 'zplugins-' + zplugins_ver + '.tar.gz'

2
sources/meson.build

@ -65,7 +65,7 @@ carla_src_zip = custom_target ( @@ -65,7 +65,7 @@ carla_src_zip = custom_target (
install: false,
)
url = 'https://git.zrythm.org/cgit/zplugins/snapshot/zplugins-' + zplugins_ver + '.tar.gz'
url = 'https://git.zrythm.org/zrythm/zplugins/archive/v' + zplugins_ver + '.tar.gz'
zplugins_src_tarball = custom_target (
'zplugins-source-tarball',
output: zplugins_src_tarball_filename,

4
tools/gen_osx_installer_brew.sh

@ -12,12 +12,12 @@ if [ "$bottle_or_zip" = "bottle" ]; then @@ -12,12 +12,12 @@ if [ "$bottle_or_zip" = "bottle" ]; then
bottle_filename="$(basename $bottle_file)"
formula_file=$3
tarball=$4
tarball_filename="$(git ls-remote https://git.zrythm.org/git/zrythm | grep HEAD | awk '{print $1}').tar.gz"
tarball_filename="$(git ls-remote https://git.zrythm.org/zrythm/zrythm | grep HEAD | awk '{print $1}').tar.gz"
zrythm_version=$5
carla_version=$6
carla_bottle_ver=$7
wget https://git.zrythm.org/cgit/zrythm/snapshot/$tarball_filename
wget https://git.zrythm.org/zrythm/zrythm/archive/$tarball_filename
# copy formula file to where it needs to be
if [[ "$bottle_filename" == *"rial"* ]]; then

Loading…
Cancel
Save