* [bug#60827] [PATCH v6 1/4] gnu: Add perl-par.
[not found] <20230227003947.25934-1-jakeleporte@outlook.com>
@ 2023-02-27 0:39 ` Jake Leporte
2023-02-27 0:39 ` [bug#60827] [PATCH v6 2/4] gnu: Add xforms Jake Leporte
` (2 subsequent siblings)
3 siblings, 0 replies; 4+ messages in thread
From: Jake Leporte @ 2023-02-27 0:39 UTC (permalink / raw)
To: 60827; +Cc: Jake Leporte
* gnu/packges/perl.scm (perl-par): New variable.
---
gnu/packages/perl.scm | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index 41b68ba..b6fb81e 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -8598,6 +8598,26 @@ (define-public perl-par-dist
distributions.")
(license (package-license perl))))
+(define-public perl-par
+ (package
+ (name "perl-par")
+ (version "1.018")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "mirror://cpan/authors/id/R/RS/RSCHUPP/PAR-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "0ifyjd1pxbfp8wxa9l8b1irjwln4gwh4nz256mjacjv194mh99bc"))))
+ (build-system perl-build-system)
+ (propagated-inputs (list perl-archive-zip perl-par-dist))
+ (home-page "https://metacpan.org/release/PAR")
+ (synopsis "Perl Archive Toolkit")
+ (description
+ "Perl module for using special zip files (called Perl ARchives) as
+libraries from which Perl modules can be loaded.")
+ (license license:perl-license)))
+
(define-public perl-parent
(deprecated-package "perl-parent" perl))
--
2.39.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [bug#60827] [PATCH v6 2/4] gnu: Add xforms.
[not found] <20230227003947.25934-1-jakeleporte@outlook.com>
2023-02-27 0:39 ` [bug#60827] [PATCH v6 1/4] gnu: Add perl-par Jake Leporte
@ 2023-02-27 0:39 ` Jake Leporte
2023-02-27 0:39 ` [bug#60827] [PATCH v6 3/4] gnu: Add xforms-gl Jake Leporte
2023-02-27 0:39 ` [bug#60827] [PATCH v6 4/4] gnu: Add dozenal Jake Leporte
3 siblings, 0 replies; 4+ messages in thread
From: Jake Leporte @ 2023-02-27 0:39 UTC (permalink / raw)
To: 60827; +Cc: Jake Leporte
* gnu/packages/xdisorg.scm (xforms): New variable.
---
gnu/packages/xdisorg.scm | 49 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 49 insertions(+)
diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm
index ec5cdbd..ede84ab 100644
--- a/gnu/packages/xdisorg.scm
+++ b/gnu/packages/xdisorg.scm
@@ -132,6 +132,8 @@ (define-module (gnu packages xdisorg)
#:use-module (gnu packages qt)
#:use-module (gnu packages sphinx)
#:use-module (gnu packages syncthing)
+ #:use-module (gnu packages tex)
+ #:use-module (gnu packages texinfo)
#:use-module (gnu packages tcl)
#:use-module (gnu packages terminals)
#:use-module (gnu packages xml)
@@ -3447,3 +3449,50 @@ (define-public wvkbd
@end itemize")
(license (list license:expat ;3 files under Expat license (see 'LICENSE')
license:gpl3+)))) ;the rest is GPLv3+
+
+(define-public xforms
+ ;; The latest stable release fails with a linker error, so use an updated
+ ;; version
+ (let ((revision "1")
+ (commit "2c1a9f151baf50887a517280645ec23379fb96f8"))
+ (package
+ (name "xforms")
+ (version (git-version "1.2.4" revision commit))
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://git.savannah.gnu.org/git/xforms.git/")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "12qc1j5g03n2zigvbwilx2zszr8sgv5wd259js7cwf8ffw4lzjf2"))))
+ (build-system gnu-build-system)
+ (arguments
+ (list #:phases #~(modify-phases %standard-phases
+ (add-after 'unpack 'patch-doc-makefile
+ (lambda _
+ (substitute* "doc/Makefile.am"
+ (("/bin/mkdir")
+ "mkdir")))))
+ #:configure-flags #~(list "--enable-docs")))
+ (native-inputs (list autoconf
+ automake
+ libtool
+ texinfo
+ texi2html
+ (texlive-updmap.cfg (list texlive-epsf
+ texlive-tex-texinfo))
+ imagemagick))
+ (propagated-inputs (list libx11 libxpm libjpeg-turbo))
+ (home-page "http://xforms-toolkit.org/")
+ (synopsis "GUI toolkit for X based on the X11 Xlib library")
+ (description
+ "XForms is a graphical user interface toolkit for X based on the X11 Xlib
+library. I.e., it allows you to create windows, containing all kinds of
+widgets (buttons, sliders, browsers, menus etc.) with a few lines of code and
+then attach actions to the widgets, i.e., have some function called when a
+button is pressed. To make this even easier XForms comes with a program
+called @code{fdesign} that allows you to design a GUI for a program directly
+on the screen and which then writes out the necessary C code for it.")
+ (license license:lgpl2.1+))))
--
2.39.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [bug#60827] [PATCH v6 3/4] gnu: Add xforms-gl.
[not found] <20230227003947.25934-1-jakeleporte@outlook.com>
2023-02-27 0:39 ` [bug#60827] [PATCH v6 1/4] gnu: Add perl-par Jake Leporte
2023-02-27 0:39 ` [bug#60827] [PATCH v6 2/4] gnu: Add xforms Jake Leporte
@ 2023-02-27 0:39 ` Jake Leporte
2023-02-27 0:39 ` [bug#60827] [PATCH v6 4/4] gnu: Add dozenal Jake Leporte
3 siblings, 0 replies; 4+ messages in thread
From: Jake Leporte @ 2023-02-27 0:39 UTC (permalink / raw)
To: 60827; +Cc: Jake Leporte
* gnu/packages/xdisorg.scm (xforms-gl): New variable.
---
gnu/packages/xdisorg.scm | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm
index ede84ab..50ca156 100644
--- a/gnu/packages/xdisorg.scm
+++ b/gnu/packages/xdisorg.scm
@@ -3496,3 +3496,12 @@ (define-public xforms
called @code{fdesign} that allows you to design a GUI for a program directly
on the screen and which then writes out the necessary C code for it.")
(license license:lgpl2.1+))))
+
+(define-public xforms-gl
+ (package
+ (inherit xforms)
+ (name "xforms-gl")
+ (propagated-inputs (modify-inputs (package-propagated-inputs xforms)
+ (append mesa)))
+ (synopsis
+ "GUI toolkit for X based on the X11 Xlib library, with OpenGL support")))
--
2.39.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [bug#60827] [PATCH v6 4/4] gnu: Add dozenal.
[not found] <20230227003947.25934-1-jakeleporte@outlook.com>
` (2 preceding siblings ...)
2023-02-27 0:39 ` [bug#60827] [PATCH v6 3/4] gnu: Add xforms-gl Jake Leporte
@ 2023-02-27 0:39 ` Jake Leporte
3 siblings, 0 replies; 4+ messages in thread
From: Jake Leporte @ 2023-02-27 0:39 UTC (permalink / raw)
To: 60827; +Cc: Jake Leporte
* gnu/packages/maths.scm (dozenal): New variable.
---
gnu/packages/maths.scm | 105 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 105 insertions(+)
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index 280465e..86beb33 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -103,6 +103,7 @@ (define-module (gnu packages maths)
#:use-module (gnu packages bash)
#:use-module (gnu packages bison)
#:use-module (gnu packages boost)
+ #:use-module (gnu packages calendar)
#:use-module (gnu packages check)
#:use-module (gnu packages cmake)
#:use-module (gnu packages compression)
@@ -124,6 +125,7 @@ (define-module (gnu packages maths)
#:use-module (gnu packages ghostscript)
#:use-module (gnu packages glib)
#:use-module (gnu packages graphviz)
+ #:use-module (gnu packages groff)
#:use-module (gnu packages gtk)
#:use-module (gnu packages icu4c)
#:use-module (gnu packages image)
@@ -172,6 +174,7 @@ (define-module (gnu packages maths)
#:use-module (gnu packages tls)
#:use-module (gnu packages version-control)
#:use-module (gnu packages wxwidgets)
+ #:use-module (gnu packages xdisorg)
#:use-module (gnu packages xml)
#:use-module (srfi srfi-1)
#:use-module (srfi srfi-26))
@@ -455,6 +458,108 @@ (define-public dionysus
(license license:gpl3+)
(home-page "https://www.gnu.org/software/dionysus/")))
+(define-public dozenal
+ (let ((revision "1")
+ (commit "328bc03ad544179f2cccda36763358c4216f188e"))
+ (package
+ (name "dozenal")
+ (version (git-version "12010904-3" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://codeberg.org/dgoodmaniii/dozenal")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0knwfwjqdv854l5ny7csdpvp7r0md6a2k43a1l2lkyw9k3cglpph"))))
+ (build-system gnu-build-system)
+ (arguments
+ (list
+ ;; Some test scripts are included, but no makefile-driven
+ ;; tests, and they are all quite manual to run and check
+ #:tests? #f
+ ;; Running with `make -j' causes the build to fail.
+ ;; This is likely because this project uses the
+ ;; "recursive make" structure, where each
+ ;; subdirectory contains its own make file, which is
+ ;; called by the top-level makefile.
+ #:parallel-build? #f
+ #:make-flags
+ #~(list (string-append "prefix=" #$output))
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'chdir
+ (lambda _
+ (chdir "dozenal")))
+ (add-after 'chdir 'patch-lua-references
+ (lambda _
+ (let ((lua-name (strip-store-file-name #$lua)))
+ (substitute* '("dozcal/Makefile"
+ "dozlua/Makefile")
+ (("lua52")
+ (string-take lua-name
+ (string-rindex lua-name #\.)))))))
+ (delete 'configure)
+ (add-before 'install 'make-bin-dir
+ (lambda _
+ (mkdir-p (string-append #$output "/bin"))))
+ (add-after 'install 'install-html-docs
+ (lambda _
+ (invoke "make"
+ (string-append "prefix=" #$output)
+ "installhtml")))
+ (add-after 'install-html-docs 'split-outputs
+ (lambda* (#:key inputs outputs #:allow-other-keys)
+ (for-each
+ (lambda (prog)
+ (let ((orig (string-append #$output "/bin/" prog))
+ (dst (string-append #$output:gui "/bin/" prog))
+ (man-orig (string-append #$output
+ "/share/man/man1/"
+ prog ".1"))
+ (man-dst (string-append #$output:gui
+ "/share/man/man1/"
+ prog ".1")))
+ (mkdir-p (dirname dst))
+ (copy-file orig dst)
+ (delete-file orig)
+ (mkdir-p (dirname man-dst))
+ (copy-file man-orig man-dst)
+ (delete-file man-orig)))
+ '("xdozdc" "gdozdc"))
+ (wrap-program
+ (string-append #$output:gui "/bin/" "gdozdc")
+ `("PATH" =
+ (,(string-append #$output "/bin")))
+ `("PERL5LIB" =
+ (,(getenv "PERL5LIB")))))))))
+ (outputs '("out" "gui"))
+ (native-inputs (list groff pkg-config))
+ (inputs (list bash-minimal ;since wrap-program is used
+ ncurses
+ libhdate
+ lua
+ perl
+ perl-tk
+ perl-par
+ xforms))
+ (synopsis
+ "Suite of dozenal programs, including converters, a calculator, and date
+program")
+ (description
+ "The dozenal suite is a set of programs designed to assist with
+working in the dozenal (also called \"duodecimal\" or \"base twelve\")
+system. It includes number converters (dozenal-to-decimal and
+decimal-to-dozenal), an RPN calculator, a graphical calculator, a
+metric system converter (works with imperial, U.S. customary, SI
+metric, and the dozenal TGM), a pretty-printer for dozenal numbers, a
+date-and-time program, and a dozenal calendar programs, complete with
+events and to-dos.")
+ (home-page "https://codeberg.org/dgoodmaniii/dozenal")
+ (license license:gpl3+))))
+
(define-public dsfmt
(package
(name "dsfmt")
--
2.39.1
^ permalink raw reply related [flat|nested] 4+ messages in thread