all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Leo Famulari <leo@famulari.name>
To: 49859@debbugs.gnu.org
Subject: [bug#49859] [PATCH 5/6] gnu: Remove psyclpc.
Date: Tue,  3 Aug 2021 21:20:48 -0400	[thread overview]
Message-ID: <cce346e3f56b2eeb0c68db54630d638f87dceb87.1628040049.git.leo@famulari.name> (raw)
In-Reply-To: <e874bdd3732a0423a9fa1c52f2996411ce08072c.1628040048.git.leo@famulari.name>

As discussed in <https://bugs.gnu.org/46602>, psyclpc does not support a
current release of OpenSSL.

* gnu/packages/messaging.scm (psyclpc): Remove variable.
---
 gnu/packages/messaging.scm | 73 --------------------------------------
 1 file changed, 73 deletions(-)

diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index e5ecdb8894..3aa386ed6d 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -1839,79 +1839,6 @@ including psyced.")
     (synopsis "PSYC library in C")
     (license license:agpl3+)))
 
-;; This commit removes the historic bundled pcre and makes psyclpc reproducible.
-(define-public psyclpc
-  (let* ((commit "61cf9aa81297085e5c40170fd01221c752f8deba")
-         (revision "2"))
-  (package
-    (name "psyclpc")
-    (version (string-append "20160821-" revision "." (string-take commit 7)))
-    (source (origin
-              (method git-fetch)
-              (uri (git-reference
-                    (url "git://git.psyced.org/git/psyclpc")
-                    (commit commit)))
-              (file-name (string-append name "-" version "-checkout"))
-              (sha256
-               (base32
-                "1viwqymbhn3cwvx0zl58rlzl5gw47zxn0ldg2nbi55ghm5zxl1z5"))))
-    (build-system gnu-build-system)
-    (arguments
-     `(#:tests? #f ; There are no tests/checks.
-       #:configure-flags
-       ;; If you have questions about this part, look at
-       ;; "src/settings/psyced" and the ebuild.
-       (list
-        "--enable-use-tls=yes"
-        "--enable-use-mccp" ; Mud Client Compression Protocol, leave this enabled.
-        (string-append "--prefix="
-                       (assoc-ref %outputs "out"))
-        ;; src/Makefile: Set MUD_LIB to the directory which contains
-        ;; the mud data. defaults to MUD_LIB = @libdir@
-        (string-append "--libdir="
-                       (assoc-ref %outputs "out")
-                       "/opt/psyced/world")
-        (string-append "--bindir="
-                       (assoc-ref %outputs "out")
-                       "/opt/psyced/bin")
-        ;; src/Makefile: Set ERQ_DIR to directory which contains the
-        ;; stuff which ERQ can execute (hopefully) savely.  Was formerly
-        ;; defined in config.h. defaults to ERQ_DIR= @libexecdir@
-        (string-append "--libexecdir="
-                       (assoc-ref %outputs "out")
-                       "/opt/psyced/run"))
-       #:phases
-       (modify-phases %standard-phases
-         (add-before 'configure 'chdir-to-src
-           ;; We need to pass this as env variables
-           ;; and manually change the directory.
-           (lambda _
-             (chdir "src")
-             (setenv "CONFIG_SHELL" (which "sh"))
-             (setenv "SHELL" (which "sh"))
-             #t)))
-       #:make-flags (list "install-all")))
-    (inputs
-     `(("zlib" ,zlib)
-       ("openssl" ,openssl-1.0)
-       ("pcre" ,pcre)))
-    (native-inputs
-     `(("pkg-config" ,pkg-config)
-       ("bison" ,bison)
-       ("gettext" ,gettext-minimal)
-       ("help2man" ,help2man)
-       ("autoconf" ,autoconf)
-       ("automake" ,automake)))
-    (home-page "http://lpc.psyc.eu/")
-    (synopsis "psycLPC is a multi-user network server programming language")
-    (description
-     "LPC is a bytecode language, invented to specifically implement
-multi user virtual environments on the internet.  This technology is used for
-MUDs and also the psyced implementation of the Protocol for SYnchronous
-Conferencing (PSYC).  psycLPC is a fork of LDMud with some new features and
-many bug fixes.")
-    (license license:gpl2))))
-
 (define-public loudmouth
   (package
     (name "loudmouth")
-- 
2.32.0





  parent reply	other threads:[~2021-08-04  1:22 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-08-04  1:08 [bug#49859] [PATCH] gnu: Remove dillo Leo Famulari
2021-08-04  1:20 ` [bug#49859] [PATCH 1/6] gnu: Remove pidentd Leo Famulari
2021-08-04  1:20   ` [bug#49859] [PATCH 2/6] gnu: Remove cadaver Leo Famulari
2021-08-04  1:20   ` [bug#49859] [PATCH 3/6] gnu: Remove adb and fastboot Leo Famulari
2021-08-04  2:42     ` Julien Lepiller
2021-08-04  2:53       ` Leo Famulari
2021-08-04  2:58         ` Julien Lepiller
2021-08-04  3:21           ` Leo Famulari
2021-08-04 16:29             ` Leo Famulari
2021-08-05  8:11               ` Efraim Flashner
2021-08-11 14:08                 ` [bug#49859] Remove packages that depend on unsupported old OpenSSL releases Ludovic Courtès
2021-08-11 15:18                   ` Giovanni Biscuolo
2021-08-11 17:52                     ` Leo Famulari
2021-08-12 17:24                       ` Giovanni Biscuolo
2021-08-15 22:10                       ` bug#49859: " Leo Famulari
2021-08-11 18:13           ` [bug#49859] [PATCH 3/6] gnu: Remove adb and fastboot Pierre Langlois
2021-08-04  3:01         ` Leo Famulari
2021-08-04  1:20   ` [bug#49859] [PATCH 4/6] gnu: Remove eschalot Leo Famulari
2021-08-04  1:20   ` Leo Famulari [this message]
2021-08-04  1:20   ` [bug#49859] [PATCH 6/6] gnu: Remove tlsdate Leo Famulari
2021-08-04  1:29 ` [bug#49859] Remove packages that depend on unsupported old OpenSSL releases Leo Famulari

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=cce346e3f56b2eeb0c68db54630d638f87dceb87.1628040049.git.leo@famulari.name \
    --to=leo@famulari.name \
    --cc=49859@debbugs.gnu.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.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.