From mboxrd@z Thu Jan 1 00:00:00 1970 From: Efraim Flashner Subject: Re: [PATCH 1/2] gnu: Add eyed3. Date: Tue, 25 Aug 2015 11:11:39 +0300 Message-ID: <20150825111139.20c4b878@debian-netbook> References: <20150817225715.79d7df3d@debian-netbook> <87wpwqs2zx.fsf@gmail.com> <20150820181936.74fa0ed7@debian-netbook> <87twromhgb.fsf@netris.org> <20150825103831.474c6cc7@debian-netbook> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; boundary="Sig_/xtKKtpqU3bDFUaQImp7pAP/"; protocol="application/pgp-signature" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57906) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZU9Kg-0001YF-1X for guix-devel@gnu.org; Tue, 25 Aug 2015 04:11:51 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZU9Kc-0005Rt-QN for guix-devel@gnu.org; Tue, 25 Aug 2015 04:11:49 -0400 Received: from [178.62.234.194] (port=46750 helo=flashner.co.il) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZU9Kc-0005Rn-H4 for guix-devel@gnu.org; Tue, 25 Aug 2015 04:11:46 -0400 In-Reply-To: <20150825103831.474c6cc7@debian-netbook> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Mark H Weaver Cc: guix-devel@gnu.org --Sig_/xtKKtpqU3bDFUaQImp7pAP/ Content-Type: multipart/mixed; boundary="MP_/xmlC=YF37ArjKhAJzMAtSl9" --MP_/xmlC=YF37ArjKhAJzMAtSl9 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline forgot the copyright line On Tue, 25 Aug 2015 10:38:31 +0300 Efraim Flashner wrote: > On Mon, 24 Aug 2015 18:48:04 -0400 > Mark H Weaver wrote: >=20 > > Efraim Flashner writes: > >=20 > > > On Thu, 20 Aug 2015 17:50:10 +0800 > > > =E5=AE=8B=E6=96=87=E6=AD=A6 wrote: > > > > > >> Efraim Flashner writes: > > >>=20 > > >> eyeD3 is both a tool and python library, I wonder whether > > >> 'python-eyed3' fits better. > > > > > > 'python-eyed3' is probably a better name. I wonder perhaps as a python > > > library it should be in python.scm instead of mp3.scm. Anyone have a > > > suggestion on that front? > >=20 > > If it includes a library, then I think it should be named > > 'python-eyed3'. This is our usual convention, and it has the advantage > > that we can add 'python2-eyed3' later, in case someone wants it. >=20 > Changed the package to python-eyed3 and moved it to python.scm. >=20 > >=20 > > Also, your mail client seems to have applied word-wrapping to the patch, > > so some of the "+" signs have been wrapped into the description. This > > is what I see: > >=20 > > --8<---------------cut here---------------start------------->8--- > > + (description > > + "Eyed3 is a command-line editor to add/edit/remove ID3-tags on mp3 > > files. +It supports version 1.0, 1.1, 2.3 and 2.4 of the ID3 standard. > > Additionally it +displays several information about the file such as le= ngth > > and bitrate from an +MP3 file.") > > --8<---------------cut here---------------end--------------->8--- > >=20 > > This makes it difficult for us to apply it, since we'd have to fix it up > > by hand. Can you persuade your mail client to avoid word-wrapping? You > > could make it an attachment if needed. > >=20 > > Thanks! > > Mark >=20 > I've turned off line wrapping so there shouldn't be any more wrapping in = my email messages. >=20 --=20 Efraim Flashner =D7=90=D7=A4=D7=A8=D7=99=D7=9D = =D7=A4=D7=9C=D7=A9=D7=A0=D7=A8 GPG key =3D A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 Confidentiality cannot be guaranteed on emails sent or received unencrypted --MP_/xmlC=YF37ArjKhAJzMAtSl9 Content-Type: text/x-patch Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename=0001-gnu-Add-python-eyed3.patch =46rom 9be04652a8e0cefb037d348c6c7e112a7056cc91 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Tue, 25 Aug 2015 10:16:43 +0300 Subject: [PATCH] gnu: Add python-eyed3. * gnu/packages/python.scm (python-eyed3): New variable. --- gnu/packages/python.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 940efec..6ef4303 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -4629,3 +4629,25 @@ term.js Javascript terminal emulator library.") ,python2-backport-ssl-match-hostname) ,@(alist-delete "python-tornado" (package-propagated-inputs terminado))))))) + +(define-public python-eyed3 + (package + (name "python-eyed3") + (version "0.7.8") + (source (origin + (method url-fetch) + (uri (string-append "http://eyed3.nicfit.net/releases/eyeD3-" + version ".tar.gz")) + (sha256 + (base32 + "1nv7nhfn1d0qm7rgkzksbccgqisng8klf97np0nwaqwd5dbmdf86")))) + (build-system python-build-system) + (arguments + `(#:tests? #f)) ;fail with: UserWarning: Duplicate name: 'paver/shell= .py' + (home-page "http://eyed3.nicfit.net/") + (synopsis "Display and manipulate id3-tags on mp3 files") + (description "Eyed3 is a command-line editor to add/edit/remove ID3-t= ags=20 +on mp3 files. It supports version 1.0, 1.1, 2.3 and 2.4 of the ID3 standa= rd.=20 +Additionally it displays several information about the file such as length= and +bitrate from an MP3 file.") + (license gpl2+))) --=20 2.5.0 --MP_/xmlC=YF37ArjKhAJzMAtSl9-- --Sig_/xtKKtpqU3bDFUaQImp7pAP/ Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQIcBAEBCgAGBQJV3CM7AAoJEPTB05F+rO6T5n0P/A+P/Ws+BR2196JZ2gKe0QIv xDQ2b2mrm2dWuwSmMztKYFqYNVCWFWotPR7AmP7XWTE+KmanKt/0AihRITwr+QuJ jQqg1NzN2b8z41y+UCTcZ00MUOhmt89uC+ItMrf7PWyimBrZ7ItHrGcpyQE01Jf7 jLJWomYLhgaXMzjlMWvE16/I+O0WeH7RC4SGnxupS5oFvu06aqR/UN7jnlRXmrLv C9DS3xdtilQiPcNLawe8H5Jg57IUSuzh961bXdAMm3Di4KNjrKqMf15u+O1fIHW8 PQXLEipvl07DYs/+8kifZFdrRSH0jE6oib59cKoDfPx8VxT8bL5ebDwBFlmdfIKu pj4kVcrwS0YlgnK6tT3QZ4i8twlW1V0pQd16h/FPi9Nxz1PQtzOXHo1a4ej6luEA yeItzBASRRjkvIcLl0ov0p6RtUVF5IU7xKzUPYDR2/el5AN+niLBe4V/3Q+fq0J6 8dyMrwh2hBrv5K3b+5leQcixRvs7tPPUlzW+xF21mK6611O2hC3Wgnpatn2BG6QW FjTe/10AXcwNbLZxiKGTNiTtKWPyfgkVRanB6vi7Q2BaH1JRreyNd7hBwGQrbr3h R+Xwbj2GBDYoqbxJW3IpuYyNnRqfRPwT/UKEeUGcLaSbWUGTNunN2ZNObOHKQNnq 3USyhj/HRWsx1Y5ADjV8 =v93l -----END PGP SIGNATURE----- --Sig_/xtKKtpqU3bDFUaQImp7pAP/--