Changeset 73 in code


Ignore:
Timestamp:
Aug 22, 2024, 4:32:00 PM (8 months ago)
Author:
yakumo.izuru
Message:

Because sweet girls are the best, officially rebranding Logarion to Kosuzu

Signed-off-by: Izuru Yakumo <yakumo.izuru@…>

Location:
trunk
Files:
28 added
22 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Makefile

    r68 r73  
    11OS=`uname -s`
    22MACHINE=`uname -m`
    3 DATE=`date -r _build/default/cli/txt.exe +%Y%m%d`
     3DATE=`date -r _build/default/cmd/txt/txt.exe +%Y%m%d`
    44COMMIT=`git rev-parse --short HEAD`
    55PREFIX=/usr/local
     
    1212deps:
    1313        @opam install dune ocurl cmdliner msgpck
    14 cli:
    15         @dune build cli/txt.exe
     14txt:
     15        @dune build cmd/txt/txt.exe
    1616clean:
    1717        @dune clean
    1818dist:
    1919        @dune build
    20         @cp _build/default/cli/txt.exe txt.exe
     20        @cp _build/default/cmd/txt/txt.exe txt.exe
    2121        @strip txt.exe
    22         @tar czvf "logarion-${OS}-${MACHINE}-${DATE}-${COMMIT}" txt.exe readme.txt
     22        @tar czvf "kosuzu-${OS}-${MACHINE}-${DATE}-${COMMIT}" txt.exe readme.txt
    2323        @rm txt.exe
     24
     25txt_init:
     26        @dune build cmd/txt_init/txt_init.exe
    2427install:
    2528        @dune install --prefix ${PREFIX}
    2629uninstall:
    2730        @dune uninstall --prefix ${PREFIX}
    28 .PHONY: cli
     31.PHONY: txt txt_init
  • trunk/README.md

    r48 r73  
    1 # Logarion
    2 Text archival and exchange.
     1![Kosuzu Motoori](img/FS_Kosuzu2.png)
     2
     3# Kosuzu
     4Text archival and exchange, named after [Kosuzu Motoori](https://en.touhouwiki.net/wiki/Kosuzu_Motoori) from [Forbidden Scrollery](https://en.touhouwiki.net/wiki/Forbidden_Scrollery).
    35
    46## Contact
    5 * [Mailing list](https://lists.tildeverse.org/postorius/lists/logarion.lists.tildeverse.org/)
    6 
    7 ## References
    8 * [Building from source](https://logarion.chaotic.ninja/9egbae.htm)
    9 * [Creating texts & publishing on the net](https://logarion.chaotic.ninja/hvhhwf.htm)
    10 * [Exploring & pulling texts from Logarion repositories](https://logarion.chaotic.ninja/3sqd84.htm)
    11 * [Header format](https://logarion.chaotic.ninja/d41e68.htm)
    12 * [Txt uniform resource names](https://logarion.chaotic.ninja/h1a9tg.htm)
    13 
    14 ## Maintainers
    15 * orbifx (original author, former maintainer)
    16 * Izuru Yakumo (contributor, current maintainer)
     7* [Mailing list](mailto:kosuzu-dev@chaotic.ninja)
  • trunk/dune-project

    r70 r73  
    11(lang dune 2.0)
    2 (name logarion)
     2(name kosuzu)
    33(version 1.4.3)
    44(license EUPL-1.2)
    55(authors "orbifx <fox@orbitalfox.eu>")
    6 (bug_reports "mailto:logarion-dev@chaotic.ninja")
     6(bug_reports "mailto:kosuzu-dev@chaotic.ninja")
    77(maintainers "Izuru Yakumo <yakumo.izuru@chaotic.ninja>")
    8 (homepage "https://suzunaan.chaotic.ninja/logarion/")
    9 (source (uri git+https://git.chaotic.ninja/yakumo.izuru/logarion))
     8(homepage "https://suzunaan.chaotic.ninja/kosuzu/")
     9(source (uri git+https://git.chaotic.ninja/yakumo.izuru/kosuzu))
    1010
    1111(generate_opam_files true)
    1212
    1313(package
    14  (name logarion)
     14 (name kosuzu)
    1515 (synopsis "Texts archival and exchange")
    1616 (depends ocaml dune ocurl msgpck cmdliner))
  • trunk/lib/dune

    r3 r73  
    11(library
    2  (name        logarion)
    3  (public_name logarion)
     2 (name        kosuzu)
     3 (public_name kosuzu)
    44 (libraries text_parse text_parse.parsers unix str msgpck))
Note: See TracChangeset for help on using the changeset viewer.