Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: ol-2.0
@ 2019-07-13 12:19 voidlinux-github
  2019-07-13 12:27 ` [PR PATCH] [Updated] " voidlinux-github
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: voidlinux-github @ 2019-07-13 12:19 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 449 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/13082

New package: ol-2.0
Created the ol-2.0 package to substitute the otus-2.0 package with patches to fix cross compilation (thanks @Chocimier) and to fix some minor things

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

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

From 583d9a5d4ba200470dfda059cbadc524b17b7de0 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: otus-2.0

Added "nocross" flag.

The repl for the otus interpreter could not be compiled for architectures other that i686 and amd64
---
 srcpkgs/otus/template | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 srcpkgs/otus/template

diff --git a/srcpkgs/otus/template b/srcpkgs/otus/template
new file mode 100644
index 00000000000..dac316ca31f
--- /dev/null
+++ b/srcpkgs/otus/template
@@ -0,0 +1,18 @@
+# Template file for 'otus'
+pkgname=otus
+version=2.0
+revision=1
+wrksrc=ol-${version}
+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
+nocross="Failed to compile repl"
+
+post_install() {
+	vlicense LICENSE
+}
+

From 8c5ba2b7493be66e34e7da9a48dc09dafab427ff Mon Sep 17 00:00:00 2001
From: rc-05 <rc23@email.it>
Date: Sat, 13 Jul 2019 14:12:04 +0200
Subject: [PATCH 2/2] New package: ol-2.0

---
 srcpkgs/ol/patches/ol.patch   | 21 +++++++++++++++++++++
 srcpkgs/{otus => ol}/template |  6 ++----
 2 files changed, 23 insertions(+), 4 deletions(-)
 create mode 100644 srcpkgs/ol/patches/ol.patch
 rename srcpkgs/{otus => ol}/template (84%)

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/otus/template b/srcpkgs/ol/template
similarity index 84%
rename from srcpkgs/otus/template
rename to srcpkgs/ol/template
index dac316ca31f..e094ba6156d 100644
--- a/srcpkgs/otus/template
+++ b/srcpkgs/ol/template
@@ -1,5 +1,5 @@
-# Template file for 'otus'
-pkgname=otus
+# Template file for 'ol'
+pkgname=ol
 version=2.0
 revision=1
 wrksrc=ol-${version}
@@ -10,9 +10,7 @@ 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
-nocross="Failed to compile repl"
 
 post_install() {
 	vlicense LICENSE
 }
-

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

* Re: [PR PATCH] [Updated] New package: ol-2.0
  2019-07-13 12:19 [PR PATCH] New package: ol-2.0 voidlinux-github
  2019-07-13 12:27 ` [PR PATCH] [Updated] " voidlinux-github
@ 2019-07-13 12:27 ` voidlinux-github
  2019-07-13 19:04 ` voidlinux-github
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: voidlinux-github @ 2019-07-13 12:27 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 454 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/13082

New package: ol-2.0
Created the ol-2.0 package to substitute the otus-2.0 package with patches to fix cross compilation (thanks @Chocimier) and to fix some minor things

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

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

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

---
 srcpkgs/ol/patches/ol.patch | 21 +++++++++++++++++++++
 srcpkgs/ol/template         | 16 ++++++++++++++++
 2 files changed, 37 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..e094ba6156d
--- /dev/null
+++ b/srcpkgs/ol/template
@@ -0,0 +1,16 @@
+# Template file for 'ol'
+pkgname=ol
+version=2.0
+revision=1
+wrksrc=ol-${version}
+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
+}

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

* Re: [PR PATCH] [Updated] New package: ol-2.0
  2019-07-13 12:19 [PR PATCH] New package: ol-2.0 voidlinux-github
@ 2019-07-13 12:27 ` voidlinux-github
  2019-07-13 12:27 ` voidlinux-github
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: voidlinux-github @ 2019-07-13 12:27 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 454 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/13082

New package: ol-2.0
Created the ol-2.0 package to substitute the otus-2.0 package with patches to fix cross compilation (thanks @Chocimier) and to fix some minor things

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

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

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

---
 srcpkgs/ol/patches/ol.patch | 21 +++++++++++++++++++++
 srcpkgs/ol/template         | 16 ++++++++++++++++
 2 files changed, 37 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..e094ba6156d
--- /dev/null
+++ b/srcpkgs/ol/template
@@ -0,0 +1,16 @@
+# Template file for 'ol'
+pkgname=ol
+version=2.0
+revision=1
+wrksrc=ol-${version}
+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
+}

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

* Re: New package: ol-2.0
  2019-07-13 12:19 [PR PATCH] New package: ol-2.0 voidlinux-github
  2019-07-13 12:27 ` [PR PATCH] [Updated] " voidlinux-github
  2019-07-13 12:27 ` voidlinux-github
@ 2019-07-13 19:04 ` voidlinux-github
  2019-07-14 13:20 ` [PR PATCH] [Updated] " voidlinux-github
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: voidlinux-github @ 2019-07-13 19:04 UTC (permalink / raw)
  To: ml

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

New comment by Chocimier on void-packages repository

https://github.com/void-linux/void-packages/pull/13082#issuecomment-511146298
Comment:
Please remove wrksrc, now it has its default value.
For the future: it is better to keep single PR even if pkgname changes.

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

* Re: [PR PATCH] [Updated] New package: ol-2.0
  2019-07-13 12:19 [PR PATCH] New package: ol-2.0 voidlinux-github
                   ` (3 preceding siblings ...)
  2019-07-14 13:20 ` [PR PATCH] [Updated] " voidlinux-github
@ 2019-07-14 13:20 ` voidlinux-github
  2019-07-14 13:22 ` voidlinux-github
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: voidlinux-github @ 2019-07-14 13:20 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 455 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/13082

New package: ol-2.0
Created the ol-2.0 package to substitute the otus-2.0 package with patches to fix cross compilation (thanks @Chocimier) and to fix some minor things.

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

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

From 9531ad0f5433af88f4766dfa540e630be174fead 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         | 16 ++++++++++++++++
 2 files changed, 37 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..e094ba6156d
--- /dev/null
+++ b/srcpkgs/ol/template
@@ -0,0 +1,16 @@
+# Template file for 'ol'
+pkgname=ol
+version=2.0
+revision=1
+wrksrc=ol-${version}
+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 9a517039286020c85f5c3fda56d4ee520c047e1a Mon Sep 17 00:00:00 2001
From: rc-05 <rc23@email.it>
Date: Sun, 14 Jul 2019 15:19:25 +0200
Subject: [PATCH 2/2] Removed wrksrc directory.

---
 srcpkgs/ol/template | 1 -
 1 file changed, 1 deletion(-)

diff --git a/srcpkgs/ol/template b/srcpkgs/ol/template
index e094ba6156d..87845656260 100644
--- a/srcpkgs/ol/template
+++ b/srcpkgs/ol/template
@@ -2,7 +2,6 @@
 pkgname=ol
 version=2.0
 revision=1
-wrksrc=ol-${version}
 build_style=gnu-makefile
 short_desc="Purely functional dialect of Lisp"
 maintainer="rc-05 <rc23@email.it>"

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

* Re: [PR PATCH] [Updated] New package: ol-2.0
  2019-07-13 12:19 [PR PATCH] New package: ol-2.0 voidlinux-github
                   ` (2 preceding siblings ...)
  2019-07-13 19:04 ` voidlinux-github
@ 2019-07-14 13:20 ` voidlinux-github
  2019-07-14 13:20 ` voidlinux-github
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: voidlinux-github @ 2019-07-14 13:20 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 455 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/13082

New package: ol-2.0
Created the ol-2.0 package to substitute the otus-2.0 package with patches to fix cross compilation (thanks @Chocimier) and to fix some minor things.

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

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

From 9531ad0f5433af88f4766dfa540e630be174fead 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         | 16 ++++++++++++++++
 2 files changed, 37 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..e094ba6156d
--- /dev/null
+++ b/srcpkgs/ol/template
@@ -0,0 +1,16 @@
+# Template file for 'ol'
+pkgname=ol
+version=2.0
+revision=1
+wrksrc=ol-${version}
+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 9a517039286020c85f5c3fda56d4ee520c047e1a Mon Sep 17 00:00:00 2001
From: rc-05 <rc23@email.it>
Date: Sun, 14 Jul 2019 15:19:25 +0200
Subject: [PATCH 2/2] Removed wrksrc directory.

---
 srcpkgs/ol/template | 1 -
 1 file changed, 1 deletion(-)

diff --git a/srcpkgs/ol/template b/srcpkgs/ol/template
index e094ba6156d..87845656260 100644
--- a/srcpkgs/ol/template
+++ b/srcpkgs/ol/template
@@ -2,7 +2,6 @@
 pkgname=ol
 version=2.0
 revision=1
-wrksrc=ol-${version}
 build_style=gnu-makefile
 short_desc="Purely functional dialect of Lisp"
 maintainer="rc-05 <rc23@email.it>"

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

* Re: [PR PATCH] [Updated] New package: ol-2.0
  2019-07-13 12:19 [PR PATCH] New package: ol-2.0 voidlinux-github
                   ` (4 preceding siblings ...)
  2019-07-14 13:20 ` voidlinux-github
@ 2019-07-14 13:22 ` voidlinux-github
  2019-07-14 13:22 ` voidlinux-github
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: voidlinux-github @ 2019-07-14 13:22 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 455 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/13082

New package: ol-2.0
Created the ol-2.0 package to substitute the otus-2.0 package with patches to fix cross compilation (thanks @Chocimier) and to fix some minor things.

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-personal-13082.patch --]
[-- Type: application/text/x-diff, Size: 1643 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] 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
+}

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

* Re: [PR PATCH] [Updated] New package: ol-2.0
  2019-07-13 12:19 [PR PATCH] New package: ol-2.0 voidlinux-github
                   ` (5 preceding siblings ...)
  2019-07-14 13:22 ` voidlinux-github
@ 2019-07-14 13:22 ` voidlinux-github
  2019-07-14 13:23 ` voidlinux-github
  2019-07-14 17:28 ` [PR PATCH] [Merged]: " voidlinux-github
  8 siblings, 0 replies; 10+ messages in thread
From: voidlinux-github @ 2019-07-14 13:22 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 455 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/13082

New package: ol-2.0
Created the ol-2.0 package to substitute the otus-2.0 package with patches to fix cross compilation (thanks @Chocimier) and to fix some minor things.

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-personal-13082.patch --]
[-- Type: application/text/x-diff, Size: 1643 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] 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
+}

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

* Re: New package: ol-2.0
  2019-07-13 12:19 [PR PATCH] New package: ol-2.0 voidlinux-github
                   ` (6 preceding siblings ...)
  2019-07-14 13:22 ` voidlinux-github
@ 2019-07-14 13:23 ` voidlinux-github
  2019-07-14 17:28 ` [PR PATCH] [Merged]: " voidlinux-github
  8 siblings, 0 replies; 10+ messages in thread
From: voidlinux-github @ 2019-07-14 13:23 UTC (permalink / raw)
  To: ml

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

New comment by rc-05 on void-packages repository

https://github.com/void-linux/void-packages/pull/13082#issuecomment-511202534
Comment:
> Please remove wrksrc, now it has its default value.
> For the future: it is better to keep single PR even if pkgname changes.

Thanks! I will keep that up in mind the next time.

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

* Re: [PR PATCH] [Merged]: New package: ol-2.0
  2019-07-13 12:19 [PR PATCH] New package: ol-2.0 voidlinux-github
                   ` (7 preceding siblings ...)
  2019-07-14 13:23 ` voidlinux-github
@ 2019-07-14 17:28 ` voidlinux-github
  8 siblings, 0 replies; 10+ messages in thread
From: voidlinux-github @ 2019-07-14 17:28 UTC (permalink / raw)
  To: ml

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

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

New package: ol-2.0
https://github.com/void-linux/void-packages/pull/13082
Description: Created the ol-2.0 package to substitute the otus-2.0 package with patches to fix cross compilation (thanks @Chocimier) and to fix some minor things.

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

end of thread, other threads:[~2019-07-14 17:28 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-13 12:19 [PR PATCH] New package: ol-2.0 voidlinux-github
2019-07-13 12:27 ` [PR PATCH] [Updated] " voidlinux-github
2019-07-13 12:27 ` voidlinux-github
2019-07-13 19:04 ` voidlinux-github
2019-07-14 13:20 ` [PR PATCH] [Updated] " voidlinux-github
2019-07-14 13:20 ` voidlinux-github
2019-07-14 13:22 ` voidlinux-github
2019-07-14 13:22 ` voidlinux-github
2019-07-14 13:23 ` voidlinux-github
2019-07-14 17:28 ` [PR PATCH] [Merged]: " 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).