From debbugs-submit-bounces@debbugs.gnu.org Fri May 29 17:31:27 2020 Received: (at submit) by debbugs.gnu.org; 29 May 2020 21:31:27 +0000 Received: from localhost ([127.0.0.1]:56368 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jemb5-0007ru-QI for submit@debbugs.gnu.org; Fri, 29 May 2020 17:31:27 -0400 Received: from lists.gnu.org ([209.51.188.17]:60792) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jemb4-0007rn-QF for submit@debbugs.gnu.org; Fri, 29 May 2020 17:31:23 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:53000) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jemb4-0001Zw-JY for guix-patches@gnu.org; Fri, 29 May 2020 17:31:22 -0400 Received: from mugam.systemreboot.net ([139.59.75.54]:51804) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jemb2-0006RO-NL for guix-patches@gnu.org; Fri, 29 May 2020 17:31:22 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=systemreboot.net; s=default; h=Content-Transfer-Encoding:MIME-Version: Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To:Content-Type:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=PImp5jfaU8rqMDHgMRsSBT5OkmbNQ8EF8uuP6qCy5MQ=; b=UDpFhkqtR6UVCCUp14B4QSO6jb rBFQvgeiuDHTkXmX+nFZPbcsz3quJh3fbTcji/zHXJSsA11o+YA9aURa1jthdkOVVSgC0TXSggsU7 dkxBCuP4rj8DaDWnyMTgoVghaNwncTGvL5hinFj9kgJVA6Bgsx8jBXmRznUcYINiFamE=; Received: from [192.168.2.1] (helo=steel.lan) by systemreboot.net with esmtpsa (TLS1.3) tls TLS_AES_256_GCM_SHA384 (Exim 4.93) (envelope-from ) id 1jemau-000PaL-CB; Sat, 30 May 2020 03:01:12 +0530 From: Arun Isaac To: guix-patches@gnu.org Subject: [PATCH] gnu: glade3: Enable tests. Date: Sat, 30 May 2020 03:01:10 +0530 Message-Id: <20200529213110.2354-1-arunisaac@systemreboot.net> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=139.59.75.54; envelope-from=arunisaac@systemreboot.net; helo=mugam.systemreboot.net X-detected-operating-system: by eggs.gnu.org: First seen = 2020/05/29 17:31:13 X-ACL-Warn: Detected OS = ??? X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.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, SPF_PASS=-0.001, URIBL_BLOCKED=0.001 autolearn=_AUTOLEARN X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: Arun Isaac 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.3 (---) * gnu/packages/gnome.scm (glade3)[arguments]: Enable tests. Add custom pre-check phase. [native-inputs]: Add hicolor-icon-theme and xorg-server-for-tests. --- gnu/packages/gnome.scm | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 1745bf7906..02e14233d1 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -2102,8 +2102,7 @@ API add-ons to make GTK+ widgets OpenGL-capable.") "023gx8rj51njn8fsb6ma5kz1irjpxi4js0n8rwy22inc4ysldd8r")))) (build-system glib-or-gtk-build-system) (arguments - `(#:tests? #f ; needs X, GL, and software rendering - #:phases + `(#:phases (modify-phases %standard-phases (add-before 'configure 'fix-docbook (lambda* (#:key inputs #:allow-other-keys) @@ -2113,18 +2112,27 @@ API add-ons to make GTK+ widgets OpenGL-capable.") "/xml/xsl/docbook-xsl-" ,(package-version docbook-xsl) "/manpages/docbook.xsl"))) + #t)) + (add-before 'check 'pre-check + (lambda _ + (setenv "HOME" "/tmp") + ;; Tests require a running X server. + (system "Xvfb :1 &") + (setenv "DISPLAY" ":1") #t))))) (inputs `(("gtk+" ,gtk+) ("libxml2" ,libxml2))) (native-inputs - `(("intltool" ,intltool) + `(("hicolor-icon-theme" ,hicolor-icon-theme) + ("intltool" ,intltool) ("itstool" ,itstool) ("libxslt" ,libxslt) ;for xsltproc ("docbook-xml" ,docbook-xml-4.2) ("docbook-xsl" ,docbook-xsl) ("python" ,python-2) - ("pkg-config" ,pkg-config))) + ("pkg-config" ,pkg-config) + ("xorg-server" ,xorg-server-for-tests))) (home-page "https://glade.gnome.org") (synopsis "GTK+ rapid application development tool") (description "Glade is a rapid application development (RAD) tool to -- 2.26.2 From debbugs-submit-bounces@debbugs.gnu.org Sun Jun 14 06:26:08 2020 Received: (at 41610) by debbugs.gnu.org; 14 Jun 2020 10:26:08 +0000 Received: from localhost ([127.0.0.1]:42928 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jkPq4-0005x2-Cf for submit@debbugs.gnu.org; Sun, 14 Jun 2020 06:26:08 -0400 Received: from eggs.gnu.org ([209.51.188.92]:58028) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jkPq2-0005wZ-KM for 41610@debbugs.gnu.org; Sun, 14 Jun 2020 06:26:06 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:43007) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jkPps-0003h3-Qj; Sun, 14 Jun 2020 06:26:00 -0400 Received: from [2a01:e0a:fa:a50:d869:cbcf:2456:40cc] (port=36280 helo=meru) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1jkPpr-0002WW-MW; Sun, 14 Jun 2020 06:25:56 -0400 From: Mathieu Othacehe To: Arun Isaac Subject: Re: [bug#41610] [PATCH] gnu: glade3: Enable tests. References: <20200529213110.2354-1-arunisaac@systemreboot.net> Date: Sun, 14 Jun 2020 12:25:53 +0200 In-Reply-To: <20200529213110.2354-1-arunisaac@systemreboot.net> (Arun Isaac's message of "Sat, 30 May 2020 03:01:10 +0530") Message-ID: <87366ykkpa.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 41610 Cc: 41610@debbugs.gnu.org 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.3 (---) Hello Arun, > - ("pkg-config" ,pkg-config))) > + ("pkg-config" ,pkg-config) > + ("xorg-server" ,xorg-server-for-tests))) > (home-page "https://glade.gnome.org") > (synopsis "GTK+ rapid application development tool") > (description "Glade is a rapid application development (RAD) tool to This looks fine, please go ahead! Thanks, Mathieu From debbugs-submit-bounces@debbugs.gnu.org Mon Jun 15 14:40:37 2020 Received: (at 41610-done) by debbugs.gnu.org; 15 Jun 2020 18:40:38 +0000 Received: from localhost ([127.0.0.1]:47507 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jku29-0004Kb-Kw for submit@debbugs.gnu.org; Mon, 15 Jun 2020 14:40:37 -0400 Received: from mugam.systemreboot.net ([139.59.75.54]:47022) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jku26-0004KP-Au for 41610-done@debbugs.gnu.org; Mon, 15 Jun 2020 14:40:36 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=systemreboot.net; s=default; h=Content-Type:MIME-Version:Message-ID:Date: References:In-Reply-To:Subject:Cc:To:From:Sender:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Id: List-Help:List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=XasAKUzHc09hd9Zf3+GeNIHCtjmCyajcaBpNp8OmVvU=; b=OuQbZ9Xy/tGPUuU+oVTfUDeBP TnW4wTDEPFBFlyHCOHU3SgAKSOhloDgKkzHN0B9EuVdS7vKeBP00SYNKXT+frsnnH5wX2eRvbBD1/ 3jaODn4JaU+/k66RA92OG/OMyOigNegOlePM5SVQRmIxuWPxhHZvjZviqh4zloDSm2IXo=; Received: from [192.168.2.1] (helo=steel) by systemreboot.net with esmtpsa (TLS1.3) tls TLS_AES_256_GCM_SHA384 (Exim 4.93) (envelope-from ) id 1jku22-001R00-Hq; Tue, 16 Jun 2020 00:10:30 +0530 From: Arun Isaac To: Mathieu Othacehe Subject: Re: [bug#41610] [PATCH] gnu: glade3: Enable tests. In-Reply-To: <87366ykkpa.fsf@gnu.org> References: <20200529213110.2354-1-arunisaac@systemreboot.net> <87366ykkpa.fsf@gnu.org> Date: Tue, 16 Jun 2020 00:10:21 +0530 Message-ID: <87eeqgnpey.fsf@systemreboot.net> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 41610-done Cc: 41610-done@debbugs.gnu.org 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: -1.0 (-) --=-=-= Content-Type: text/plain Pushed, thanks for the review! --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEf3MDQ/Lwnzx3v3nTLiXui2GAK7MFAl7nwJYACgkQLiXui2GA K7M/kQf/XwHYE1zvXZ+Wt0ApUWsQM1Erm9fRBcX1aiZascDyUG5+aWysPIpfMPON rQYPv7C8WDbe38ZMrlVG2Vw3Wu483+zp8pVHIytoEDa3MLTwbpAQTcZ0lcjRj197 Ojj8t15dLupZY9k0JSytuy86yJ4JPHWWbkg5lUOt/ddPssiElTx+0YvqCb4y+Aqo QsW21gvFg3GPi9a89M0yvwbhrJlj0waF8b8IpjSW9lJjOovWXFYAEYOwK94/QM8h oQBwix9KPVXMJzBQfc9sgqkWprb6SifcLorhsG9epSM3Qs6D77VaXNrD1UitCHio BBrWjJDj7qV0SHmUqbTucgmU5EHx9g== =P73k -----END PGP SIGNATURE----- --=-=-=-- From unknown Thu Aug 14 21:51:01 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Tue, 14 Jul 2020 11:24:04 +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