- Timestamp:
- Apr 18, 2025, 5:17:48 PM (7 weeks ago)
- Location:
- trunk
- Files:
-
- 3 deleted
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/COPYING
r65 r69 1 1 Copyright (c) 2021 Willy Goiffon <contact@z3bra.org> 2 Copyright (c) 2023-present Izuru Yakumo < postmaster@chaotic.ninja>2 Copyright (c) 2023-present Izuru Yakumo <eternal-servant@yakumo.dev> 3 3 4 4 Permission to use, copy, modify, and/or distribute this software for any -
trunk/Makefile
r65 r69 1 1 GO ?= go 2 GOFLAGS ?= -v -ldflags "-w -X ` go list`.Version=${VERSION} -X `go list`.Commit=${COMMIT} -X `go list`.Build=${BUILD}"2 GOFLAGS ?= -v -ldflags "-w -X `${GO} list`.Version=${VERSION}" 3 3 CGO ?= 0 4 4 5 VERSION = `git describe --abbrev=0 --tags 2>/dev/null || echo "$VERSION"` 6 COMMIT = `git rev-parse --short HEAD || echo "$COMMIT"` 7 BRANCH = `git rev-parse --abbrev-ref HEAD` 8 BUILD = `git show -s --pretty=format:%cI` 9 5 VERSION = 2024.02.10 10 6 PREFIX ?= /usr/local 11 7 … … 13 9 14 10 marisa: 15 CGO_ENABLED=${CGO} gobuild ${GOFLAGS} ./cmd/marisa11 CGO_ENABLED=${CGO} ${GO} build ${GOFLAGS} ./cmd/marisa 16 12 marisa-trash: 17 CGO_ENABLED=${CGO} gobuild ${GOFLAGS} ./cmd/marisa-trash13 CGO_ENABLED=${CGO} ${GO} build ${GOFLAGS} ./cmd/marisa-trash 18 14 clean: 19 15 rm -f marisa marisa-trash … … 21 17 install -Dm0755 marisa ${PREFIX}/bin/marisa 22 18 install -Dm0755 marisa-trash ${PREFIX}/bin/marisa-trash 23 install -Dm0644 marisa.1 ${PREFIX}/ share/man/man1/marisa.124 install -Dm0644 marisa.conf.5 ${PREFIX}/ share/man/man5/marisa.conf.519 install -Dm0644 marisa.1 ${PREFIX}/man/man1/marisa.1 20 install -Dm0644 marisa.conf.5 ${PREFIX}/man/man5/marisa.conf.5 25 21 .PHONY: marisa marisa-trash -
trunk/cmd/marisa/main.go
r67 r69 11 11 "syscall" 12 12 13 "ma risa.chaotic.ninja/marisa"13 "mahou-no-mori.yakumo.dev/marisa" 14 14 ) 15 15 -
trunk/go.mod
r65 r69 1 module ma risa.chaotic.ninja/marisa1 module mahou-no-mori.yakumo.dev/marisa 2 2 3 3 go 1.17 -
trunk/marisa-trash.1
r66 r69 42 42 .Pp 43 43 "Borrowed" by 44 .An Izuru Yakumo Aq Mt yakumo.izuru@chaotic.ninja44 .An Izuru Yakumo Aq Mt eternal-servant@yakumo.dev -
trunk/marisa.1
r68 r69 34 34 .Pp 35 35 "Borrowed" by 36 .An Izuru Yakumo Aq Mt yakumo.izuru@chaotic.ninja36 .An Izuru Yakumo Aq Mt eternal-servant@yakumo.dev 37 37 .Sh BUGS 38 38 If you upload a file through the browser, and refresh the -
trunk/marisa.conf.5
r66 r69 92 92 .Pp 93 93 "Borrowed" by 94 .An Izuru Yakumo Aq Mt yakumo.izuru@chaotic.ninja94 .An Izuru Yakumo Aq Mt eternal-servant@yakumo.dev -
trunk/version.go
r65 r69 8 8 // Version release version 9 9 Version = "0.0.1" 10 11 // Commit will be overwritten automatically by the build system12 Commit = "HEAD"13 10 ) 14 11 15 12 // FullVersion display the full version and build 16 13 func FullVersion() string { 17 return fmt.Sprintf("%s @%s", Version, Commit)14 return fmt.Sprintf("%s", Version) 18 15 }
Note:
See TracChangeset
for help on using the changeset viewer.