From debbugs-submit-bounces@debbugs.gnu.org Wed Mar 20 11:42:05 2024 Received: (at submit) by debbugs.gnu.org; 20 Mar 2024 15:42:05 +0000 Received: from localhost ([127.0.0.1]:48871 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rmy4q-0005SY-H9 for submit@debbugs.gnu.org; Wed, 20 Mar 2024 11:42:04 -0400 Received: from lists.gnu.org ([209.51.188.17]:42974) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rmy4n-0005SD-LM for submit@debbugs.gnu.org; Wed, 20 Mar 2024 11:42:02 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1rmy23-0004pW-5g for guix-patches@gnu.org; Wed, 20 Mar 2024 11:39:11 -0400 Received: from 195-15-241-199.dc3-a.pub1.etik-cloud.com ([195.15.241.199] helo=lyrion.ch) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1rmy20-0004iF-PD for guix-patches@gnu.org; Wed, 20 Mar 2024 11:39:10 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lyrion.ch; s=20230702; t=1710949141; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc; bh=TztU79mqd5ZVEjlZ+DolNPYb+gTlVMAJyZwU1mF4SbQ=; b=zM9hAmBKV3g70zbCbc2HAd32XAZDdUhdX5LkgJfU5/ipLLuTA8bO4W1b4HlvecLlDrJIPG WkGW5R98iYknuc/h1WCBOJiwXtkOVnJOFcsH7Kpd3HpzfK1Hl/qkPDgsen90LikRXfPlzX sRDUYm2GiwU4LOkF/XhNLOvwSc4e+66pgKgmrowiAcvKjbOCyno+EMf7fURvm4XzzPSkmR kebQgVKpbEz6IquWe7JZC8B3UxmfCVmxgR9tYTSruBMMJV8xQhx65yXTsp4ET1rpPf/X4B +gprmXnOIAUScEaox3qAkE9crhNIK3SQeCOCcErlcE4IaUCwyIMQNpil9w5GOQ== Received: from localhost ( [2a00:1f:99c0:3c01:8fc9:e8ec:45e0:6cde]) by lyrion.ch (OpenSMTPD) with ESMTPSA id 5692eca3 (TLSv1.3:TLS_AES_256_GCM_SHA384:256:NO); Wed, 20 Mar 2024 15:39:01 +0000 (UTC) Message-ID: From: Daniel Ziltener Date: Wed, 20 Mar 2024 16:36:52 +0100 Subject: [PATCH] gnu: add the Pharo language To: guix-patches@gnu.org Received-SPF: pass client-ip=195.15.241.199; envelope-from=dziltener@lyrion.ch; helo=lyrion.ch X-Spam_score_int: -10 X-Spam_score: -1.1 X-Spam_bar: - X-Spam_report: (-1.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, PP_MIME_FAKE_ASCII_TEXT=0.001, RDNS_DYNAMIC=0.982, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TVD_RCVD_IP=0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=no autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: dziltener@lyrion.ch X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) --- gnu/packages/pharo.scm | 78 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 gnu/packages/pharo.scm diff --git a/gnu/packages/pharo.scm b/gnu/packages/pharo.scm new file mode 100644 index 0000000000..4de35bcf9e --- /dev/null +++ b/gnu/packages/pharo.scm @@ -0,0 +1,78 @@ +;;; GNU Guix --- Functional package management for GNU +;;; Copyright © 2024 Daniel Ziltener +;;; +;;; 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 . + +(define-public pharo-vm + (package + (name "pharo-vm") + (version "10.1.1") + (source + (origin + (method url-fetch) + (uri (string-append "http://files.pharo.org/vm/pharo-spur64-headless/Linux-x86_64/source/PharoVM-" version "-32b2be5-Linux-x86_64-c-src.tar.gz")) + (sha256 + (base32 + "1hbkvfrw57sz5nw48z64789yjcry9l1am4hmkndy9dd6i06n2c2n")))) + (build-system cmake-build-system) + (arguments + (list + #:configure-flags + #~(list + (string-append "-DPHARO_BIN_LOCATION=" + (assoc-ref %outputs "out") "/bin") + (string-append "-DPHARO_LIBRARY_PATH=" + (assoc-ref %outputs "out") "/lib") + "-DGENERATED_SOURCE_DIR=." + "-DALWAYS_INTERACTIVE=on" + "-DBUILD_IS_RELEASE=on" + "-DGENERATE_SOURCES=off" + "-DBUILD_BUNDLE=off") + #:phases + #~(modify-phases %standard-phases + (delete 'check) + (add-after 'install 'really-install + (lambda _ + (let ((bin (string-append #$output "/bin")) + (lib (string-append #$output "/lib"))) + (wrap-program "./build/vm/pharo" + `("LD_LIBRARY_PATH" prefix (,lib))) + (mkdir-p bin) + (mkdir-p lib) + (copy-recursively "./build/vm/pharo" + (string-append bin "/pharo")) + (for-each (lambda (file) + (let ((inode (string-append "./build/vm/" file))) + (copy-recursively + inode + (string-append lib "/" file)))) + (with-directory-excursion + "./build/vm" + (find-files "." + (lambda (file stat) + (string-contains file ".so"))))))))))) + (inputs + (list libffi + libgit2 + cairo + freetype + pixman + libpng + util-linux)) + (synopsis "This is the VM used by Pharo") + (home-page "https://www.pharo.org") + (description "This is the VM used by Pharo.") + (license license:expat))) -- 2.41.0 From debbugs-submit-bounces@debbugs.gnu.org Wed Mar 20 11:46:51 2024 Received: (at 69916) by debbugs.gnu.org; 20 Mar 2024 15:46:51 +0000 Received: from localhost ([127.0.0.1]:48885 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rmy9T-0005dl-D4 for submit@debbugs.gnu.org; Wed, 20 Mar 2024 11:46:51 -0400 Received: from 195-15-241-199.dc3-a.pub1.etik-cloud.com ([195.15.241.199]:16096 helo=lyrion.ch) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rmy9R-0005dX-IE; Wed, 20 Mar 2024 11:46:50 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lyrion.ch; s=20230702; t=1710949566; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=uATmu7EXmp0DnVriynMwTujp8ICTLFqrAxYeHtCiY8s=; b=OK/vEdqPK/91sHJ0XFT+9ob4FUZW3o/Xs+JlEFjiYhVJm7ZzJhf8AXBqw7+a4u+oSz76mU mNeDf90N53R1gHF4OX8oOD9hUzfdeepbWJJqIVMOkaDR2j7mKVJfcrYYNWWbIbnLiGGSVk NB1+hDJV8ECz7ZYrYIo4IHYeUEwPy+0th4G22qwZLi5mDewZLDCQUfeHwW35HBBbwsNE62 GSrn3X9hoQ1+0jHVbeHHMh4bWuTIWgCJZCKGRMv6KgNyeSO5gTFok+ZFo0Sy62A4ZxjmU9 VG3Ntn41ekl4Kzx7cPh60y6c0KPJ9GJnbGSkIKeIDbl71slrMChXXXLAsjm5dg== Received: from [IPV6:2a00:1f:99c0:3c01:8fc9:e8ec:45e0:6cde] ( [2a00:1f:99c0:3c01:8fc9:e8ec:45e0:6cde]) by lyrion.ch (OpenSMTPD) with ESMTPSA id ffcdec1c (TLSv1.3:TLS_AES_256_GCM_SHA384:256:NO); Wed, 20 Mar 2024 15:46:06 +0000 (UTC) Message-ID: Date: Wed, 20 Mar 2024 16:46:06 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.15.0 Subject: Re: bug#69916: Acknowledgement ([PATCH] gnu: add the Pharo language) To: 69916@debbugs.gnu.org, control@debbugs.gnu.org References: Content-Language: en-US From: Daniel Ziltener In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Score: -2.9 (--) X-Debbugs-Envelope-To: 69916 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.9 (---) close 69916 thanks From unknown Sun Jun 22 00:44:30 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Thu, 18 Apr 2024 11:25:38 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator