Re: [PATCH] doc: The description should not be used as an introduction to generics.

2016-08-28 Thread Lukas Gradl
ng0 writes: > From e399e9a982e8a14e4e7f66d5318d3cf7919a81fb Mon Sep 17 00:00:00 2001 > From: ng0 > Date: Fri, 26 Aug 2016 11:16:27 + > Subject: [PATCH] doc: The description should not be used as an introduction to > generics. > > * doc/guix.texi (Synopses and Description): Generic terms lik

[Patch 0/10] Add Ring

2016-09-12 Thread Lukas Gradl
Hello Guix! The following patch series adds Ring, a distributed multimedia communications program. There is one issue that I can not figure out: The program ring.cx throws an error if evolution-data-server is not installed in the same profile. I hence propagated evolution-data-server, but this d

[Patch 1/10] Add pjproject.

2016-09-12 Thread Lukas Gradl
From d6a6a5ded95071a58a160a435ccf56d6828148b0 Mon Sep 17 00:00:00 2001 From: Lukas Gradl Date: Wed, 20 Jul 2016 21:26:32 -0500 Subject: [PATCH 01/10] gnu: Add pjproject * gnu/packages/telephony.scm (pjproject-sfl): New variable. --- gnu/packages/telephony.scm | 181

[Patch 2/10] Add dbus-c++.

2016-09-12 Thread Lukas Gradl
From 828174a6663363c26362637f23569e4f23698786 Mon Sep 17 00:00:00 2001 From: Lukas Gradl Date: Thu, 21 Jul 2016 08:39:54 -0500 Subject: [PATCH 02/10] gnu: Add dbus-c++. * gnu/packages/glib.scm (dbus-c++): New variable. --- gnu/packages/glib.scm | 43

[Patch 3/10] Add gsm.

2016-09-12 Thread Lukas Gradl
From ecafdf21a654c97fa9adb2c382c431c297a3fee0 Mon Sep 17 00:00:00 2001 From: Lukas Gradl Date: Tue, 9 Aug 2016 16:43:36 -0500 Subject: [PATCH 03/10] gnu: Add gsm. * gnu/packages/audio.scm (gsm): New variable. --- gnu/packages/audio.scm | 47 +++ 1

[Patch 4/10] argon2: Install pkg-config file.

2016-09-12 Thread Lukas Gradl
From 9850d4ef481b134d43d2380904b5db8e0d7fdd98 Mon Sep 17 00:00:00 2001 From: Lukas Gradl Date: Tue, 9 Aug 2016 16:49:19 -0500 Subject: [PATCH 04/10] gnu: argon2: Install pkg-config file. * gnu/packages/password-utils.scm (argon2)[source]: Create pkg-config file. [arguments]: Install it. --- gnu

Re: [Patch 5/10] opendht: Propagate argon2.

2016-09-12 Thread Lukas Gradl
From 5f14484f9d66cc5c40a19de9d58190d0b2b63342 Mon Sep 17 00:00:00 2001 From: Lukas Gradl Date: Tue, 9 Aug 2016 17:00:52 -0500 Subject: [PATCH 05/10] gnu: opendht: Propagate argon2. * gnu/packages/crypto.scm (opendht)[source]: Add argon2 to pkg-config file. [inputs]: Remove argon2. [propagated

[Patch 6/10] telephony: Add license prefix.

2016-09-12 Thread Lukas Gradl
From 630ad1d1d15131bb62eafe4afb842e5fa2fc5675 Mon Sep 17 00:00:00 2001 From: Lukas Gradl Date: Sun, 28 Aug 2016 12:40:21 -0500 Subject: [PATCH 06/10] gnu: telephony: Add 'license:' prefix. * gnu/packages/telephony.scm (commoncpp) [license]: Add prefix. (ucommon) [license]: Add pref

[Patch 7/10] opendht: Propagate msgpack.

2016-09-12 Thread Lukas Gradl
From b611f29c422cfa69c90f437c40fcbee47a77f839 Mon Sep 17 00:00:00 2001 From: Lukas Gradl Date: Sun, 11 Sep 2016 22:32:50 -0500 Subject: [PATCH 07/10] gnu: opendht: Propagate msgpack. * gnu/packages/crypto.scm (opendht)[inputs]: Remove msgpack. [propagated-inputs]: Add it. --- gnu/packages

[Patch 8/10] Add libring.

2016-09-12 Thread Lukas Gradl
From ad9397f36c7d4e8797c38a838f27079b8ba32631 Mon Sep 17 00:00:00 2001 From: Lukas Gradl Date: Sun, 28 Aug 2016 12:26:23 -0500 Subject: [PATCH 08/10] gnu: Add libring. * gnu/packages/telephony.scm (libring): New variable. --- gnu/packages/telephony.scm | 94

[Patch 9/10] Add libringclient.

2016-09-12 Thread Lukas Gradl
From f0215630412c195bee5c2bf53982911e2d155eff Mon Sep 17 00:00:00 2001 From: Lukas Gradl Date: Sun, 28 Aug 2016 13:07:16 -0500 Subject: [PATCH 09/10] gnu: Add libringclient. * gnu/packages/telephony.scm (libringclient): New variable. --- gnu/packages/telephony.scm | 48

[Patch 10/10] Add ring-client-gnome.

2016-09-12 Thread Lukas Gradl
From 10a6216d59e8128c0d6208c5f0487825f3a956a0 Mon Sep 17 00:00:00 2001 From: Lukas Gradl Date: Sun, 28 Aug 2016 14:05:28 -0500 Subject: [PATCH 10/10] gnu: Add ring-client-gnome. * gnu/packages/telephony.scm (ring-client-gnome): New variable. --- gnu/packages/telephony.scm | 52

Re: [Patch 10/10] Add ring-client-gnome.

2016-09-17 Thread Lukas Gradl
Thank you for your review! And Sorry for my late answer! Danny Milosavljevic writes: >> + (propagated-inputs >> + `(("libring" ,libring) ; This is needed to run dring. > > Wait... I don't understand why it's required to be propagated... > I was not sure how to handle this properly.

Re: [Patch 4/10] argon2: Install pkg-config file.

2016-09-17 Thread Lukas Gradl
Thank you for your review! Danny Milosavljevic writes: >> + (snippet >> +'(let ((p (open-file "argon2.pc" "a"))) > ... ^ why? > >> + (begin >> + (display >> + (string-append "prefix=/usr/local\n" >> +

Re: [Patch 4/10] argon2: Install pkg-config file.

2016-09-18 Thread Lukas Gradl
t of this will be ignored. Did you mean "(and ...)"? > > Oops! Yes, I will send an updated patch later today. > A patch fixing this is attached. Thank you! Best, Lukas From 2fe4bfef5d9d006e2afb982d0eddd5e280d7e559 Mon Sep 17 00:00:00 2001 From: Lukas Gradl Date: Tue, 9 Au

Re: [Patch 4/10] argon2: Install pkg-config file.

2016-09-18 Thread Lukas Gradl
d be "w". The attached patch fixes that. Thank you! Best, Lukas From eea1626e7ca44674d7430356a900665edefeb4ae Mon Sep 17 00:00:00 2001 From: Lukas Gradl Date: Tue, 9 Aug 2016 16:49:19 -0500 Subject: [PATCH 04/10] gnu: argon2: Install pkg-config file. * gnu/packages/password-utils.scm (a

Re: [Patch 1/10] Add pjproject.

2016-09-19 Thread Lukas Gradl
Hi Ricardo! Thank you for your review! Ricardo Wurmus writes: >> From d6a6a5ded95071a58a160a435ccf56d6828148b0 Mon Sep 17 00:00:00 2001 >> From: Lukas Gradl >> Date: Wed, 20 Jul 2016 21:26:32 -0500 >> Subject: [PATCH 01/10] gnu: Add pjproject > >> * gnu/pack

Re: [Patch 4/10] argon2: Install pkg-config file.

2016-09-25 Thread Lukas Gradl
Hi Danny, Sorry for the delay! Danny Milosavljevic writes: > Hi Lukas, > > I thought about it some more. > > On Sun, 18 Sep 2016 16:43:03 -0500 > Lukas Gradl wrote: >> + (and >> +(install-file "argon2" (string-append out &q

Re: [Patch 5/10] opendht: Propagate argon2.

2016-09-25 Thread Lukas Gradl
Thank you! Best, Lukas From e7e0b00146f380f96c7ecb8d00ba3d00375d49f9 Mon Sep 17 00:00:00 2001 From: Lukas Gradl Date: Tue, 9 Aug 2016 17:00:52 -0500 Subject: [PATCH 05/10] gnu: opendht: Propagate argon2. * gnu/packages/crypto.scm (opendht)[source]: Add argon2 to pkg-config file. [inputs]: Remove argon2. [propagated

Re: [Patch 10/10] Add ring-client-gnome.

2016-09-25 Thread Lukas Gradl
Lukas Gradl writes: > To come back to your question: I am not fully convinced that other > packages using evolution-data-server are able to properly use it as an > input. I am pretty sure that propagating evolution-data-server does not > make it a lot better. Should I move it to

Re: [Patch 4/10] argon2: Install pkg-config file.

2016-09-25 Thread Lukas Gradl
as From 5fb85fef7b1475baca6c29beb26799ca8f3d814a Mon Sep 17 00:00:00 2001 From: Lukas Gradl Date: Tue, 9 Aug 2016 16:49:19 -0500 Subject: [PATCH 04/10] gnu: argon2: Install pkg-config file. * gnu/packages/password-utils.scm (argon2)[source]: Create pkg-config file. [arguments]: Install it. --- gnu

Re: [Patch 5/10] opendht: Propagate argon2.

2016-09-25 Thread Lukas Gradl
Danny Milosavljevic writes: > Hi Lukas, > > On Sun, 25 Sep 2016 17:54:36 -0500 > Lukas Gradl wrote: > >> I noticed that some linker flags are set incorrectly. The result was >> that the output of >> "objdump -p /gnu/store/...-opendht-0.6.1/lib/libopendht.

Re: [Patch 1/10] Add pjproject.

2016-09-25 Thread Lukas Gradl
Hi Ricardo, Sorry for the delay! Ricardo Wurmus writes: >> My idea here is the following: The source tree downloaded here contains >> the complete source for libring, which includes the patches to >> pjproject. In this snippet I try to get rid of all the other libring >> files that are not nee

Re: [Patch 0/10] Add Ring

2016-11-09 Thread Lukas Gradl
Hello, I would like to apologize for my long silence. I am currently facing somewhat of a crisis in my professional life, which is taking a lot of my time and energy. Chris Marusich writes: > What's the status of this patch series? Especially since Ring just > recently became an official GNU

Re: [Patch 0/10] Add Ring

2016-11-12 Thread Lukas Gradl
Leo Famulari writes: > On Wed, Nov 09, 2016 at 12:07:10PM -0600, Lukas Gradl wrote: >> I would like to apologize for my long silence. I am currently facing >> somewhat of a crisis in my professional life, which is taking a lot of >> my time and energy. >>

Re: [Patch 0/10] Add Ring

2016-11-13 Thread Lukas Gradl
Mike Gerwitz writes: > On Wed, Nov 09, 2016 at 12:07:10 -0600, Lukas Gradl wrote: >> If anyone would like to work on this patch series, please feel free to >> claim it as your own. I hope my work will be of some use. If nobody >> picks it up, I will be very happy to come

[Patch] Add python-rope

2016-05-20 Thread Lukas Gradl
Hello, This patch adds the Rope refactoring library for python. I am only interested in this package as a dependency of elpy. There is no particular reason why the old (0.10.2) would be needed, AFAIK. There are some tests that fail on the python-3 version. According to this (https://groups.goo

Re: [Patch] Add python-rope

2016-05-20 Thread Lukas Gradl
Lukas Gradl writes: > Hello, > > This patch adds the Rope refactoring library for python. > I am only interested in this package as a dependency of elpy. > > There is no particular reason why the old (0.10.2) would be needed, > AFAIK. > > There are some tests that f

Re: [Patch] Add python-rope

2016-05-21 Thread Lukas Gradl
a few > examples of refactoring processes? Also s/Refactoring/refactoring/. > I expanded it a bit. I am not exactly sure what to write as I am not very familiar with the project. Hope this will make it more clear. An updated patch is attached. Thank you for your review! Best, Lukas >From faf968a8bebaffdd14c60407aebca

Re: [Patch] Add python-rope

2016-05-23 Thread Lukas Gradl
Ben Woodcroft writes: > On 22/05/16 09:24, Lukas Gradl wrote: >> An updated patch is attached. > > Applied as '88bb419' with minor changes to the commenting and commit > message. Thank you for your help! Best, Lukas

[PATCH] Add libiax

2016-05-28 Thread Lukas Gradl
rom b6319840932e87b40c1f8ae4a7546727f7547d91 Mon Sep 17 00:00:00 2001 From: Lukas Gradl Date: Sat, 28 May 2016 17:50:28 -0500 Subject: [PATCH] gnu: telephony: Add libiax. * gnu/packages/telephony.scm (libiax): New variable. --- gnu/packages/telephony.scm | 35 +++

Re: [PATCH] Add libiax

2016-05-30 Thread Lukas Gradl
Thank you for your review! Leo Famulari writes: > On Sat, May 28, 2016 at 06:08:57PM -0500, Lukas Gradl wrote: >> >> Hi Guix, >> >> Attached is a patch for LibIAX, a library that is used by the Ring >> (formerly SFLphone). > > Cool! > >> Upstr

Re: [PATCH] Add libiax

2016-05-30 Thread Lukas Gradl
Leo Famulari writes: > On Sat, May 28, 2016 at 06:08:57PM -0500, Lukas Gradl wrote: >> + #:use-module (gnu packages autotools) >^ > Also, there is some extra whitespace at the end of the line above. > Oops! Good catch!

[PATCH] Add googletest

2016-05-30 Thread Lukas Gradl
ough or if something else needs to be installed. Opinions are welcome! Thank you! >From 0560038dd1c529cca46e31c6afbb5cd16808db43 Mon Sep 17 00:00:00 2001 From: Lukas Gradl Date: Mon, 30 May 2016 15:35:10 -0500 Subject: [PATCH] gnu: check: Add googletest. * gnu/packages/check.scm (googletest):

[PATCH] Add msgpack

2016-05-30 Thread Lukas Gradl
Hello Guix, Attached is a patch for the c/c++ version of msgpack. This is a dependency of the Ring. Thank you! >From 25eef52146bc84e83d90e429a0a2a5ca607280bc Mon Sep 17 00:00:00 2001 From: Lukas Gradl Date: Mon, 30 May 2016 15:46:29 -0500 Subject: [PATCH] gnu: serialization: Add msgp

Re: [PATCH] Add googletest

2016-05-31 Thread Lukas Gradl
Hello, Sorry, I accidently attached the wrong patch. Please disregard the patch in my previous email, attached is an updated one. Sorry about that! Best, Lukas >From f5f229eafcf2ebf24703e6becc291b8378dff2e0 Mon Sep 17 00:00:00 2001 From: Lukas Gradl Date: Tue, 31 May 2016 08:48:29 -0

[PATCH] Add opendht.

2016-05-31 Thread Lukas Gradl
Hello Guix, Attached is a patch to add the opendht library, a dependency of the Ring. Thank you! Best, Lukas >From 392ea1f9194d299d73af5b21ee7f76e34653556a Mon Sep 17 00:00:00 2001 From: Lukas Gradl Date: Tue, 31 May 2016 09:14:21 -0500 Subject: [PATCH] gnu: telephony: Add opendht. *

Re: [PATCH] Add googletest

2016-06-01 Thread Lukas Gradl
Thank you for your review! Leo Famulari writes: > On Tue, May 31, 2016 at 08:53:17AM -0500, Lukas Gradl wrote: >> * gnu/packages/check.scm (googletest): New variable. > > Awesome, thanks for this patch! > >> +(build-system cmake-build-system) > > I noticed

Re: [PATCH] Add libiax

2016-06-01 Thread Lukas Gradl
Leo Famulari writes: > On Tue, May 31, 2016 at 09:02:21PM +0200, Andreas Enge wrote: >> Hello, >> >> just a quick comment on the name: >> >> On Mon, May 30, 2016 at 02:47:55PM -0500, Lukas Gradl wrote: >> > Upstream seems to refer to t

Re: [PATCH] Add googletest

2016-06-02 Thread Lukas Gradl
Hi Efraim, Thank you for your review! Efraim Flashner writes: > On Tue, May 31, 2016 at 05:44:00PM -0400, Leo Famulari wrote: >> On Tue, May 31, 2016 at 08:53:17AM -0500, Lukas Gradl wrote: >> > * gnu/packages/check.scm (googletest): New variable. >> >>

Re: [PATCH] Add googletest

2016-06-02 Thread Lukas Gradl
Hi Leo, Leo Famulari writes: > On Wed, Jun 01, 2016 at 09:57:53AM -0500, Lukas Gradl wrote: >> Leo Famulari writes: >> > I noticed in the README.md that upstream suggests use of GNU Make unless >> > building from a Git checkout. Did you try that? >> >>

Re: [PATCH] Add msgpack

2016-06-02 Thread Lukas Gradl
Hi, Thank you for your review! Efraim Flashner writes: > On Mon, May 30, 2016 at 03:50:41PM -0500, Lukas Gradl wrote: >> >> Hello Guix, >> >> Attached is a patch for the c/c++ version of msgpack. This is a >> dependency of the Ring

Re: [PATCH] Add opendht.

2016-06-03 Thread Lukas Gradl
Hi Leo, Thank you for your review! Leo Famulari writes: > On Tue, May 31, 2016 at 09:17:29AM -0500, Lukas Gradl wrote: >> * gnu/packages/telephony.scm (opendht): New variable. > > I wonder if there is a better module? Distributed hash tables aren't > specific to te

[PATCH] Add argon2.

2016-06-05 Thread Lukas Gradl
28 Mon Sep 17 00:00:00 2001 From: Lukas Gradl Date: Sun, 5 Jun 2016 15:35:24 -0500 Subject: [PATCH] gnu: Add argon2. * gnu/packages/password-utils.scm (argon2): New variable. --- gnu/packages/password-utils.scm | 37 + 1 file changed, 37 insertions(+) dif

Re: [PATCH] Add opendht.

2016-06-05 Thread Lukas Gradl
Leo Famulari writes: > On Fri, Jun 03, 2016 at 10:27:32AM -0500, Lukas Gradl wrote: >> Leo Famulari writes: >> > On Tue, May 31, 2016 at 09:17:29AM -0500, Lukas Gradl wrote: >> >> * gnu/packages/telephony.scm (opendht): New variable. >> > >> > I

Re: [PATCH] Add googletest

2016-06-05 Thread Lukas Gradl
Efraim Flashner writes: > On Thu, Jun 02, 2016 at 10:44:58AM -0500, Lukas Gradl wrote: >> >> Hi Leo, >> > ... >> >> The tool "pump.py" is distributed with the Googletest source. It >> appears to be a part of the source rather than a bundel

Re: [PATCH] Add googletest

2016-06-09 Thread Lukas Gradl
Efraim Flashner writes: > On Sun, Jun 05, 2016 at 04:09:28PM -0500, Lukas Gradl wrote: >> Efraim Flashner writes: >> >> > On Thu, Jun 02, 2016 at 10:44:58AM -0500, Lukas Gradl wrote: >> >> >> >> Hi Leo, >> >> >> > ... >

Re: [PATCH] Add msgpack

2016-06-11 Thread Lukas Gradl
Hi, I am sorry for the long silence, this week was busy and I did not find a lot of time to look into this. My apologies for that! Leo Famulari writes: > On Mon, Jun 06, 2016 at 10:07:37AM -0400, Leo Famulari wrote: >> On Mon, May 30, 2016 at 03:50:41PM -0500, Lukas Gradl wrote: &

Re: [PATCH] Add msgpack

2016-06-11 Thread Lukas Gradl
Leo Famulari writes: > On Sat, Jun 11, 2016 at 06:56:38PM -0500, Lukas Gradl wrote: >> It seems that zlib is only required for tests. In README and README.md >> zlib is never mentioned among the dependencies, which also supports >> that it is only needed for tests. I

Re: [PATCH] Add msgpack

2016-06-17 Thread Lukas Gradl
Hi, Leo Famulari writes: > On Mon, Jun 13, 2016 at 12:58:52PM -0400, Leo Famulari wrote: >> On Sat, Jun 11, 2016 at 11:24:23PM -0500, Lukas Gradl wrote: >> > Oh, that is true. I searched around, but I could not find anything >> > about zbuffer.h[pp]. I am not sure

Re: [PATCH] Add msgpack

2016-06-18 Thread Lukas Gradl
Lukas Gradl writes: > So the flags -I, -L, -l for zlib are all there for both dynamic and > static linking. But still no store reference. I think the reason why there is no reference is that msgpack uses zbuffer only for tests. Before compilation, the file only references the name &quo

Re: [PATCH] Add msgpack

2016-06-21 Thread Lukas Gradl
Leo Famulari writes: > On Sat, Jun 18, 2016 at 10:44:16PM -0500, Lukas Gradl wrote: >> Lukas Gradl writes: >> >> > So the flags -I, -L, -l for zlib are all there for both dynamic and >> > static linking. But still no store reference. >> >> I think

Re: [PATCH] Add msgpack

2016-06-21 Thread Lukas Gradl
Hi, l...@gnu.org (Ludovic Courtès) writes: > Hello! > > Sorry for the late reply, but… > > Lukas Gradl skribis: > >> All the files that do get installed in the output path of >> msgpack in the store do not contain the hash part of the store-path of >> zl

Re: [PATCH] Add msgpack

2016-06-21 Thread Lukas Gradl
Leo Famulari writes: > I'm curious — how close are you to a Ring package definition? According to https://tuleap.ring.cx/plugins/mediawiki/wiki/ring/index.php/Build_Instructions, Ring is divided into three Layers: * Libring (or ring-daemon) * LibringClient * Clints I have a work-in-progress

Re: [PATCH] Add msgpack

2016-06-21 Thread Lukas Gradl
Lukas Gradl writes: > As I said I will post two patches later (pjproject & libring). Any help > on those or some of the missing inputs is of course greatly appreciated! Here they are! pjproject still fails to build one of its components (pjmedia) because of a missing include (resa

Re: [PATCH] Add msgpack

2016-06-21 Thread Lukas Gradl
Thank you for looking at this! Efraim Flashner writes: > On Tue, Jun 21, 2016 at 10:59:06AM -0500, Lukas Gradl wrote: >> Leo Famulari writes: >> >> > I'm curious — how close are you to a Ring package definition? >> >> There are some more dependen

Re: [PATCH] Add msgpack

2016-06-25 Thread Lukas Gradl
Leo Famulari writes: > On Fri, Jun 17, 2016 at 10:13:28AM -0500, Lukas Gradl wrote: >> Also, is it OK to do things like that in a snippet as in the attached >> patch? > >> * gnu/packages/serialization.scm (msgpack): New variable. > > I think it's fine and I

Re: [PATCH] Add opendht.

2016-06-25 Thread Lukas Gradl
Leo Famulari writes: > On Sun, Jun 05, 2016 at 03:50:20PM -0500, Lukas Gradl wrote: >> Attached is an updated patch. > > Pushed as 893d963a, thanks! Thank you!

[PATCH] Add procmail

2016-02-27 Thread Lukas Gradl
Hello Guix! Attached is a patch to add the mail delivery agent Procmail. I am new to Guix and Scheme, so I would very much welcome any comments you might have. Thanks in advance! Best, Lukas From 862c540938cd16ed20ce8107ff9729e5f24dae09 Mon Sep 17 00:00:00 2001 From: Lukas Gradl Date: Sat

Re: [PATCH] Add procmail

2016-02-29 Thread Lukas Gradl
On Mon, Feb 29, 2016 at 02:54:09PM +0100, Andy Wingo wrote: > Hi Lukas, > > On Sat 27 Feb 2016 10:16, Lukas Gradl writes: > > > I am new to Guix and Scheme, so I would very much welcome any comments > > you might have. > > Welcome :) Thank you! > > >

Re: [PATCH] Add procmail

2016-02-29 Thread Lukas Gradl
On Mon, Feb 29, 2016 at 02:50:19PM -0500, Leo Famulari wrote: > On Sat, Feb 27, 2016 at 03:16:38AM -0600, Lukas Gradl wrote: > > > > Hello Guix! > > > > Attached is a patch to add the mail delivery agent Procmail. > > > > I am new to Guix and Scheme, so

Re: [PATCH] Add procmail

2016-03-02 Thread Lukas Gradl
Hi Leo, On Wed, Mar 02, 2016 at 08:46:05PM -0500, Leo Famulari wrote: > On Mon, Feb 29, 2016 at 10:41:12PM -0600, Lukas Gradl wrote: > > [...] > > > > > * gnu/packages/patches/procmail-ambiguous-getline-debian.patch: New file > > > > * gnu-system.am: Add p

[PATCH] gnu: add sparta-dsmc

2016-04-04 Thread Lukas Gradl
of the source tar ball available at this URL changes several times a month. Is this acceptable or does anyone have an idea how this should be handled? Thank you! >From bb34f87da7df626170a51aab77dd150336112401 Mon Sep 17 00:00:00 2001 From: Lukas Gradl Date: Mon, 4 Apr 2016 15:19:35 -0500 Subj

Re: [PATCH] gnu: add sparta-dsmc

2016-04-05 Thread Lukas Gradl
On Tue, Apr 05, 2016 at 04:26:59AM -0400, Leo Famulari wrote: > On Mon, Apr 04, 2016 at 03:55:51PM -0500, Lukas Gradl wrote: > > Hello Guix! > > > > Attached is a patch to add the SPARTA Direct Simulation Monte Carlo > > Software. > > > > There maybe is

Re: [PATCH] gnu: add sparta-dsmc

2016-04-22 Thread Lukas Gradl
On Tue, Apr 05, 2016 at 08:21:35PM +0300, Efraim Flashner wrote: > On Tue, Apr 05, 2016 at 12:04:56PM -0500, Lukas Gradl wrote: > > On Tue, Apr 05, 2016 at 04:26:59AM -0400, Leo Famulari wrote: > > > On Mon, Apr 04, 2016 at 03:55:51PM -0500, Lukas Gradl wrote:

Re: [PATCH] gnu: add sparta-dsmc

2016-04-25 Thread Lukas Gradl
Leo Famulari writes: > On Sat, Apr 23, 2016 at 01:47:18AM -0500, Lukas Gradl wrote: >> On Tue, Apr 05, 2016 at 08:21:35PM +0300, Efraim Flashner wrote: >> > On Tue, Apr 05, 2016 at 12:04:56PM -0500, Lukas Gradl wrote: >> > > On Tue, Apr 05, 2016 at 04:26: