- Timestamp:
- Apr 17, 2025, 1:47:57 PM (4 days ago)
- Location:
- trunk
- Files:
-
- 9 deleted
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile
r73 r77 2 2 MACHINE=`uname -m` 3 3 DATE=`date -r _build/default/cmd/txt/txt.exe +%Y%m%d` 4 COMMIT=`git rev-parse --short HEAD`5 4 PREFIX=/usr/local 6 5 … … 20 19 @cp _build/default/cmd/txt/txt.exe txt.exe 21 20 @strip txt.exe 22 @tar czvf "kosuzu-${OS}-${MACHINE}-${DATE} -${COMMIT}" txt.exe readme.txt21 @tar czvf "kosuzu-${OS}-${MACHINE}-${DATE}" txt.exe LICENSE README.md 23 22 @rm txt.exe 24 23 -
trunk/README.md
r76 r77 2 2 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). 3 3 4 ## Contact 5 * [Mailing list](mailto:kosuzu-dev@chaotic.ninja) 4 Homepage: https://suzunaan.yakumo.dev/kosuzu/ 5 6 ## Differences from Logarion 7 * Uses the known latest Cmdliner revision, instead of relying on an older revision 8 * A `txt_init` program in the spirit of the old subcommand from years past 9 * 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) 10 11 ## To-do 12 * Support [geomyidae](gopher://bitreich.org/1/scm/geomyidae) `.gph` indexes, for now those can be generated manually somewhat 13 * Support tab-separated value gophermaps for any other gopher daemon -
trunk/cmd/txt/txt.ml
r73 r77 24 24 `S Manpage.s_authors; 25 25 `P "orbifx <mailto:fox@orbitalfox.eu>"; 26 `P "Izuru Yakumo <mailto:yakumo.izuru@chaotic.ninja>"; 27 `S Manpage.s_bugs; 28 `P "Please report them at <mailto:kosuzu-dev@chaotic.ninja>"; 26 `P "Izuru Yakumo <mailto:eternal-servant@yakumo.dev>"; 29 27 `S Manpage.s_see_also; 30 28 `P "This program is named after Kosuzu Motoori from Touhou Suzunaan: Forbidden Scrollery"; -
trunk/cmd/txt_init/txt_init.ml
r76 r77 1 (* $Id$ *) 1 2 let init_repo = 2 3 print_endline "Initializing repository..."; -
trunk/dune-project
r73 r77 1 1 (lang dune 2.0) 2 2 (name kosuzu) 3 (version 1.4. 3)3 (version 1.4.4) 4 4 (license EUPL-1.2) 5 5 (authors "orbifx <fox@orbitalfox.eu>") 6 (bug_reports "mailto:kosuzu-dev@chaotic.ninja") 7 (maintainers "Izuru Yakumo <yakumo.izuru@chaotic.ninja>") 8 (homepage "https://suzunaan.chaotic.ninja/kosuzu/") 9 (source (uri git+https://git.chaotic.ninja/yakumo.izuru/kosuzu)) 6 (maintainers "Izuru Yakumo <eternal-servant@yakumo.dev>") 7 (homepage "https://suzunaan.yakumo.dev/kosuzu/") 8 (source (uri svn+https://svn.yakumo.dev/yakumo.izuru/kosuzu)) 10 9 11 10 (generate_opam_files true) -
trunk/kosuzu.opam
r73 r77 1 1 # This file is generated by dune, edit dune-project instead 2 2 opam-version: "2.0" 3 version: "1.4. 3"3 version: "1.4.4" 4 4 synopsis: "Texts archival and exchange" 5 maintainer: ["Izuru Yakumo < yakumo.izuru@chaotic.ninja>"]5 maintainer: ["Izuru Yakumo <eternal-servant@yakumo.dev>"] 6 6 authors: ["orbifx <fox@orbitalfox.eu>"] 7 7 license: "EUPL-1.2" 8 homepage: "https://suzunaan.chaotic.ninja/kosuzu/" 9 bug-reports: "mailto:kosuzu-dev@chaotic.ninja" 8 homepage: "https://suzunaan.yakumo.dev/kosuzu/" 10 9 depends: ["ocaml" "dune" "ocurl" "msgpck" "cmdliner"] 11 10 build: [ … … 23 22 ] 24 23 ] 25 dev-repo: " git+https://git.chaotic.ninja/yakumo.izuru/kosuzu"24 dev-repo: "svn+https://svn.yakumo.dev/yakumo.izuru/kosuzu"
Note:
See TracChangeset
for help on using the changeset viewer.