-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
T372458: Fix Wikibase build (patch to take submodules from github) (#753
) * fix: use submodules from github * fix: switch path * debug: do not build quiet * debug: patching * fix: install patch * Revert "debug: do not build quiet" This reverts commit fd60f03. * docs: document workaround * chore: cleanup
- Loading branch information
Showing
2 changed files
with
39 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
build/Wikibase/wikibase-submodules-from-github-instead-of-phabricator.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
diff --git a/.gitmodules b/.gitmodules | ||
index df41c768af..e9926d6ddd 100644 | ||
--- a/.gitmodules | ||
+++ b/.gitmodules | ||
@@ -3,13 +3,13 @@ | ||
url = https://gerrit.wikimedia.org/r/data-values/value-view | ||
[submodule "view/lib/wikibase-serialization"] | ||
path = view/lib/wikibase-serialization | ||
- url = https://phabricator.wikimedia.org/source/wikibase-serialization.git | ||
+ url = https://github.com/wmde/WikibaseSerializationJavaScript.git | ||
[submodule "view/lib/wikibase-data-values"] | ||
path = view/lib/wikibase-data-values | ||
- url = https://phabricator.wikimedia.org/source/datavalues-javascript.git | ||
+ url = https://github.com/wmde/DataValuesJavaScript.git | ||
[submodule "view/lib/wikibase-data-model"] | ||
path = view/lib/wikibase-data-model | ||
- url = https://phabricator.wikimedia.org/source/wikibase-data-model.git | ||
+ url = https://github.com/wmde/WikibaseDataModelJavaScript.git | ||
[submodule "view/lib/wikibase-termbox"] | ||
path = view/lib/wikibase-termbox | ||
url = https://gerrit.wikimedia.org/r/wikibase/termbox |