From d7dc7847652ca100bee608990d5edbd042a3dc6b Mon Sep 17 00:00:00 2001 From: "yakumo.izuru" Date: Thu, 17 Apr 2025 13:47:57 +0000 Subject: [PATCH] =?UTF-8?q?=E6=B1=BA=E3=81=97=E3=81=A6=E7=99=BA=E8=A6=8B?= =?UTF-8?q?=E3=81=95=E3=82=8C=E3=81=A6=E3=81=AF=E3=81=AA=E3=82=89=E3=81=AA?= =?UTF-8?q?=E3=81=84=E5=B7=BB=E7=89=A9=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: file:///srv/svn/repo/kosuzu/trunk@77 eb64cd80-c68d-6f47-b6a3-0ada418499da --- Makefile | 3 +-- README.md | 12 ++++++++++-- TODO.md | 3 --- cmd/txt/txt.ml | 4 +--- cmd/txt_init/txt_init.ml | 1 + dune-project | 9 ++++----- kosuzu.opam | 9 ++++----- 7 files changed, 21 insertions(+), 20 deletions(-) delete mode 100644 TODO.md diff --git a/Makefile b/Makefile index 1baf879..2b5b232 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,6 @@ OS=`uname -s` MACHINE=`uname -m` DATE=`date -r _build/default/cmd/txt/txt.exe +%Y%m%d` -COMMIT=`git rev-parse --short HEAD` PREFIX=/usr/local CC=cc @@ -19,7 +18,7 @@ dist: @dune build @cp _build/default/cmd/txt/txt.exe txt.exe @strip txt.exe - @tar czvf "kosuzu-${OS}-${MACHINE}-${DATE}-${COMMIT}" txt.exe readme.txt + @tar czvf "kosuzu-${OS}-${MACHINE}-${DATE}" txt.exe LICENSE README.md @rm txt.exe txt_init: diff --git a/README.md b/README.md index 700fb9c..cd1a8d3 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,13 @@ # Kosuzu Text archival and exchange, named after [Kosuzu Motoori](https://en.touhouwiki.net/wiki/Kosuzu_Motoori) from [Forbidden Scrollery](https://en.touhouwiki.net/wiki/Forbidden_Scrollery). -## Contact -* [Mailing list](mailto:kosuzu-dev@chaotic.ninja) +Homepage: https://suzunaan.yakumo.dev/kosuzu/ + +## Differences from Logarion +* Uses the known latest Cmdliner revision, instead of relying on an older revision +* A `txt_init` program in the spirit of the old subcommand from years past +* Due to the current maintainer's decision, this project isn't hosted on Git anymore (but there is a [mirror](https://git.yakumo.dev/yakumo.izuru/kosuzu) available) + +## To-do +* Support [geomyidae](gopher://bitreich.org/1/scm/geomyidae) `.gph` indexes, for now those can be generated manually somewhat +* Support tab-separated value gophermaps for any other gopher daemon diff --git a/TODO.md b/TODO.md deleted file mode 100644 index f289c40..0000000 --- a/TODO.md +++ /dev/null @@ -1,3 +0,0 @@ -# To-do -* Support [geomyidae](gopher://bitreich.org/1/scm/geomyidae) `.gph` indexes, for now those can be generated manually somewhat -* Support tab-separated value gophermaps for any other gopher daemon diff --git a/cmd/txt/txt.ml b/cmd/txt/txt.ml index a105d3c..9e022d1 100644 --- a/cmd/txt/txt.ml +++ b/cmd/txt/txt.ml @@ -23,9 +23,7 @@ let txt = let man = [ `S Manpage.s_authors; `P "orbifx "; - `P "Izuru Yakumo "; - `S Manpage.s_bugs; - `P "Please report them at "; + `P "Izuru Yakumo "; `S Manpage.s_see_also; `P "This program is named after Kosuzu Motoori from Touhou Suzunaan: Forbidden Scrollery"; `P "https://en.touhouwiki.net/wiki/Forbidden_Scrollery" ] diff --git a/cmd/txt_init/txt_init.ml b/cmd/txt_init/txt_init.ml index 30b9c53..078efbd 100644 --- a/cmd/txt_init/txt_init.ml +++ b/cmd/txt_init/txt_init.ml @@ -1,3 +1,4 @@ +(* $Id$ *) let init_repo = print_endline "Initializing repository..."; print_endline "It's required for the repository name and id."; diff --git a/dune-project b/dune-project index 6603f46..4a205e7 100644 --- a/dune-project +++ b/dune-project @@ -1,12 +1,11 @@ (lang dune 2.0) (name kosuzu) -(version 1.4.3) +(version 1.4.4) (license EUPL-1.2) (authors "orbifx ") -(bug_reports "mailto:kosuzu-dev@chaotic.ninja") -(maintainers "Izuru Yakumo ") -(homepage "https://suzunaan.chaotic.ninja/kosuzu/") -(source (uri git+https://git.chaotic.ninja/yakumo.izuru/kosuzu)) +(maintainers "Izuru Yakumo ") +(homepage "https://suzunaan.yakumo.dev/kosuzu/") +(source (uri svn+https://svn.yakumo.dev/yakumo.izuru/kosuzu)) (generate_opam_files true) diff --git a/kosuzu.opam b/kosuzu.opam index 550e165..f42194a 100644 --- a/kosuzu.opam +++ b/kosuzu.opam @@ -1,12 +1,11 @@ # This file is generated by dune, edit dune-project instead opam-version: "2.0" -version: "1.4.3" +version: "1.4.4" synopsis: "Texts archival and exchange" -maintainer: ["Izuru Yakumo "] +maintainer: ["Izuru Yakumo "] authors: ["orbifx "] license: "EUPL-1.2" -homepage: "https://suzunaan.chaotic.ninja/kosuzu/" -bug-reports: "mailto:kosuzu-dev@chaotic.ninja" +homepage: "https://suzunaan.yakumo.dev/kosuzu/" depends: ["ocaml" "dune" "ocurl" "msgpck" "cmdliner"] build: [ ["dune" "subst"] {pinned} @@ -22,4 +21,4 @@ build: [ "@doc" {with-doc} ] ] -dev-repo: "git+https://git.chaotic.ninja/yakumo.izuru/kosuzu" +dev-repo: "svn+https://svn.yakumo.dev/yakumo.izuru/kosuzu"