unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
blob cc1da6e95168a18ce3d2a7266cb11aff371be76b 14361 bytes (raw)
name: gnu/packages/psyc.scm 	 # note: path name is non-authoritative(*)

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
 
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2016 ng0 <ngillmann@runbox.com>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (gnu packages psyc)
  #:use-module (guix download)
  #:use-module (guix git-download)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix packages)
  #:use-module (guix build-system perl)
  #:use-module (guix build-system gnu)
  #:use-module (gnu packages)
  #:use-module (gnu packages admin)
  #:use-module (gnu packages autotools)
  #:use-module (gnu packages bison)
  #:use-module (gnu packages compression)
  #:use-module (gnu packages gettext)
  #:use-module (gnu packages linux)
  #:use-module (gnu packages man)
  #:use-module (gnu packages ncurses)
  #:use-module (gnu packages perl)
  #:use-module (gnu packages pcre)
  #:use-module (gnu packages pkg-config)
  #:use-module (gnu packages tls)
  #:use-module (gnu packages web))

(define-public perl-net-psyc
  (package
    (name "perl-net-psyc")
    (version "1.1")
    (source
     (origin
       (method url-fetch)
       (uri (string-append "http://perl.psyc.eu/"
                           "perlpsyc-" version ".zip"))
       (file-name (string-append name "-" version ".zip"))
       (sha256
        (base32
         "1lw6807qrbmvzbrjn1rna1dhir2k70xpcjvyjn45y35hav333a42"))
       ;; psycmp3 currently depends on MP3::List and rxaudio (shareware),
       ;; we can add it back when this is no longer the case.
       (snippet '(delete-file "contrib/psycmp3"))))
    (build-system perl-build-system)
    (inputs
     `(("perl-curses" ,perl-curses)
       ("perl-io-socket-ssl" ,perl-io-socket-ssl)))
    (arguments
     `(#:phases
       (modify-phases %standard-phases
         (delete 'configure) ; No configure script
         ;; There is a Makefile, but it does not install everything
         ;; (leaves out psycion) and says
         ;; "# Just to give you a rough idea". XXX: Fix it upstream.
         (replace 'build
           (lambda _
             (zero? (system* "make" "manuals"))))
         (replace 'install
           (lambda* (#:key outputs #:allow-other-keys)
             (let* ((out (assoc-ref outputs "out"))
                    (doc (string-append out "/share/doc/perl-net-psyc"))
                    (man1 (string-append out "/share/man/man1"))
                    (man3 (string-append out "/share/man/man3"))
                    (bin (string-append out "/bin"))
                    (libpsyc (string-append out "/lib/psyc/ion"))
                    (libperl (string-append out "/lib/perl5/site_perl/"
                                            ,(package-version perl))))

               (copy-recursively "lib/perl5" libperl)
               (copy-recursively "lib/psycion" libpsyc)
               (copy-recursively "bin" bin)
               (install-file "cgi/psycpager" (string-append doc "/cgi"))
               (copy-recursively "contrib" (string-append doc "/contrib"))
               (copy-recursively "hooks" (string-append doc "/hooks"))
               (copy-recursively "sdj" (string-append doc "/sdj"))
               (install-file "README.txt" doc)
               (install-file "TODO.txt" doc)
               (copy-recursively "share/man/man1" man1)
               (copy-recursively "share/man/man3" man3)
               #t)))
         (add-after 'install 'wrap-programs
           (lambda* (#:key outputs #:allow-other-keys)
             ;; Make sure all executables in "bin" find the Perl modules
             ;; provided by this package at runtime.
             (let* ((out  (assoc-ref outputs "out"))
                    (bin  (string-append out "/bin/"))
                    (path (getenv "PERL5LIB")))
               (for-each (lambda (file)
                           (wrap-program file
                             `("PERL5LIB" ":" prefix (,path))))
                         (find-files bin "\\.*$"))
               #t))))))
    (description
     "@code{Net::PSYC} with support for TCP, UDP, Event.pm, @code{IO::Select} and
Gtk2 event loops.  This package includes 12 applications and additional scripts:
psycion (a @uref{http://about.psyc.eu,PSYC} chat client), remotor (a control console
for @uref{https://torproject.org,tor} router) and many more.")
    (synopsis "Perl implementation of PSYC protocol")
    (home-page "http://perlpsyc.pages.de")
    (license (list license:gpl2 (package-license perl)
                   ;; contrib/irssi-psyc.pl:
                   license:public-domain
                   ;; bin/psycplay states AGPL with no version:
                   license:agpl3+))))

(define-public libpsyc
  (package
    (name "libpsyc")
    (version "20160913")
    (source (origin
              (method url-fetch)
              (uri (string-append "http://www.psyced.org/files/"
                                  name "-" version ".tar.xz"))
              (sha256
               (base32
                "14q89fxap05ajkfn20rnhc6b1h4i3i2adyr7y6hs5zqwb2lcmc1p"))))
    (build-system gnu-build-system)
    (native-inputs
     `(("perl" ,perl)
       ("netcat" ,netcat)
       ("procps" ,procps)))
    (arguments
     `(#:make-flags
       (list "CC=gcc"
             (string-append "PREFIX=" (assoc-ref %outputs "out")))
       #:phases
       (modify-phases %standard-phases
         ;; The rust bindings are the only ones in use, the lpc bindings
         ;; are in psyclpc.  The other bindings are not used by anything,
         ;; the chances are high that the bindings do not even work,
         ;; therefore we do not include them.
         ;; TODO: Get a cargo build system in Guix.
         (delete 'configure)))) ; no configure script
    (home-page "http://about.psyc.eu/libpsyc")
    (description
     "@code{libpsyc} is a PSYC library in C which implements
core aspects of PSYC, useful for all kinds of clients and servers
including psyced.")
    (synopsis "PSYC library in C")
    (license (list license:agpl3+
                   ;; test/test.c is based on a public-domain test
                   license:public-domain))))

;; This commit removes the historic bundled pcre, not released as a tarball so far.
(define-public psyclpc
  (let* ((commit "8bd51f2a4847860ba8b82dc79348ab37d516011e")
         (revision "1"))
  (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)))
              (sha256
               (base32
                "10w4kx9ygcv1lcmd7j4knvjiy8dac1y3hjfv3lhp67jpv6w3iagz"))))
    (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")))))
       #:make-flags (list "install-all")))
    (inputs
     `(("zlib" ,zlib)
       ("openssl" ,openssl)
       ("pcre" ,pcre)))
    (native-inputs
     `(("pkg-config" ,pkg-config)
       ("bison" ,bison)
       ("gnu-gettext" ,gnu-gettext)
       ("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))))

;; XXX: We need a service for this which makes it functional, including
;; copying initial data around.
(define-public psyced
  (let* ((commit "18e72b74ccc4edef58751475d15138fb1300a3b1")
         (revision "1"))
    (package
      (name "psyced")
      (version (string-append "20160830-" revision "." (string-take commit 7)))
      (source (origin
                (method git-fetch)
                (uri (git-reference
                      (url "git://git.psyced.org/psyced")
                      (commit commit)))
                (file-name (string-append name "-" version "-checkout"))
                (sha256
                 (base32
                  "1h2cbb14lvnxyqf9g35h78d796hyhafg3h73jv69z6j2cvhka9r2"))))
      (build-system gnu-build-system)
      (inputs
       `(("perl" ,perl)))
      ;; psyced needs psyclpc at runtime, specifically you will also not
      ;; be able to use psyced witout psyclpc.
      (native-inputs
       `(("pkg-config" ,pkg-config)))
      (propagated-inputs
       `(("psyclpc" ,psyclpc)))
      (arguments
       `(#:tests? #f ; No tests
         #:phases
         (modify-phases %standard-phases
           (delete 'configure) ; No configure
           (delete 'build) ; no make build needed
           ;; Much of what install.sh used to do is now handled by psyconf. Upstream
           ;; reference is the Gentoo ebuild in the youbroketheinternet-overlay
           ;; (https://gnunet.org/git/) where equal ways of installing psyced are applied
           (replace 'install
             (lambda* (#:key outputs #:allow-other-keys)
               (let* ((out (assoc-ref outputs "out"))
                      (bin (string-append out "/bin")) ;symlink it?
                      (doc (string-append out "/share/doc"))
                      ;; sandbox in /opt/psyced/world:
                      (opt (string-append out "/opt/psyced"))
                      (var (string-append out "/var/psyced"))
                      (vard (string-append var "/data"))
                      (vardpe (string-append vard "/person"))
                      (vardpl (string-append vard "/place"))
                      (varcon (string-append var "/config"))
                      (etcpsy (string-append out "/etc/psyc")) ;symlink to /
                      (varlp (string-append out "/var/log/psyced")) ;symlink to /
                      (varlpp (string-append varlp "/place"))) ;symlink to /
                 (mkdir-p bin)
                 (mkdir-p doc)
                 (mkdir-p opt)
                 (mkdir-p var)
                 (mkdir-p vard)
                 (mkdir-p vardpe)
                 (mkdir-p vardpl)
                 (mkdir-p varcon)
                 (mkdir-p etcpsy)
                 (mkdir-p varlp)
                 (mkdir-p varlpp)

                 (copy-recursively "bin" bin)

                 (install-file "config/psyced.ini" etcpsy)

                 (install-file "AGENDA.txt" doc)
                 (install-file "CHANGESTODO" doc)
                 (install-file "COPYLEFT.txt" doc)
                 (install-file "LICENSE.txt" doc)

                 (copy-recursively "pike" opt)
                 (copy-recursively "place" opt)
                 (copy-recursively "run" opt)
                 (copy-recursively "tor" opt)
                 (copy-recursively "config" opt)
                 (copy-recursively "trust" opt)
                 (copy-recursively "utility" opt)
                 (copy-recursively "world" opt)
                 #t)))
           (add-after 'install 'wrap-programs
             (lambda* (#:key outputs #:allow-other-keys)
               ;; Make sure all executables in "bin" find the Perl modules
               ;; provided by this package at runtime.
               (let* ((out  (assoc-ref outputs "out"))
                      (bin  (string-append out "/bin/"))
                      (path (string-append out "/lib/perl5/site_perl")))
                 (for-each (lambda (file)
                             (wrap-program file
                               `("PERL5LIB" ":" prefix (,path))))
                           (find-files bin "\\.*$"))
                 #t))))))
      (home-page "http://www.psyced.org")
      (synopsis "Server for Federated Messaging and Chat over PSYC, IRC, XMPP, and more")
      (description
       "psyced is a scalable multi-protocol multi-casting chat, messaging
and social server solution to build decentralized chat networks upon.
Powerful, not bloated, not too hard to get into.  It supports the
following protocols and formats: PSYC, XMPP S2S, IRC, TELNET, HTTP, SMTP,
OAuth, XML, RSS.  It also has limited/experimental code for the following
things: Clients using XMPP C2S, Java Applets, Status.Net, WAP, NNTP.")
      (license license:gpl2))))

debug log:

solving cc1da6e ...
found cc1da6e in https://yhetil.org/guix-devel/20160929103810.10273-4-ngillmann@runbox.com/
found 75d861e in https://yhetil.org/guix-devel/20160929103810.10273-3-ngillmann@runbox.com/
found 253fa64 in https://yhetil.org/guix-devel/87mvisowkq.fsf@we.make.ritual.n0.is/ ||
	https://yhetil.org/guix-devel/20160929103810.10273-2-ngillmann@runbox.com/
found 4d53dfd in https://yhetil.org/guix-devel/87mvisowkq.fsf@we.make.ritual.n0.is/ ||
	https://yhetil.org/guix-devel/20160929103810.10273-1-ngillmann@runbox.com/

applying [1/4] https://yhetil.org/guix-devel/87mvisowkq.fsf@we.make.ritual.n0.is/
diff --git a/gnu/packages/psyc.scm b/gnu/packages/psyc.scm
new file mode 100644
index 0000000..4d53dfd

Checking patch gnu/packages/psyc.scm...
Applied patch gnu/packages/psyc.scm cleanly.

skipping https://yhetil.org/guix-devel/20160929103810.10273-1-ngillmann@runbox.com/ for 4d53dfd
index at:
100644 4d53dfd98e9c7954bb671bf88f88bee4709fdd82	gnu/packages/psyc.scm

applying [2/4] https://yhetil.org/guix-devel/87mvisowkq.fsf@we.make.ritual.n0.is/
diff --git a/gnu/packages/psyc.scm b/gnu/packages/psyc.scm
index 4d53dfd..253fa64 100644

Checking patch gnu/packages/psyc.scm...
Applied patch gnu/packages/psyc.scm cleanly.

skipping https://yhetil.org/guix-devel/20160929103810.10273-2-ngillmann@runbox.com/ for 253fa64
index at:
100644 253fa642c19640b32b9c6c221b6674ba0ba631bd	gnu/packages/psyc.scm

applying [3/4] https://yhetil.org/guix-devel/20160929103810.10273-3-ngillmann@runbox.com/
diff --git a/gnu/packages/psyc.scm b/gnu/packages/psyc.scm
index 253fa64..75d861e 100644


applying [4/4] https://yhetil.org/guix-devel/20160929103810.10273-4-ngillmann@runbox.com/
diff --git a/gnu/packages/psyc.scm b/gnu/packages/psyc.scm
index 75d861e..cc1da6e 100644

Checking patch gnu/packages/psyc.scm...
Applied patch gnu/packages/psyc.scm cleanly.
Checking patch gnu/packages/psyc.scm...
Applied patch gnu/packages/psyc.scm cleanly.

index at:
100644 cc1da6e95168a18ce3d2a7266cb11aff371be76b	gnu/packages/psyc.scm

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

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

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 read-only IMAP folder(s) and NNTP newsgroup(s).