Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] dev/graaff:master commit in: app-text/htmltidy5/
Date: Mon, 30 Nov 2015 06:50:45
Message-Id: 1448866232.ecb42b49948092f253c47bcd3134357d20871784.graaff@gentoo
1 commit: ecb42b49948092f253c47bcd3134357d20871784
2 Author: Hans de Graaff <hans <AT> degraaff <DOT> org>
3 AuthorDate: Mon Nov 30 06:50:32 2015 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 30 06:50:32 2015 +0000
6 URL: https://gitweb.gentoo.org/dev/graaff.git/commit/?id=ecb42b49
7
8 Use app-text/tidy-html5 from the gentoo tree
9
10 app-text/htmltidy5/ChangeLog | 10 -----
11 app-text/htmltidy5/Manifest | 11 -----
12 app-text/htmltidy5/htmltidy5-0.20120821.ebuild | 61 --------------------------
13 app-text/htmltidy5/metadata.xml | 5 ---
14 4 files changed, 87 deletions(-)
15
16 diff --git a/app-text/htmltidy5/ChangeLog b/app-text/htmltidy5/ChangeLog
17 deleted file mode 100644
18 index 72e8233..0000000
19 --- a/app-text/htmltidy5/ChangeLog
20 +++ /dev/null
21 @@ -1,10 +0,0 @@
22 -# ChangeLog for app-text/htmltidy5
23 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
24 -# $Header: $
25 -
26 -*htmltidy5-0.20120821 (10 Jan 2013)
27 -
28 - 10 Jan 2013; Hans de Graaff <graaff@g.o> +htmltidy5-0.20120821.ebuild,
29 - +metadata.xml:
30 - Initial import.
31 -
32
33 diff --git a/app-text/htmltidy5/Manifest b/app-text/htmltidy5/Manifest
34 deleted file mode 100644
35 index 615745b..0000000
36 --- a/app-text/htmltidy5/Manifest
37 +++ /dev/null
38 @@ -1,11 +0,0 @@
39 ------BEGIN PGP SIGNED MESSAGE-----
40 -Hash: SHA256
41 -
42 -DIST htmltidy5-0.20120821-git.zip 909470 SHA256 bfffdd04cb545eaf554da8199db2949a5a07ab3cf26f69bde4e53ce481b02d16 SHA512 7ec04bd7c4eb7988d71ea235714686a5c56c230976f5d951c1d014db5e84887b433363c1cce378093ec5420e91f39765c37b8a8ad17032743ea48a86f8784beb WHIRLPOOL 3569c232825f30c6ce55791fcda2c0b911e468f8113372b905ed119b4f7f58a24cd4eb2456268916bd2c7df2654ccb775fa8688d70052e3e4f879b9823d47769
43 ------BEGIN PGP SIGNATURE-----
44 -Version: GnuPG v2.0.19 (GNU/Linux)
45 -
46 -iF4EAREIAAYFAlDu6LkACgkQiIP6VqMIqNdMRAD+PNTPViexKeLY8W9h7SADI1e1
47 -hcULOcoQjIcqrsOLxToA/3b1KIWbWch/3X03H1nz5vo8pVuuZsS4tcvmEboiZb5i
48 -=4RdM
49 ------END PGP SIGNATURE-----
50
51 diff --git a/app-text/htmltidy5/htmltidy5-0.20120821.ebuild b/app-text/htmltidy5/htmltidy5-0.20120821.ebuild
52 deleted file mode 100644
53 index f3812ab..0000000
54 --- a/app-text/htmltidy5/htmltidy5-0.20120821.ebuild
55 +++ /dev/null
56 @@ -1,61 +0,0 @@
57 -# Copyright 1999-2013 Gentoo Foundation
58 -# Distributed under the terms of the GNU General Public License v2
59 -# $Header: /var/cvsroot/gentoo-x86/app-text/htmltidy/htmltidy-20090325-r1.ebuild,v 1.4 2012/05/29 17:01:06 aballier Exp $
60 -
61 -EAPI=4
62 -
63 -GIT_COMMIT="0cf6d998431a61f1bd630e7883d4d43df4ad8ccc"
64 -
65 -inherit eutils autotools
66 -
67 -DESCRIPTION="Tidy the layout and correct errors in HTML and XML documents"
68 -HOMEPAGE="http://tidy.sourceforge.net/"
69 -SRC_URI="https://github.com/w3c/tidy-html5/archive/${GIT_COMMIT}.zip -> ${P}-git.zip"
70 -
71 -LICENSE="GPL-2"
72 -SLOT="0"
73 -KEYWORDS="~amd64"
74 -IUSE="debug doc static-libs"
75 -
76 -DEPEND="doc? ( app-doc/doxygen )"
77 -RDEPEND="!!app-text/htmltidy"
78 -
79 -S="${WORKDIR}"/tidy-html5-${GIT_COMMIT}
80 -
81 -src_prepare() {
82 - # Required to setup the source dist for autotools
83 - einfo "Setting up autotools for source build"
84 - cp -R ./build/gnuauto/* . || die "could not prepare autotools environment"
85 -
86 - # Stop tidy from appending -O2 to our CFLAGS
87 -# epatch "${FILESDIR}"/htmltidy-5.10.26-strip-O2-flag.patch
88 -
89 - # Define /etc/tidyrc for system wide config, bug 154834
90 -# epatch "${FILESDIR}"/htmltidy-20090325-tidyrc.patch
91 -
92 - eautoreconf
93 -}
94 -
95 -src_compile() {
96 - default
97 -
98 - if use doc ; then
99 - doxygen htmldoc/doxygen.cfg || die "error making apidocs"
100 - fi
101 -}
102 -
103 -src_configure() {
104 - econf \
105 - $(use_enable debug) \
106 - $(use_enable static-libs static)
107 -}
108 -
109 -src_install() {
110 - default
111 -
112 - find "${ED}" -name '*.la' -exec rm -f {} +
113 -
114 - # If use 'doc' is set, then we also want to install the
115 - # api documentation
116 - use doc && dohtml -r htmldoc/api
117 -}
118
119 diff --git a/app-text/htmltidy5/metadata.xml b/app-text/htmltidy5/metadata.xml
120 deleted file mode 100644
121 index f977299..0000000
122 --- a/app-text/htmltidy5/metadata.xml
123 +++ /dev/null
124 @@ -1,5 +0,0 @@
125 -<?xml version = '1.0' encoding = 'UTF-8'?>
126 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
127 -<pkgmetadata>
128 -<maintainer><email>graaff@g.o</email></maintainer>
129 -</pkgmetadata>