[gentoo-commits] repo/gentoo:master commit in: app-text/htmlrecode/

2018-09-11 Thread Andreas Sturmlechner
commit: 77efd3d130fe4313e2f53c34d5c672f2ceaf4039
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Tue Sep 11 18:54:35 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Sep 12 05:28:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77efd3d1

app-text/htmlrecode: Drop old

 app-text/htmlrecode/htmlrecode-1.3.1.ebuild | 44 -
 1 file changed, 44 deletions(-)

diff --git a/app-text/htmlrecode/htmlrecode-1.3.1.ebuild 
b/app-text/htmlrecode/htmlrecode-1.3.1.ebuild
deleted file mode 100644
index 1174c57d9c7..000
--- a/app-text/htmlrecode/htmlrecode-1.3.1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="Recodes HTML file using a new character set"
-HOMEPAGE="https://bisqwit.iki.fi/source/htmlrecode.html;
-SRC_URI="https://bisqwit.iki.fi/src/arch/${P}.tar.bz2;
-
-KEYWORDS="~amd64 ~ppc ~x86"
-LICENSE="GPL-2"
-SLOT="0"
-IUSE=""
-
-DEPEND=">=sys-apps/sed-4"
-RDEPEND=""
-
-src_prepare() {
-   epatch "${FILESDIR}/${P}-ar.patch"
-   touch .depend argh/.depend
-}
-
-src_configure() {
-   :
-}
-
-src_compile() {
-   local makeopts=(
-   AR="$(tc-getAR)"
-   CPPDEBUG=
-   CXX="$(tc-getCXX)"
-   CXXFLAGS="${CXXFLAGS}"
-   LDFLAGS="${LDFLAGS}"
-   )
-   emake "${makeopts[@]}" -C argh libargh.a
-   emake "${makeopts[@]}" htmlrecode
-}
-
-src_install() {
-   dobin htmlrecode
-   dohtml README.html
-}



[gentoo-commits] repo/gentoo:master commit in: app-text/htmlrecode/

2018-07-06 Thread Andreas Sturmlechner
commit: 3b93411d2e401cbd569f2f4390061964652ad0a0
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sun Jun 24 14:53:33 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Jul  6 21:47:55 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b93411d

app-text/htmlrecode: EAPI7, improve ebuild

 app-text/htmlrecode/htmlrecode-1.3.1-r1.ebuild | 41 ++
 1 file changed, 41 insertions(+)

diff --git a/app-text/htmlrecode/htmlrecode-1.3.1-r1.ebuild 
b/app-text/htmlrecode/htmlrecode-1.3.1-r1.ebuild
new file mode 100644
index 000..4b9258115b9
--- /dev/null
+++ b/app-text/htmlrecode/htmlrecode-1.3.1-r1.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="Recodes HTML file using a new character set"
+HOMEPAGE="https://bisqwit.iki.fi/source/htmlrecode.html;
+SRC_URI="https://bisqwit.iki.fi/src/arch/${P}.tar.bz2;
+
+KEYWORDS="~amd64 ~ppc ~x86"
+LICENSE="GPL-2"
+SLOT="0"
+IUSE=""
+
+PATCHES=( "${FILESDIR}/${P}-ar.patch" )
+
+src_prepare() {
+   touch .depend argh/.depend || die
+   default
+}
+
+src_configure() { :; }
+
+src_compile() {
+   local makeopts=(
+   AR="$(tc-getAR)"
+   CPPDEBUG=
+   CXX="$(tc-getCXX)"
+   CXXFLAGS="${CXXFLAGS}"
+   LDFLAGS="${LDFLAGS}"
+   )
+   emake "${makeopts[@]}" -C argh libargh.a
+   emake "${makeopts[@]}" htmlrecode
+}
+
+src_install() {
+   dobin htmlrecode
+   dodoc README.html
+}



[gentoo-commits] repo/gentoo:master commit in: app-text/htmlrecode/

2018-07-06 Thread Andreas Sturmlechner
commit: 5fdc6adbe259d242a72b0b086b9e8f2e164dde1a
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sun Jun 24 14:46:46 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Jul  6 21:47:54 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fdc6adb

app-text/htmlrecode: use HTTPs

Closes: https://github.com/gentoo/gentoo/pull/9021

 app-text/htmlrecode/htmlrecode-1.3.1.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-text/htmlrecode/htmlrecode-1.3.1.ebuild 
b/app-text/htmlrecode/htmlrecode-1.3.1.ebuild
index 62baa2ad62e..1174c57d9c7 100644
--- a/app-text/htmlrecode/htmlrecode-1.3.1.ebuild
+++ b/app-text/htmlrecode/htmlrecode-1.3.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=4
@@ -6,8 +6,8 @@ EAPI=4
 inherit eutils toolchain-funcs
 
 DESCRIPTION="Recodes HTML file using a new character set"
-HOMEPAGE="http://bisqwit.iki.fi/source/htmlrecode.html;
-SRC_URI="http://bisqwit.iki.fi/src/arch/${P}.tar.bz2;
+HOMEPAGE="https://bisqwit.iki.fi/source/htmlrecode.html;
+SRC_URI="https://bisqwit.iki.fi/src/arch/${P}.tar.bz2;
 
 KEYWORDS="~amd64 ~ppc ~x86"
 LICENSE="GPL-2"