From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0BBC3138334 for ; Tue, 18 Sep 2018 19:18:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ECDEEE0AAC; Tue, 18 Sep 2018 19:18:55 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AC94BE0AAC for ; Tue, 18 Sep 2018 19:18:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 224BD335C07 for ; Tue, 18 Sep 2018 19:18:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5ED5E2C6 for ; Tue, 18 Sep 2018 19:18:52 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1537298324.8dc3fd83f52077dba601e4750d2f037a5551a7dc.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-haskell/tar/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-haskell/tar/tar-0.4.0.1.ebuild dev-haskell/tar/tar-0.4.2.1.ebuild dev-haskell/tar/tar-0.5.0.3.ebuild dev-haskell/tar/tar-0.5.1.0.ebuild X-VCS-Directories: dev-haskell/tar/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: 8dc3fd83f52077dba601e4750d2f037a5551a7dc X-VCS-Branch: master Date: Tue, 18 Sep 2018 19:18:52 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 12addaad-1d6d-4388-aba8-917f8a5d08b6 X-Archives-Hash: bdbf60d562a42f6f380e7259c52fb486 commit: 8dc3fd83f52077dba601e4750d2f037a5551a7dc Author: Sergei Trofimovich gentoo org> AuthorDate: Tue Sep 18 19:18:38 2018 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Tue Sep 18 19:18:44 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8dc3fd83 dev-haskell/tar: fix quoting in DESCRIPTION (While syntactically valid) truncated DESCRIPTION DESCRIPTION="Reading, writing and manipulating \\" managed to confuse esync parser: https://bugs.gentoo.org/666314#c3 Fix DESCRIPTION and avoid backslash quoting. Reported-by: PhobosK Bug: https://bugs.gentoo.org/666314 Package-Manager: Portage-2.3.49, Repoman-2.3.10 dev-haskell/tar/tar-0.4.0.1.ebuild | 4 ++-- dev-haskell/tar/tar-0.4.2.1.ebuild | 4 ++-- dev-haskell/tar/tar-0.5.0.3.ebuild | 4 ++-- dev-haskell/tar/tar-0.5.1.0.ebuild | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/dev-haskell/tar/tar-0.4.0.1.ebuild b/dev-haskell/tar/tar-0.4.0.1.ebuild index ede1fa7e35b..fa4e3ed7a9d 100644 --- a/dev-haskell/tar/tar-0.4.0.1.ebuild +++ b/dev-haskell/tar/tar-0.4.0.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -8,7 +8,7 @@ EAPI=5 CABAL_FEATURES="lib profile haddock hoogle hscolour" inherit haskell-cabal -DESCRIPTION="Reading, writing and manipulating ".tar" archive files" +DESCRIPTION="Reading, writing and manipulating '.tar' archive files" HOMEPAGE="http://hackage.haskell.org/package/tar" SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" diff --git a/dev-haskell/tar/tar-0.4.2.1.ebuild b/dev-haskell/tar/tar-0.4.2.1.ebuild index 79a82635afb..a89abd14651 100644 --- a/dev-haskell/tar/tar-0.4.2.1.ebuild +++ b/dev-haskell/tar/tar-0.4.2.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -8,7 +8,7 @@ EAPI=5 CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite" inherit haskell-cabal -DESCRIPTION="Reading, writing and manipulating \".tar\" archive files" +DESCRIPTION="Reading, writing and manipulating '.tar' archive files" HOMEPAGE="http://hackage.haskell.org/package/tar" SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" diff --git a/dev-haskell/tar/tar-0.5.0.3.ebuild b/dev-haskell/tar/tar-0.5.0.3.ebuild index 8f37522c74f..91edb09c1fc 100644 --- a/dev-haskell/tar/tar-0.5.0.3.ebuild +++ b/dev-haskell/tar/tar-0.5.0.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -8,7 +8,7 @@ EAPI=6 CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite" inherit haskell-cabal -DESCRIPTION="Reading, writing and manipulating \".tar\" archive files" +DESCRIPTION="Reading, writing and manipulating '.tar' archive files" HOMEPAGE="http://hackage.haskell.org/package/tar" SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" diff --git a/dev-haskell/tar/tar-0.5.1.0.ebuild b/dev-haskell/tar/tar-0.5.1.0.ebuild index 3d7f0b41ebc..1937fea5f72 100644 --- a/dev-haskell/tar/tar-0.5.1.0.ebuild +++ b/dev-haskell/tar/tar-0.5.1.0.ebuild @@ -8,7 +8,7 @@ EAPI=6 CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite" inherit haskell-cabal -DESCRIPTION="Reading, writing and manipulating \\" +DESCRIPTION="Reading, writing and manipulating '.tar' archive files" HOMEPAGE="http://hackage.haskell.org/package/tar" SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"