Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] scheme48: Enabling cross compilation.
@ 2019-07-16 14:59 voidlinux-github
  2019-07-16 15:00 ` voidlinux-github
                   ` (17 more replies)
  0 siblings, 18 replies; 19+ messages in thread
From: voidlinux-github @ 2019-07-16 14:59 UTC (permalink / raw)
  To: ml

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

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

https://github.com/rc-05/void-packages personal
https://github.com/void-linux/void-packages/pull/13156

scheme48: Enabling cross compilation.


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

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

From b7ff6fa17753e319ad297b9627a3da0a3bdaa86d Mon Sep 17 00:00:00 2001
From: rc-05 <rc23@email.it>
Date: Thu, 13 Jun 2019 00:00:40 +0200
Subject: [PATCH 1/2] New package: ol-2.0

---
 srcpkgs/ol/patches/ol.patch | 21 +++++++++++++++++++++
 srcpkgs/ol/template         | 15 +++++++++++++++
 2 files changed, 36 insertions(+)
 create mode 100644 srcpkgs/ol/patches/ol.patch
 create mode 100644 srcpkgs/ol/template

diff --git a/srcpkgs/ol/patches/ol.patch b/srcpkgs/ol/patches/ol.patch
new file mode 100644
index 00000000000..80a56845b22
--- /dev/null
+++ b/srcpkgs/ol/patches/ol.patch
@@ -0,0 +1,21 @@
+# Thanks to Chocimier for the patch!
+
+diff --git Makefile Makefile
+index 29ea60f..d586472 100644
+--- Makefile
++++ Makefile
+@@ -7,6 +7,7 @@ export OL_HOME=libraries
+ all: release
+ 
+ CC ?= gcc
++LD ?= ld
+ UNAME ?= $(shell uname -s)
+ 
+ # 'configure' part:
+@@ -167,7 +168,7 @@ src/olvm.c: extensions/ffi.c
+ 	touch src/olvm.c
+ 
+ $(repl.o): repl
+-	ld -r -b binary -o $(repl.o) repl
++	$(LD) -r -b binary -o $(repl.o) repl
+
diff --git a/srcpkgs/ol/template b/srcpkgs/ol/template
new file mode 100644
index 00000000000..87845656260
--- /dev/null
+++ b/srcpkgs/ol/template
@@ -0,0 +1,15 @@
+# Template file for 'ol'
+pkgname=ol
+version=2.0
+revision=1
+build_style=gnu-makefile
+short_desc="Purely functional dialect of Lisp"
+maintainer="rc-05 <rc23@email.it>"
+license="LGPL-3.0-or-later, MIT"
+homepage="https://yuriy-chumak.github.io/ol/"
+distfiles="https://github.com/yuriy-chumak/ol/archive/v${version}.tar.gz"
+checksum=5ad537b6bd032549334d1c72e742b78b7d40ccb8d1491d5cf0ce952964deeeea
+
+post_install() {
+	vlicense LICENSE
+}

From edd86f285fd9fd3bc9a2b5adab4eaf9893b9d4cb Mon Sep 17 00:00:00 2001
From: rc-05 <rc23@email.it>
Date: Tue, 16 Jul 2019 16:49:07 +0200
Subject: [PATCH 2/2] scheme48: Enabling cross compilation.

The previous revision had the 'nocross' in order to compile it for x86_64 and i686 architectures.
Hopefully now it can be compiled also for the other CPU architectures.
---
 srcpkgs/ol/patches/ol.patch | 21 ---------------------
 srcpkgs/ol/template         | 15 ---------------
 srcpkgs/scheme48/template   | 20 ++++++++++++++++++++
 3 files changed, 20 insertions(+), 36 deletions(-)
 delete mode 100644 srcpkgs/ol/patches/ol.patch
 delete mode 100644 srcpkgs/ol/template
 create mode 100644 srcpkgs/scheme48/template

diff --git a/srcpkgs/ol/patches/ol.patch b/srcpkgs/ol/patches/ol.patch
deleted file mode 100644
index 80a56845b22..00000000000
--- a/srcpkgs/ol/patches/ol.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-# Thanks to Chocimier for the patch!
-
-diff --git Makefile Makefile
-index 29ea60f..d586472 100644
---- Makefile
-+++ Makefile
-@@ -7,6 +7,7 @@ export OL_HOME=libraries
- all: release
- 
- CC ?= gcc
-+LD ?= ld
- UNAME ?= $(shell uname -s)
- 
- # 'configure' part:
-@@ -167,7 +168,7 @@ src/olvm.c: extensions/ffi.c
- 	touch src/olvm.c
- 
- $(repl.o): repl
--	ld -r -b binary -o $(repl.o) repl
-+	$(LD) -r -b binary -o $(repl.o) repl
-
diff --git a/srcpkgs/ol/template b/srcpkgs/ol/template
deleted file mode 100644
index 87845656260..00000000000
--- a/srcpkgs/ol/template
+++ /dev/null
@@ -1,15 +0,0 @@
-# Template file for 'ol'
-pkgname=ol
-version=2.0
-revision=1
-build_style=gnu-makefile
-short_desc="Purely functional dialect of Lisp"
-maintainer="rc-05 <rc23@email.it>"
-license="LGPL-3.0-or-later, MIT"
-homepage="https://yuriy-chumak.github.io/ol/"
-distfiles="https://github.com/yuriy-chumak/ol/archive/v${version}.tar.gz"
-checksum=5ad537b6bd032549334d1c72e742b78b7d40ccb8d1491d5cf0ce952964deeeea
-
-post_install() {
-	vlicense LICENSE
-}
diff --git a/srcpkgs/scheme48/template b/srcpkgs/scheme48/template
new file mode 100644
index 00000000000..cb3c287fa31
--- /dev/null
+++ b/srcpkgs/scheme48/template
@@ -0,0 +1,20 @@
+# Template file for 'scheme48'
+pkgname=scheme48
+version=1.9.2
+revision=2
+build_style=gnu-configure
+short_desc="Implementation of the R5RS Scheme standard"
+maintainer="rc-05 <rc23@email.it>"
+license="custom:scheme48"
+homepage="http://s48.org/"
+distfiles="http://s48.org/${version}/scheme48-${version}.tgz"
+checksum=9c4921a90e95daee067cd2e9cc0ffe09e118f4da01c0c0198e577c4f47759df4
+alternatives="
+ scheme:scheme:/usr/bin/scheme48
+ scheme:scheme.1:/usr/share/man/man1/scheme48.1
+"
+
+post_install() {
+	vlicense COPYING
+}
+

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

* Re: scheme48: Enabling cross compilation.
  2019-07-16 14:59 [PR PATCH] scheme48: Enabling cross compilation voidlinux-github
@ 2019-07-16 15:00 ` voidlinux-github
  2019-07-16 15:02 ` [PR PATCH] [Updated] " voidlinux-github
                   ` (16 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: voidlinux-github @ 2019-07-16 15:00 UTC (permalink / raw)
  To: ml

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

New comment by Anachron on void-packages repository

https://github.com/void-linux/void-packages/pull/13156#issuecomment-511854622
Comment:
Please merge your commits. 

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

* Re: [PR PATCH] [Updated] scheme48: Enabling cross compilation.
  2019-07-16 14:59 [PR PATCH] scheme48: Enabling cross compilation voidlinux-github
  2019-07-16 15:00 ` voidlinux-github
  2019-07-16 15:02 ` [PR PATCH] [Updated] " voidlinux-github
@ 2019-07-16 15:02 ` voidlinux-github
  2019-07-16 15:07 ` voidlinux-github
                   ` (14 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: voidlinux-github @ 2019-07-16 15:02 UTC (permalink / raw)
  To: ml

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

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

https://github.com/rc-05/void-packages personal
https://github.com/void-linux/void-packages/pull/13156

scheme48: Enabling cross compilation.


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

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

From b7ff6fa17753e319ad297b9627a3da0a3bdaa86d Mon Sep 17 00:00:00 2001
From: rc-05 <rc23@email.it>
Date: Thu, 13 Jun 2019 00:00:40 +0200
Subject: [PATCH 1/2] New package: ol-2.0

---
 srcpkgs/ol/patches/ol.patch | 21 +++++++++++++++++++++
 srcpkgs/ol/template         | 15 +++++++++++++++
 2 files changed, 36 insertions(+)
 create mode 100644 srcpkgs/ol/patches/ol.patch
 create mode 100644 srcpkgs/ol/template

diff --git a/srcpkgs/ol/patches/ol.patch b/srcpkgs/ol/patches/ol.patch
new file mode 100644
index 00000000000..80a56845b22
--- /dev/null
+++ b/srcpkgs/ol/patches/ol.patch
@@ -0,0 +1,21 @@
+# Thanks to Chocimier for the patch!
+
+diff --git Makefile Makefile
+index 29ea60f..d586472 100644
+--- Makefile
++++ Makefile
+@@ -7,6 +7,7 @@ export OL_HOME=libraries
+ all: release
+ 
+ CC ?= gcc
++LD ?= ld
+ UNAME ?= $(shell uname -s)
+ 
+ # 'configure' part:
+@@ -167,7 +168,7 @@ src/olvm.c: extensions/ffi.c
+ 	touch src/olvm.c
+ 
+ $(repl.o): repl
+-	ld -r -b binary -o $(repl.o) repl
++	$(LD) -r -b binary -o $(repl.o) repl
+
diff --git a/srcpkgs/ol/template b/srcpkgs/ol/template
new file mode 100644
index 00000000000..87845656260
--- /dev/null
+++ b/srcpkgs/ol/template
@@ -0,0 +1,15 @@
+# Template file for 'ol'
+pkgname=ol
+version=2.0
+revision=1
+build_style=gnu-makefile
+short_desc="Purely functional dialect of Lisp"
+maintainer="rc-05 <rc23@email.it>"
+license="LGPL-3.0-or-later, MIT"
+homepage="https://yuriy-chumak.github.io/ol/"
+distfiles="https://github.com/yuriy-chumak/ol/archive/v${version}.tar.gz"
+checksum=5ad537b6bd032549334d1c72e742b78b7d40ccb8d1491d5cf0ce952964deeeea
+
+post_install() {
+	vlicense LICENSE
+}

From edd86f285fd9fd3bc9a2b5adab4eaf9893b9d4cb Mon Sep 17 00:00:00 2001
From: rc-05 <rc23@email.it>
Date: Tue, 16 Jul 2019 16:49:07 +0200
Subject: [PATCH 2/2] scheme48: Enabling cross compilation.

The previous revision had the 'nocross' in order to compile it for x86_64 and i686 architectures.
Hopefully now it can be compiled also for the other CPU architectures.
---
 srcpkgs/ol/patches/ol.patch | 21 ---------------------
 srcpkgs/ol/template         | 15 ---------------
 srcpkgs/scheme48/template   | 20 ++++++++++++++++++++
 3 files changed, 20 insertions(+), 36 deletions(-)
 delete mode 100644 srcpkgs/ol/patches/ol.patch
 delete mode 100644 srcpkgs/ol/template
 create mode 100644 srcpkgs/scheme48/template

diff --git a/srcpkgs/ol/patches/ol.patch b/srcpkgs/ol/patches/ol.patch
deleted file mode 100644
index 80a56845b22..00000000000
--- a/srcpkgs/ol/patches/ol.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-# Thanks to Chocimier for the patch!
-
-diff --git Makefile Makefile
-index 29ea60f..d586472 100644
---- Makefile
-+++ Makefile
-@@ -7,6 +7,7 @@ export OL_HOME=libraries
- all: release
- 
- CC ?= gcc
-+LD ?= ld
- UNAME ?= $(shell uname -s)
- 
- # 'configure' part:
-@@ -167,7 +168,7 @@ src/olvm.c: extensions/ffi.c
- 	touch src/olvm.c
- 
- $(repl.o): repl
--	ld -r -b binary -o $(repl.o) repl
-+	$(LD) -r -b binary -o $(repl.o) repl
-
diff --git a/srcpkgs/ol/template b/srcpkgs/ol/template
deleted file mode 100644
index 87845656260..00000000000
--- a/srcpkgs/ol/template
+++ /dev/null
@@ -1,15 +0,0 @@
-# Template file for 'ol'
-pkgname=ol
-version=2.0
-revision=1
-build_style=gnu-makefile
-short_desc="Purely functional dialect of Lisp"
-maintainer="rc-05 <rc23@email.it>"
-license="LGPL-3.0-or-later, MIT"
-homepage="https://yuriy-chumak.github.io/ol/"
-distfiles="https://github.com/yuriy-chumak/ol/archive/v${version}.tar.gz"
-checksum=5ad537b6bd032549334d1c72e742b78b7d40ccb8d1491d5cf0ce952964deeeea
-
-post_install() {
-	vlicense LICENSE
-}
diff --git a/srcpkgs/scheme48/template b/srcpkgs/scheme48/template
new file mode 100644
index 00000000000..cb3c287fa31
--- /dev/null
+++ b/srcpkgs/scheme48/template
@@ -0,0 +1,20 @@
+# Template file for 'scheme48'
+pkgname=scheme48
+version=1.9.2
+revision=2
+build_style=gnu-configure
+short_desc="Implementation of the R5RS Scheme standard"
+maintainer="rc-05 <rc23@email.it>"
+license="custom:scheme48"
+homepage="http://s48.org/"
+distfiles="http://s48.org/${version}/scheme48-${version}.tgz"
+checksum=9c4921a90e95daee067cd2e9cc0ffe09e118f4da01c0c0198e577c4f47759df4
+alternatives="
+ scheme:scheme:/usr/bin/scheme48
+ scheme:scheme.1:/usr/share/man/man1/scheme48.1
+"
+
+post_install() {
+	vlicense COPYING
+}
+

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

* Re: [PR PATCH] [Updated] scheme48: Enabling cross compilation.
  2019-07-16 14:59 [PR PATCH] scheme48: Enabling cross compilation voidlinux-github
  2019-07-16 15:00 ` voidlinux-github
@ 2019-07-16 15:02 ` voidlinux-github
  2019-07-16 15:02 ` voidlinux-github
                   ` (15 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: voidlinux-github @ 2019-07-16 15:02 UTC (permalink / raw)
  To: ml

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

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

https://github.com/rc-05/void-packages personal
https://github.com/void-linux/void-packages/pull/13156

scheme48: Enabling cross compilation.


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

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

From b7ff6fa17753e319ad297b9627a3da0a3bdaa86d Mon Sep 17 00:00:00 2001
From: rc-05 <rc23@email.it>
Date: Thu, 13 Jun 2019 00:00:40 +0200
Subject: [PATCH 1/2] New package: ol-2.0

---
 srcpkgs/ol/patches/ol.patch | 21 +++++++++++++++++++++
 srcpkgs/ol/template         | 15 +++++++++++++++
 2 files changed, 36 insertions(+)
 create mode 100644 srcpkgs/ol/patches/ol.patch
 create mode 100644 srcpkgs/ol/template

diff --git a/srcpkgs/ol/patches/ol.patch b/srcpkgs/ol/patches/ol.patch
new file mode 100644
index 00000000000..80a56845b22
--- /dev/null
+++ b/srcpkgs/ol/patches/ol.patch
@@ -0,0 +1,21 @@
+# Thanks to Chocimier for the patch!
+
+diff --git Makefile Makefile
+index 29ea60f..d586472 100644
+--- Makefile
++++ Makefile
+@@ -7,6 +7,7 @@ export OL_HOME=libraries
+ all: release
+ 
+ CC ?= gcc
++LD ?= ld
+ UNAME ?= $(shell uname -s)
+ 
+ # 'configure' part:
+@@ -167,7 +168,7 @@ src/olvm.c: extensions/ffi.c
+ 	touch src/olvm.c
+ 
+ $(repl.o): repl
+-	ld -r -b binary -o $(repl.o) repl
++	$(LD) -r -b binary -o $(repl.o) repl
+
diff --git a/srcpkgs/ol/template b/srcpkgs/ol/template
new file mode 100644
index 00000000000..87845656260
--- /dev/null
+++ b/srcpkgs/ol/template
@@ -0,0 +1,15 @@
+# Template file for 'ol'
+pkgname=ol
+version=2.0
+revision=1
+build_style=gnu-makefile
+short_desc="Purely functional dialect of Lisp"
+maintainer="rc-05 <rc23@email.it>"
+license="LGPL-3.0-or-later, MIT"
+homepage="https://yuriy-chumak.github.io/ol/"
+distfiles="https://github.com/yuriy-chumak/ol/archive/v${version}.tar.gz"
+checksum=5ad537b6bd032549334d1c72e742b78b7d40ccb8d1491d5cf0ce952964deeeea
+
+post_install() {
+	vlicense LICENSE
+}

From edd86f285fd9fd3bc9a2b5adab4eaf9893b9d4cb Mon Sep 17 00:00:00 2001
From: rc-05 <rc23@email.it>
Date: Tue, 16 Jul 2019 16:49:07 +0200
Subject: [PATCH 2/2] scheme48: Enabling cross compilation.

The previous revision had the 'nocross' in order to compile it for x86_64 and i686 architectures.
Hopefully now it can be compiled also for the other CPU architectures.
---
 srcpkgs/ol/patches/ol.patch | 21 ---------------------
 srcpkgs/ol/template         | 15 ---------------
 srcpkgs/scheme48/template   | 20 ++++++++++++++++++++
 3 files changed, 20 insertions(+), 36 deletions(-)
 delete mode 100644 srcpkgs/ol/patches/ol.patch
 delete mode 100644 srcpkgs/ol/template
 create mode 100644 srcpkgs/scheme48/template

diff --git a/srcpkgs/ol/patches/ol.patch b/srcpkgs/ol/patches/ol.patch
deleted file mode 100644
index 80a56845b22..00000000000
--- a/srcpkgs/ol/patches/ol.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-# Thanks to Chocimier for the patch!
-
-diff --git Makefile Makefile
-index 29ea60f..d586472 100644
---- Makefile
-+++ Makefile
-@@ -7,6 +7,7 @@ export OL_HOME=libraries
- all: release
- 
- CC ?= gcc
-+LD ?= ld
- UNAME ?= $(shell uname -s)
- 
- # 'configure' part:
-@@ -167,7 +168,7 @@ src/olvm.c: extensions/ffi.c
- 	touch src/olvm.c
- 
- $(repl.o): repl
--	ld -r -b binary -o $(repl.o) repl
-+	$(LD) -r -b binary -o $(repl.o) repl
-
diff --git a/srcpkgs/ol/template b/srcpkgs/ol/template
deleted file mode 100644
index 87845656260..00000000000
--- a/srcpkgs/ol/template
+++ /dev/null
@@ -1,15 +0,0 @@
-# Template file for 'ol'
-pkgname=ol
-version=2.0
-revision=1
-build_style=gnu-makefile
-short_desc="Purely functional dialect of Lisp"
-maintainer="rc-05 <rc23@email.it>"
-license="LGPL-3.0-or-later, MIT"
-homepage="https://yuriy-chumak.github.io/ol/"
-distfiles="https://github.com/yuriy-chumak/ol/archive/v${version}.tar.gz"
-checksum=5ad537b6bd032549334d1c72e742b78b7d40ccb8d1491d5cf0ce952964deeeea
-
-post_install() {
-	vlicense LICENSE
-}
diff --git a/srcpkgs/scheme48/template b/srcpkgs/scheme48/template
new file mode 100644
index 00000000000..cb3c287fa31
--- /dev/null
+++ b/srcpkgs/scheme48/template
@@ -0,0 +1,20 @@
+# Template file for 'scheme48'
+pkgname=scheme48
+version=1.9.2
+revision=2
+build_style=gnu-configure
+short_desc="Implementation of the R5RS Scheme standard"
+maintainer="rc-05 <rc23@email.it>"
+license="custom:scheme48"
+homepage="http://s48.org/"
+distfiles="http://s48.org/${version}/scheme48-${version}.tgz"
+checksum=9c4921a90e95daee067cd2e9cc0ffe09e118f4da01c0c0198e577c4f47759df4
+alternatives="
+ scheme:scheme:/usr/bin/scheme48
+ scheme:scheme.1:/usr/share/man/man1/scheme48.1
+"
+
+post_install() {
+	vlicense COPYING
+}
+

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

* Re: [PR PATCH] [Updated] scheme48: Enabling cross compilation.
  2019-07-16 14:59 [PR PATCH] scheme48: Enabling cross compilation voidlinux-github
                   ` (2 preceding siblings ...)
  2019-07-16 15:02 ` voidlinux-github
@ 2019-07-16 15:07 ` voidlinux-github
  2019-07-16 15:07 ` voidlinux-github
                   ` (13 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: voidlinux-github @ 2019-07-16 15:07 UTC (permalink / raw)
  To: ml

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

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

https://github.com/rc-05/void-packages personal
https://github.com/void-linux/void-packages/pull/13156

scheme48: Enabling cross compilation.


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

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

From 7a68806613f25ede7cbfa655c179280fdc5608e1 Mon Sep 17 00:00:00 2001
From: rc-05 <rc23@email.it>
Date: Thu, 13 Jun 2019 00:00:40 +0200
Subject: [PATCH] scheme48: Enabling cross compilation.

The previous revision had the 'nocross' in order to compile it for x86_64 and i686 architectures.
Hopefully now it can be compiled also for the other CPU architectures.
---
 srcpkgs/scheme48/template | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
 create mode 100644 srcpkgs/scheme48/template

diff --git a/srcpkgs/scheme48/template b/srcpkgs/scheme48/template
new file mode 100644
index 00000000000..cb3c287fa31
--- /dev/null
+++ b/srcpkgs/scheme48/template
@@ -0,0 +1,20 @@
+# Template file for 'scheme48'
+pkgname=scheme48
+version=1.9.2
+revision=2
+build_style=gnu-configure
+short_desc="Implementation of the R5RS Scheme standard"
+maintainer="rc-05 <rc23@email.it>"
+license="custom:scheme48"
+homepage="http://s48.org/"
+distfiles="http://s48.org/${version}/scheme48-${version}.tgz"
+checksum=9c4921a90e95daee067cd2e9cc0ffe09e118f4da01c0c0198e577c4f47759df4
+alternatives="
+ scheme:scheme:/usr/bin/scheme48
+ scheme:scheme.1:/usr/share/man/man1/scheme48.1
+"
+
+post_install() {
+	vlicense COPYING
+}
+

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

* Re: [PR PATCH] [Updated] scheme48: Enabling cross compilation.
  2019-07-16 14:59 [PR PATCH] scheme48: Enabling cross compilation voidlinux-github
                   ` (3 preceding siblings ...)
  2019-07-16 15:07 ` voidlinux-github
@ 2019-07-16 15:07 ` voidlinux-github
  2019-07-16 15:10 ` voidlinux-github
                   ` (12 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: voidlinux-github @ 2019-07-16 15:07 UTC (permalink / raw)
  To: ml

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

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

https://github.com/rc-05/void-packages personal
https://github.com/void-linux/void-packages/pull/13156

scheme48: Enabling cross compilation.


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

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

From 7a68806613f25ede7cbfa655c179280fdc5608e1 Mon Sep 17 00:00:00 2001
From: rc-05 <rc23@email.it>
Date: Thu, 13 Jun 2019 00:00:40 +0200
Subject: [PATCH] scheme48: Enabling cross compilation.

The previous revision had the 'nocross' in order to compile it for x86_64 and i686 architectures.
Hopefully now it can be compiled also for the other CPU architectures.
---
 srcpkgs/scheme48/template | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
 create mode 100644 srcpkgs/scheme48/template

diff --git a/srcpkgs/scheme48/template b/srcpkgs/scheme48/template
new file mode 100644
index 00000000000..cb3c287fa31
--- /dev/null
+++ b/srcpkgs/scheme48/template
@@ -0,0 +1,20 @@
+# Template file for 'scheme48'
+pkgname=scheme48
+version=1.9.2
+revision=2
+build_style=gnu-configure
+short_desc="Implementation of the R5RS Scheme standard"
+maintainer="rc-05 <rc23@email.it>"
+license="custom:scheme48"
+homepage="http://s48.org/"
+distfiles="http://s48.org/${version}/scheme48-${version}.tgz"
+checksum=9c4921a90e95daee067cd2e9cc0ffe09e118f4da01c0c0198e577c4f47759df4
+alternatives="
+ scheme:scheme:/usr/bin/scheme48
+ scheme:scheme.1:/usr/share/man/man1/scheme48.1
+"
+
+post_install() {
+	vlicense COPYING
+}
+

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

* Re: [PR PATCH] [Updated] scheme48: Enabling cross compilation.
  2019-07-16 14:59 [PR PATCH] scheme48: Enabling cross compilation voidlinux-github
                   ` (5 preceding siblings ...)
  2019-07-16 15:10 ` voidlinux-github
@ 2019-07-16 15:10 ` voidlinux-github
  2019-07-16 15:22 ` voidlinux-github
                   ` (10 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: voidlinux-github @ 2019-07-16 15:10 UTC (permalink / raw)
  To: ml

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

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

https://github.com/rc-05/void-packages personal
https://github.com/void-linux/void-packages/pull/13156

scheme48: Enabling cross compilation.


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

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

From 7a68806613f25ede7cbfa655c179280fdc5608e1 Mon Sep 17 00:00:00 2001
From: rc-05 <rc23@email.it>
Date: Thu, 13 Jun 2019 00:00:40 +0200
Subject: [PATCH] scheme48: Enabling cross compilation.

The previous revision had the 'nocross' in order to compile it for x86_64 and i686 architectures.
Hopefully now it can be compiled also for the other CPU architectures.
---
 srcpkgs/scheme48/template | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
 create mode 100644 srcpkgs/scheme48/template

diff --git a/srcpkgs/scheme48/template b/srcpkgs/scheme48/template
new file mode 100644
index 00000000000..cb3c287fa31
--- /dev/null
+++ b/srcpkgs/scheme48/template
@@ -0,0 +1,20 @@
+# Template file for 'scheme48'
+pkgname=scheme48
+version=1.9.2
+revision=2
+build_style=gnu-configure
+short_desc="Implementation of the R5RS Scheme standard"
+maintainer="rc-05 <rc23@email.it>"
+license="custom:scheme48"
+homepage="http://s48.org/"
+distfiles="http://s48.org/${version}/scheme48-${version}.tgz"
+checksum=9c4921a90e95daee067cd2e9cc0ffe09e118f4da01c0c0198e577c4f47759df4
+alternatives="
+ scheme:scheme:/usr/bin/scheme48
+ scheme:scheme.1:/usr/share/man/man1/scheme48.1
+"
+
+post_install() {
+	vlicense COPYING
+}
+

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

* Re: [PR PATCH] [Updated] scheme48: Enabling cross compilation.
  2019-07-16 14:59 [PR PATCH] scheme48: Enabling cross compilation voidlinux-github
                   ` (4 preceding siblings ...)
  2019-07-16 15:07 ` voidlinux-github
@ 2019-07-16 15:10 ` voidlinux-github
  2019-07-16 15:10 ` voidlinux-github
                   ` (11 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: voidlinux-github @ 2019-07-16 15:10 UTC (permalink / raw)
  To: ml

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

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

https://github.com/rc-05/void-packages personal
https://github.com/void-linux/void-packages/pull/13156

scheme48: Enabling cross compilation.


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

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

From 7a68806613f25ede7cbfa655c179280fdc5608e1 Mon Sep 17 00:00:00 2001
From: rc-05 <rc23@email.it>
Date: Thu, 13 Jun 2019 00:00:40 +0200
Subject: [PATCH] scheme48: Enabling cross compilation.

The previous revision had the 'nocross' in order to compile it for x86_64 and i686 architectures.
Hopefully now it can be compiled also for the other CPU architectures.
---
 srcpkgs/scheme48/template | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
 create mode 100644 srcpkgs/scheme48/template

diff --git a/srcpkgs/scheme48/template b/srcpkgs/scheme48/template
new file mode 100644
index 00000000000..cb3c287fa31
--- /dev/null
+++ b/srcpkgs/scheme48/template
@@ -0,0 +1,20 @@
+# Template file for 'scheme48'
+pkgname=scheme48
+version=1.9.2
+revision=2
+build_style=gnu-configure
+short_desc="Implementation of the R5RS Scheme standard"
+maintainer="rc-05 <rc23@email.it>"
+license="custom:scheme48"
+homepage="http://s48.org/"
+distfiles="http://s48.org/${version}/scheme48-${version}.tgz"
+checksum=9c4921a90e95daee067cd2e9cc0ffe09e118f4da01c0c0198e577c4f47759df4
+alternatives="
+ scheme:scheme:/usr/bin/scheme48
+ scheme:scheme.1:/usr/share/man/man1/scheme48.1
+"
+
+post_install() {
+	vlicense COPYING
+}
+

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

* Re: scheme48: Enabling cross compilation.
  2019-07-16 14:59 [PR PATCH] scheme48: Enabling cross compilation voidlinux-github
                   ` (6 preceding siblings ...)
  2019-07-16 15:10 ` voidlinux-github
@ 2019-07-16 15:22 ` voidlinux-github
  2019-07-16 15:55 ` voidlinux-github
                   ` (9 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: voidlinux-github @ 2019-07-16 15:22 UTC (permalink / raw)
  To: ml

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

New comment by Chocimier on void-packages repository

https://github.com/void-linux/void-packages/pull/13156#issuecomment-511863656
Comment:
Still fails. Did it pass for you locally? https://travis-ci.org/void-linux/void-packages/jobs/559492465

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

* Re: scheme48: Enabling cross compilation.
  2019-07-16 14:59 [PR PATCH] scheme48: Enabling cross compilation voidlinux-github
                   ` (7 preceding siblings ...)
  2019-07-16 15:22 ` voidlinux-github
@ 2019-07-16 15:55 ` voidlinux-github
  2019-07-16 16:04 ` voidlinux-github
                   ` (8 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: voidlinux-github @ 2019-07-16 15:55 UTC (permalink / raw)
  To: ml

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

New comment by Anachron on void-packages repository

https://github.com/void-linux/void-packages/pull/13156#issuecomment-511877176
Comment:
Please read about how to squash your commits.

https://gist.github.com/patik/b8a9dc5cd356f9f6f980

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

* Re: scheme48: Enabling cross compilation.
  2019-07-16 14:59 [PR PATCH] scheme48: Enabling cross compilation voidlinux-github
                   ` (8 preceding siblings ...)
  2019-07-16 15:55 ` voidlinux-github
@ 2019-07-16 16:04 ` voidlinux-github
  2019-07-16 17:15 ` [PR PATCH] [Updated] " voidlinux-github
                   ` (7 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: voidlinux-github @ 2019-07-16 16:04 UTC (permalink / raw)
  To: ml

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

New comment by Chocimier on void-packages repository

https://github.com/void-linux/void-packages/pull/13156#issuecomment-511880775
Comment:
Well, he was asked to merge and he merged. ;)

There is also `git rebase HEAD~9 -i` then `fixup` way.

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

* Re: [PR PATCH] [Updated] scheme48: Enabling cross compilation.
  2019-07-16 14:59 [PR PATCH] scheme48: Enabling cross compilation voidlinux-github
                   ` (10 preceding siblings ...)
  2019-07-16 17:15 ` [PR PATCH] [Updated] " voidlinux-github
@ 2019-07-16 17:15 ` voidlinux-github
  2019-07-16 17:17 ` voidlinux-github
                   ` (5 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: voidlinux-github @ 2019-07-16 17:15 UTC (permalink / raw)
  To: ml

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

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

https://github.com/rc-05/void-packages personal
https://github.com/void-linux/void-packages/pull/13156

scheme48: Enabling cross compilation.


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

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

From 7a68806613f25ede7cbfa655c179280fdc5608e1 Mon Sep 17 00:00:00 2001
From: rc-05 <rc23@email.it>
Date: Thu, 13 Jun 2019 00:00:40 +0200
Subject: [PATCH] scheme48: Enabling cross compilation.

The previous revision had the 'nocross' in order to compile it for x86_64 and i686 architectures.
Hopefully now it can be compiled also for the other CPU architectures.
---
 srcpkgs/scheme48/template | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
 create mode 100644 srcpkgs/scheme48/template

diff --git a/srcpkgs/scheme48/template b/srcpkgs/scheme48/template
new file mode 100644
index 00000000000..cb3c287fa31
--- /dev/null
+++ b/srcpkgs/scheme48/template
@@ -0,0 +1,20 @@
+# Template file for 'scheme48'
+pkgname=scheme48
+version=1.9.2
+revision=2
+build_style=gnu-configure
+short_desc="Implementation of the R5RS Scheme standard"
+maintainer="rc-05 <rc23@email.it>"
+license="custom:scheme48"
+homepage="http://s48.org/"
+distfiles="http://s48.org/${version}/scheme48-${version}.tgz"
+checksum=9c4921a90e95daee067cd2e9cc0ffe09e118f4da01c0c0198e577c4f47759df4
+alternatives="
+ scheme:scheme:/usr/bin/scheme48
+ scheme:scheme.1:/usr/share/man/man1/scheme48.1
+"
+
+post_install() {
+	vlicense COPYING
+}
+

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

* Re: [PR PATCH] [Updated] scheme48: Enabling cross compilation.
  2019-07-16 14:59 [PR PATCH] scheme48: Enabling cross compilation voidlinux-github
                   ` (9 preceding siblings ...)
  2019-07-16 16:04 ` voidlinux-github
@ 2019-07-16 17:15 ` voidlinux-github
  2019-07-16 17:15 ` voidlinux-github
                   ` (6 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: voidlinux-github @ 2019-07-16 17:15 UTC (permalink / raw)
  To: ml

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

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

https://github.com/rc-05/void-packages personal
https://github.com/void-linux/void-packages/pull/13156

scheme48: Enabling cross compilation.


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

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

From 7a68806613f25ede7cbfa655c179280fdc5608e1 Mon Sep 17 00:00:00 2001
From: rc-05 <rc23@email.it>
Date: Thu, 13 Jun 2019 00:00:40 +0200
Subject: [PATCH] scheme48: Enabling cross compilation.

The previous revision had the 'nocross' in order to compile it for x86_64 and i686 architectures.
Hopefully now it can be compiled also for the other CPU architectures.
---
 srcpkgs/scheme48/template | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
 create mode 100644 srcpkgs/scheme48/template

diff --git a/srcpkgs/scheme48/template b/srcpkgs/scheme48/template
new file mode 100644
index 00000000000..cb3c287fa31
--- /dev/null
+++ b/srcpkgs/scheme48/template
@@ -0,0 +1,20 @@
+# Template file for 'scheme48'
+pkgname=scheme48
+version=1.9.2
+revision=2
+build_style=gnu-configure
+short_desc="Implementation of the R5RS Scheme standard"
+maintainer="rc-05 <rc23@email.it>"
+license="custom:scheme48"
+homepage="http://s48.org/"
+distfiles="http://s48.org/${version}/scheme48-${version}.tgz"
+checksum=9c4921a90e95daee067cd2e9cc0ffe09e118f4da01c0c0198e577c4f47759df4
+alternatives="
+ scheme:scheme:/usr/bin/scheme48
+ scheme:scheme.1:/usr/share/man/man1/scheme48.1
+"
+
+post_install() {
+	vlicense COPYING
+}
+

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

* Re: scheme48: Enabling cross compilation.
  2019-07-16 14:59 [PR PATCH] scheme48: Enabling cross compilation voidlinux-github
                   ` (11 preceding siblings ...)
  2019-07-16 17:15 ` voidlinux-github
@ 2019-07-16 17:17 ` voidlinux-github
  2019-07-16 17:38 ` voidlinux-github
                   ` (4 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: voidlinux-github @ 2019-07-16 17:17 UTC (permalink / raw)
  To: ml

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

New comment by rc-05 on void-packages repository

https://github.com/void-linux/void-packages/pull/13156#issuecomment-511907251
Comment:
I'm working on correcting some mistakes with the merge conflicts

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

* Re: scheme48: Enabling cross compilation.
  2019-07-16 14:59 [PR PATCH] scheme48: Enabling cross compilation voidlinux-github
                   ` (12 preceding siblings ...)
  2019-07-16 17:17 ` voidlinux-github
@ 2019-07-16 17:38 ` voidlinux-github
  2019-07-16 17:39 ` voidlinux-github
                   ` (3 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: voidlinux-github @ 2019-07-16 17:38 UTC (permalink / raw)
  To: ml

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

New comment by rc-05 on void-packages repository

https://github.com/void-linux/void-packages/pull/13156#issuecomment-511907251
Comment:
I'm working on correcting some mistakes with the merge conflicts.

- Edit:
  - It still fails to compile the test program for other architectures than x86_64 and i686... Should I patch the program or it's better than I close the pull request?

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

* Re: scheme48: Enabling cross compilation.
  2019-07-16 14:59 [PR PATCH] scheme48: Enabling cross compilation voidlinux-github
                   ` (13 preceding siblings ...)
  2019-07-16 17:38 ` voidlinux-github
@ 2019-07-16 17:39 ` voidlinux-github
  2019-07-16 18:02 ` voidlinux-github
                   ` (2 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: voidlinux-github @ 2019-07-16 17:39 UTC (permalink / raw)
  To: ml

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

New comment by rc-05 on void-packages repository

https://github.com/void-linux/void-packages/pull/13156#issuecomment-511907251
Comment:
I'm working on correcting some mistakes with the merge conflicts.

- Edit:
  - It still fails to compile the test program for other architectures than x86_64 and i686... Should I patch the program or it's better than I close the pull request? P.S.: I'm trying locally and passes for x86_64

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

* Re: scheme48: Enabling cross compilation.
  2019-07-16 14:59 [PR PATCH] scheme48: Enabling cross compilation voidlinux-github
                   ` (14 preceding siblings ...)
  2019-07-16 17:39 ` voidlinux-github
@ 2019-07-16 18:02 ` voidlinux-github
  2019-07-16 18:02 ` voidlinux-github
  2019-07-16 18:02 ` [PR PATCH] [Closed]: " voidlinux-github
  17 siblings, 0 replies; 19+ messages in thread
From: voidlinux-github @ 2019-07-16 18:02 UTC (permalink / raw)
  To: ml

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

New comment by rc-05 on void-packages repository

https://github.com/void-linux/void-packages/pull/13156#issuecomment-511907251
Comment:
I'm working on correcting some mistakes with the merge conflicts.

- Edit:
  - It still fails to compile the test program for other architectures than x86_64 and i686... Should I patch the program or it's better than I close the pull request? P.S.: I'm trying locally and passes for x86_64
  - It passes only for x86_64 and i686. It is better than I close the pull request indefinitely as I can't get the package cross-compile.

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

* Re: scheme48: Enabling cross compilation.
  2019-07-16 14:59 [PR PATCH] scheme48: Enabling cross compilation voidlinux-github
                   ` (15 preceding siblings ...)
  2019-07-16 18:02 ` voidlinux-github
@ 2019-07-16 18:02 ` voidlinux-github
  2019-07-16 18:02 ` [PR PATCH] [Closed]: " voidlinux-github
  17 siblings, 0 replies; 19+ messages in thread
From: voidlinux-github @ 2019-07-16 18:02 UTC (permalink / raw)
  To: ml

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

New comment by rc-05 on void-packages repository

https://github.com/void-linux/void-packages/pull/13156#issuecomment-511907251
Comment:
I'm working on correcting some mistakes with the merge conflicts.

- Edit:
  - It still fails to compile the test program for other architectures than x86_64 and i686... Should I patch the program or it's better than I close the pull request? P.S.: I'm trying locally and passes for x86_64
  - It passes only for x86_64 and i686. It is better than I close the pull request indefinitely as I can't get the package to cross-compile.

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

* Re: [PR PATCH] [Closed]: scheme48: Enabling cross compilation.
  2019-07-16 14:59 [PR PATCH] scheme48: Enabling cross compilation voidlinux-github
                   ` (16 preceding siblings ...)
  2019-07-16 18:02 ` voidlinux-github
@ 2019-07-16 18:02 ` voidlinux-github
  17 siblings, 0 replies; 19+ messages in thread
From: voidlinux-github @ 2019-07-16 18:02 UTC (permalink / raw)
  To: ml

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

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

scheme48: Enabling cross compilation.
https://github.com/void-linux/void-packages/pull/13156
Description: 

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

end of thread, other threads:[~2019-07-16 18:02 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-16 14:59 [PR PATCH] scheme48: Enabling cross compilation voidlinux-github
2019-07-16 15:00 ` voidlinux-github
2019-07-16 15:02 ` [PR PATCH] [Updated] " voidlinux-github
2019-07-16 15:02 ` voidlinux-github
2019-07-16 15:07 ` voidlinux-github
2019-07-16 15:07 ` voidlinux-github
2019-07-16 15:10 ` voidlinux-github
2019-07-16 15:10 ` voidlinux-github
2019-07-16 15:22 ` voidlinux-github
2019-07-16 15:55 ` voidlinux-github
2019-07-16 16:04 ` voidlinux-github
2019-07-16 17:15 ` [PR PATCH] [Updated] " voidlinux-github
2019-07-16 17:15 ` voidlinux-github
2019-07-16 17:17 ` voidlinux-github
2019-07-16 17:38 ` voidlinux-github
2019-07-16 17:39 ` voidlinux-github
2019-07-16 18:02 ` voidlinux-github
2019-07-16 18:02 ` voidlinux-github
2019-07-16 18:02 ` [PR PATCH] [Closed]: " voidlinux-github

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).