copykitku project config and patch hook

merge-requests/5/head
Laura Liberda 2021-02-24 11:26:54 +01:00
parent eb0891a824
commit 1c3ca4fe2c
2 changed files with 26 additions and 0 deletions

5
.copykitkurc.toml Normal file
View File

@ -0,0 +1,5 @@
# https://git.sakamoto.pl/laudompat/copykitku
dest = "https://git.sakamoto.pl/laudompat/haruhi-dl"
patchHook = "devscripts/copykitku-patch-hook.js"

View File

@ -0,0 +1,21 @@
#!/usr/bin/env node
// patch hook for https://git.sakamoto.pl/laudompat/copykitku
module.exports = function patchHook(patchContent) {
[
[/youtube_dl/g, 'haruhi_dl'],
[/youtube-dl/g, 'haruhi-dl'],
[/youtubedl/g, 'haruhidl'],
[/YoutubeDL/g, 'HaruhiDL'],
[/ytdl/g, 'hdl'],
[/(?:youtube-|yt-?)dl\.org/g, 'haruhi.download'],
[/yt-dl/g, 'h-dl'],
// prevent from linking to non-existent repository
[/github\.com\/ytdl-org\/haruhi-dl/g, 'github.com/ytdl-org/youtube-dl'],
// prevent changing the smuggle URLs (for compatibility with ytdl)
[/__haruhidl_smuggle/g, '__youtubedl_smuggle'],
].forEach(([regex, replacement]) => patchContent = patchContent.replace(regex, replacement));
return patchContent;
}