* guile: move scripts to scripts/ (from scripts/stats)
This commit is contained in:
@ -318,7 +318,6 @@ guile/mu/Makefile
|
|||||||
guile/examples/Makefile
|
guile/examples/Makefile
|
||||||
guile/tests/Makefile
|
guile/tests/Makefile
|
||||||
guile/scripts/Makefile
|
guile/scripts/Makefile
|
||||||
guile/scripts/stats/Makefile
|
|
||||||
toys/Makefile
|
toys/Makefile
|
||||||
toys/mug/Makefile
|
toys/mug/Makefile
|
||||||
toys/msg2pdf/Makefile
|
toys/msg2pdf/Makefile
|
||||||
|
|||||||
@ -16,4 +16,12 @@
|
|||||||
|
|
||||||
include $(top_srcdir)/gtest.mk
|
include $(top_srcdir)/gtest.mk
|
||||||
|
|
||||||
SUBDIRS=stats
|
EXTRA_DIST= \
|
||||||
|
msgs-per-year.scm \
|
||||||
|
msgs-per-hour.scm \
|
||||||
|
msgs-per-month.scm \
|
||||||
|
msgs-per-day.scm \
|
||||||
|
msgs-per-year-month.scm
|
||||||
|
|
||||||
|
muguiledistscriptdir = $(pkgdatadir)/scripts/
|
||||||
|
muguiledistscript_SCRIPTS = $(EXTRA_DIST)
|
||||||
|
|||||||
@ -19,7 +19,11 @@ exec guile -e main -s $0 $@
|
|||||||
;; along with this program; if not, write to the Free Software Foundation,
|
;; along with this program; if not, write to the Free Software Foundation,
|
||||||
;; Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
;; Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
|
|
||||||
;; DESCRIPTION: number of messages per weekday
|
;; DESCRIPTION: graph the number of messages per day
|
||||||
|
;; DESCRIPTION: options:
|
||||||
|
;; DESCRIPTION: --query=<query>: limit to messages matching query
|
||||||
|
;; DESCRIPTION: --muhome=<muhome>: path to mu home dir
|
||||||
|
;; DESCRIPTION: --textonly: output in text-only format
|
||||||
|
|
||||||
(use-modules (mu) (mu script) (mu stats) (mu plot))
|
(use-modules (mu) (mu script) (mu stats) (mu plot))
|
||||||
|
|
||||||
@ -37,7 +41,7 @@ display, otherwise, use a graphical window."
|
|||||||
"Day" "Messages" text-only))
|
"Day" "Messages" text-only))
|
||||||
|
|
||||||
(define (main args)
|
(define (main args)
|
||||||
(mu:run args per-day))
|
(mu:run-stats args per-day))
|
||||||
|
|
||||||
;; Local Variables:
|
;; Local Variables:
|
||||||
;; mode: scheme
|
;; mode: scheme
|
||||||
@ -19,11 +19,14 @@ exec guile -e main -s $0 $@
|
|||||||
;; along with this program; if not, write to the Free Software Foundation,
|
;; along with this program; if not, write to the Free Software Foundation,
|
||||||
;; Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
;; Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
|
|
||||||
;; DESCRIPTION: number of messages per hour of the day
|
;; DESCRIPTION: graph the number of messages per hour
|
||||||
|
;; DESCRIPTION: options:
|
||||||
|
;; DESCRIPTION: --query=<query>: limit to messages matching query
|
||||||
|
;; DESCRIPTION: --muhome=<muhome>: path to mu home dir
|
||||||
|
;; DESCRIPTION: --textonly: output in text-only format
|
||||||
|
|
||||||
(use-modules (mu) (mu script) (mu stats) (mu plot))
|
(use-modules (mu) (mu script) (mu stats) (mu plot))
|
||||||
|
|
||||||
|
|
||||||
(define (per-hour expr text-only)
|
(define (per-hour expr text-only)
|
||||||
"Count the total number of messages for each weekday (0-6 for
|
"Count the total number of messages for each weekday (0-6 for
|
||||||
Sun..Sat) that match EXPR. If PLAIN-TEXT is true, use a plain-text
|
Sun..Sat) that match EXPR. If PLAIN-TEXT is true, use a plain-text
|
||||||
@ -37,9 +40,8 @@ display, otherwise, use a graphical window."
|
|||||||
(format #f "Messages per hour matching ~a" expr)
|
(format #f "Messages per hour matching ~a" expr)
|
||||||
"Hour" "Messages" text-only))
|
"Hour" "Messages" text-only))
|
||||||
|
|
||||||
|
|
||||||
(define (main args)
|
(define (main args)
|
||||||
(mu:run args per-hour))
|
(mu:run-stats args per-hour))
|
||||||
|
|
||||||
;; Local Variables:
|
;; Local Variables:
|
||||||
;; mode: scheme
|
;; mode: scheme
|
||||||
@ -19,7 +19,11 @@ exec guile -e main -s $0 $@
|
|||||||
;; along with this program; if not, write to the Free Software Foundation,
|
;; along with this program; if not, write to the Free Software Foundation,
|
||||||
;; Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
;; Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
|
|
||||||
;; DESCRIPTION: number of messages per month
|
;; DESCRIPTION: graph the number of messages per month
|
||||||
|
;; DESCRIPTION: options:
|
||||||
|
;; DESCRIPTION: --query=<query>: limit to messages matching query
|
||||||
|
;; DESCRIPTION: --muhome=<muhome>: path to mu home dir
|
||||||
|
;; DESCRIPTION: --textonly: output in text-only format
|
||||||
|
|
||||||
(use-modules (mu) (mu script) (mu stats) (mu plot))
|
(use-modules (mu) (mu script) (mu stats) (mu plot))
|
||||||
|
|
||||||
@ -38,7 +42,7 @@ display, otherwise, use a graphical window."
|
|||||||
"Month" "Messages" text-only))
|
"Month" "Messages" text-only))
|
||||||
|
|
||||||
(define (main args)
|
(define (main args)
|
||||||
(mu:run args per-month))
|
(mu:run-stats args per-month))
|
||||||
|
|
||||||
;; Local Variables:
|
;; Local Variables:
|
||||||
;; mode: scheme
|
;; mode: scheme
|
||||||
@ -19,7 +19,11 @@ exec guile -e main -s $0 $@
|
|||||||
;; along with this program; if not, write to the Free Software Foundation,
|
;; along with this program; if not, write to the Free Software Foundation,
|
||||||
;; Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
;; Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
|
|
||||||
;; DESCRIPTION: number of messages per year-month
|
;; DESCRIPTION: graph the number of messages per year-month
|
||||||
|
;; DESCRIPTION: options:
|
||||||
|
;; DESCRIPTION: --query=<query>: limit to messages matching query
|
||||||
|
;; DESCRIPTION: --muhome=<muhome>: path to mu home dir
|
||||||
|
;; DESCRIPTION: --textonly: output in text-only format
|
||||||
|
|
||||||
(use-modules (mu) (mu script) (mu stats) (mu plot))
|
(use-modules (mu) (mu script) (mu stats) (mu plot))
|
||||||
|
|
||||||
@ -40,7 +44,7 @@ display, otherwise, use a graphical window."
|
|||||||
"Year/Month" "Messages" text-only))
|
"Year/Month" "Messages" text-only))
|
||||||
|
|
||||||
(define (main args)
|
(define (main args)
|
||||||
(mu:run args per-year-month))
|
(mu:run-stats args per-year-month))
|
||||||
|
|
||||||
;; Local Variables:
|
;; Local Variables:
|
||||||
;; mode: scheme
|
;; mode: scheme
|
||||||
@ -19,7 +19,11 @@ exec guile -e main -s $0 $@
|
|||||||
;; along with this program; if not, write to the Free Software Foundation,
|
;; along with this program; if not, write to the Free Software Foundation,
|
||||||
;; Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
;; Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
|
|
||||||
;; DESCRIPTION: number of messages per year
|
;; DESCRIPTION: graph the number of messages per year
|
||||||
|
;; DESCRIPTION: options:
|
||||||
|
;; DESCRIPTION: --query=<query>: limit to messages matching query
|
||||||
|
;; DESCRIPTION: --muhome=<muhome>: path to mu home dir
|
||||||
|
;; DESCRIPTION: --textonly: output in text-only format
|
||||||
|
|
||||||
(use-modules (mu) (mu script) (mu stats) (mu plot))
|
(use-modules (mu) (mu script) (mu stats) (mu plot))
|
||||||
|
|
||||||
@ -35,9 +39,8 @@ display, otherwise, use a graphical window."
|
|||||||
(format #f "Messages per year matching ~a" expr)
|
(format #f "Messages per year matching ~a" expr)
|
||||||
"Year" "Messages" text-only))
|
"Year" "Messages" text-only))
|
||||||
|
|
||||||
|
|
||||||
(define (main args)
|
(define (main args)
|
||||||
(mu:run args per-year))
|
(mu:run-stats args per-year))
|
||||||
|
|
||||||
;; Local Variables:
|
;; Local Variables:
|
||||||
;; mode: scheme
|
;; mode: scheme
|
||||||
@ -1,27 +0,0 @@
|
|||||||
## Copyright (C) 2012 Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
|
|
||||||
##
|
|
||||||
## 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, write to the Free Software Foundation,
|
|
||||||
## Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
||||||
|
|
||||||
include $(top_srcdir)/gtest.mk
|
|
||||||
|
|
||||||
EXTRA_DIST= \
|
|
||||||
msgs-per-year.scm \
|
|
||||||
msgs-per-hour.scm \
|
|
||||||
msgs-per-month.scm \
|
|
||||||
msgs-per-day.scm \
|
|
||||||
msgs-per-year-month.scm
|
|
||||||
|
|
||||||
muguiledistscriptdir = $(pkgdatadir)/scripts/stats
|
|
||||||
muguiledistscript_SCRIPTS = $(EXTRA_DIST)
|
|
||||||
Reference in New Issue
Block a user