/my-libxml2

Primary LanguageCOtherNOASSERTION

libxml2

GNU Emacs30.0.50に含まれるjava/INSTALLにしたがってパッチを適用したlibxml2モジュール)のレポジトリ。

作成した手順

  1. Google Gitのlibxml2をclone
$: git clone https://android.googlesource.com/platform/external/libxml2/
  1. nougat-releaseブランチから修正用ブランチmy/nougat-releaseをcheckout
$: cd libxml2
$: git checkout nougat-release
$: git checkout -b my/nougat-release
  1. java/INSTALLにしたがいHTMLサポートを削除するコミットedb5870767fed8712a9b77ef34097209b61ab2dbをrevert1
$: git revert edb5870767fed8712a9b77ef34097209b61ab2db
  1. java/INSTALLにしたがいpatchを適用
$: patch -p1 < PATCH_FOR_LIBXML2.patch
  1. 上記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

  1. このrevertによってHTMLサポートを復活させないと、少なくともewwは動かなかったです。