chore: rename quicproquo → quicprochat in docs, Docker, CI, and packaging
Rename all project references from quicproquo/qpq to quicprochat/qpc across documentation, Docker configuration, CI workflows, packaging scripts, operational configs, and build tooling. - Docker: crate paths, binary names, user/group, data dirs, env vars - CI: workflow crate references, binary names, artifact names - Docs: all markdown files under docs/, SDK READMEs, book.toml - Packaging: OpenWrt Makefile, init script, UCI config (file renames) - Scripts: justfile, dev-shell, screenshot, cross-compile, ai_team - Operations: Prometheus config, alert rules, Grafana dashboard - Config: .env.example (QPQ_* → QPC_*), CODEOWNERS paths - Top-level: README, CONTRIBUTING, ROADMAP, CLAUDE.md
This commit is contained in:
@@ -1,58 +1,58 @@
|
||||
# OpenWrt package feed Makefile for quicproquo server.
|
||||
# OpenWrt package feed Makefile for quicprochat server.
|
||||
#
|
||||
# Usage:
|
||||
# 1. Add this directory as a custom feed in feeds.conf:
|
||||
# src-link quicproquo /path/to/quicproquo/packaging/openwrt
|
||||
# 2. ./scripts/feeds update quicproquo && ./scripts/feeds install quicproquo
|
||||
# 3. make menuconfig (select Network -> quicproquo)
|
||||
# 4. make package/quicproquo/compile V=s
|
||||
# src-link quicprochat /path/to/quicprochat/packaging/openwrt
|
||||
# 2. ./scripts/feeds update quicprochat && ./scripts/feeds install quicprochat
|
||||
# 3. make menuconfig (select Network -> quicprochat)
|
||||
# 4. make package/quicprochat/compile V=s
|
||||
#
|
||||
# The binary is pre-built via cross-compilation (see scripts/cross-compile.sh)
|
||||
# and the Makefile simply installs it into the ipkg.
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=quicproquo
|
||||
PKG_NAME:=quicprochat
|
||||
PKG_VERSION:=0.1.0
|
||||
PKG_RELEASE:=1
|
||||
PKG_MAINTAINER:=quicproquo team
|
||||
PKG_MAINTAINER:=quicprochat team
|
||||
PKG_LICENSE:=MIT
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
define Package/quicproquo
|
||||
define Package/quicprochat
|
||||
SECTION:=net
|
||||
CATEGORY:=Network
|
||||
TITLE:=End-to-end encrypted group messenger (server)
|
||||
DEPENDS:=+libpthread +librt
|
||||
URL:=https://github.com/nicholasgasior/quicproquo
|
||||
URL:=https://github.com/nicholasgasior/quicprochat
|
||||
endef
|
||||
|
||||
define Package/quicproquo/description
|
||||
define Package/quicprochat/description
|
||||
Production-grade end-to-end encrypted group messenger using QUIC transport,
|
||||
MLS (RFC 9420), ML-KEM-768 hybrid post-quantum KEM, and OPAQUE authentication.
|
||||
This package installs the qpq-server daemon.
|
||||
This package installs the qpc-server daemon.
|
||||
endef
|
||||
|
||||
define Package/quicproquo/conffiles
|
||||
/etc/config/quicproquo
|
||||
define Package/quicprochat/conffiles
|
||||
/etc/config/quicprochat
|
||||
endef
|
||||
|
||||
# Skip standard build — we use pre-compiled static musl binaries.
|
||||
define Build/Compile
|
||||
endef
|
||||
|
||||
define Package/quicproquo/install
|
||||
define Package/quicprochat/install
|
||||
$(INSTALL_DIR) $(1)/usr/bin
|
||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/qpq-server $(1)/usr/bin/qpq-server
|
||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/qpc-server $(1)/usr/bin/qpc-server
|
||||
|
||||
$(INSTALL_DIR) $(1)/etc/init.d
|
||||
$(INSTALL_BIN) ./files/quicproquo.init $(1)/etc/init.d/quicproquo
|
||||
$(INSTALL_BIN) ./files/quicprochat.init $(1)/etc/init.d/quicprochat
|
||||
|
||||
$(INSTALL_DIR) $(1)/etc/config
|
||||
$(INSTALL_CONF) ./files/quicproquo.uci $(1)/etc/config/quicproquo
|
||||
$(INSTALL_CONF) ./files/quicprochat.uci $(1)/etc/config/quicprochat
|
||||
|
||||
$(INSTALL_DIR) $(1)/var/lib/quicproquo
|
||||
$(INSTALL_DIR) $(1)/var/lib/quicprochat
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,quicproquo))
|
||||
$(eval $(call BuildPackage,quicprochat))
|
||||
|
||||
Reference in New Issue
Block a user