* [PATCH] psyclpc: reproducible, psyc.scm -> messaging.scm move
@ 2016-11-23 19:04 ng0
2016-11-23 19:04 ` [PATCH 1/2] gnu: psyclpc: Make it reproducible ng0
2016-11-23 19:04 ` [PATCH 2/2] gnu: Move content of (gnu packages psyc) into (gnu packages messaging) ng0
0 siblings, 2 replies; 11+ messages in thread
From: ng0 @ 2016-11-23 19:04 UTC (permalink / raw)
To: guix-devel
[PATCH 1/2] gnu: psyclpc: Make it reproducible.
Update to a commit which makes psyclpc reproducible. No new release so far, that's why it's still a git commit.
[PATCH 2/2] gnu: Move content of (gnu packages psyc) into (gnu packages messaging).
Someone said this is the more general purpose place for everything not irc. While psyc is a protocol, it's okay that it will be in messaging, just don't move it into irc.
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH 1/2] gnu: psyclpc: Make it reproducible.
2016-11-23 19:04 [PATCH] psyclpc: reproducible, psyc.scm -> messaging.scm move ng0
@ 2016-11-23 19:04 ` ng0
2016-11-23 19:10 ` ng0
2016-11-26 6:06 ` Leo Famulari
2016-11-23 19:04 ` [PATCH 2/2] gnu: Move content of (gnu packages psyc) into (gnu packages messaging) ng0
1 sibling, 2 replies; 11+ messages in thread
From: ng0 @ 2016-11-23 19:04 UTC (permalink / raw)
To: guix-devel
* gnu/packages/psyc.scm (psyclpc): Make it reproducible.
---
gnu/packages/psyc.scm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/psyc.scm b/gnu/packages/psyc.scm
index 03df188..01bbae6 100644
--- a/gnu/packages/psyc.scm
+++ b/gnu/packages/psyc.scm
@@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2016 ng0 <ngillmann@runbox.com>
+;;; Copyright © 2016 ng0 <ng0@libertad.pw>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -155,7 +155,7 @@ including psyced.")
;; This commit removes the historic bundled pcre, not released as a tarball so far.
(define-public psyclpc
- (let* ((commit "8bd51f2a4847860ba8b82dc79348ab37d516011e")
+ (let* ((commit "61cf9aa81297085e5c40170fd01221c752f8deba")
(revision "1"))
(package
(name "psyclpc")
@@ -168,7 +168,7 @@ including psyced.")
(file-name (string-append name "-" version "-checkout"))
(sha256
(base32
- "10w4kx9ygcv1lcmd7j4knvjiy8dac1y3hjfv3lhp67jpv6w3iagz"))))
+ "1viwqymbhn3cwvx0zl58rlzl5gw47zxn0ldg2nbi55ghm5zxl1z5"))))
(build-system gnu-build-system)
(arguments
`(#:tests? #f ; There are no tests/checks.
--
2.10.2
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 2/2] gnu: Move content of (gnu packages psyc) into (gnu packages messaging).
2016-11-23 19:04 [PATCH] psyclpc: reproducible, psyc.scm -> messaging.scm move ng0
2016-11-23 19:04 ` [PATCH 1/2] gnu: psyclpc: Make it reproducible ng0
@ 2016-11-23 19:04 ` ng0
2016-11-26 6:07 ` Leo Famulari
2016-11-26 18:24 ` Leo Famulari
1 sibling, 2 replies; 11+ messages in thread
From: ng0 @ 2016-11-23 19:04 UTC (permalink / raw)
To: guix-devel
* gnu/packages/psyc.scm (perl-net-psyc, libpsyc, psyclpc): Move this ...
* gnu/packages/messaging.scm (perl-net-psyc, libpsyc, psyclpc): ... here.
* gnu/local.mk (GNU_SYSTEM_MODULES): Remove psyc.scm.
---
gnu/local.mk | 1 -
gnu/packages/messaging.scm | 196 +++++++++++++++++++++++++++++++++++++-
gnu/packages/psyc.scm | 227 ---------------------------------------------
3 files changed, 195 insertions(+), 229 deletions(-)
delete mode 100644 gnu/packages/psyc.scm
diff --git a/gnu/local.mk b/gnu/local.mk
index 4913727..1b2bb47 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -305,7 +305,6 @@ GNU_SYSTEM_MODULES = \
%D%/packages/pumpio.scm \
%D%/packages/pretty-print.scm \
%D%/packages/protobuf.scm \
- %D%/packages/psyc.scm \
%D%/packages/pv.scm \
%D%/packages/python.scm \
%D%/packages/qemu.scm \
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 72b8906..2eaec0b 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -5,7 +5,7 @@
;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
;;; Copyright © 2015, 2016 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2015 Efraim Flashner <efraim@flashner.co.il>
-;;; Copyright © 2016 ng0 <ngillmann@runbox.com>
+;;; Copyright © 2016 ng0 <ng0@libertad.pw>
;;; Copyright © 2016 Andy Patterson <ajpatter@uwaterloo.ca>
;;; Copyright © 2016 Clément Lassieur <clement@lassieur.org>
;;;
@@ -33,6 +33,7 @@
#:use-module (guix build-system gnu)
#:use-module (guix build-system glib-or-gtk)
#:use-module (guix build-system python)
+ #:use-module (guix build-system perl)
#:use-module (gnu packages)
#:use-module (gnu packages aidc)
#:use-module (gnu packages autotools)
@@ -43,11 +44,13 @@
#:use-module (gnu packages databases)
#:use-module (gnu packages documentation)
#:use-module (gnu packages enchant)
+ #:use-module (gnu packages gettext)
#:use-module (gnu packages gnome)
#:use-module (gnu packages gtk)
#:use-module (gnu packages xorg)
#:use-module (gnu packages xdisorg)
#:use-module (gnu packages libcanberra)
+ #:use-module (gnu packages man)
#:use-module (gnu packages networking)
#:use-module (gnu packages libidn)
#:use-module (gnu packages lua)
@@ -57,6 +60,7 @@
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages glib)
#:use-module (gnu packages python)
+ #:use-module (gnu packages pcre)
#:use-module (gnu packages perl)
#:use-module (gnu packages tcl)
#:use-module (gnu packages compression)
@@ -67,8 +71,10 @@
#:use-module (gnu packages icu4c)
#:use-module (gnu packages qt)
#:use-module (gnu packages video)
+ #:use-module (gnu packages web)
#:use-module (gnu packages xiph)
#:use-module (gnu packages audio)
+ #:use-module (gnu packages bison)
#:use-module (gnu packages fontutils))
(define-public libotr
@@ -859,4 +865,192 @@ into existing applications.")
(home-page "https://camaya.net/gloox")
(license license:gpl3)))
+(define-public perl-net-psyc
+ (package
+ (name "perl-net-psyc")
+ (version "1.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "http://perlpsyc.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.psyc.eu/")
+ (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 license:agpl3+)))
+
+;; This commit removes the historic bundled pcre, not released as a tarball so far.
+(define-public psyclpc
+ (let* ((commit "61cf9aa81297085e5c40170fd01221c752f8deba")
+ (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)))
+ (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)
+ ("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))))
+
;;; messaging.scm ends here
diff --git a/gnu/packages/psyc.scm b/gnu/packages/psyc.scm
deleted file mode 100644
index 01bbae6..0000000
--- a/gnu/packages/psyc.scm
+++ /dev/null
@@ -1,227 +0,0 @@
-;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2016 ng0 <ng0@libertad.pw>
-;;;
-;;; 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://perlpsyc.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.psyc.eu/")
- (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 license:agpl3+)))
-
-;; This commit removes the historic bundled pcre, not released as a tarball so far.
-(define-public psyclpc
- (let* ((commit "61cf9aa81297085e5c40170fd01221c752f8deba")
- (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)))
- (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)
- ("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))))
--
2.10.2
^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH 1/2] gnu: psyclpc: Make it reproducible.
2016-11-23 19:04 ` [PATCH 1/2] gnu: psyclpc: Make it reproducible ng0
@ 2016-11-23 19:10 ` ng0
2016-11-26 18:26 ` Leo Famulari
2016-11-26 6:06 ` Leo Famulari
1 sibling, 1 reply; 11+ messages in thread
From: ng0 @ 2016-11-23 19:10 UTC (permalink / raw)
To: guix-devel
ng0 <ng0@libertad.pw> writes:
> * gnu/packages/psyc.scm (psyclpc): Make it reproducible.
> ---
> gnu/packages/psyc.scm | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/gnu/packages/psyc.scm b/gnu/packages/psyc.scm
> index 03df188..01bbae6 100644
> --- a/gnu/packages/psyc.scm
> +++ b/gnu/packages/psyc.scm
> @@ -1,5 +1,5 @@
> ;;; GNU Guix --- Functional package management for GNU
> -;;; Copyright © 2016 ng0 <ngillmann@runbox.com>
> +;;; Copyright © 2016 ng0 <ng0@libertad.pw>
> ;;;
> ;;; This file is part of GNU Guix.
> ;;;
> @@ -155,7 +155,7 @@ including psyced.")
>
> ;; This commit removes the historic bundled pcre, not released as a tarball so far.
This comment should be updated to:
;; This commit removes the historic bundled pcre and makes psyclpc reproducible.
Can whoever commits the first or second patch into master update
the comment? Thanks!
> (define-public psyclpc
> - (let* ((commit "8bd51f2a4847860ba8b82dc79348ab37d516011e")
> + (let* ((commit "61cf9aa81297085e5c40170fd01221c752f8deba")
> (revision "1"))
> (package
> (name "psyclpc")
> @@ -168,7 +168,7 @@ including psyced.")
> (file-name (string-append name "-" version "-checkout"))
> (sha256
> (base32
> - "10w4kx9ygcv1lcmd7j4knvjiy8dac1y3hjfv3lhp67jpv6w3iagz"))))
> + "1viwqymbhn3cwvx0zl58rlzl5gw47zxn0ldg2nbi55ghm5zxl1z5"))))
> (build-system gnu-build-system)
> (arguments
> `(#:tests? #f ; There are no tests/checks.
> --
> 2.10.2
>
>
--
♥Ⓐ ng0 | ng0.chaosnet.org
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 1/2] gnu: psyclpc: Make it reproducible.
2016-11-23 19:04 ` [PATCH 1/2] gnu: psyclpc: Make it reproducible ng0
2016-11-23 19:10 ` ng0
@ 2016-11-26 6:06 ` Leo Famulari
2016-11-26 9:02 ` Marius Bakke
2016-11-26 20:28 ` ng0
1 sibling, 2 replies; 11+ messages in thread
From: Leo Famulari @ 2016-11-26 6:06 UTC (permalink / raw)
To: ng0; +Cc: guix-devel
On Wed, Nov 23, 2016 at 07:04:36PM +0000, ng0 wrote:
> * gnu/packages/psyc.scm (psyclpc): Make it reproducible.
> ---
> gnu/packages/psyc.scm | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/gnu/packages/psyc.scm b/gnu/packages/psyc.scm
> index 03df188..01bbae6 100644
> --- a/gnu/packages/psyc.scm
> +++ b/gnu/packages/psyc.scm
> @@ -1,5 +1,5 @@
> ;;; GNU Guix --- Functional package management for GNU
> -;;; Copyright © 2016 ng0 <ngillmann@runbox.com>
> +;;; Copyright © 2016 ng0 <ng0@libertad.pw>
> ;;;
> ;;; This file is part of GNU Guix.
> ;;;
> @@ -155,7 +155,7 @@ including psyced.")
>
> ;; This commit removes the historic bundled pcre, not released as a tarball so far.
> (define-public psyclpc
> - (let* ((commit "8bd51f2a4847860ba8b82dc79348ab37d516011e")
> + (let* ((commit "61cf9aa81297085e5c40170fd01221c752f8deba")
> (revision "1"))
Is it a newer commit? I think the revision counter should increase to 2.
Or else `guix pcakage -u` won't update users' psyclpc installations.
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 2/2] gnu: Move content of (gnu packages psyc) into (gnu packages messaging).
2016-11-23 19:04 ` [PATCH 2/2] gnu: Move content of (gnu packages psyc) into (gnu packages messaging) ng0
@ 2016-11-26 6:07 ` Leo Famulari
2016-11-26 18:24 ` Leo Famulari
1 sibling, 0 replies; 11+ messages in thread
From: Leo Famulari @ 2016-11-26 6:07 UTC (permalink / raw)
To: ng0; +Cc: guix-devel
On Wed, Nov 23, 2016 at 07:04:37PM +0000, ng0 wrote:
> * gnu/packages/psyc.scm (perl-net-psyc, libpsyc, psyclpc): Move this ...
> * gnu/packages/messaging.scm (perl-net-psyc, libpsyc, psyclpc): ... here.
> * gnu/local.mk (GNU_SYSTEM_MODULES): Remove psyc.scm.
LGTM, waiting on an answer to my question about the 1/2 patch.
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 1/2] gnu: psyclpc: Make it reproducible.
2016-11-26 6:06 ` Leo Famulari
@ 2016-11-26 9:02 ` Marius Bakke
2016-11-26 18:26 ` Leo Famulari
2016-11-26 20:28 ` ng0
1 sibling, 1 reply; 11+ messages in thread
From: Marius Bakke @ 2016-11-26 9:02 UTC (permalink / raw)
To: Leo Famulari, ng0; +Cc: guix-devel
[-- Attachment #1: Type: text/plain, Size: 1466 bytes --]
Leo Famulari <leo@famulari.name> writes:
> On Wed, Nov 23, 2016 at 07:04:36PM +0000, ng0 wrote:
>> * gnu/packages/psyc.scm (psyclpc): Make it reproducible.
>> ---
>> gnu/packages/psyc.scm | 6 +++---
>> 1 file changed, 3 insertions(+), 3 deletions(-)
>>
>> diff --git a/gnu/packages/psyc.scm b/gnu/packages/psyc.scm
>> index 03df188..01bbae6 100644
>> --- a/gnu/packages/psyc.scm
>> +++ b/gnu/packages/psyc.scm
>> @@ -1,5 +1,5 @@
>> ;;; GNU Guix --- Functional package management for GNU
>> -;;; Copyright © 2016 ng0 <ngillmann@runbox.com>
>> +;;; Copyright © 2016 ng0 <ng0@libertad.pw>
>> ;;;
>> ;;; This file is part of GNU Guix.
>> ;;;
>> @@ -155,7 +155,7 @@ including psyced.")
>>
>> ;; This commit removes the historic bundled pcre, not released as a tarball so far.
>> (define-public psyclpc
>> - (let* ((commit "8bd51f2a4847860ba8b82dc79348ab37d516011e")
>> + (let* ((commit "61cf9aa81297085e5c40170fd01221c752f8deba")
>> (revision "1"))
>
> Is it a newer commit? I think the revision counter should increase to 2.
> Or else `guix pcakage -u` won't update users' psyclpc installations.
Doesn't it? I was under the impression that `guix package -u` detected
when the derivation has changed, and updates to the current version
regardless of version number.
I do agree that incrementing the revision is good regardless, since
users will know that the code has changed, and not just some dependency.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 2/2] gnu: Move content of (gnu packages psyc) into (gnu packages messaging).
2016-11-23 19:04 ` [PATCH 2/2] gnu: Move content of (gnu packages psyc) into (gnu packages messaging) ng0
2016-11-26 6:07 ` Leo Famulari
@ 2016-11-26 18:24 ` Leo Famulari
1 sibling, 0 replies; 11+ messages in thread
From: Leo Famulari @ 2016-11-26 18:24 UTC (permalink / raw)
To: ng0; +Cc: guix-devel
On Wed, Nov 23, 2016 at 07:04:37PM +0000, ng0 wrote:
> * gnu/packages/psyc.scm (perl-net-psyc, libpsyc, psyclpc): Move this ...
> * gnu/packages/messaging.scm (perl-net-psyc, libpsyc, psyclpc): ... here.
> * gnu/local.mk (GNU_SYSTEM_MODULES): Remove psyc.scm.
Pushed, thanks!
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 1/2] gnu: psyclpc: Make it reproducible.
2016-11-23 19:10 ` ng0
@ 2016-11-26 18:26 ` Leo Famulari
0 siblings, 0 replies; 11+ messages in thread
From: Leo Famulari @ 2016-11-26 18:26 UTC (permalink / raw)
To: ng0; +Cc: guix-devel
On Wed, Nov 23, 2016 at 07:10:52PM +0000, ng0 wrote:
> ng0 <ng0@libertad.pw> writes:
>
> > * gnu/packages/psyc.scm (psyclpc): Make it reproducible.
> > ---
> > gnu/packages/psyc.scm | 6 +++---
> > 1 file changed, 3 insertions(+), 3 deletions(-)
> >
> > diff --git a/gnu/packages/psyc.scm b/gnu/packages/psyc.scm
> > index 03df188..01bbae6 100644
> > --- a/gnu/packages/psyc.scm
> > +++ b/gnu/packages/psyc.scm
> > @@ -1,5 +1,5 @@
> > ;;; GNU Guix --- Functional package management for GNU
> > -;;; Copyright © 2016 ng0 <ngillmann@runbox.com>
> > +;;; Copyright © 2016 ng0 <ng0@libertad.pw>
> > ;;;
> > ;;; This file is part of GNU Guix.
> > ;;;
> > @@ -155,7 +155,7 @@ including psyced.")
> >
> > ;; This commit removes the historic bundled pcre, not released as a tarball so far.
>
> This comment should be updated to:
> ;; This commit removes the historic bundled pcre and makes psyclpc reproducible.
Done!
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 1/2] gnu: psyclpc: Make it reproducible.
2016-11-26 9:02 ` Marius Bakke
@ 2016-11-26 18:26 ` Leo Famulari
0 siblings, 0 replies; 11+ messages in thread
From: Leo Famulari @ 2016-11-26 18:26 UTC (permalink / raw)
To: Marius Bakke; +Cc: guix-devel
[-- Attachment #1: Type: text/plain, Size: 1469 bytes --]
On Sat, Nov 26, 2016 at 10:02:10AM +0100, Marius Bakke wrote:
> Leo Famulari <leo@famulari.name> writes:
>
> > On Wed, Nov 23, 2016 at 07:04:36PM +0000, ng0 wrote:
> >> * gnu/packages/psyc.scm (psyclpc): Make it reproducible.
> >> ---
> >> gnu/packages/psyc.scm | 6 +++---
> >> 1 file changed, 3 insertions(+), 3 deletions(-)
> >>
> >> diff --git a/gnu/packages/psyc.scm b/gnu/packages/psyc.scm
> >> index 03df188..01bbae6 100644
> >> --- a/gnu/packages/psyc.scm
> >> +++ b/gnu/packages/psyc.scm
> >> @@ -1,5 +1,5 @@
> >> ;;; GNU Guix --- Functional package management for GNU
> >> -;;; Copyright © 2016 ng0 <ngillmann@runbox.com>
> >> +;;; Copyright © 2016 ng0 <ng0@libertad.pw>
> >> ;;;
> >> ;;; This file is part of GNU Guix.
> >> ;;;
> >> @@ -155,7 +155,7 @@ including psyced.")
> >>
> >> ;; This commit removes the historic bundled pcre, not released as a tarball so far.
> >> (define-public psyclpc
> >> - (let* ((commit "8bd51f2a4847860ba8b82dc79348ab37d516011e")
> >> + (let* ((commit "61cf9aa81297085e5c40170fd01221c752f8deba")
> >> (revision "1"))
> >
> > Is it a newer commit? I think the revision counter should increase to 2.
> > Or else `guix pcakage -u` won't update users' psyclpc installations.
>
> Doesn't it? I was under the impression that `guix package -u` detected
> when the derivation has changed, and updates to the current version
> regardless of version number.
Ah, you're right!
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 1/2] gnu: psyclpc: Make it reproducible.
2016-11-26 6:06 ` Leo Famulari
2016-11-26 9:02 ` Marius Bakke
@ 2016-11-26 20:28 ` ng0
1 sibling, 0 replies; 11+ messages in thread
From: ng0 @ 2016-11-26 20:28 UTC (permalink / raw)
To: Leo Famulari; +Cc: guix-devel
Leo Famulari <leo@famulari.name> writes:
> On Wed, Nov 23, 2016 at 07:04:36PM +0000, ng0 wrote:
>> * gnu/packages/psyc.scm (psyclpc): Make it reproducible.
>> ---
>> gnu/packages/psyc.scm | 6 +++---
>> 1 file changed, 3 insertions(+), 3 deletions(-)
>>
>> diff --git a/gnu/packages/psyc.scm b/gnu/packages/psyc.scm
>> index 03df188..01bbae6 100644
>> --- a/gnu/packages/psyc.scm
>> +++ b/gnu/packages/psyc.scm
>> @@ -1,5 +1,5 @@
>> ;;; GNU Guix --- Functional package management for GNU
>> -;;; Copyright © 2016 ng0 <ngillmann@runbox.com>
>> +;;; Copyright © 2016 ng0 <ng0@libertad.pw>
>> ;;;
>> ;;; This file is part of GNU Guix.
>> ;;;
>> @@ -155,7 +155,7 @@ including psyced.")
>>
>> ;; This commit removes the historic bundled pcre, not released as a tarball so far.
>> (define-public psyclpc
>> - (let* ((commit "8bd51f2a4847860ba8b82dc79348ab37d516011e")
>> + (let* ((commit "61cf9aa81297085e5c40170fd01221c752f8deba")
>> (revision "1"))
>
> Is it a newer commit? I think the revision counter should increase to 2.
> Or else `guix pcakage -u` won't update users' psyclpc installations.
Yes, I should've updated revision to "2" like you did, I wasn't
sure and I was unable to respond until now.
Thanks for making the changes.
--
♥Ⓐ ng0 | ng0.chaosnet.org
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2016-11-26 20:28 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-11-23 19:04 [PATCH] psyclpc: reproducible, psyc.scm -> messaging.scm move ng0
2016-11-23 19:04 ` [PATCH 1/2] gnu: psyclpc: Make it reproducible ng0
2016-11-23 19:10 ` ng0
2016-11-26 18:26 ` Leo Famulari
2016-11-26 6:06 ` Leo Famulari
2016-11-26 9:02 ` Marius Bakke
2016-11-26 18:26 ` Leo Famulari
2016-11-26 20:28 ` ng0
2016-11-23 19:04 ` [PATCH 2/2] gnu: Move content of (gnu packages psyc) into (gnu packages messaging) ng0
2016-11-26 6:07 ` Leo Famulari
2016-11-26 18:24 ` Leo Famulari
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).