Changeset 77 in code


Ignore:
Timestamp:
Apr 17, 2025, 1:47:57 PM (4 days ago)
Author:
yakumo.izuru
Message:

決して発見されてはならない巻物。

Location:
trunk
Files:
9 deleted
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/Makefile

    r73 r77  
    22MACHINE=`uname -m`
    33DATE=`date -r _build/default/cmd/txt/txt.exe +%Y%m%d`
    4 COMMIT=`git rev-parse --short HEAD`
    54PREFIX=/usr/local
    65
     
    2019        @cp _build/default/cmd/txt/txt.exe txt.exe
    2120        @strip txt.exe
    22         @tar czvf "kosuzu-${OS}-${MACHINE}-${DATE}-${COMMIT}" txt.exe readme.txt
     21        @tar czvf "kosuzu-${OS}-${MACHINE}-${DATE}" txt.exe LICENSE README.md
    2322        @rm txt.exe
    2423
  • trunk/README.md

    r76 r77  
    22Text archival and exchange, named after [Kosuzu Motoori](https://en.touhouwiki.net/wiki/Kosuzu_Motoori) from [Forbidden Scrollery](https://en.touhouwiki.net/wiki/Forbidden_Scrollery).
    33
    4 ## Contact
    5 * [Mailing list](mailto:kosuzu-dev@chaotic.ninja)
     4Homepage: 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  
    2424      `S Manpage.s_authors;
    2525      `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>";
    2927      `S Manpage.s_see_also;
    3028      `P "This program is named after Kosuzu Motoori from Touhou Suzunaan: Forbidden Scrollery";
  • trunk/cmd/txt_init/txt_init.ml

    r76 r77  
     1(* $Id$ *)
    12let init_repo =
    23        print_endline "Initializing repository...";
  • trunk/dune-project

    r73 r77  
    11(lang dune 2.0)
    22(name kosuzu)
    3 (version 1.4.3)
     3(version 1.4.4)
    44(license EUPL-1.2)
    55(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))
    109
    1110(generate_opam_files true)
  • trunk/kosuzu.opam

    r73 r77  
    11# This file is generated by dune, edit dune-project instead
    22opam-version: "2.0"
    3 version: "1.4.3"
     3version: "1.4.4"
    44synopsis: "Texts archival and exchange"
    5 maintainer: ["Izuru Yakumo <yakumo.izuru@chaotic.ninja>"]
     5maintainer: ["Izuru Yakumo <eternal-servant@yakumo.dev>"]
    66authors: ["orbifx <fox@orbitalfox.eu>"]
    77license: "EUPL-1.2"
    8 homepage: "https://suzunaan.chaotic.ninja/kosuzu/"
    9 bug-reports: "mailto:kosuzu-dev@chaotic.ninja"
     8homepage: "https://suzunaan.yakumo.dev/kosuzu/"
    109depends: ["ocaml" "dune" "ocurl" "msgpck" "cmdliner"]
    1110build: [
     
    2322  ]
    2423]
    25 dev-repo: "git+https://git.chaotic.ninja/yakumo.izuru/kosuzu"
     24dev-repo: "svn+https://svn.yakumo.dev/yakumo.izuru/kosuzu"
Note: See TracChangeset for help on using the changeset viewer.