mirror of https://codeberg.org/cage/tinmop/
205 lines
8.0 KiB
Common Lisp
205 lines
8.0 KiB
Common Lisp
;; tinmop: an humble mastodon client
|
|
;; Copyright (C) 2020 cage
|
|
|
|
;; This program is free software: you can redistribute it and/or modify
|
|
;; it under the terms of the GNU General Public License as published by
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
;; (at your option) any later version.
|
|
|
|
;; This program is distributed in the hope that it will be useful,
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
;; GNU General Public License for more details.
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
;; along with this program.
|
|
;; If not, see [[http://www.gnu.org/licenses/][http://www.gnu.org/licenses/]].
|
|
|
|
(defsystem :tinmop
|
|
:author "cage"
|
|
:license "GPLv3+"
|
|
:version "0.9.9.14142135623"
|
|
:pathname "src"
|
|
:serial t
|
|
:bug-tracker "https://codeberg.org/cage/tinmop/issues"
|
|
:build-operation "program-op"
|
|
:entry-point "main::main"
|
|
:depends-on (:alexandria
|
|
:cl-ppcre-unicode
|
|
:tooter
|
|
:croatoan
|
|
:nodgui
|
|
:flexi-streams
|
|
:cl-spark
|
|
:access
|
|
:sqlite
|
|
:sxql
|
|
:sxql-composer
|
|
:purgatory
|
|
:marshal
|
|
:bordeaux-threads
|
|
:cl-base64
|
|
:cl+ssl
|
|
:log4cl
|
|
:local-time
|
|
:cl-colors2
|
|
:cl-i18n
|
|
:clunit2
|
|
:esrap
|
|
:ieee-floats
|
|
:parse-number
|
|
:cl-html5-parser
|
|
:unix-opts
|
|
:crypto-shortcuts
|
|
:drakma
|
|
:usocket
|
|
:babel
|
|
:percent-encoding
|
|
:trivial-clipboard
|
|
:yason
|
|
:uiop)
|
|
:components ((:file "package")
|
|
(:file "idn")
|
|
(:file "config")
|
|
(:file "constants")
|
|
(:file "conditions")
|
|
(:file "num-utils")
|
|
(:file "misc-utils")
|
|
(:file "box")
|
|
(:file "filesystem-utils")
|
|
(:file "os-utils")
|
|
(:file "text-utils")
|
|
(:file "emoji-matcher")
|
|
(:file "emoji-shortcodes")
|
|
(:file "html-utils")
|
|
(:file "crypto-utils")
|
|
(:file "resources-utils")
|
|
(:file "zip-info")
|
|
(:file "interfaces")
|
|
(:file "mtree-utils")
|
|
(:file "bs-tree")
|
|
(:file "rb-tree")
|
|
(:file "priority-queue")
|
|
(:file "queue")
|
|
(:file "stack")
|
|
(:file "iri-parser")
|
|
(:file "tour-mode-parser")
|
|
(:file "x509-ffi")
|
|
(:file "x509")
|
|
(:file "api-pleroma-entities")
|
|
(:file "db-utils")
|
|
(:file "db")
|
|
(:file "date-formatter")
|
|
(:file "software-configuration")
|
|
(:file "tui-utils")
|
|
(:module gemini
|
|
:components ((:file "package")
|
|
(:file "gemini-constants")
|
|
(:file "gemini-parser")
|
|
(:file "client")
|
|
(:file "dummy-server")
|
|
(:file "titan")
|
|
(:file "subscription")))
|
|
(:module kami
|
|
:components ((:file "package")
|
|
(:file "client")))
|
|
(:module gopher
|
|
:components ((:file "package")
|
|
(:file "parser")
|
|
(:file "client")))
|
|
(:file "command-line")
|
|
(:file "specials")
|
|
(:file "keybindings")
|
|
(:file "complete")
|
|
(:file "gemini-viewer-metadata")
|
|
(:file "program-events")
|
|
(:file "api-client")
|
|
(:file "api-pleroma")
|
|
(:file "hooks")
|
|
(:file "2d-utils")
|
|
(:file "windows")
|
|
(:file "notify-window")
|
|
(:file "suggestions-window")
|
|
(:file "complete-window")
|
|
(:file "keybindings-window")
|
|
(:file "point-tracker")
|
|
(:file "modeline-window")
|
|
(:file "line-oriented-window")
|
|
(:file "filesystem-tree-window")
|
|
(:file "message-rendering-utils")
|
|
(:file "thread-window")
|
|
(:file "message-window")
|
|
(:file "gopher-window")
|
|
(:file "open-attach-window")
|
|
(:file "open-message-link-window")
|
|
(:file "gemini-client-certificates-window")
|
|
(:file "gemini-subscription-window")
|
|
(:file "gemini-page-toc")
|
|
(:file "command-window")
|
|
(:file "sending-message")
|
|
(:file "follow-requests")
|
|
(:file "tags-window")
|
|
(:file "conversations-window")
|
|
(:file "chats-list-window")
|
|
(:file "gemini-viewer")
|
|
(:file "gempub")
|
|
(:file "main-window")
|
|
(:file "ui-goodies")
|
|
(:file "scheduled-events")
|
|
(:file "modules")
|
|
(:file "fediverse-post-local-search")
|
|
(:file "json-rpc2")
|
|
(:module gui-server
|
|
:pathname "gui/server"
|
|
:components ((:file "main-window-server-side")
|
|
(:file "public-api-gemini-stream")
|
|
(:file "public-api-gemini-certificates")
|
|
(:file "public-api-gemini-tour-links")
|
|
(:file "public-api-gemini-bookmark")
|
|
(:file "public-api-gemini-gemlog")
|
|
(:file "public-api")
|
|
(:file "json-rpc-communication")))
|
|
(:module gui-client
|
|
:pathname "gui/client"
|
|
:components ((:file "constants")
|
|
(:file "gui-goodies")
|
|
(:file "client-configuration")
|
|
(:file "os-utils")
|
|
(:file "program-events")
|
|
(:file "json-rpc-communication")
|
|
(:file "validation")
|
|
(:file "icons")
|
|
(:file "certificates-window")
|
|
(:file "titan-window")
|
|
(:file "tour-window")
|
|
(:file "stream-frame")
|
|
(:file "bookmark-window")
|
|
(:file "gemlog-window")
|
|
(:file "menu-command")
|
|
(:file "internal-paths")
|
|
(:file "search-frame")
|
|
(:file "scheduler")
|
|
(:file "main-window")))
|
|
(:file "main")
|
|
(:module tests
|
|
:components ((:file "package")
|
|
(:file "all-tests")
|
|
(:file "misc-tests")
|
|
(:file "box-tests")
|
|
(:file "iri-tests")
|
|
(:file "numeric-tests")
|
|
(:file "text-utils-tests")
|
|
(:file "mtree-tests")
|
|
(:file "thread-window-tests")
|
|
(:file "gemini-parser-tests")
|
|
(:file "program-events-tests")
|
|
(:file "x509-tests")
|
|
(:file "idn-tests")
|
|
(:file "json-rpc2-tests")))))
|
|
|
|
;; (push :debug-mode *features*)
|
|
;; (push :debug-sql *features*)
|
|
;; (push :debug-gemini-request *features*)
|
|
;; (push :debug-json-rpc *features*)
|
|
;; (push :debug-croatoan-events *features*)
|