From debbugs-submit-bounces@debbugs.gnu.org Wed Mar 06 06:53:57 2019 Received: (at submit) by debbugs.gnu.org; 6 Mar 2019 11:53:57 +0000 Received: from localhost ([127.0.0.1]:33795 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1h1V7T-0000et-Ni for submit@debbugs.gnu.org; Wed, 06 Mar 2019 06:53:56 -0500 Received: from eggs.gnu.org ([209.51.188.92]:59690) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1h1V7R-0000ee-6j for submit@debbugs.gnu.org; Wed, 06 Mar 2019 06:53:54 -0500 Received: from lists.gnu.org ([209.51.188.17]:52781) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1h1V7K-0004W5-M8 for submit@debbugs.gnu.org; Wed, 06 Mar 2019 06:53:47 -0500 Received: from eggs.gnu.org ([209.51.188.92]:45831) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h1V7I-0006Xs-Fh for guix-patches@gnu.org; Wed, 06 Mar 2019 06:53:46 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.1 required=5.0 tests=BAYES_50,RCVD_IN_DNSWL_LOW, URIBL_BLOCKED autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1h1V7G-0004Ti-5e for guix-patches@gnu.org; Wed, 06 Mar 2019 06:53:44 -0500 Received: from relay5-d.mail.gandi.net ([217.70.183.197]:57953) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1h1V7B-0004PO-Nc for guix-patches@gnu.org; Wed, 06 Mar 2019 06:53:39 -0500 X-Originating-IP: 90.92.41.33 Received: from localhost.localdomain (lfbn-1-12225-33.w90-92.abo.wanadoo.fr [90.92.41.33]) (Authenticated sender: mail@ambrevar.xyz) by relay5-d.mail.gandi.net (Postfix) with ESMTPSA id A3A681C0002 for ; Wed, 6 Mar 2019 11:53:33 +0000 (UTC) From: Pierre Neidhardt To: guix-patches@gnu.org Subject: [PATCH] gnu: Add acetoneiso. Date: Wed, 6 Mar 2019 12:53:18 +0100 Message-Id: <20190306115318.17395-1-mail@ambrevar.xyz> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 217.70.183.197 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: submit 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 (-) * gnu/packages/kde-frameworks.scm (acetoneiso): New variable. --- gnu/packages/kde-frameworks.scm | 79 +++++++++++++++ .../patches/acetoneiso-no-qtwebkit.patch | 99 +++++++++++++++++++ 2 files changed, 178 insertions(+) create mode 100644 gnu/packages/patches/acetoneiso-no-qtwebkit.patch diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index 2ae5feaf5..4d4b8ccfc 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -23,6 +23,7 @@ ;;; along with GNU Guix. If not, see . (define-module (gnu packages kde-frameworks) + #:use-module (guix build-system gnu) #:use-module (guix build-system cmake) #:use-module (guix download) #:use-module ((guix licenses) #:prefix license:) @@ -38,6 +39,7 @@ #:use-module (gnu packages boost) #:use-module (gnu packages bison) #:use-module (gnu packages boost) + #:use-module (gnu packages cdrom) #:use-module (gnu packages compression) #:use-module (gnu packages databases) #:use-module (gnu packages disk) @@ -3750,3 +3752,80 @@ offers abstract functionality to deal with scripts.") ;; under a variety of licenses. (license (list license:lgpl2.0+ license:lgpl2.1+ license:lgpl2.0 license:gpl3+)))) + +(define-public acetoneiso + (package + (name "acetoneiso") + (version "2.3") + (source (origin + (method url-fetch) + (uri (string-append + "https://downloads.sourceforge.net/acetoneiso/AcetoneISO/AcetoneISO%20" + version "/acetoneiso_" version ".tar.gz")) + (sha256 + (base32 + "0s07k8krzjkl2gpq2a7lxngijfxk81h37v5rrs98iw13bll6y7pa")) + (patches (search-patches "acetoneiso-no-qtwebkit.patch")))) + (build-system gnu-build-system) + (inputs + ;; TODO: Package fuseiso, cdrdao. + `(("cdrtools" ,cdrtools) + ("dvd+rw-tools" ,dvd+rw-tools) + ;; ("gnupg" ,gnupg) + ;; ("pinentry" ,pinentry) + ("mplayer" ,mplayer) + ("phonon" ,phonon) + ;; ("qtwebkit" ,qtwebkit) + ("qtbase" ,qtbase))) + (arguments + `(#:tests? #f ;no tests + #:phases + (modify-phases %standard-phases + (add-after 'unpack 'use-qt5 + ;; See https://git.archlinux.org/svntogit/community.git/tree/trunk/PKGBUILD?h=packages/acetoneiso2. + (lambda* (#:key inputs #:allow-other-keys) + ;; (substitute* "acetoneiso/sources/acetoneiso.h" + ;; (("#include \n") "")) + (let ((phonon (assoc-ref inputs "phonon")) + (qt (assoc-ref inputs "qtbase"))) + (substitute* "acetoneiso/acetoneiso.pro" + ;; Need to specify target or else nothing will be built. + (("TARGET = ") "TARGET = acetoneiso") + ;; Remove webkit. + ;; (("QT \\+= webkit") "") + ;; Use Qt5 + (("QT \\+= phonon") "LIBS += -lphonon4qt5") + (("INCLUDEPATH \\+= ." all) + (string-append all + " " qt "/include/qt5/QtWidgets" + " " phonon "/include/phonon4qt5" + " " phonon "/include/phonon4qt5/phonon"))) + (substitute* (find-files "acetoneiso/sources" ".") + (("QtGui") "QtWidgets") + (("getInteger") "getInt") + (("WFlags") "WindowFlags"))) + #t)) + (replace 'configure + (lambda _ + (chdir "acetoneiso") + (invoke "qmake"))) + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) + (invoke "make" (string-append "INSTALL_ROOT=" + (assoc-ref outputs "out")) + "install")))))) + (home-page "https://sourceforge.net/projects/acetoneiso") + (synopsis "All in one ISO tool (BIN MDF NRG IMG DAA DMG CDI B5I BWI PDI ISO)") + (description "AcetoneISO is a feature-rich and complete software +application to manage CD/DVD images. It will let you mount typical images +formats such as ISO BIN NRG MDF IMG and do plenty of other things: + +@itemize +@item Mount most common Windows images in a clean and easy GUI. +@item Convert all known images to ISO or extract the contents to a folder. +@item Encrypt, compress, split any type of image. +@item Download videos from Youtube. +@item Convert DVD video to Xvid .avi and any generic video to Xvid .avi. +@item Extract audio from a video. +@end itemize\n") + (license license:gpl3+))) diff --git a/gnu/packages/patches/acetoneiso-no-qtwebkit.patch b/gnu/packages/patches/acetoneiso-no-qtwebkit.patch new file mode 100644 index 000000000..7c6e78aaf --- /dev/null +++ b/gnu/packages/patches/acetoneiso-no-qtwebkit.patch @@ -0,0 +1,99 @@ +diff -ur acetoneiso_2.3.orig/acetoneiso/acetoneiso.pro acetoneiso_2.3/acetoneiso/acetoneiso.pro +--- acetoneiso_2.3.orig/acetoneiso/acetoneiso.pro 2010-11-11 19:52:33.000000000 +0100 ++++ acetoneiso_2.3/acetoneiso/acetoneiso.pro 2017-02-07 09:40:46.751204646 +0100 +@@ -59,7 +59,6 @@ + QT += phonon + QT += dbus + #QT += svg +-QT += webkit + + #install# + target.path = /usr/bin +diff -ur acetoneiso_2.3.orig/acetoneiso/sources/acetoneiso.cpp acetoneiso_2.3/acetoneiso/sources/acetoneiso.cpp +--- acetoneiso_2.3.orig/acetoneiso/sources/acetoneiso.cpp 2010-11-11 21:36:19.000000000 +0100 ++++ acetoneiso_2.3/acetoneiso/sources/acetoneiso.cpp 2017-02-07 09:36:27.715760057 +0100 +@@ -16,7 +16,6 @@ + + #include + #include +-#include + #include "acetoneiso.h" + #include "connections.h" + #include +diff -ur acetoneiso_2.3.orig/acetoneiso/sources/acetoneiso.h acetoneiso_2.3/acetoneiso/sources/acetoneiso.h +--- acetoneiso_2.3.orig/acetoneiso/sources/acetoneiso.h 2010-11-11 00:56:58.000000000 +0100 ++++ acetoneiso_2.3/acetoneiso/sources/acetoneiso.h 2017-02-07 09:36:44.429505254 +0100 +@@ -21,8 +21,6 @@ + #include + #include + #include +-#include +-#include + #include + #include"progress.h" + #include"QFileSystemModel" +diff -ur acetoneiso_2.3.orig/acetoneiso/ui/acetoneiso.ui acetoneiso_2.3/acetoneiso/ui/acetoneiso.ui +--- acetoneiso_2.3.orig/acetoneiso/ui/acetoneiso.ui 2010-11-15 02:34:50.000000000 +0100 ++++ acetoneiso_2.3/acetoneiso/ui/acetoneiso.ui 2017-02-07 09:37:46.144278448 +0100 +@@ -466,47 +466,6 @@ + + + +- +- +- +- :/images/splash.png:/images/splash.png +- +- +- Updates +- +- +- +- +- +- +- 0 +- 0 +- +- +- +- +- 260 +- 100 +- +- +- +- +- 6000 +- 6000 +- +- +- +- Real time updates from the net +- +- +- +- http://www.acetoneteam.org/clients.html +- +- +- +- +- +- + + + +@@ -1810,13 +1769,6 @@ + + + +- +- +- QWebView +- QWidget +-
QtWebKit/QWebView
+-
+-
+ + listWidget_2 + -- 2.20.1 From debbugs-submit-bounces@debbugs.gnu.org Wed Mar 06 06:57:41 2019 Received: (at 34767) by debbugs.gnu.org; 6 Mar 2019 11:57:41 +0000 Received: from localhost ([127.0.0.1]:33800 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1h1VB7-0000kb-Ar for submit@debbugs.gnu.org; Wed, 06 Mar 2019 06:57:41 -0500 Received: from relay5-d.mail.gandi.net ([217.70.183.197]:51413) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1h1VB4-0000kS-Rg for 34767@debbugs.gnu.org; Wed, 06 Mar 2019 06:57:39 -0500 X-Originating-IP: 90.92.41.33 Received: from bababa (lfbn-1-12225-33.w90-92.abo.wanadoo.fr [90.92.41.33]) (Authenticated sender: mail@ambrevar.xyz) by relay5-d.mail.gandi.net (Postfix) with ESMTPSA id 217361C0007 for <34767@debbugs.gnu.org>; Wed, 6 Mar 2019 11:57:35 +0000 (UTC) References: <20190306115318.17395-1-mail@ambrevar.xyz> User-agent: mu4e 1.0; emacs 26.1 From: Pierre Neidhardt To: 34767@debbugs.gnu.org Subject: Re: bug#34767: Acknowledgement ([PATCH] gnu: Add acetoneiso.) In-reply-to: Date: Wed, 06 Mar 2019 12:57:35 +0100 Message-ID: <875zswkyfk.fsf@ambrevar.xyz> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 34767 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.7 (-) --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable This package does not build. The main issue seems to be that qmake generates a Makefile that does not include rules to build the ui/*.ui files to build/*.h. Note that Acetoneiso was developed for Qt4. Arch Linux seems to have a working package: https://www.archlinux.org/packages/community/x86_64/acetoneiso2/. =2D-=20 Pierre Neidhardt https://ambrevar.xyz/ --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEUPM+LlsMPZAEJKvom9z0l6S7zH8FAlx/ta8ACgkQm9z0l6S7 zH933gf9FcsLxxrzIIxEyy1dC/emWivEVx7e3JnNa0P075gv7ejf07ye47H8BczF T0HYpHlZRKYcGwygj7eTz2kfUi+OQzkckclyoQfpRBIRslZaxQ5gdM9Mrf2WaCvl QV+it/Y4uZr2TjEoDqpr7PzdB78gCe/6+uO+0nuLdHz9ddOnjA/i8tkXAuAX2MII 22dIqnE8ASVwVazmiJPIN7SCGAMnBbIKC5Rk98FGmrrSV3Hj7KWnVr1xcb3GSAJc pAQ63OjikQPaKQ5h9lRQfLteTUQTTe+YKguEgN6F30NGOQqIoWD1W6eI9cV/x0tG AybGAlBqm/JOixx9i4pE+GdA2FF1TA== =YXAv -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Tue May 21 10:52:40 2019 Received: (at 34767) by debbugs.gnu.org; 21 May 2019 14:52:40 +0000 Received: from localhost ([127.0.0.1]:40560 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hT688-00061F-CH for submit@debbugs.gnu.org; Tue, 21 May 2019 10:52:40 -0400 Received: from eggs.gnu.org ([209.51.188.92]:34829) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hT685-000611-Ny for 34767@debbugs.gnu.org; Tue, 21 May 2019 10:52:38 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:47159) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hT67z-0000CZ-DE; Tue, 21 May 2019 10:52:31 -0400 Received: from [2001:660:6102:320:e120:2c8f:8909:cdfe] (port=40424 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1hT67y-0005qO-SY; Tue, 21 May 2019 10:52:31 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Pierre Neidhardt Subject: Re: [bug#34767] Acknowledgement ([PATCH] gnu: Add acetoneiso.) References: <20190306115318.17395-1-mail@ambrevar.xyz> <875zswkyfk.fsf@ambrevar.xyz> Date: Tue, 21 May 2019 16:52:29 +0200 In-Reply-To: <875zswkyfk.fsf@ambrevar.xyz> (Pierre Neidhardt's message of "Wed, 06 Mar 2019 12:57:35 +0100") Message-ID: <87mujfzwpe.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 34767 Cc: 34767@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, Pierre Neidhardt skribis: > This package does not build. > > The main issue seems to be that qmake generates a Makefile that does not > include rules to build the ui/*.ui files to build/*.h. Were you able to make progress? Thanks, Ludo=E2=80=99. From debbugs-submit-bounces@debbugs.gnu.org Tue May 21 11:38:26 2019 Received: (at 34767) by debbugs.gnu.org; 21 May 2019 15:38:26 +0000 Received: from localhost ([127.0.0.1]:40637 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hT6qQ-0000p7-BL for submit@debbugs.gnu.org; Tue, 21 May 2019 11:38:26 -0400 Received: from relay5-d.mail.gandi.net ([217.70.183.197]:49023) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hT6qO-0000oz-6m for 34767@debbugs.gnu.org; Tue, 21 May 2019 11:38:25 -0400 X-Originating-IP: 92.169.116.19 Received: from bababa (lfbn-1-4117-19.w92-169.abo.wanadoo.fr [92.169.116.19]) (Authenticated sender: pierre@atlas.engineer) by relay5-d.mail.gandi.net (Postfix) with ESMTPSA id AC0371C000C; Tue, 21 May 2019 15:38:19 +0000 (UTC) From: Pierre Neidhardt To: Ludovic =?utf-8?Q?Court=C3=A8s?= Subject: Re: [bug#34767] Acknowledgement ([PATCH] gnu: Add acetoneiso.) In-Reply-To: <87mujfzwpe.fsf@gnu.org> References: <20190306115318.17395-1-mail@ambrevar.xyz> <875zswkyfk.fsf@ambrevar.xyz> <87mujfzwpe.fsf@gnu.org> Date: Tue, 21 May 2019 17:38:19 +0200 Message-ID: <87k1ej3jis.fsf@ambrevar.xyz> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" X-Spam-Score: -0.2 (/) X-Debbugs-Envelope-To: 34767 Cc: 34767@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: -0.2 (/) --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Nope, I haven't looked into it since then :/ More pressing than AcetoneISO would be CDEmu I think. It's packaged but I'm not able to use it. =2D-=20 Pierre Neidhardt https://ambrevar.xyz/ --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEUPM+LlsMPZAEJKvom9z0l6S7zH8FAlzkG2sACgkQm9z0l6S7 zH+NtAgAjydjjlTihnuRhuDIhansm5PHYI7OoNHKuCSM1v12Te1fE6e/lsysKZYQ /r39BL00Setf32zjy97RAtmfXqUx1RPxRwNimZzTGfHpMRwYjygt+FsA/35v9cEC 92I4dPWDCHxI/ilQHd8Xxo8hrUC4mdVBJDYn6aGFx+peYNXKV8b8R15pbXAQXyVx 3B7aCpTd/dDowJy+1MLYHmdjZqm2Ajb1ZMhS3nnxi17xnJCb0nGqwvo98Ugyyb9+ 9a1KrUW9kLe400J4xUc8suJ525OucjUfHn9LN9Xm7TH0jmeYtP+PMoRL6hBOB8Fw bEDvuaPyMFRFh2xAC5nwNCiBrWj4EQ== =Mjrf -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Thu Apr 07 08:38:30 2022 Received: (at 34767) by debbugs.gnu.org; 7 Apr 2022 12:38:30 +0000 Received: from localhost ([127.0.0.1]:60125 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ncRPC-0007lS-Ce for submit@debbugs.gnu.org; Thu, 07 Apr 2022 08:38:30 -0400 Received: from mail-wm1-f42.google.com ([209.85.128.42]:39924) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ncRP9-0007kt-NA for 34767@debbugs.gnu.org; Thu, 07 Apr 2022 08:38:28 -0400 Received: by mail-wm1-f42.google.com with SMTP id bi13-20020a05600c3d8d00b0038c2c33d8f3so5561279wmb.4 for <34767@debbugs.gnu.org>; Thu, 07 Apr 2022 05:38:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=A/E9XyB9b9PU6Xglq1tL005P2v3dNUB3I/8ZwWYsWCM=; b=c7Pt2U3qbG4VV0FMSupzLzE8Bw1BflsGoLB6JoEIjUTPvy2Wu+6J2HWYQqra5thoIj rnc7In5FVRhKfsNmGbd7aA0iXJvJXpJOvyb5yxduAoGw3TgJU4zrIt6k9YvF+i4fNoQ5 PU0sTSdcHs3hgwPqfzYk+FUojD3XaVc8OZeFhz7OGt2C5+i1OUEmkmZ0t6C7vSuE1tSN FJTnSpvOmwjyvZpQmY72eMpnUJDegihjJ/gE3e2v2fwq+fIXTCLnVeS0ZCn3aGlpg8DT 2uWi68P58JbZCix7i9Y9wG2P61AUmpcE01rVTVAlPf85NMuv1z5nkU6/rS1OwQXEoNCn CbNQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version; bh=A/E9XyB9b9PU6Xglq1tL005P2v3dNUB3I/8ZwWYsWCM=; b=1ztdEeoSC58jwX1ffr3h+KWymo7lzq+E8ABjXeklZylf0SY1tn9FixMHLYclXLINxG vbgAMX8BrRxchgAZCMb/S8XYcDikFpkqhm1n+SDGcioki3vOEMA4zosJ1lW9ysuMa5J9 gV9ajeCUpzj7RmhJOVoZ1zmbbV++i8ikUJJ8qMTB0ZSv+WgFNpNftpZhfd0CH/tS5j/v g4KRthPKa2sOu6dAIvm7ksaZP7Dex98BRvR5gqmUEB0PdBaHDiy3ktL3d9U62LUOzQi0 UWleD0zIPsijf+/Fpi9Ow282E+dAyaPkoHTaIeCJHLnnKg18gZjbjJrd1LiRxdQW/m86 vLgA== X-Gm-Message-State: AOAM5310Td+6C806gGfFC/IymIMpC5TrQOh2HxT3i9eyu9KHWIEyZXGr YDkPozoPbgN81EfV5It8MrJkVOpK7aU= X-Google-Smtp-Source: ABdhPJydB+DCFWvuC3xu1gFOmvztr4fzmoXVHC3N1VG7ObEAivWlTo+xLOsBpT2ABPdc/FvCrqfOnA== X-Received: by 2002:a05:600c:a4b:b0:37b:ea2b:5583 with SMTP id c11-20020a05600c0a4b00b0037bea2b5583mr12210564wmq.139.1649335101888; Thu, 07 Apr 2022 05:38:21 -0700 (PDT) Received: from lili ([2a01:e0a:59b:9120:65d2:2476:f637:db1e]) by smtp.gmail.com with ESMTPSA id f1-20020a1c6a01000000b0038c9f6a3634sm7279016wmc.7.2022.04.07.05.38.21 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 07 Apr 2022 05:38:21 -0700 (PDT) From: zimoun To: Pierre Neidhardt Subject: Re: bug#34767: [PATCH] gnu: Add acetoneiso. References: <20190306115318.17395-1-mail@ambrevar.xyz> <875zswkyfk.fsf@ambrevar.xyz> <87mujfzwpe.fsf@gnu.org> <87k1ej3jis.fsf@ambrevar.xyz> Date: Thu, 07 Apr 2022 14:34:23 +0200 In-Reply-To: <87k1ej3jis.fsf@ambrevar.xyz> (Pierre Neidhardt's message of "Tue, 21 May 2019 17:38:19 +0200") Message-ID: <86ilrl2htc.fsf_-_@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 1.6 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: Hi, Looking at this old submission patch#34767: Content analysis details: (1.6 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 SPF_PASS SPF: sender matches SPF record 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (zimon.toutoune[at]gmail.com) 1.6 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: ambrevar.xyz (xyz)] -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at https://www.dnswl.org/, no trust [209.85.128.42 listed in list.dnswl.org] -0.0 RCVD_IN_MSPIKE_H2 RBL: Average reputation (+2) [209.85.128.42 listed in wl.mailspike.net] -0.0 T_SCC_BODY_TEXT_LINE No description available. X-Debbugs-Envelope-To: 34767 Cc: Ludovic =?utf-8?Q?Court=C3=A8s?= , 34767@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: 0.6 (/) Hi, Looking at this old submission patch#34767: I propose to close it, since: On Tue, 21 May 2019 at 17:38, Pierre Neidhardt wrote: > Nope, I haven't looked into it since then :/ > > More pressing than AcetoneISO would be CDEmu I think. It's packaged but > I'm not able to use it. and This package does not build. The main issue seems to be that qmake generates a Makefile that does not include rules to build the ui/*.ui files to build/*.h. Note that Acetoneiso was developed for Qt4. Therefore, if no one looked into it since more than 3 years and the package had never built, then I propose to close. WDYT? Cheers, simon From debbugs-submit-bounces@debbugs.gnu.org Tue Apr 12 03:50:50 2022 Received: (at 34767-done) by debbugs.gnu.org; 12 Apr 2022 07:50:50 +0000 Received: from localhost ([127.0.0.1]:47337 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1neBIX-0007M8-VY for submit@debbugs.gnu.org; Tue, 12 Apr 2022 03:50:50 -0400 Received: from eggs.gnu.org ([209.51.188.92]:39270) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1neBIW-0007Lt-Lz for 34767-done@debbugs.gnu.org; Tue, 12 Apr 2022 03:50:48 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:59836) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1neBIQ-0004b7-Qd; Tue, 12 Apr 2022 03:50:42 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:In-Reply-To:Date:References:Subject:To: From; bh=6oieEpBXJSI9KcccWWUNPttW75gAuDYsEmLjQJM+mRg=; b=iPr2TVE92ORRyob7/YVb HsHS1hZXTcEm0tsZAemsOIX42tGB84gEv7LfktuPxIlLc3DSZTuYXA5lqiDTRsihrJRudQGOeNFuV vw0CuEXncdqMKp69qKIB7Um49bFRD33Po107IbfNxAzgHPm9zPkkxL+7I+ubl6PN5WsoRcqDABP45 8aHXTmTF/or2/A/yoGNT3UaWHij0Qn4fuVKx+qf7pdKagLRKw/m1WmJX3XS6KSV8u7wVskU5hHMMe DAT5RM+XR8Tlr6yxDkDYAuJ9tPErM/1y+tsd2ac79dxV5E9qnTVe+ogCqlqN7gkTd/VKjzcC4YKyR Qpn5WNLPzHeecQ==; Received: from [193.50.110.136] (port=57360 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1neBIM-0008Cg-W6; Tue, 12 Apr 2022 03:50:42 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: zimoun Subject: Re: bug#34767: [PATCH] gnu: Add acetoneiso. References: <20190306115318.17395-1-mail@ambrevar.xyz> <875zswkyfk.fsf@ambrevar.xyz> <87mujfzwpe.fsf@gnu.org> <87k1ej3jis.fsf@ambrevar.xyz> <86ilrl2htc.fsf_-_@gmail.com> X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 23 Germinal an 230 de la =?utf-8?Q?R=C3=A9volution?= X-PGP-Key-ID: 0x090B11993D9AEBB5 X-PGP-Key: http://www.fdn.fr/~lcourtes/ludovic.asc X-PGP-Fingerprint: 3CE4 6455 8A84 FDC6 9DB4 0CFB 090B 1199 3D9A EBB5 X-OS: x86_64-pc-linux-gnu Date: Tue, 12 Apr 2022 09:50:37 +0200 In-Reply-To: <86ilrl2htc.fsf_-_@gmail.com> (zimoun's message of "Thu, 07 Apr 2022 14:34:23 +0200") Message-ID: <87wnfueo4y.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 34767-done Cc: 34767-done@debbugs.gnu.org, Pierre Neidhardt 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 (---) zimoun skribis: > Therefore, if no one looked into it since more than 3 years and the > package had never built, then I propose to close. WDYT? Yes, closing! Ludo=E2=80=99. From unknown Fri Aug 15 16:19:15 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, 10 May 2022 11:24:08 +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