From 6867a707cb4cf5cd8763ddebedb0febee9293d03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Duraffort?= Date: Thu, 11 Feb 2010 10:08:22 +0100 Subject: [PATCH] Add all bindings as a submodule of the main vlc git tree. Some basic information about git submodule: * by default the submodules are not clone * by default the url for the submodules are git:// and not ssh://, the developpers must change this (just uncomment the right line in .gitmodules) to be able to commit to the bindings. Git commandes: * git submodule init => intialize the submodules * git submodule status => status of the submodules * git submodule update => update all submodules --- .gitmodules | 16 ++++++++++++++++ bindings/jvlc | 1 + bindings/libvlcpp | 1 + bindings/phonon | 1 + bindings/python | 1 + 5 files changed, 20 insertions(+) create mode 100644 .gitmodules create mode 160000 bindings/jvlc create mode 160000 bindings/libvlcpp create mode 160000 bindings/phonon create mode 160000 bindings/python diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000000..3885a64380 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,16 @@ +[submodule "bindings/libvlcpp"] + path = bindings/libvlcpp + url = git://git.videolan.org/vlc/bindings/libvlcpp.git +# url = git@git.videolan.org:vlc/bindings/libvlcpp.git +[submodule "bindings/jvlc"] + path = bindings/jvlc + url = git://git.videolan.org/vlc/bindings/jvlc.git +# url = git@git.videolan.org:vlc/bindings/jvlc.git +[submodule "bindings/python"] + path = bindings/python + url = git://git.videolan.org/vlc/bindings/python.git +# url = git@git.videolan.org:vlc/bindings/python.git +[submodule "bindings/phonon"] + path = bindings/phonon + url = git://git.videolan.org/vlc/bindings/phonon.git +# url = git@git.videolan.org:vlc/bindings/phonon.git diff --git a/bindings/jvlc b/bindings/jvlc new file mode 160000 index 0000000000..969cee2a12 --- /dev/null +++ b/bindings/jvlc @@ -0,0 +1 @@ +Subproject commit 969cee2a12b6ffc9e48ab50506abb85e0530f217 diff --git a/bindings/libvlcpp b/bindings/libvlcpp new file mode 160000 index 0000000000..377ad1ce94 --- /dev/null +++ b/bindings/libvlcpp @@ -0,0 +1 @@ +Subproject commit 377ad1ce94fea853329f92721489a353b15ad8c6 diff --git a/bindings/phonon b/bindings/phonon new file mode 160000 index 0000000000..918b7a8d88 --- /dev/null +++ b/bindings/phonon @@ -0,0 +1 @@ +Subproject commit 918b7a8d8892f480bd162e56e87be6dfea6e262e diff --git a/bindings/python b/bindings/python new file mode 160000 index 0000000000..391f6383e9 --- /dev/null +++ b/bindings/python @@ -0,0 +1 @@ +Subproject commit 391f6383e9568209c3242468c4179645708bdc39