public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-tex/chktex/
@ 2015-12-15  9:41 Alexis Ballier
  0 siblings, 0 replies; 13+ messages in thread
From: Alexis Ballier @ 2015-12-15  9:41 UTC (permalink / raw
  To: gentoo-commits

commit:     e5fcfc1d5a99fce4b134fc5ced0996069ff8afa1
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 15 09:41:40 2015 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Tue Dec 15 09:41:40 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5fcfc1d

dev-tex/chktex: bump to 1.7.5

Package-Manager: portage-2.2.26
Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>

 dev-tex/chktex/Manifest            |  1 +
 dev-tex/chktex/chktex-1.7.5.ebuild | 53 ++++++++++++++++++++++++++++++++++++++
 2 files changed, 54 insertions(+)

diff --git a/dev-tex/chktex/Manifest b/dev-tex/chktex/Manifest
index 7b2c2be..131afb8 100644
--- a/dev-tex/chktex/Manifest
+++ b/dev-tex/chktex/Manifest
@@ -2,3 +2,4 @@ DIST chktex-1.7.1.tar.gz 349551 SHA256 be01222e819c00bdf0fb411c232e585fd6a116adc
 DIST chktex-1.7.2.tar.gz 356981 SHA256 d7f37985e3a122990f2a29fe7cac5d1f31acb1e50035457ef7ceb07c30550158 SHA512 f0ac3ed74471d33da55591e6ca2a4b6847340540ef1911eef37bfad38ffc7c64ca4709966d52a22f871268edf893bf360c8429e1be7f62157d2fac9e58ea40af WHIRLPOOL b32e1927734ee1ba6af77bbe2a0e64ec640718ea26ebcd89a54c06555ec3b0c275fee3e81809b846b25f440f32397536d12eb85b3dde49bf55a7def09a19658a
 DIST chktex-1.7.3.tar.gz 150801 SHA256 22a2a1af8d6c8b901a66b3729c114080f722b3ba59a73ca000035686590c98dd SHA512 29018229176d3bfd7bff92e68739d32262b01414d7df3d379ef1604abcd28c28abdeb83a2513f6d439e5c888a05e5a636e4a7ab34275d40d20fc63a275985c4a WHIRLPOOL 6fcb533ce1bf0f5dede29825a6477f8961e08fe0e03a596fab76492fd97b5a5179bffc70bf7fdf3e8caffa15b2722ec1be46d58f304000760f4c9f3a6871d82b
 DIST chktex-1.7.4.tar.gz 150839 SHA256 77ed995eabe7088dacf53761933da23e6bf8be14d461f364bd06e090978bf6d2 SHA512 d5bf056f67ca520d9df95237b777380d9b98c792d5e20c16bcec2d78a4c68ec3c35308e4525eab33efa2abaf8f2d67ad62e65988b8885f30d1a3f29d27975a1f WHIRLPOOL e0cba6f01526d97304bd27804508c38a2ea1ca843f459d6e88dd7db84ba1745e8f37372f1b8aa393dbbe5fa1a62a71956849b2222859b36e125f24cdbc5333f3
+DIST chktex-1.7.5.tar.gz 151833 SHA256 4b5cfcf8430642e0fce925b2fd62e141d179cb71010565056f7cf40ba2770331 SHA512 035bd6af4d946464fc1d14bc5556a45f5a9aee8af18a50b300d3d797b91a36b9089e95c60f519aa95d8c21a75e102e950c88b97a52d4fe9e53243ab8484239dc WHIRLPOOL 9921dcb72c58b80f91b230d436cabf58dc25aa4711783b240844bdc5724a2f2ee5089a99e3827afe70425686f201cfd59dd4198f945d6811857b5daf1588e00c

diff --git a/dev-tex/chktex/chktex-1.7.5.ebuild b/dev-tex/chktex/chktex-1.7.5.ebuild
new file mode 100644
index 0000000..cca1bf4
--- /dev/null
+++ b/dev-tex/chktex/chktex-1.7.5.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=4
+AUTOTOOLS_AUTORECONF=true
+
+inherit autotools-utils
+
+DESCRIPTION="Checks latex source for common mistakes"
+HOMEPAGE="http://www.nongnu.org/chktex/"
+SRC_URI="http://download.savannah.gnu.org/releases/chktex/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+IUSE="debug doc +pcre test"
+# Tests fail without pcre. Enable pcre by default and make tests depend on it.
+REQUIRED_USE="test? ( pcre )"
+
+RDEPEND="virtual/latex-base
+	dev-lang/perl
+	pcre? ( dev-libs/libpcre )"
+DEPEND="${RDEPEND}
+	sys-apps/groff
+	doc? ( dev-tex/latex2html )"
+
+PATCHES=( "${FILESDIR}/${PN}-1.7.1-asneeded.patch" )
+DOCS=( NEWS )
+
+src_configure() {
+	export VARTEXFONTS="${T}/fonts" #538672
+
+	local myeconfargs=(
+		$(use_enable debug debug-info)
+		$(use_enable pcre)
+	)
+	autotools-utils_src_configure
+}
+
+src_compile() {
+	autotools-utils_src_compile
+	use doc && autotools-utils_src_compile html
+}
+
+src_install() {
+	if use doc ; then
+		HTML_DOCS=("${AUTOTOOLS_BUILD_DIR}/HTML/ChkTeX/")
+		DOCS+=("${AUTOTOOLS_BUILD_DIR}/HTML/ChkTeX.tex")
+	fi
+	autotools-utils_src_install
+	doman *.1
+}


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-tex/chktex/
@ 2016-08-02  8:42 Alexis Ballier
  0 siblings, 0 replies; 13+ messages in thread
From: Alexis Ballier @ 2016-08-02  8:42 UTC (permalink / raw
  To: gentoo-commits

commit:     e64c3fe8fcb1e8da7405ab31eefce87497ea1c07
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Tue Aug  2 08:42:12 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Tue Aug  2 08:42:32 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e64c3fe8

dev-tex/chktex: build dvi file at src_compile instead of src_install; should fix bugs #568840 and #580918

Package-Manager: portage-2.3.0

 dev-tex/chktex/chktex-1.7.5.ebuild | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/dev-tex/chktex/chktex-1.7.5.ebuild b/dev-tex/chktex/chktex-1.7.5.ebuild
index cca1bf4..5d1fb74 100644
--- a/dev-tex/chktex/chktex-1.7.5.ebuild
+++ b/dev-tex/chktex/chktex-1.7.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -40,6 +40,7 @@ src_configure() {
 
 src_compile() {
 	autotools-utils_src_compile
+	autotools-utils_src_compile ChkTeX.dvi
 	use doc && autotools-utils_src_compile html
 }
 
@@ -48,6 +49,7 @@ src_install() {
 		HTML_DOCS=("${AUTOTOOLS_BUILD_DIR}/HTML/ChkTeX/")
 		DOCS+=("${AUTOTOOLS_BUILD_DIR}/HTML/ChkTeX.tex")
 	fi
+	DOCS+=("${AUTOTOOLS_BUILD_DIR}/ChkTeX.dvi")
 	autotools-utils_src_install
 	doman *.1
 }


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-tex/chktex/
@ 2016-08-03 10:40 Alexis Ballier
  0 siblings, 0 replies; 13+ messages in thread
From: Alexis Ballier @ 2016-08-03 10:40 UTC (permalink / raw
  To: gentoo-commits

commit:     2e8953d2acb0ff8f988d75223e43a9d97bb2593f
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Wed Aug  3 10:39:17 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Wed Aug  3 10:39:17 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e8953d2

dev-tex/chktex: set AT_M4DIR to get proper include dir for autotools; bug #590312

Package-Manager: portage-2.3.0

 dev-tex/chktex/chktex-1.7.5.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-tex/chktex/chktex-1.7.5.ebuild b/dev-tex/chktex/chktex-1.7.5.ebuild
index 5d1fb74..a4cf697 100644
--- a/dev-tex/chktex/chktex-1.7.5.ebuild
+++ b/dev-tex/chktex/chktex-1.7.5.ebuild
@@ -27,6 +27,7 @@ DEPEND="${RDEPEND}
 
 PATCHES=( "${FILESDIR}/${PN}-1.7.1-asneeded.patch" )
 DOCS=( NEWS )
+AT_M4DIR="${S}/m4"
 
 src_configure() {
 	export VARTEXFONTS="${T}/fonts" #538672


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-tex/chktex/
@ 2016-08-03 10:42 Alexis Ballier
  0 siblings, 0 replies; 13+ messages in thread
From: Alexis Ballier @ 2016-08-03 10:42 UTC (permalink / raw
  To: gentoo-commits

commit:     308686f6ca150b544fcbf020bed01a3b21c7e6d5
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Wed Aug  3 10:42:42 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Wed Aug  3 10:42:42 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=308686f6

dev-tex/chktex: add missing build dep on dev-texlive/texlive-fontsrecommended; bug #590366

Package-Manager: portage-2.3.0

 dev-tex/chktex/chktex-1.7.5.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-tex/chktex/chktex-1.7.5.ebuild b/dev-tex/chktex/chktex-1.7.5.ebuild
index a4cf697..17af1b2 100644
--- a/dev-tex/chktex/chktex-1.7.5.ebuild
+++ b/dev-tex/chktex/chktex-1.7.5.ebuild
@@ -23,6 +23,7 @@ RDEPEND="virtual/latex-base
 	pcre? ( dev-libs/libpcre )"
 DEPEND="${RDEPEND}
 	sys-apps/groff
+	dev-texlive/texlive-fontsrecommended
 	doc? ( dev-tex/latex2html )"
 
 PATCHES=( "${FILESDIR}/${PN}-1.7.1-asneeded.patch" )


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-tex/chktex/
@ 2016-09-14 16:55 Alexis Ballier
  0 siblings, 0 replies; 13+ messages in thread
From: Alexis Ballier @ 2016-09-14 16:55 UTC (permalink / raw
  To: gentoo-commits

commit:     7728f34aa0c5424fe82b31284b05520a18ca60c5
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 14 16:54:55 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Wed Sep 14 16:54:55 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7728f34a

dev-tex/chktex: bump to 1.7.6

Package-Manager: portage-2.3.0

 dev-tex/chktex/Manifest            |  1 +
 dev-tex/chktex/chktex-1.7.6.ebuild | 57 ++++++++++++++++++++++++++++++++++++++
 2 files changed, 58 insertions(+)

diff --git a/dev-tex/chktex/Manifest b/dev-tex/chktex/Manifest
index 131afb8..50083a0 100644
--- a/dev-tex/chktex/Manifest
+++ b/dev-tex/chktex/Manifest
@@ -3,3 +3,4 @@ DIST chktex-1.7.2.tar.gz 356981 SHA256 d7f37985e3a122990f2a29fe7cac5d1f31acb1e50
 DIST chktex-1.7.3.tar.gz 150801 SHA256 22a2a1af8d6c8b901a66b3729c114080f722b3ba59a73ca000035686590c98dd SHA512 29018229176d3bfd7bff92e68739d32262b01414d7df3d379ef1604abcd28c28abdeb83a2513f6d439e5c888a05e5a636e4a7ab34275d40d20fc63a275985c4a WHIRLPOOL 6fcb533ce1bf0f5dede29825a6477f8961e08fe0e03a596fab76492fd97b5a5179bffc70bf7fdf3e8caffa15b2722ec1be46d58f304000760f4c9f3a6871d82b
 DIST chktex-1.7.4.tar.gz 150839 SHA256 77ed995eabe7088dacf53761933da23e6bf8be14d461f364bd06e090978bf6d2 SHA512 d5bf056f67ca520d9df95237b777380d9b98c792d5e20c16bcec2d78a4c68ec3c35308e4525eab33efa2abaf8f2d67ad62e65988b8885f30d1a3f29d27975a1f WHIRLPOOL e0cba6f01526d97304bd27804508c38a2ea1ca843f459d6e88dd7db84ba1745e8f37372f1b8aa393dbbe5fa1a62a71956849b2222859b36e125f24cdbc5333f3
 DIST chktex-1.7.5.tar.gz 151833 SHA256 4b5cfcf8430642e0fce925b2fd62e141d179cb71010565056f7cf40ba2770331 SHA512 035bd6af4d946464fc1d14bc5556a45f5a9aee8af18a50b300d3d797b91a36b9089e95c60f519aa95d8c21a75e102e950c88b97a52d4fe9e53243ab8484239dc WHIRLPOOL 9921dcb72c58b80f91b230d436cabf58dc25aa4711783b240844bdc5724a2f2ee5089a99e3827afe70425686f201cfd59dd4198f945d6811857b5daf1588e00c
+DIST chktex-1.7.6.tar.gz 153071 SHA256 8ac0e5ca213b2012d44c28f9e4feb9783df44750eb0c30a237d81ff58ef34c8d SHA512 dd5ad2d7fce66eeb8d890bd79d00bdb28d9807539988232a917d6478c204e9a0ab287f2b8baf7977dba374b551609d8951cbf67ad15a793d35cdfe3411e4fe0b WHIRLPOOL ec32593e46476c7035b9f780e56cdf0044168dde9c7b77ce035fcbef89392534fd4d7c6f8ddcbc8d450906e8a075ff5161d0f81212e88c8a9cfb89a4dba4c61c

diff --git a/dev-tex/chktex/chktex-1.7.6.ebuild b/dev-tex/chktex/chktex-1.7.6.ebuild
new file mode 100644
index 00000000..17af1b2
--- /dev/null
+++ b/dev-tex/chktex/chktex-1.7.6.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=4
+AUTOTOOLS_AUTORECONF=true
+
+inherit autotools-utils
+
+DESCRIPTION="Checks latex source for common mistakes"
+HOMEPAGE="http://www.nongnu.org/chktex/"
+SRC_URI="http://download.savannah.gnu.org/releases/chktex/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+IUSE="debug doc +pcre test"
+# Tests fail without pcre. Enable pcre by default and make tests depend on it.
+REQUIRED_USE="test? ( pcre )"
+
+RDEPEND="virtual/latex-base
+	dev-lang/perl
+	pcre? ( dev-libs/libpcre )"
+DEPEND="${RDEPEND}
+	sys-apps/groff
+	dev-texlive/texlive-fontsrecommended
+	doc? ( dev-tex/latex2html )"
+
+PATCHES=( "${FILESDIR}/${PN}-1.7.1-asneeded.patch" )
+DOCS=( NEWS )
+AT_M4DIR="${S}/m4"
+
+src_configure() {
+	export VARTEXFONTS="${T}/fonts" #538672
+
+	local myeconfargs=(
+		$(use_enable debug debug-info)
+		$(use_enable pcre)
+	)
+	autotools-utils_src_configure
+}
+
+src_compile() {
+	autotools-utils_src_compile
+	autotools-utils_src_compile ChkTeX.dvi
+	use doc && autotools-utils_src_compile html
+}
+
+src_install() {
+	if use doc ; then
+		HTML_DOCS=("${AUTOTOOLS_BUILD_DIR}/HTML/ChkTeX/")
+		DOCS+=("${AUTOTOOLS_BUILD_DIR}/HTML/ChkTeX.tex")
+	fi
+	DOCS+=("${AUTOTOOLS_BUILD_DIR}/ChkTeX.dvi")
+	autotools-utils_src_install
+	doman *.1
+}


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-tex/chktex/
@ 2017-06-17 11:11 Alexis Ballier
  0 siblings, 0 replies; 13+ messages in thread
From: Alexis Ballier @ 2017-06-17 11:11 UTC (permalink / raw
  To: gentoo-commits

commit:     30b0ca239c23507aee2ad16d38b7c8c51d1674b8
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 17 09:40:22 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Sat Jun 17 11:10:55 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30b0ca23

dev-tex/chktex: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-tex/chktex/chktex-1.7.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-tex/chktex/chktex-1.7.6.ebuild b/dev-tex/chktex/chktex-1.7.6.ebuild
index a5be1052a5f..ed31a46da99 100644
--- a/dev-tex/chktex/chktex-1.7.6.ebuild
+++ b/dev-tex/chktex/chktex-1.7.6.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://download.savannah.gnu.org/releases/chktex/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="debug doc +pcre test"
 # Tests fail without pcre. Enable pcre by default and make tests depend on it.
 REQUIRED_USE="test? ( pcre )"


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-tex/chktex/
@ 2019-06-05 16:50 Mikle Kolyada
  0 siblings, 0 replies; 13+ messages in thread
From: Mikle Kolyada @ 2019-06-05 16:50 UTC (permalink / raw
  To: gentoo-commits

commit:     7e1b711b31d39e96b3e3fd2ab8db8128868454e3
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Wed Jun  5 16:49:56 2019 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Wed Jun  5 16:50:27 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e1b711b

dev-tex/chktex: Old

Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11

 dev-tex/chktex/Manifest            |  4 ---
 dev-tex/chktex/chktex-1.7.2.ebuild | 50 ----------------------------------
 dev-tex/chktex/chktex-1.7.3.ebuild | 52 -----------------------------------
 dev-tex/chktex/chktex-1.7.4.ebuild | 52 -----------------------------------
 dev-tex/chktex/chktex-1.7.5.ebuild | 56 --------------------------------------
 5 files changed, 214 deletions(-)

diff --git a/dev-tex/chktex/Manifest b/dev-tex/chktex/Manifest
index 1bcd7916a2d..2adecdbfebb 100644
--- a/dev-tex/chktex/Manifest
+++ b/dev-tex/chktex/Manifest
@@ -1,6 +1,2 @@
 DIST chktex-1.7.1.tar.gz 349551 BLAKE2B 00a1aed460fc6b0daae065ee39671104b1c5290df7097cbd75fb8c8406e309c5b950ddb3834325ba579f5870bbcf8a5890bb410c7e7633ae575944b704f738a6 SHA512 88b8b6b20a2242557d253e690ad7a7b5a41497e3c96ee44798997b83ccbfd4e37203aea9c557c7b25fc0b6223bd08a590b464af674f7558547393c2af0a86926
-DIST chktex-1.7.2.tar.gz 356981 BLAKE2B 10653392c24e855e2d4eeb69905eaa09437d500e9e52f5cf8b18bebd53b366ffb069201f321b29be2a798f2984fde554ca2c2ce8cdb95a546b52b1b9055ead3d SHA512 f0ac3ed74471d33da55591e6ca2a4b6847340540ef1911eef37bfad38ffc7c64ca4709966d52a22f871268edf893bf360c8429e1be7f62157d2fac9e58ea40af
-DIST chktex-1.7.3.tar.gz 150801 BLAKE2B 4a2dca32c482bd0e932f136c56222cd59d1cda084862cb008dc63a49132e41fb804568562cb544bccd56a40e0d8c3a5535a43f8507d062a5be47fe69a2c59c28 SHA512 29018229176d3bfd7bff92e68739d32262b01414d7df3d379ef1604abcd28c28abdeb83a2513f6d439e5c888a05e5a636e4a7ab34275d40d20fc63a275985c4a
-DIST chktex-1.7.4.tar.gz 150839 BLAKE2B d0c68877a12e14e223614f0df1e7223d3c1d0825a56b642763df2be7df0f92001e52a7e10dec621888a49e850b7495bb50f4cfc5b5f37d0f893a92fb6092b8d4 SHA512 d5bf056f67ca520d9df95237b777380d9b98c792d5e20c16bcec2d78a4c68ec3c35308e4525eab33efa2abaf8f2d67ad62e65988b8885f30d1a3f29d27975a1f
-DIST chktex-1.7.5.tar.gz 151833 BLAKE2B bbd96a924f48c3b7063e7b8d23046274d0f2db146275d82a1cbe2dd38228c053ef6a8aad0c783e668bf5a43b1237f19819d300ae5031c251a86035fe86999c7a SHA512 035bd6af4d946464fc1d14bc5556a45f5a9aee8af18a50b300d3d797b91a36b9089e95c60f519aa95d8c21a75e102e950c88b97a52d4fe9e53243ab8484239dc
 DIST chktex-1.7.6.tar.gz 153071 BLAKE2B 7419b35eb045509ab39983f16d9cc72d1501f3b6781c304ddf8cc91ae1123b132e17e2919f5d2f6c5b6584e91c63651dc819497c2a5945b9debe329c03704256 SHA512 dd5ad2d7fce66eeb8d890bd79d00bdb28d9807539988232a917d6478c204e9a0ab287f2b8baf7977dba374b551609d8951cbf67ad15a793d35cdfe3411e4fe0b

diff --git a/dev-tex/chktex/chktex-1.7.2.ebuild b/dev-tex/chktex/chktex-1.7.2.ebuild
deleted file mode 100644
index b03055f2ac6..00000000000
--- a/dev-tex/chktex/chktex-1.7.2.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-AUTOTOOLS_AUTORECONF=true
-
-inherit autotools-utils
-
-DESCRIPTION="Checks latex source for common mistakes"
-HOMEPAGE="http://www.nongnu.org/chktex/"
-SRC_URI="http://download.savannah.gnu.org/releases/chktex/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
-IUSE="debug doc +pcre test"
-# Tests fail without pcre. Enable pcre by default and make tests depend on it.
-REQUIRED_USE="test? ( pcre )"
-
-RDEPEND="virtual/latex-base
-	dev-lang/perl
-	pcre? ( dev-libs/libpcre )"
-DEPEND="${RDEPEND}
-	sys-apps/groff
-	doc? ( dev-tex/latex2html )"
-
-PATCHES=( "${FILESDIR}/${PN}-1.7.1-asneeded.patch" )
-DOCS=( NEWS )
-
-src_configure() {
-	local myeconfargs=(
-		$(use_enable debug debug-info)
-		$(use_enable pcre)
-	)
-	autotools-utils_src_configure
-}
-
-src_compile() {
-	autotools-utils_src_compile
-	use doc && autotools-utils_src_compile html
-}
-
-src_install() {
-	if use doc ; then
-		HTML_DOCS=("${AUTOTOOLS_BUILD_DIR}/HTML/ChkTeX/")
-		DOCS+=("${AUTOTOOLS_BUILD_DIR}/HTML/ChkTeX.tex")
-	fi
-	autotools-utils_src_install
-	doman *.1
-}

diff --git a/dev-tex/chktex/chktex-1.7.3.ebuild b/dev-tex/chktex/chktex-1.7.3.ebuild
deleted file mode 100644
index 8f07a95c998..00000000000
--- a/dev-tex/chktex/chktex-1.7.3.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-AUTOTOOLS_AUTORECONF=true
-
-inherit autotools-utils
-
-DESCRIPTION="Checks latex source for common mistakes"
-HOMEPAGE="http://www.nongnu.org/chktex/"
-SRC_URI="http://download.savannah.gnu.org/releases/chktex/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
-IUSE="debug doc +pcre test"
-# Tests fail without pcre. Enable pcre by default and make tests depend on it.
-REQUIRED_USE="test? ( pcre )"
-
-RDEPEND="virtual/latex-base
-	dev-lang/perl
-	pcre? ( dev-libs/libpcre )"
-DEPEND="${RDEPEND}
-	sys-apps/groff
-	doc? ( dev-tex/latex2html )"
-
-PATCHES=( "${FILESDIR}/${PN}-1.7.1-asneeded.patch" )
-DOCS=( NEWS )
-
-src_configure() {
-	export VARTEXFONTS="${T}/fonts" #538672
-
-	local myeconfargs=(
-		$(use_enable debug debug-info)
-		$(use_enable pcre)
-	)
-	autotools-utils_src_configure
-}
-
-src_compile() {
-	autotools-utils_src_compile
-	use doc && autotools-utils_src_compile html
-}
-
-src_install() {
-	if use doc ; then
-		HTML_DOCS=("${AUTOTOOLS_BUILD_DIR}/HTML/ChkTeX/")
-		DOCS+=("${AUTOTOOLS_BUILD_DIR}/HTML/ChkTeX.tex")
-	fi
-	autotools-utils_src_install
-	doman *.1
-}

diff --git a/dev-tex/chktex/chktex-1.7.4.ebuild b/dev-tex/chktex/chktex-1.7.4.ebuild
deleted file mode 100644
index 8f07a95c998..00000000000
--- a/dev-tex/chktex/chktex-1.7.4.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-AUTOTOOLS_AUTORECONF=true
-
-inherit autotools-utils
-
-DESCRIPTION="Checks latex source for common mistakes"
-HOMEPAGE="http://www.nongnu.org/chktex/"
-SRC_URI="http://download.savannah.gnu.org/releases/chktex/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
-IUSE="debug doc +pcre test"
-# Tests fail without pcre. Enable pcre by default and make tests depend on it.
-REQUIRED_USE="test? ( pcre )"
-
-RDEPEND="virtual/latex-base
-	dev-lang/perl
-	pcre? ( dev-libs/libpcre )"
-DEPEND="${RDEPEND}
-	sys-apps/groff
-	doc? ( dev-tex/latex2html )"
-
-PATCHES=( "${FILESDIR}/${PN}-1.7.1-asneeded.patch" )
-DOCS=( NEWS )
-
-src_configure() {
-	export VARTEXFONTS="${T}/fonts" #538672
-
-	local myeconfargs=(
-		$(use_enable debug debug-info)
-		$(use_enable pcre)
-	)
-	autotools-utils_src_configure
-}
-
-src_compile() {
-	autotools-utils_src_compile
-	use doc && autotools-utils_src_compile html
-}
-
-src_install() {
-	if use doc ; then
-		HTML_DOCS=("${AUTOTOOLS_BUILD_DIR}/HTML/ChkTeX/")
-		DOCS+=("${AUTOTOOLS_BUILD_DIR}/HTML/ChkTeX.tex")
-	fi
-	autotools-utils_src_install
-	doman *.1
-}

diff --git a/dev-tex/chktex/chktex-1.7.5.ebuild b/dev-tex/chktex/chktex-1.7.5.ebuild
deleted file mode 100644
index a5be1052a5f..00000000000
--- a/dev-tex/chktex/chktex-1.7.5.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-AUTOTOOLS_AUTORECONF=true
-
-inherit autotools-utils
-
-DESCRIPTION="Checks latex source for common mistakes"
-HOMEPAGE="http://www.nongnu.org/chktex/"
-SRC_URI="http://download.savannah.gnu.org/releases/chktex/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
-IUSE="debug doc +pcre test"
-# Tests fail without pcre. Enable pcre by default and make tests depend on it.
-REQUIRED_USE="test? ( pcre )"
-
-RDEPEND="virtual/latex-base
-	dev-lang/perl
-	pcre? ( dev-libs/libpcre )"
-DEPEND="${RDEPEND}
-	sys-apps/groff
-	dev-texlive/texlive-fontsrecommended
-	doc? ( dev-tex/latex2html )"
-
-PATCHES=( "${FILESDIR}/${PN}-1.7.1-asneeded.patch" )
-DOCS=( NEWS )
-AT_M4DIR="${S}/m4"
-
-src_configure() {
-	export VARTEXFONTS="${T}/fonts" #538672
-
-	local myeconfargs=(
-		$(use_enable debug debug-info)
-		$(use_enable pcre)
-	)
-	autotools-utils_src_configure
-}
-
-src_compile() {
-	autotools-utils_src_compile
-	autotools-utils_src_compile ChkTeX.dvi
-	use doc && autotools-utils_src_compile html
-}
-
-src_install() {
-	if use doc ; then
-		HTML_DOCS=("${AUTOTOOLS_BUILD_DIR}/HTML/ChkTeX/")
-		DOCS+=("${AUTOTOOLS_BUILD_DIR}/HTML/ChkTeX.tex")
-	fi
-	DOCS+=("${AUTOTOOLS_BUILD_DIR}/ChkTeX.dvi")
-	autotools-utils_src_install
-	doman *.1
-}


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-tex/chktex/
@ 2019-12-15  9:59 Mikle Kolyada
  0 siblings, 0 replies; 13+ messages in thread
From: Mikle Kolyada @ 2019-12-15  9:59 UTC (permalink / raw
  To: gentoo-commits

commit:     edc8f4d101689b487497bc8512e03feab03fc7f1
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 15 09:39:27 2019 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sun Dec 15 09:59:15 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edc8f4d1

dev-tex/chktex: port to EAPI=7

Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>

 dev-tex/chktex/chktex-1.7.6.ebuild | 30 +++++++++++++++---------------
 1 file changed, 15 insertions(+), 15 deletions(-)

diff --git a/dev-tex/chktex/chktex-1.7.6.ebuild b/dev-tex/chktex/chktex-1.7.6.ebuild
index 4f066f5c4ca..4481fd8c9e6 100644
--- a/dev-tex/chktex/chktex-1.7.6.ebuild
+++ b/dev-tex/chktex/chktex-1.7.6.ebuild
@@ -1,10 +1,9 @@
 # Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=4
-AUTOTOOLS_AUTORECONF=true
+EAPI=7
 
-inherit autotools-utils
+inherit autotools latex-package
 
 DESCRIPTION="Checks latex source for common mistakes"
 HOMEPAGE="http://www.nongnu.org/chktex/"
@@ -18,17 +17,19 @@ RESTRICT="!test? ( test )"
 # Tests fail without pcre. Enable pcre by default and make tests depend on it.
 REQUIRED_USE="test? ( pcre )"
 
-RDEPEND="virtual/latex-base
-	dev-lang/perl
-	pcre? ( dev-libs/libpcre )"
+RDEPEND="pcre? ( dev-libs/libpcre )"
+
 DEPEND="${RDEPEND}
 	sys-apps/groff
 	dev-texlive/texlive-fontsrecommended
 	doc? ( dev-tex/latex2html )"
 
+BDEPEND="virtual/latex-base
+	dev-lang/perl:="
+
 PATCHES=( "${FILESDIR}/${PN}-1.7.1-asneeded.patch"
 	  "${FILESDIR}/tex-inputenc.patch" )
-DOCS=( NEWS )
+
 AT_M4DIR="${S}/m4"
 
 src_configure() {
@@ -38,21 +39,20 @@ src_configure() {
 		$(use_enable debug debug-info)
 		$(use_enable pcre)
 	)
-	autotools-utils_src_configure
+	econf ${myconfargs[@]}
 }
 
 src_compile() {
-	autotools-utils_src_compile
-	autotools-utils_src_compile ChkTeX.dvi
-	use doc && autotools-utils_src_compile html
+	default
+	emake ChkTeX.dvi
+	use doc && emake html
 }
 
 src_install() {
+	default
 	if use doc ; then
-		HTML_DOCS=("${AUTOTOOLS_BUILD_DIR}/HTML/ChkTeX/")
-		DOCS+=("${AUTOTOOLS_BUILD_DIR}/HTML/ChkTeX.tex")
+	      dodoc HTML/ChkTeX.tex
 	fi
-	DOCS+=("${AUTOTOOLS_BUILD_DIR}/ChkTeX.dvi")
-	autotools-utils_src_install
+	dodoc ChkTeX.dvi NEWS
 	doman *.1
 }


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-tex/chktex/
@ 2019-12-15 10:01 Mikle Kolyada
  0 siblings, 0 replies; 13+ messages in thread
From: Mikle Kolyada @ 2019-12-15 10:01 UTC (permalink / raw
  To: gentoo-commits

commit:     a061177cf79ee463c9303736a4fd94836f7fe181
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 15 10:00:39 2019 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sun Dec 15 10:00:39 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a061177c

dev-tex/chktex: mark stable

Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>

 dev-tex/chktex/chktex-1.7.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-tex/chktex/chktex-1.7.6.ebuild b/dev-tex/chktex/chktex-1.7.6.ebuild
index 4481fd8c9e6..768301498e9 100644
--- a/dev-tex/chktex/chktex-1.7.6.ebuild
+++ b/dev-tex/chktex/chktex-1.7.6.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://download.savannah.gnu.org/releases/chktex/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ppc ppc64 s390 sh ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="debug doc +pcre test"
 RESTRICT="!test? ( test )"
 # Tests fail without pcre. Enable pcre by default and make tests depend on it.


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-tex/chktex/
@ 2019-12-15 10:01 Mikle Kolyada
  0 siblings, 0 replies; 13+ messages in thread
From: Mikle Kolyada @ 2019-12-15 10:01 UTC (permalink / raw
  To: gentoo-commits

commit:     2bbe0b3f2560747fbed42e2d34897380f50f8b78
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 15 10:01:23 2019 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sun Dec 15 10:01:23 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bbe0b3f

dev-tex/chktex: Drop old

Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>

 dev-tex/chktex/Manifest            |  1 -
 dev-tex/chktex/chktex-1.7.1.ebuild | 52 --------------------------------------
 2 files changed, 53 deletions(-)

diff --git a/dev-tex/chktex/Manifest b/dev-tex/chktex/Manifest
index 2adecdbfebb..6a2f9a07cab 100644
--- a/dev-tex/chktex/Manifest
+++ b/dev-tex/chktex/Manifest
@@ -1,2 +1 @@
-DIST chktex-1.7.1.tar.gz 349551 BLAKE2B 00a1aed460fc6b0daae065ee39671104b1c5290df7097cbd75fb8c8406e309c5b950ddb3834325ba579f5870bbcf8a5890bb410c7e7633ae575944b704f738a6 SHA512 88b8b6b20a2242557d253e690ad7a7b5a41497e3c96ee44798997b83ccbfd4e37203aea9c557c7b25fc0b6223bd08a590b464af674f7558547393c2af0a86926
 DIST chktex-1.7.6.tar.gz 153071 BLAKE2B 7419b35eb045509ab39983f16d9cc72d1501f3b6781c304ddf8cc91ae1123b132e17e2919f5d2f6c5b6584e91c63651dc819497c2a5945b9debe329c03704256 SHA512 dd5ad2d7fce66eeb8d890bd79d00bdb28d9807539988232a917d6478c204e9a0ab287f2b8baf7977dba374b551609d8951cbf67ad15a793d35cdfe3411e4fe0b

diff --git a/dev-tex/chktex/chktex-1.7.1.ebuild b/dev-tex/chktex/chktex-1.7.1.ebuild
deleted file mode 100644
index 89403432fd9..00000000000
--- a/dev-tex/chktex/chktex-1.7.1.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-AUTOTOOLS_AUTORECONF=true
-
-inherit autotools-utils
-
-DESCRIPTION="Checks latex source for common mistakes"
-HOMEPAGE="http://www.nongnu.org/chktex/"
-SRC_URI="http://download.savannah.gnu.org/releases/chktex/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
-IUSE="debug doc +pcre test"
-RESTRICT="!test? ( test )"
-# Tests fail without pcre. Enable pcre by default and make tests depend on it.
-REQUIRED_USE="test? ( pcre )"
-
-RDEPEND="virtual/latex-base
-	dev-lang/perl
-	pcre? ( dev-libs/libpcre )"
-DEPEND="${RDEPEND}
-	sys-apps/groff
-	doc? ( dev-tex/latex2html )"
-
-PATCHES=( "${FILESDIR}/${P}-asneeded.patch"
-	  "${FILESDIR}/tex-inputenc.patch" )
-DOCS=( NEWS )
-
-src_configure() {
-	local myeconfargs=(
-		$(use_enable debug debug-info)
-		$(use_enable pcre)
-	)
-	autotools-utils_src_configure
-}
-
-src_compile() {
-	autotools-utils_src_compile
-	use doc && autotools-utils_src_compile html
-}
-
-src_install() {
-	if use doc ; then
-		HTML_DOCS=("${AUTOTOOLS_BUILD_DIR}/HTML/ChkTeX/")
-		DOCS+=("${AUTOTOOLS_BUILD_DIR}/HTML/ChkTeX.tex")
-	fi
-	autotools-utils_src_install
-	doman *.1
-}


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-tex/chktex/
@ 2019-12-15 10:30 Mikle Kolyada
  0 siblings, 0 replies; 13+ messages in thread
From: Mikle Kolyada @ 2019-12-15 10:30 UTC (permalink / raw
  To: gentoo-commits

commit:     03b92afad6e7035e6a9d99e7df5168859e7a44e9
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 15 10:30:07 2019 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sun Dec 15 10:30:07 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03b92afa

dev-tex/chktex: drop useless inherit

Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>

 dev-tex/chktex/chktex-1.7.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-tex/chktex/chktex-1.7.6.ebuild b/dev-tex/chktex/chktex-1.7.6.ebuild
index 768301498e9..32d4850e7da 100644
--- a/dev-tex/chktex/chktex-1.7.6.ebuild
+++ b/dev-tex/chktex/chktex-1.7.6.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit autotools latex-package
+inherit autotools
 
 DESCRIPTION="Checks latex source for common mistakes"
 HOMEPAGE="http://www.nongnu.org/chktex/"


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-tex/chktex/
@ 2019-12-15 13:24 Sergei Trofimovich
  0 siblings, 0 replies; 13+ messages in thread
From: Sergei Trofimovich @ 2019-12-15 13:24 UTC (permalink / raw
  To: gentoo-commits

commit:     3dec90cd840d99c33672e860e46bfdfd603b6a23
Author:     Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Sun Dec 15 10:26:08 2019 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sun Dec 15 13:23:55 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3dec90cd

dev-tex/chktex: stable 1.7.6 for sparc, bug #699748

Package-Manager: Portage-2.3.79, Repoman-2.3.16
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 dev-tex/chktex/chktex-1.7.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-tex/chktex/chktex-1.7.6.ebuild b/dev-tex/chktex/chktex-1.7.6.ebuild
index 32d4850e7da..9edd1bcc2f1 100644
--- a/dev-tex/chktex/chktex-1.7.6.ebuild
+++ b/dev-tex/chktex/chktex-1.7.6.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://download.savannah.gnu.org/releases/chktex/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ppc ppc64 s390 sh ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ppc ppc64 s390 sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="debug doc +pcre test"
 RESTRICT="!test? ( test )"
 # Tests fail without pcre. Enable pcre by default and make tests depend on it.


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-tex/chktex/
@ 2020-04-05 19:01 Sergei Trofimovich
  0 siblings, 0 replies; 13+ messages in thread
From: Sergei Trofimovich @ 2020-04-05 19:01 UTC (permalink / raw
  To: gentoo-commits

commit:     d715f88ef903438bd15943b8abea85b2848c96ae
Author:     Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Sun Apr  5 18:59:07 2020 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sun Apr  5 19:00:57 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d715f88e

dev-tex/chktex: stable 1.7.6 for hppa, bug #699748

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 dev-tex/chktex/chktex-1.7.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-tex/chktex/chktex-1.7.6.ebuild b/dev-tex/chktex/chktex-1.7.6.ebuild
index 801a323fde7..722d9e00131 100644
--- a/dev-tex/chktex/chktex-1.7.6.ebuild
+++ b/dev-tex/chktex/chktex-1.7.6.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://download.savannah.gnu.org/releases/chktex/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="debug doc +pcre test"
 RESTRICT="!test? ( test )"
 # Tests fail without pcre. Enable pcre by default and make tests depend on it.


^ permalink raw reply related	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2020-04-05 19:01 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-12-15 13:24 [gentoo-commits] repo/gentoo:master commit in: dev-tex/chktex/ Sergei Trofimovich
  -- strict thread matches above, loose matches on Subject: below --
2020-04-05 19:01 Sergei Trofimovich
2019-12-15 10:30 Mikle Kolyada
2019-12-15 10:01 Mikle Kolyada
2019-12-15 10:01 Mikle Kolyada
2019-12-15  9:59 Mikle Kolyada
2019-06-05 16:50 Mikle Kolyada
2017-06-17 11:11 Alexis Ballier
2016-09-14 16:55 Alexis Ballier
2016-08-03 10:42 Alexis Ballier
2016-08-03 10:40 Alexis Ballier
2016-08-02  8:42 Alexis Ballier
2015-12-15  9:41 Alexis Ballier

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox