Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-haskell/tar/
Date: Tue, 18 Sep 2018 19:18:57
Message-Id: 1537298324.8dc3fd83f52077dba601e4750d2f037a5551a7dc.slyfox@gentoo
1 commit: 8dc3fd83f52077dba601e4750d2f037a5551a7dc
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 18 19:18:38 2018 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 18 19:18:44 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8dc3fd83
7
8 dev-haskell/tar: fix quoting in DESCRIPTION
9
10 (While syntactically valid) truncated DESCRIPTION
11 DESCRIPTION="Reading, writing and manipulating \\"
12 managed to confuse esync parser: https://bugs.gentoo.org/666314#c3
13
14 Fix DESCRIPTION and avoid backslash quoting.
15
16 Reported-by: PhobosK
17 Bug: https://bugs.gentoo.org/666314
18 Package-Manager: Portage-2.3.49, Repoman-2.3.10
19
20 dev-haskell/tar/tar-0.4.0.1.ebuild | 4 ++--
21 dev-haskell/tar/tar-0.4.2.1.ebuild | 4 ++--
22 dev-haskell/tar/tar-0.5.0.3.ebuild | 4 ++--
23 dev-haskell/tar/tar-0.5.1.0.ebuild | 2 +-
24 4 files changed, 7 insertions(+), 7 deletions(-)
25
26 diff --git a/dev-haskell/tar/tar-0.4.0.1.ebuild b/dev-haskell/tar/tar-0.4.0.1.ebuild
27 index ede1fa7e35b..fa4e3ed7a9d 100644
28 --- a/dev-haskell/tar/tar-0.4.0.1.ebuild
29 +++ b/dev-haskell/tar/tar-0.4.0.1.ebuild
30 @@ -1,4 +1,4 @@
31 -# Copyright 1999-2014 Gentoo Foundation
32 +# Copyright 1999-2018 Gentoo Foundation
33 # Distributed under the terms of the GNU General Public License v2
34
35 EAPI=5
36 @@ -8,7 +8,7 @@ EAPI=5
37 CABAL_FEATURES="lib profile haddock hoogle hscolour"
38 inherit haskell-cabal
39
40 -DESCRIPTION="Reading, writing and manipulating ".tar" archive files"
41 +DESCRIPTION="Reading, writing and manipulating '.tar' archive files"
42 HOMEPAGE="http://hackage.haskell.org/package/tar"
43 SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
44
45
46 diff --git a/dev-haskell/tar/tar-0.4.2.1.ebuild b/dev-haskell/tar/tar-0.4.2.1.ebuild
47 index 79a82635afb..a89abd14651 100644
48 --- a/dev-haskell/tar/tar-0.4.2.1.ebuild
49 +++ b/dev-haskell/tar/tar-0.4.2.1.ebuild
50 @@ -1,4 +1,4 @@
51 -# Copyright 1999-2015 Gentoo Foundation
52 +# Copyright 1999-2018 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54
55 EAPI=5
56 @@ -8,7 +8,7 @@ EAPI=5
57 CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite"
58 inherit haskell-cabal
59
60 -DESCRIPTION="Reading, writing and manipulating \".tar\" archive files"
61 +DESCRIPTION="Reading, writing and manipulating '.tar' archive files"
62 HOMEPAGE="http://hackage.haskell.org/package/tar"
63 SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
64
65
66 diff --git a/dev-haskell/tar/tar-0.5.0.3.ebuild b/dev-haskell/tar/tar-0.5.0.3.ebuild
67 index 8f37522c74f..91edb09c1fc 100644
68 --- a/dev-haskell/tar/tar-0.5.0.3.ebuild
69 +++ b/dev-haskell/tar/tar-0.5.0.3.ebuild
70 @@ -1,4 +1,4 @@
71 -# Copyright 1999-2017 Gentoo Foundation
72 +# Copyright 1999-2018 Gentoo Foundation
73 # Distributed under the terms of the GNU General Public License v2
74
75 EAPI=6
76 @@ -8,7 +8,7 @@ EAPI=6
77 CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite"
78 inherit haskell-cabal
79
80 -DESCRIPTION="Reading, writing and manipulating \".tar\" archive files"
81 +DESCRIPTION="Reading, writing and manipulating '.tar' archive files"
82 HOMEPAGE="http://hackage.haskell.org/package/tar"
83 SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
84
85
86 diff --git a/dev-haskell/tar/tar-0.5.1.0.ebuild b/dev-haskell/tar/tar-0.5.1.0.ebuild
87 index 3d7f0b41ebc..1937fea5f72 100644
88 --- a/dev-haskell/tar/tar-0.5.1.0.ebuild
89 +++ b/dev-haskell/tar/tar-0.5.1.0.ebuild
90 @@ -8,7 +8,7 @@ EAPI=6
91 CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite"
92 inherit haskell-cabal
93
94 -DESCRIPTION="Reading, writing and manipulating \\"
95 +DESCRIPTION="Reading, writing and manipulating '.tar' archive files"
96 HOMEPAGE="http://hackage.haskell.org/package/tar"
97 SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"