From d169662aa6f342345acb71e08a9ab93df95ea4b5 Mon Sep 17 00:00:00 2001 From: Gene Pasquet Date: Sun, 26 Jul 2026 10:53:38 +0100 Subject: Rename package --- all.lisp | 6 +++--- class.lisp | 4 ++-- frame.lisp | 6 +++--- solar-short.asd | 4 ++-- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/all.lisp b/all.lisp index fa0b0d1..23d1bcb 100644 --- a/all.lisp +++ b/all.lisp @@ -1,6 +1,6 @@ (uiop:define-package - :solar-short/all + :haiku-book/all (:export) (:mix-reexport - :solar-short/frame - :solar-short/class)) + :haiku-book/frame + :haiku-book/class)) diff --git a/class.lisp b/class.lisp index 526418c..ef581b2 100644 --- a/class.lisp +++ b/class.lisp @@ -1,9 +1,9 @@ (uiop:define-package - :solar-short/class + :haiku-book/class (:export #:book #:display-haiku #:next-haiku) (:import-from :asdf)) -(in-package :solar-short/class) +(in-package :haiku-book/class) (defclass book () ((haikus diff --git a/frame.lisp b/frame.lisp index a4313c9..ed6a786 100644 --- a/frame.lisp +++ b/frame.lisp @@ -1,10 +1,10 @@ (uiop:define-package - :solar-short/frame + :haiku-book/frame (:export) - (:mix-reexport :solar-short/class) + (:mix-reexport :haiku-book/class) (:mix :clim :clim-lisp)) -(in-package :solar-short/frame) +(in-package :haiku-book/frame) (define-application-frame read-haiku diff --git a/solar-short.asd b/solar-short.asd index 78dd74e..1a16050 100644 --- a/solar-short.asd +++ b/solar-short.asd @@ -1,6 +1,6 @@ (defsystem - solar-short + haiku-book :class :package-inferred-system - :depends-on (:solar-short/frame) + :depends-on (:haiku-book/frame) :components ((:static-file "story.text"))) -- cgit v1.2.3