GNU bug report logs - #66906
[PATCH] gnu: Add monsterid.

Previous Next

Package: guix-patches;

Reported by: Evgeny Pisemsky <evgeny <at> pisemsky.com>

Date: Fri, 3 Nov 2023 01:47:01 UTC

Severity: normal

Tags: patch

Done: Ludovic Courtès <ludo <at> gnu.org>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 66906 in the body.
You can then email your comments to 66906 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#66906; Package guix-patches. (Fri, 03 Nov 2023 01:47:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to Evgeny Pisemsky <evgeny <at> pisemsky.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Fri, 03 Nov 2023 01:47:01 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Evgeny Pisemsky <evgeny <at> pisemsky.com>
To: guix-patches <at> gnu.org
Subject: [PATCH] gnu: Add monsterid.
Date: Fri, 03 Nov 2023 04:45:44 +0300
[0001-gnu-Add-monsterid.patch (text/x-patch, inline)]
From 66ab9aa7d656e5226ff16c77ecf3e0b6b20885ed Mon Sep 17 00:00:00 2001
Message-ID: <66ab9aa7d656e5226ff16c77ecf3e0b6b20885ed.1698973482.git.evgeny <at> pisemsky.com>
From: Evgeny Pisemsky <evgeny <at> pisemsky.com>
Date: Fri, 3 Nov 2023 04:00:00 +0300
Subject: [PATCH] gnu: Add monsterid.

* gnu/packages/web.scm (monsterid): New variable.

Change-Id: I68dc167cb766f730bfa4108c96a70f59a9aec222
---
 gnu/packages/web.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 66d09700db..67650a19b8 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -64,6 +64,7 @@
 ;;; Copyright © 2023 David Thompson <dthompson2 <at> worcester.edu>
 ;;; Copyright © 2023 Christopher Howard <christopher <at> librehacker.com>
 ;;; Copyright © 2023 Felix Lechner <felix.lechner <at> lease-up.com>
+;;; Copyright © 2023 Evgeny Pisemsky <evgeny <at> pisemsky.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -7910,6 +7911,35 @@ (define-public geomyidae
 @end enumerate\n")
     (license license:expat)))
 
+(define-public monsterid
+  (let ((commit "5597f177b473343ff5cad9a6e0e5b255312c6096")
+        (revision "0"))
+    (package
+      (name "monsterid")
+      (version (git-version "0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/splitbrain/monsterID")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "0ixyrrcbw96plcdna2rx1pqwisqy9hnr57kvamgj13lzlv2whdb3"))))
+      (build-system copy-build-system)
+      (arguments
+       '(#:install-plan '(("monsterid.php" "share/web/monsterid/")
+                          ("parts/" "share/web/monsterid/parts/"
+                           #:include-regexp ("\\.png$")))))
+      (home-page "https://www.splitbrain.org/projects/monsterid")
+      (synopsis "The original MonsterID implementation")
+      (description
+       "MonsterID is a method to generate a unique monster image based upon a
+certain identifier (IP address, email address, whatever).  It can be
+used to automatically provide personal avatar images in blog comments
+or other community services.")
+      (license license:expat))))
+
 (define-public cat-avatar-generator
   (let ((commit "9360ea33f79d1dad3e43494b09878b5e3f6b41fa")
         (revision "1"))

base-commit: 28ebbe2be8829a4767b9789c6353ad5e826d1164
-- 
2.41.0





Information forwarded to guix-patches <at> gnu.org:
bug#66906; Package guix-patches. (Mon, 13 Nov 2023 08:24:02 GMT) Full text and rfc822 format available.

Message #8 received at 66906 <at> debbugs.gnu.org (full text, mbox):

From: Evgeny Pisemsky <evgeny <at> pisemsky.com>
To: 66906 <at> debbugs.gnu.org
Subject: Re: bug#66906: Acknowledgement ([PATCH] gnu: Add monsterid.)
Date: Mon, 13 Nov 2023 11:22:45 +0300
[Message part 1 (text/plain, inline)]
I understand that this looks like some primitive php script, but I
believe it has an artistic value, as well as historical. I tested it
manually using the attached configuration of services.
[example.scm (application/octet-stream, inline)]

Reply sent to Ludovic Courtès <ludo <at> gnu.org>:
You have taken responsibility. (Wed, 15 Nov 2023 17:30:02 GMT) Full text and rfc822 format available.

Notification sent to Evgeny Pisemsky <evgeny <at> pisemsky.com>:
bug acknowledged by developer. (Wed, 15 Nov 2023 17:30:03 GMT) Full text and rfc822 format available.

Message #13 received at 66906-done <at> debbugs.gnu.org (full text, mbox):

From: Ludovic Courtès <ludo <at> gnu.org>
To: Evgeny Pisemsky <evgeny <at> pisemsky.com>
Cc: 66906-done <at> debbugs.gnu.org
Subject: Re: [bug#66906] [PATCH] gnu: Add monsterid.
Date: Wed, 15 Nov 2023 18:29:16 +0100
Evgeny Pisemsky <evgeny <at> pisemsky.com> skribis:

>>From 66ab9aa7d656e5226ff16c77ecf3e0b6b20885ed Mon Sep 17 00:00:00 2001
> Message-ID: <66ab9aa7d656e5226ff16c77ecf3e0b6b20885ed.1698973482.git.evgeny <at> pisemsky.com>
> From: Evgeny Pisemsky <evgeny <at> pisemsky.com>
> Date: Fri, 3 Nov 2023 04:00:00 +0300
> Subject: [PATCH] gnu: Add monsterid.
>
> * gnu/packages/web.scm (monsterid): New variable.
>
> Change-Id: I68dc167cb766f730bfa4108c96a70f59a9aec222

Applied, thanks!




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Thu, 14 Dec 2023 12:24:05 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 147 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.