GNU Emacs30.0.50に含まれるjava/INSTALL
にしたがってパッチを適用したlibxml2モジュール)のレポジトリ。
- Google Gitのlibxml2をclone
$: git clone https://android.googlesource.com/platform/external/libxml2/
nougat-release
ブランチから修正用ブランチmy/nougat-release
をcheckout
$: cd libxml2
$: git checkout nougat-release
$: git checkout -b my/nougat-release
java/INSTALL
にしたがいHTMLサポートを削除するコミットedb5870767fed8712a9b77ef34097209b61ab2dbをrevert1
$: git revert edb5870767fed8712a9b77ef34097209b61ab2db
java/INSTALL
にしたがいpatchを適用
$: patch -p1 < PATCH_FOR_LIBXML2.patch
- 上記patch ファイルとpatch適用後ファイルをcommitして空レポジトリにpush
$: git add -A
$: git commit -m 'nanika commit messages...'
$: gh repo create my-libxml2 --public
$: git remote add mine https://github.com/JIBUN/my-libxml2.git
$: git branch -M my/nougat-release
$: git push -u mine my/nougat-release
Footnotes
-
このrevertによってHTMLサポートを復活させないと、少なくともewwは動かなかったです。 ↩