Changeset 801 in code
- Timestamp:
- Mar 21, 2023, 3:00:04 AM (2 years ago)
- Location:
- trunk
- Files:
-
- 6 added
- 3 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile
r800 r801 7 7 MANDIR ?= share/man 8 8 9 all: s oju sojuctl doc/soju.19 all: suika suikactl doc/suika.1 10 10 11 s oju:12 $(GO) build $(GOFLAGS) ./cmd/s oju13 s ojuctl:14 $(GO) build $(GOFLAGS) ./cmd/s ojuctl15 s oju-znc-import:16 $(GO) build $(GOFLAGS) ./cmd/s oju-znc-import17 doc/s oju.1: doc/soju.1.scd18 $(SCDOC) <doc/s oju.1.scd >doc/soju.111 suika: 12 $(GO) build $(GOFLAGS) ./cmd/suika 13 suikactl: 14 $(GO) build $(GOFLAGS) ./cmd/suikactl 15 suika-znc-import: 16 $(GO) build $(GOFLAGS) ./cmd/suika-znc-import 17 doc/suika.1: doc/suika.1.scd 18 $(SCDOC) <doc/suika.1.scd >doc/suika.1 19 19 clean: 20 $(RM) -f s oju sojuctl doc/soju.120 $(RM) -f suika suikactl doc/suika.1 21 21 install: 22 22 mkdir -p $(DESTDIR)$(PREFIX)/$(BINDIR) 23 23 mkdir -p $(DESTDIR)$(PREFIX)/$(MANDIR)/man1 24 mkdir -p $(DESTDIR)/etc/s oju25 mkdir -p $(DESTDIR)/var/lib/s oju26 cp -f s oju sojuctl $(DESTDIR)$(PREFIX)/$(BINDIR)27 cp -f doc/s oju.1 $(DESTDIR)$(PREFIX)/$(MANDIR)/man128 [ -f $(DESTDIR)/etc/s oju/config ] || cp -f config.in $(DESTDIR)/etc/soju/config24 mkdir -p $(DESTDIR)/etc/suika 25 mkdir -p $(DESTDIR)/var/lib/suika 26 cp -f suika suikactl $(DESTDIR)$(PREFIX)/$(BINDIR) 27 cp -f doc/suika.1 $(DESTDIR)$(PREFIX)/$(MANDIR)/man1 28 [ -f $(DESTDIR)/etc/suika/config ] || cp -f config.in $(DESTDIR)/etc/suika/config 29 29 30 .PHONY: s oju sojuctl soju-znc-import clean install30 .PHONY: suika suikactl suika-znc-import clean install -
trunk/README.md
r775 r801 1 # [soju]1 # suika 2 2 3 [](https://builds.sr.ht/~emersion/soju/commits?) 4 5 A user-friendly IRC bouncer. 3 A user-friendly IRC bouncer. Hard-fork of the 0.3 series of [soju](https://soju.im), named after [Suika Ibuki](https://en.touhouwiki.net/wiki/Suika_Ibuki) from [Touhou 7.5: Immaterial and Missing Power](https://en.touhouwiki.net/wiki/Immaterial_and_Missing_Power) 6 4 7 5 - Multi-user … … 10 8 - Support connecting to multiple upstream servers via a single IRC connection 11 9 to the bouncer 12 13 ## Usage14 15 * [Getting started]16 * [Man page]17 10 18 11 ## Building and installing … … 28 21 29 22 make 30 sudomake install23 doas make install 31 24 32 For development, you can use `go run ./cmd/s oju` as usual.25 For development, you can use `go run ./cmd/suika` as usual. 33 26 34 27 To link with the system libsqlite3, set `GOFLAGS="-tags=libsqlite3"`. 35 36 ## Contributing37 38 Send patches on the [mailing list] or on [GitHub], report bugs on the39 [issue tracker]. Discuss in [#soju on Libera Chat][IRC channel].40 28 41 29 ## License … … 44 32 45 33 Copyright (C) 2020 The soju Contributors 34 Copyright (C) 2023-present Aoi K. 46 35 47 [soju]: https://soju.im48 [Getting started]: doc/getting-started.md49 [Man page]: https://soju.im/doc/soju.1.html50 [mailing list]: https://lists.sr.ht/~emersion/soju-dev51 [GitHub]: https://github.com/emersion/soju52 [issue tracker]: https://todo.sr.ht/~emersion/soju53 [IRC channel]: ircs://irc.libera.chat/#soju -
trunk/go.mod
r799 r801 1 module git.chaotic.ninja/koizumi.aoi/s oju-retro1 module git.chaotic.ninja/koizumi.aoi/suika 2 2 3 3 go 1.15 -
trunk/server.go
r798 r801 20 20 "nhooyr.io/websocket" 21 21 22 "git.chaotic.ninja/koizumi.aoi/s oju-retro/config"22 "git.chaotic.ninja/koizumi.aoi/suika/config" 23 23 ) 24 24
Note:
See TracChangeset
for help on using the changeset viewer.