Github messages for voidlinux
 help / color / mirror / Atom feed
From: basicfunc <basicfunc@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] New package: quicklisp 20150128
Date: Sun, 06 Feb 2022 17:16:46 +0100	[thread overview]
Message-ID: <20220206161646.JL-VuXHrnoOXoMAbQpUe8S_2DF_GulaCpebw84U1esU@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-35438@inbox.vuxu.org>

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

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

https://github.com/basicfunc/void-packages quicklisp
https://github.com/void-linux/void-packages/pull/35438

New package: quicklisp 20150128
#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**
 
#### Local build testing
- I built this PR locally for my native architecture, x86_64-glibc

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

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

From 09a34dc23be5b101dd25e6f55b7cf6c7965ea20b Mon Sep 17 00:00:00 2001
From: Rahul <basicfunc@gmail.com>
Date: Thu, 3 Feb 2022 01:48:14 +0530
Subject: [PATCH 1/2] New Package: quicklisp-20150128

---
 srcpkgs/quicklisp/files/LICENSE | 50 +++++++++++++++++++++++++++++++++
 srcpkgs/quicklisp/template      | 28 ++++++++++++++++++
 2 files changed, 78 insertions(+)
 create mode 100644 srcpkgs/quicklisp/files/LICENSE
 create mode 100644 srcpkgs/quicklisp/template

diff --git a/srcpkgs/quicklisp/files/LICENSE b/srcpkgs/quicklisp/files/LICENSE
new file mode 100644
index 000000000000..2e8fe40971cb
--- /dev/null
+++ b/srcpkgs/quicklisp/files/LICENSE
@@ -0,0 +1,50 @@
+License information
+
+  Copyright © 2010 Zachary Beane <zach@quicklisp.org>
+
+  Permission is hereby granted, free of charge, to any person obtaining a copy
+  of this software and associated documentation files (the "Software"), to deal
+  in the Software without restriction, including without limitation the rights
+  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+  copies of the Software, and to permit persons to whom the Software is
+  furnished to do so, subject to the following conditions:
+
+  The above copyright notice and this permission notice shall be included in
+  all copies or substantial portions of the Software.
+
+  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+  THE SOFTWARE.
+Portions of Quicklisp are derived from Pierre Mai's Deflate library, which is available under the following terms:
+
+  Deflate --- RFC 1951 Deflate Decompression
+
+  Copyright (C) 2000-2009 PMSF IT Consulting Pierre R. Mai.
+
+  Permission is hereby granted, free of charge, to any person obtaining
+  a copy of this software and associated documentation files (the
+  "Software"), to deal in the Software without restriction, including
+  without limitation the rights to use, copy, modify, merge, publish,
+  distribute, sublicense, and/or sell copies of the Software, and to
+  permit persons to whom the Software is furnished to do so, subject to
+  the following conditions:
+
+  The above copyright notice and this permission notice shall be
+  included in all copies or substantial portions of the Software.
+
+  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR
+  OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
+  ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+  OTHER DEALINGS IN THE SOFTWARE.
+
+  Except as contained in this notice, the name of the author shall
+  not be used in advertising or otherwise to promote the sale, use or
+  other dealings in this Software without prior written authorization
+  from the author.
diff --git a/srcpkgs/quicklisp/template b/srcpkgs/quicklisp/template
new file mode 100644
index 000000000000..54d7331be122
--- /dev/null
+++ b/srcpkgs/quicklisp/template
@@ -0,0 +1,28 @@
+# Template file for 'quicklisp'
+pkgname=quicklisp
+version=20150128
+revision=1
+wrksrc=${pkgname}
+build_style=fetch
+makedepends="sbcl"
+depends="sbcl"
+short_desc="Library manager for Common Lisp"
+maintainer="Rahul <basicfunc@gmail.com>"
+license="custom:bsd"
+homepage="https://beta.quicklisp.org"
+distfiles="${homepage}/quicklisp.lisp"
+checksum=4a7a5c2aebe0716417047854267397e24a44d0cce096127411e9ce9ccfeb2c17
+nocheckperms=yes
+
+do_install( ){
+    echo -ne "(quicklisp-quickstart:install :path \"${DESTDIR}/usr/lib/${pkgname}\")\n(quit)\n" | sbcl --no-userinit --load $pkgname.lisp
+    chmod 777 -R "$DESTDIR"/usr/lib/${pkgname}
+    chmod 777 -R "$DESTDIR"/usr/lib/${pkgname}/tmp
+    chmod 777 -R "$DESTDIR"/usr/lib/${pkgname}/dists
+    chmod 777 -R "$DESTDIR"/usr/lib/${pkgname}/local-projects
+    echo -ne "(load \"/usr/lib/${pkgname}/setup\")\n" > ${DESDIR}/etc/default/${pkgname}
+}
+
+post_install( ){
+    vlicense ${FILESDIR}/LICENSE
+}

From 5fa1f1b256d8ee84113f1523280bcb100a3e75df Mon Sep 17 00:00:00 2001
From: Rahul <basicfunc@gmail.com>
Date: Sun, 6 Feb 2022 21:46:39 +0530
Subject: [PATCH 2/2] Fixed xlint errors

---
 srcpkgs/quicklisp/template | 10 ++--------
 1 file changed, 2 insertions(+), 8 deletions(-)

diff --git a/srcpkgs/quicklisp/template b/srcpkgs/quicklisp/template
index 54d7331be122..765ae57a177c 100644
--- a/srcpkgs/quicklisp/template
+++ b/srcpkgs/quicklisp/template
@@ -12,17 +12,11 @@ license="custom:bsd"
 homepage="https://beta.quicklisp.org"
 distfiles="${homepage}/quicklisp.lisp"
 checksum=4a7a5c2aebe0716417047854267397e24a44d0cce096127411e9ce9ccfeb2c17
-nocheckperms=yes
 
 do_install( ){
-    echo -ne "(quicklisp-quickstart:install :path \"${DESTDIR}/usr/lib/${pkgname}\")\n(quit)\n" | sbcl --no-userinit --load $pkgname.lisp
-    chmod 777 -R "$DESTDIR"/usr/lib/${pkgname}
-    chmod 777 -R "$DESTDIR"/usr/lib/${pkgname}/tmp
-    chmod 777 -R "$DESTDIR"/usr/lib/${pkgname}/dists
-    chmod 777 -R "$DESTDIR"/usr/lib/${pkgname}/local-projects
-    echo -ne "(load \"/usr/lib/${pkgname}/setup\")\n" > ${DESDIR}/etc/default/${pkgname}
+	echo -ne "(quicklisp-quickstart:install :path \"${DESTDIR}/usr/lib/${pkgname}\")\n(quit)\n" | sbcl --no-userinit --load $pkgname.lisp
 }
 
 post_install( ){
-    vlicense ${FILESDIR}/LICENSE
+	vlicense ${FILESDIR}/LICENSE
 }

  parent reply	other threads:[~2022-02-06 16:16 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-02-06 15:19 [PR PATCH] " basicfunc
2022-02-06 15:32 ` [PR REVIEW] " paper42
2022-02-06 15:32 ` paper42
2022-02-06 15:32 ` paper42
2022-02-06 15:59 ` basicfunc
2022-02-06 16:03 ` paper42
2022-02-06 16:04 ` basicfunc
2022-02-06 16:05 ` basicfunc
2022-02-06 16:16 ` basicfunc [this message]
2022-02-06 16:17 ` basicfunc
2022-02-06 16:17 ` basicfunc

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=20220206161646.JL-VuXHrnoOXoMAbQpUe8S_2DF_GulaCpebw84U1esU@z \
    --to=basicfunc@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).