summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMasaya Tojo <masaya@tojo.tokyo>2020-07-15 06:10:14 +0900
committerMasaya Tojo <masaya@tojo.tokyo>2020-07-15 06:10:14 +0900
commitd7285203cb04d4e6625bcbf7222f012ba4f7cdb6 (patch)
treecae7076eee7129adbfd3dd0f3ab766c9e9675179
parent1321b087545c721766690086e08be4c88e95102b (diff)
Rename proejct from qkbox to toot.
-rw-r--r--.dir-locals.el (renamed from qkbox/.dir-locals.el)0
-rw-r--r--Makefile.am12
-rw-r--r--README.org4
-rw-r--r--configure.ac4
-rw-r--r--guix.scm24
-rw-r--r--pre-inst-env.in10
-rw-r--r--toot.scm (renamed from qkbox/toot.scm)12
7 files changed, 33 insertions, 33 deletions
diff --git a/qkbox/.dir-locals.el b/.dir-locals.el
index c5c5588..c5c5588 100644
--- a/qkbox/.dir-locals.el
+++ b/.dir-locals.el
diff --git a/Makefile.am b/Makefile.am
index 3bffc0f..722d422 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,20 +1,20 @@
-## Qkbox --- TojoQK's toybox
+## Toot --- Mastodon Client
## Copyright © 2020 Masaya Tojo <masaya@tojo.tokyo>
##
-## This file is part of Qkbox.
+## This file is part of Toot.
##
-## Qkbox is free software; you can redistribute it and/or modify it
+## Toot 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.
##
-## Qkbox is distributed in the hope that it will be useful, but
+## Toot 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 Qkbox. If not, see <http://www.gnu.org/licenses/>.
+## along with Toot. If not, see <http://www.gnu.org/licenses/>.
GOBJECTS = $(SOURCES:%.scm=%.go)
@@ -42,7 +42,7 @@ godir=$(libdir)/guile/$(GUILE_EFFECTIVE_VERSION)/site-ccache
bin_SCRIPTS =
SOURCES = \
- qkbox/toot.scm
+ toot.scm
TESTS =
diff --git a/README.org b/README.org
index 0f33b2c..598e182 100644
--- a/README.org
+++ b/README.org
@@ -1,3 +1,3 @@
-* qkbox
+* toot
-Qkbox is TojoQK's toybox.
+Toot is Mastodon Client.
diff --git a/configure.ac b/configure.ac
index 0cf3868..4ee9e56 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
-AC_INIT([qkbox], [0.1.0])
-AC_CONFIG_SRCDIR([qkbox])
+AC_INIT([toot], [0.1.0])
+AC_CONFIG_SRCDIR([toot.scm])
AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE([-Wall -Werror foreign])
AM_SILENT_RULES([yes])
diff --git a/guix.scm b/guix.scm
index 8cd9764..d398350 100644
--- a/guix.scm
+++ b/guix.scm
@@ -1,20 +1,20 @@
-;;; Qkbox --- TojoQK's toybox
+;;; Toot --- Mastodon Client
;;; Copyright © 2020 Masaya Tojo <masaya@tojo.tokyo>
;;;
-;;; This file is part of Qkbox.
+;;; This file is part of Toot.
;;;
-;;; Qkbox is free software; you can redistribute it and/or modify it
+;;; Toot 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.
;;;
-;;; Qkbox is distributed in the hope that it will be useful, but
+;;; Toot 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 Qkbox. If not, see <http://www.gnu.org/licenses/>.
+;;; along with Toot. If not, see <http://www.gnu.org/licenses/>.
(use-modules (guix packages)
((guix licenses) #:prefix license:)
@@ -28,11 +28,11 @@
(gnu packages texinfo)
(gnu packages mastodon))
-(define guile-qkbox
+(define guile-toot
(package
- (name "guile-qkbox")
+ (name "guile-toot")
(version "0.1.0")
- (source (string-append (getcwd) "/qkbox-" version ".tar.gz"))
+ (source (string-append (getcwd) "/toot-" version ".tar.gz"))
(build-system gnu-build-system)
(native-inputs
`(("autoconf" ,autoconf)
@@ -43,9 +43,9 @@
`(("guile" ,guile-3.0)
("gulie-json" ,guile-json-4)
("guile-picture-language" ,guile-picture-language)))
- (synopsis "TojoQK's toybox")
- (description "Qkbox is TojoQK's toybox.")
- (home-page "https://gitlab.com/tojoqk/qkbox")
+ (synopsis "Mastodon Client")
+ (description "Toot is Mastodon Client.")
+ (home-page "https://gitlab.com/tojoqk/toot")
(license license:gpl3+)))
-guile-qkbox
+guile-toot
diff --git a/pre-inst-env.in b/pre-inst-env.in
index 82b6e4d..e9652a8 100644
--- a/pre-inst-env.in
+++ b/pre-inst-env.in
@@ -1,22 +1,22 @@
#!/bin/sh
-# Qkbox --- TojoQK's toybox
+# Toot --- Mastodon Client
# Copyright © 2020 Masaya Tojo <masaya@tojo.tokyo>
#
-# This file is part of Qkbox.
+# This file is part of Toot.
#
-# Qkbox is free software; you can redistribute it and/or modify it
+# Toot 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.
#
-# Qkbox is distributed in the hope that it will be useful, but WITHOUT
+# Toot 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 Qkbox. If not, see <http://www.gnu.org/licenses/>.
+# along with Toot. If not, see <http://www.gnu.org/licenses/>.
abs_top_srcdir="`cd "@abs_top_srcdir@" > /dev/null; pwd`"
abs_top_builddir="`cd "@abs_top_builddir@" > /dev/null; pwd`"
diff --git a/qkbox/toot.scm b/toot.scm
index 0043fb8..a752c40 100644
--- a/qkbox/toot.scm
+++ b/toot.scm
@@ -1,22 +1,22 @@
-;;; Qkbox --- TojoQK's toybox
+;;; Toot --- Mastodon client.
;;; Copyright © 2020 Masaya Tojo <masaya@tojo.tokyo>
;;;
-;;; This file is part of Qkbox.
+;;; This file is part of Toot.
;;;
-;;; Qkbox is free software; you can redistribute it and/or modify it
+;;; Toot 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.
;;;
-;;; Qkbox is distributed in the hope that it will be useful, but
+;;; Toot 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 Qkbox. If not, see <http://www.gnu.org/licenses/>.
+;;; along with Toot. If not, see <http://www.gnu.org/licenses/>.
-(define-module (qkbox toot)
+(define-module (toot)
#:use-module (ice-9 format)
#:use-module (web response)
#:use-module (web client)