Browse Source

Don't use git://.

pull/15/head
Vladimír Vondruš 4 years ago
parent
commit
9d916eeae6
  1. 4
      doc/python/pages/building.rst
  2. 2
      package/archlinux/magnum-bindings-git/PKGBUILD
  3. 2
      package/homebrew/magnum-bindings.rb

4
doc/python/pages/building.rst

@ -58,7 +58,7 @@ the source tree.
.. code:: sh
git clone git://github.com/mosra/magnum-bindings && cd magnum-bindings
git clone https://github.com/mosra/magnum-bindings && cd magnum-bindings
cd package/archlinux
makepkg -fp PKGBUILD
@ -108,7 +108,7 @@ snapshot as a compressed archive or use the command line:
.. code:: sh
git clone git://github.com/mosra/magnum-bindings.git
git clone https://github.com/mosra/magnum-bindings.git
Assuming a Unix-based OS, the first step is to build the native libraries. The
bindings will be generated for all Corrade and Magnum libraries that are found,

2
package/archlinux/magnum-bindings-git/PKGBUILD

@ -10,7 +10,7 @@ depends=('magnum-git' 'python')
makedepends=('cmake' 'git' 'ninja' 'pybind11')
provides=('magnum-bindings')
conflicts=('magnum-bindings')
source=("git+git://github.com/mosra/magnum-bindings.git")
source=("git+https://github.com/mosra/magnum-bindings.git")
sha1sums=('SKIP')
pkgver() {

2
package/homebrew/magnum-bindings.rb

@ -4,7 +4,7 @@ class MagnumBindings < Formula
url "https://github.com/mosra/magnum-bindings/archive/v2020.06.tar.gz"
# wget https://github.com/mosra/magnum-bindings/archive/v2020.06.tar.gz -O - | sha256sum
sha256 "959c703e6409ba0c2cd6c0da3a2b6190f6fac837ff69f64cbdc372e11359e7d8"
head "git://github.com/mosra/magnum-bindings.git"
head "https://github.com/mosra/magnum-bindings.git"
depends_on "cmake"
depends_on "python"

Loading…
Cancel
Save