Github messages for voidlinux
 help / color / mirror / Atom feed
From: rc-05 <rc-05@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: [PR PATCH] ccl: update to 1.12.
Date: Mon, 20 Apr 2020 13:30:25 +0200	[thread overview]
Message-ID: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-21183@inbox.vuxu.org> (raw)

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

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

https://github.com/rc-05/void-packages ccl
https://github.com/void-linux/void-packages/pull/21183

ccl: update to 1.12.
Clozure-CL updated to latest [release](https://github.com/Clozure/ccl/releases).

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

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

From 03d1ee8ae9f75ebc03c850f5d9e6575be6dc9f7b Mon Sep 17 00:00:00 2001
From: rc-05 <rc23@email.it>
Date: Tue, 10 Mar 2020 13:38:21 +0100
Subject: [PATCH 1/2] Added archs option

---
 srcpkgs/ft2-clone/template | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)
 create mode 100644 srcpkgs/ft2-clone/template

diff --git a/srcpkgs/ft2-clone/template b/srcpkgs/ft2-clone/template
new file mode 100644
index 00000000000..4837993d007
--- /dev/null
+++ b/srcpkgs/ft2-clone/template
@@ -0,0 +1,21 @@
+# Template file for 'ft2-clone'
+pkgname=ft2-clone
+version=1.10
+revision=1
+archs="~*-musl"
+build_style="cmake"
+makedepends="alsa-lib-devel SDL2-devel"
+short_desc="Modern clone of the FastTracker II music tracker"
+maintainer="rc-05 <rc23@email.it>"
+license="BSD-3-Clause"
+homepage="https://16-bits.org/ft2.php"
+distfiles="https://github.com/8bitbubsy/${pkgname}/archive/v${version}.tar.gz"
+checksum=0414bc9d78d83306ff6423ef8f63be7f2efcbdae6b71e26f379b038554ccf611
+
+do_install() {
+	vbin ${wrksrc}/release/other/ft2-clone
+}
+
+post_install() {
+	vlicense LICENSE
+}

From eb70e5945321267f61cd9a8d22c6e7318a0dfef4 Mon Sep 17 00:00:00 2001
From: Raffaele <rc23@email.it>
Date: Mon, 20 Apr 2020 12:55:35 +0200
Subject: [PATCH 2/2] ccl: update to 1.12.

---
 srcpkgs/ccl/template       | 26 +++++++++++++++-----------
 srcpkgs/ft2-clone/template | 21 ---------------------
 2 files changed, 15 insertions(+), 32 deletions(-)
 delete mode 100644 srcpkgs/ft2-clone/template

diff --git a/srcpkgs/ccl/template b/srcpkgs/ccl/template
index 9c982901491..ed386c197ee 100644
--- a/srcpkgs/ccl/template
+++ b/srcpkgs/ccl/template
@@ -1,19 +1,19 @@
+# Template file for 'ccl'
 pkgname=ccl
-version=1.11.5
-revision=2
-wrksrc="ccl"
+version=1.12
+revision=1
 archs="i686* x86_64*"
-build_style=gnu-makefile
-hostmakedepends="m4"
+#build_style=gnu-makefile
+hostmakedepends="m4 tar wget"
 short_desc="Clozure Common Lisp interpreter and compiler"
-maintainer="Ankur Kothari <ankz.kothari@gmail.com>"
+maintainer="rc-05 <rc23@email.it>"
 license="Apache-2.0"
 homepage="http://ccl.clozure.com/"
-distfiles="https://github.com/Clozure/ccl/releases/download/v${version}/${pkgname}-${version}-linuxx86.tar.gz"
-checksum=b80850d8d6ca8662499975f1cd76bf51affdd29e2025796ddcff6576fe704143
+distfiles="https://github.com/Clozure/ccl/archive/v${version}.tar.gz"
+checksum=774a06b4fb6dc4b51dfb26da8e1cc809c605e7706c12180805d1be6f2885bd52
 nopie=1
-nostrip=1
-disable_parallel_build=1
+#nostrip=1
+#disable_parallel_build=1
 
 case $XBPS_MACHINE in
 	x86_64*) _arch=64 ;;
@@ -21,6 +21,11 @@ case $XBPS_MACHINE in
 	*) _arch='' ;;
 esac
 
+pre_build() {
+	wget https://github.com/Clozure/ccl/releases/download/v${version}/linuxx86.tar.gz
+	tar xvzf linuxx86.tar.gz -C .
+}
+
 do_build() {
 	# recompile kernel, mandatory for musl
 	cd "lisp-kernel/linuxx86${_arch:-32}"
@@ -60,4 +65,3 @@ EOF
 	vcopy "examples/*" usr/share/examples/$pkgname
 
 }
-
diff --git a/srcpkgs/ft2-clone/template b/srcpkgs/ft2-clone/template
deleted file mode 100644
index 4837993d007..00000000000
--- a/srcpkgs/ft2-clone/template
+++ /dev/null
@@ -1,21 +0,0 @@
-# Template file for 'ft2-clone'
-pkgname=ft2-clone
-version=1.10
-revision=1
-archs="~*-musl"
-build_style="cmake"
-makedepends="alsa-lib-devel SDL2-devel"
-short_desc="Modern clone of the FastTracker II music tracker"
-maintainer="rc-05 <rc23@email.it>"
-license="BSD-3-Clause"
-homepage="https://16-bits.org/ft2.php"
-distfiles="https://github.com/8bitbubsy/${pkgname}/archive/v${version}.tar.gz"
-checksum=0414bc9d78d83306ff6423ef8f63be7f2efcbdae6b71e26f379b038554ccf611
-
-do_install() {
-	vbin ${wrksrc}/release/other/ft2-clone
-}
-
-post_install() {
-	vlicense LICENSE
-}

             reply	other threads:[~2020-04-20 11:30 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-04-20 11:30 rc-05 [this message]
2020-04-20 11:32 ` [PR PATCH] [Updated] " rc-05
2020-04-20 11:34 ` rc-05
2020-04-20 11:36 ` rc-05
2020-04-20 11:37 ` rc-05
2020-04-22 23:11 ` rc-05
2020-04-22 23:11 ` rc-05
2020-04-25 16:15 ` [PR PATCH] [Updated] " rc-05
2020-04-25 20:10 ` rc-05
2020-04-27 18:02 ` rc-05
2020-04-27 18:17 ` rc-05
2020-04-27 21:10 ` Chocimier
2020-04-28 16:52 ` [PR PATCH] [Updated] " rc-05
2020-04-28 16:53 ` rc-05
2020-04-29 19:24 ` Chocimier
2020-04-29 21:40 ` rc-05
2020-04-29 22:19 ` [PR PATCH] [Updated] " rc-05
2020-04-29 22:43 ` rc-05
2020-04-29 23:28 ` rc-05
2020-04-30 18:32 ` [PR PATCH] [Merged]: " Chocimier

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-21183@inbox.vuxu.org \
    --to=rc-05@users.noreply.github.com \
    --cc=ml@inbox.vuxu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).