Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] maxima: stand-alone executable for sbcl option
@ 2020-10-15 10:24 jbgg
  2020-10-15 14:03 ` [PR PATCH] [Updated] " jbgg
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: jbgg @ 2020-10-15 10:24 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 338 bytes --]

There is a new pull request by jbgg against master on the void-packages repository

https://github.com/jbgg/void-packages maxima
https://github.com/void-linux/void-packages/pull/25631

maxima: stand-alone executable for sbcl option
closes: #25221

A patch file from https://github.com/void-linux/void-packages/pull/25631.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-maxima-25631.patch --]
[-- Type: text/x-diff, Size: 1244 bytes --]

From 1872827dbd4ac2dde43423833881540f43d6431f Mon Sep 17 00:00:00 2001
From: Bosco Garcia <jboscogg@gmail.com>
Date: Fri, 2 Oct 2020 19:02:05 +0200
Subject: [PATCH] maxima: stand-alone executable for sbcl option

closes: #25221
---
 srcpkgs/maxima/template | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/maxima/template b/srcpkgs/maxima/template
index a1a856c4473..2ace6344265 100644
--- a/srcpkgs/maxima/template
+++ b/srcpkgs/maxima/template
@@ -1,12 +1,13 @@
 # Template file for 'maxima'
 pkgname=maxima
 version=5.44.0
-revision=3
+revision=4
 build_style=gnu-configure
-configure_args="$(vopt_enable clisp) $(vopt_enable sbcl)"
+configure_args="$(vopt_enable clisp) $(vopt_enable sbcl sbcl-exec)"
 hostmakedepends="python3 perl emacs texinfo"
 makedepends="$(vopt_if clisp clisp) $(vopt_if sbcl sbcl)"
-depends="$(vopt_if clisp clisp) $(vopt_if sbcl sbcl)"
+depends="$(vopt_if clisp clisp)"
+nostrip=yes
 short_desc="Computer Algebra System"
 maintainer="Bosco Garcia <jboscogg@gmail.org>"
 license="GPL-2.0-only"
@@ -39,7 +40,7 @@ maxima-emacs_package() {
 	depends="${sourcepkg}-${version}_${revision} virtual?emacs"
 	pkg_install() {
 		vmove usr/share/emacs
-		}
+    }
 }
 
 xmaxima_package() {

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PR PATCH] [Updated] maxima: stand-alone executable for sbcl option
  2020-10-15 10:24 [PR PATCH] maxima: stand-alone executable for sbcl option jbgg
@ 2020-10-15 14:03 ` jbgg
  2020-10-15 14:04 ` jbgg
  2020-12-03 13:23 ` [PR PATCH] [Merged]: " abenson
  2 siblings, 0 replies; 4+ messages in thread
From: jbgg @ 2020-10-15 14:03 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 343 bytes --]

There is an updated pull request by jbgg against master on the void-packages repository

https://github.com/jbgg/void-packages maxima
https://github.com/void-linux/void-packages/pull/25631

maxima: stand-alone executable for sbcl option
closes: #25221

A patch file from https://github.com/void-linux/void-packages/pull/25631.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-maxima-25631.patch --]
[-- Type: text/x-diff, Size: 1519 bytes --]

From e6b6a76dcc9ffbc8e19009eb618b7ce20480f4ae Mon Sep 17 00:00:00 2001
From: Bosco Garcia <jboscogg@gmail.com>
Date: Fri, 2 Oct 2020 19:02:05 +0200
Subject: [PATCH] maxima: stand-alone executable for sbcl option

closes: #25221
---
 srcpkgs/maxima/template | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/maxima/template b/srcpkgs/maxima/template
index a1a856c4473..69b4fc3d990 100644
--- a/srcpkgs/maxima/template
+++ b/srcpkgs/maxima/template
@@ -1,12 +1,12 @@
 # Template file for 'maxima'
 pkgname=maxima
 version=5.44.0
-revision=3
+revision=4
 build_style=gnu-configure
-configure_args="$(vopt_enable clisp) $(vopt_enable sbcl)"
+configure_args="$(vopt_enable clisp) $(vopt_enable sbcl sbcl-exec)"
 hostmakedepends="python3 perl emacs texinfo"
 makedepends="$(vopt_if clisp clisp) $(vopt_if sbcl sbcl)"
-depends="$(vopt_if clisp clisp) $(vopt_if sbcl sbcl)"
+depends="$(vopt_if clisp clisp)"
 short_desc="Computer Algebra System"
 maintainer="Bosco Garcia <jboscogg@gmail.org>"
 license="GPL-2.0-only"
@@ -14,6 +14,7 @@ homepage="http://maxima.sourceforge.net"
 distfiles="${SOURCEFORGE_SITE}/maxima/maxima-${version}.tar.gz"
 checksum=d93f5e48c4daf8f085d609cb3c7b0bdf342c667fd04cf750c846426874c9d2ec
 
+nostrip=yes
 nopie=yes
 build_options="clisp sbcl"
 desc_option_clisp="Build with CLISP"
@@ -39,7 +40,7 @@ maxima-emacs_package() {
 	depends="${sourcepkg}-${version}_${revision} virtual?emacs"
 	pkg_install() {
 		vmove usr/share/emacs
-		}
+	}
 }
 
 xmaxima_package() {

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PR PATCH] [Updated] maxima: stand-alone executable for sbcl option
  2020-10-15 10:24 [PR PATCH] maxima: stand-alone executable for sbcl option jbgg
  2020-10-15 14:03 ` [PR PATCH] [Updated] " jbgg
@ 2020-10-15 14:04 ` jbgg
  2020-12-03 13:23 ` [PR PATCH] [Merged]: " abenson
  2 siblings, 0 replies; 4+ messages in thread
From: jbgg @ 2020-10-15 14:04 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 343 bytes --]

There is an updated pull request by jbgg against master on the void-packages repository

https://github.com/jbgg/void-packages maxima
https://github.com/void-linux/void-packages/pull/25631

maxima: stand-alone executable for sbcl option
closes: #25221

A patch file from https://github.com/void-linux/void-packages/pull/25631.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-maxima-25631.patch --]
[-- Type: text/x-diff, Size: 1519 bytes --]

From 9410ec0f27d518bf19d76fba7672cf1cca4e9d4d Mon Sep 17 00:00:00 2001
From: Bosco Garcia <jboscogg@gmail.com>
Date: Fri, 2 Oct 2020 19:02:05 +0200
Subject: [PATCH] maxima: stand-alone executable for sbcl option

closes: #25221
---
 srcpkgs/maxima/template | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/maxima/template b/srcpkgs/maxima/template
index a1a856c4473..69b4fc3d990 100644
--- a/srcpkgs/maxima/template
+++ b/srcpkgs/maxima/template
@@ -1,12 +1,12 @@
 # Template file for 'maxima'
 pkgname=maxima
 version=5.44.0
-revision=3
+revision=4
 build_style=gnu-configure
-configure_args="$(vopt_enable clisp) $(vopt_enable sbcl)"
+configure_args="$(vopt_enable clisp) $(vopt_enable sbcl sbcl-exec)"
 hostmakedepends="python3 perl emacs texinfo"
 makedepends="$(vopt_if clisp clisp) $(vopt_if sbcl sbcl)"
-depends="$(vopt_if clisp clisp) $(vopt_if sbcl sbcl)"
+depends="$(vopt_if clisp clisp)"
 short_desc="Computer Algebra System"
 maintainer="Bosco Garcia <jboscogg@gmail.org>"
 license="GPL-2.0-only"
@@ -14,6 +14,7 @@ homepage="http://maxima.sourceforge.net"
 distfiles="${SOURCEFORGE_SITE}/maxima/maxima-${version}.tar.gz"
 checksum=d93f5e48c4daf8f085d609cb3c7b0bdf342c667fd04cf750c846426874c9d2ec
 
+nostrip=yes
 nopie=yes
 build_options="clisp sbcl"
 desc_option_clisp="Build with CLISP"
@@ -39,7 +40,7 @@ maxima-emacs_package() {
 	depends="${sourcepkg}-${version}_${revision} virtual?emacs"
 	pkg_install() {
 		vmove usr/share/emacs
-		}
+	}
 }
 
 xmaxima_package() {

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PR PATCH] [Merged]: maxima: stand-alone executable for sbcl option
  2020-10-15 10:24 [PR PATCH] maxima: stand-alone executable for sbcl option jbgg
  2020-10-15 14:03 ` [PR PATCH] [Updated] " jbgg
  2020-10-15 14:04 ` jbgg
@ 2020-12-03 13:23 ` abenson
  2 siblings, 0 replies; 4+ messages in thread
From: abenson @ 2020-12-03 13:23 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 194 bytes --]

There's a merged pull request on the void-packages repository

maxima: stand-alone executable for sbcl option
https://github.com/void-linux/void-packages/pull/25631

Description:
closes: #25221

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-12-03 13:23 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-15 10:24 [PR PATCH] maxima: stand-alone executable for sbcl option jbgg
2020-10-15 14:03 ` [PR PATCH] [Updated] " jbgg
2020-10-15 14:04 ` jbgg
2020-12-03 13:23 ` [PR PATCH] [Merged]: " abenson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).