Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/tidy-html5/
Date: Mon, 06 Jun 2016 09:42:09
Message-Id: 1465204449.ccfca3d5a04c73a608bb42fd06845ca0f621ec28.monsieurp@gentoo
1 commit: ccfca3d5a04c73a608bb42fd06845ca0f621ec28
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jun 6 09:13:19 2016 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Mon Jun 6 09:14:09 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccfca3d5
7
8 app-text/tidy-html5: Clean up vulnerable version.
9
10 Gentoo-Bug: https://bugs.gentoo.org/576870
11 Gentoo-Bug: https://bugs.gentoo.org/576138
12
13 Package-Manager: portage-2.2.28
14
15 app-text/tidy-html5/Manifest | 1 -
16 app-text/tidy-html5/tidy-html5-5.1.9.ebuild | 44 -----------------------------
17 2 files changed, 45 deletions(-)
18
19 diff --git a/app-text/tidy-html5/Manifest b/app-text/tidy-html5/Manifest
20 index 6263ba9..950d96c 100644
21 --- a/app-text/tidy-html5/Manifest
22 +++ b/app-text/tidy-html5/Manifest
23 @@ -1,2 +1 @@
24 -DIST tidy-html5-5.1.9.zip 1077163 SHA256 1c414aea63e168c5d28ec8aad047d68e12d07f67b891f4450252d0cb68154fab SHA512 a5f18d43333f5acb6a4290bd9960fbccb1fa07b180ac3e02ee0a1ec890fd3ebef6f0f2811df05f9808220945d9810f94059f328c2d0d6827543c6697d73e0dc5 WHIRLPOOL 8b10a34ce247077c9f7450b41fbbd0135f0a88214445adddbbf70bdb296d541b75188d491961e3f9fde465c80b1e09d060160e5c0609c9ba923548ad2981aa04
25 DIST tidy-html5-5.2.0.zip 578494 SHA256 7f6ef14e41a0e9611fcb95e4926287e0d4a46c53335ae7e3aa4fc11ae69d32e2 SHA512 0559bbe24711606b391057b3dbf2692b54e548294f68b310be306b5be80c9265ba7c4aa8da2b13ba0c89dae1dd6d233aebebdba761e25193439a0c0d713e59d8 WHIRLPOOL 7040ad176d2a96936cf250afc16f8376c9febd80ef98976bca318407299e52896c34a23964654efb1d69a2bf49438f6402d4af9d140ce45f6fe7d27bda010dce
26
27 diff --git a/app-text/tidy-html5/tidy-html5-5.1.9.ebuild b/app-text/tidy-html5/tidy-html5-5.1.9.ebuild
28 deleted file mode 100644
29 index 9879005..0000000
30 --- a/app-text/tidy-html5/tidy-html5-5.1.9.ebuild
31 +++ /dev/null
32 @@ -1,44 +0,0 @@
33 -# Copyright 1999-2015 Gentoo Foundation
34 -# Distributed under the terms of the GNU General Public License v2
35 -# $Id$
36 -
37 -EAPI=5
38 -
39 -inherit cmake-utils
40 -
41 -DESCRIPTION="Tidy the layout and correct errors in HTML, HTML5 and XML documents"
42 -HOMEPAGE="http://www.html-tidy.org/"
43 -SRC_URI="https://github.com/htacg/${PN}/archive/${PV}.zip -> ${P}.zip"
44 -
45 -LICENSE="GPL-2"
46 -SLOT="0"
47 -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
48 -IUSE=""
49 -
50 -DEPEND=""
51 -RDEPEND="!app-text/htmltidy"
52 -
53 -S="${WORKDIR}/${P}"
54 -
55 -DOCS=( {CODESTYLE,README,CONTRIBUTING,LICENSE,VERSION}.md )
56 -HTML_DOCS=( README.html )
57 -
58 -BUILD_DIR="${S}/build/cmake"
59 -
60 -src_configure() {
61 - local mycmakeargs=(
62 - -DCMAKE_INSTALL_PREFIX=/usr
63 - -DCMAKE_BUILD_TYPE=Release
64 - )
65 -
66 - cmake-utils_src_configure
67 -}
68 -
69 -src_compile() {
70 - cd build/cmake || die
71 - cmake-utils_src_compile
72 -}
73 -
74 -src_install() {
75 - cmake-utils_src_install
76 -}