From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:40162) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jSdVA-0007MN-S1 for guix-patches@gnu.org; Sun, 26 Apr 2020 05:23:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.90_1) (envelope-from ) id 1jSdVA-00009L-7u for guix-patches@gnu.org; Sun, 26 Apr 2020 05:23:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:49300) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1jSdV8-00005F-Ux for guix-patches@gnu.org; Sun, 26 Apr 2020 05:23:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jSdV7-0002vd-Po for guix-patches@gnu.org; Sun, 26 Apr 2020 05:23:01 -0400 Subject: [bug#40862] gnu: Add xarchiver. Resent-Message-ID: From: Mathieu Othacehe References: <20200426045129.31f36e15.raghavgururajan@disroot.org> Date: Sun, 26 Apr 2020 11:22:21 +0200 In-Reply-To: <20200426045129.31f36e15.raghavgururajan@disroot.org> (Raghav Gururajan's message of "Sun, 26 Apr 2020 04:51:29 -0400") Message-ID: <87ftcqfvoy.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/plain List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Raghav Gururajan Cc: 40862@debbugs.gnu.org Hello Raghav, Thanks for this patch. When running 'guix lint' on this patch, I have the following warnings: --8<---------------cut here---------------start------------->8--- /home/mathieu/guix-master/gnu/packages/compression.scm:87:5: xarchiver@0.5.4.14: the source file name should contain the package name /home/mathieu/guix-master/gnu/packages/compression.scm:87:5: xarchiver@0.5.4.14: the source URI should not be an autogenerated tarball fetching CVE database for 2020...... fetching CVE database for 2019... fetching CVE database for 2018... fetching CVE database for 2017... /home/mathieu/guix-master/gnu/packages/compression.scm:85:13: xarchiver@0.5.4.14: can be upgraded to 0.5b2 --8<---------------cut here---------------end--------------->8--- > > +(define-public xarchiver > + (package > + (name "xarchiver") > + (version "0.5.4.14") > + (source > + (origin > + (method url-fetch) > + (uri > + (string-append "https://github.com/ib/" name "/archive/" > + version ".tar.gz")) You should use "git-fetch" method for github repositories (see linter warning above). > + (list > + "--disable-plugin"))) ; Not required Why is it not required? > + (synopsis "Graphical Front-end for Archive Operations") No camel case notation. > + (description "Xarchiver is the ultimate solution for handling archives. It > +is a desktop-environment independent archiver front end.") "Ultimate" is maybe exaggerated! Also you could elaborate a bit on the functionalities of this tool. Thanks, Mathieu