public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-text/vilistextum: vilistextum-2.6.9-r1.ebuild ChangeLog
@ 2013-09-11 17:29 Fabian Groffen (grobian)
  0 siblings, 0 replies; 4+ messages in thread
From: Fabian Groffen (grobian) @ 2013-09-11 17:29 UTC (permalink / raw
  To: gentoo-commits

grobian     13/09/11 17:29:20

  Modified:             ChangeLog
  Added:                vilistextum-2.6.9-r1.ebuild
  Log:
  Add patch by me to fix blockquote rendering.
  
  (Portage version: 2.2.01.22288-prefix/cvs/SunOS i386, signed Manifest commit with key 0x5F75F607C5C74E89)

Revision  Changes    Path
1.38                 app-text/vilistextum/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/vilistextum/ChangeLog?rev=1.38&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/vilistextum/ChangeLog?rev=1.38&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/vilistextum/ChangeLog?r1=1.37&r2=1.38

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/vilistextum/ChangeLog,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- ChangeLog	8 Aug 2011 20:20:51 -0000	1.37
+++ ChangeLog	11 Sep 2013 17:29:20 -0000	1.38
@@ -1,6 +1,12 @@
 # ChangeLog for app-text/vilistextum
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/vilistextum/ChangeLog,v 1.37 2011/08/08 20:20:51 grobian Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/vilistextum/ChangeLog,v 1.38 2013/09/11 17:29:20 grobian Exp $
+
+*vilistextum-2.6.9-r1 (11 Sep 2013)
+
+  11 Sep 2013; Fabian Groffen <grobian@gentoo.org>
+  +files/vilistextum-2.6.9-blockquote.patch, +vilistextum-2.6.9-r1.ebuild:
+  Add patch by me to fix blockquote rendering.
 
   08 Aug 2011; Fabian Groffen <grobian@gentoo.org> vilistextum-2.6.9.ebuild,
   +files/vilistextum-2.6.9-darwin11.patch:
@@ -130,5 +136,3 @@
   21 May 2002; Bruce A. Locke <blocke@shivan.org> vilistextum-2.6.2.ebuild :
 
   Update to 2.6.2
-
-



1.1                  app-text/vilistextum/vilistextum-2.6.9-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/vilistextum/vilistextum-2.6.9-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/vilistextum/vilistextum-2.6.9-r1.ebuild?rev=1.1&content-type=text/plain

Index: vilistextum-2.6.9-r1.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/vilistextum/vilistextum-2.6.9-r1.ebuild,v 1.1 2013/09/11 17:29:20 grobian Exp $

EAPI="2"

inherit eutils autotools

DESCRIPTION="Html to ascii converter specifically programmed to get the best out of incorrect html"
HOMEPAGE="http://bhaak.dyndns.org/vilistextum/"
SRC_URI="http://bhaak.dyndns.org/${PN}/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
#IUSE="unicode kde"
IUSE="unicode"

DEPEND="virtual/libiconv"
RDEPEND=""
# KDE support will be available once a version of kaptain in stable
#	 kde? ( kde-misc/kaptain )"

src_prepare() {
	epatch \
		"${FILESDIR}/${P}-gentoo.diff" \
		"${FILESDIR}/${P}-prefix.patch" \
		"${FILESDIR}/${P}-darwin11.patch" \
		"${FILESDIR}/${P}-blockquote.patch"
	eautoreconf
}

get_locale() {
	locale -a | grep -i "$1\.utf.*8\$"
}

find_locale() {
	local l t

	# we basically prefer to find en_US.UTF-8, but it may not always be
	# available, in which case it is better not to hardcode to use it
	l=$(get_locale en_US)
	if [[ -z ${l} ]] ; then
		for t in "en_GB" "en_.*" ".*" ; do
			l=$(get_locale ${t})
			if [[ -n ${l} ]] ; then
				l=${l%%$'\n'*}
				break;
			fi
		done
	fi
	[[ -z ${l} ]] && die "Failed to find a unicode locale"
	echo "${l}"
}

src_configure() {
	# need hardwired locale simply because locale -a | grep -i utf-8 | head -n1
	# isn't always returning the most sensical (and working) locale
	econf \
		$(use_enable unicode multibyte) \
		$(use_with unicode unicode-locale $(find_locale))
}

src_test() {
	if $(locale -a | grep -iq "en_US\.utf.*8"); then
		emake -j1 \
			check || die
	else
		ewarn "If you like to run the test,"
		ewarn "please make sure en_US.UTF-8 is installed."
		die "en_US.UTF-8 locale is missing"
	fi
}

src_install() {
	emake DESTDIR="${D}" install || die
	dodoc README CHANGES || die
	dohtml doc/*.html || die
}





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

* [gentoo-commits] gentoo-x86 commit in app-text/vilistextum: vilistextum-2.6.9-r1.ebuild ChangeLog
@ 2013-12-21 15:53 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 4+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-12-21 15:53 UTC (permalink / raw
  To: gentoo-commits

ago         13/12/21 15:53:50

  Modified:             vilistextum-2.6.9-r1.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #491954
  
  (Portage version: 2.2.1/cvs/Linux ppc64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.3                  app-text/vilistextum/vilistextum-2.6.9-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/vilistextum/vilistextum-2.6.9-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/vilistextum/vilistextum-2.6.9-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/vilistextum/vilistextum-2.6.9-r1.ebuild?r1=1.2&r2=1.3

Index: vilistextum-2.6.9-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/vilistextum/vilistextum-2.6.9-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- vilistextum-2.6.9-r1.ebuild	22 Nov 2013 07:40:15 -0000	1.2
+++ vilistextum-2.6.9-r1.ebuild	21 Dec 2013 15:53:50 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/vilistextum/vilistextum-2.6.9-r1.ebuild,v 1.2 2013/11/22 07:40:15 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/vilistextum/vilistextum-2.6.9-r1.ebuild,v 1.3 2013/12/21 15:53:50 ago Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="~amd64 ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
 #IUSE="unicode kde"
 IUSE="unicode"
 



1.41                 app-text/vilistextum/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/vilistextum/ChangeLog?rev=1.41&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/vilistextum/ChangeLog?rev=1.41&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/vilistextum/ChangeLog?r1=1.40&r2=1.41

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/vilistextum/ChangeLog,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- ChangeLog	23 Nov 2013 10:39:41 -0000	1.40
+++ ChangeLog	21 Dec 2013 15:53:50 -0000	1.41
@@ -1,6 +1,9 @@
 # ChangeLog for app-text/vilistextum
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/vilistextum/ChangeLog,v 1.40 2013/11/23 10:39:41 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/vilistextum/ChangeLog,v 1.41 2013/12/21 15:53:50 ago Exp $
+
+  21 Dec 2013; Agostino Sarubbo <ago@gentoo.org> vilistextum-2.6.9-r1.ebuild:
+  Stable for ppc, wrt bug #491954
 
   23 Nov 2013; Fabian Groffen <grobian@gentoo.org>
   files/vilistextum-2.6.9-blockquote.patch:





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

* [gentoo-commits] gentoo-x86 commit in app-text/vilistextum: vilistextum-2.6.9-r1.ebuild ChangeLog
@ 2013-12-23 15:28 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 4+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-12-23 15:28 UTC (permalink / raw
  To: gentoo-commits

ago         13/12/23 15:28:43

  Modified:             vilistextum-2.6.9-r1.ebuild ChangeLog
  Log:
  Stable for sparc, wrt bug #491954
  
  (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --include-arches="sparc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.5                  app-text/vilistextum/vilistextum-2.6.9-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/vilistextum/vilistextum-2.6.9-r1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/vilistextum/vilistextum-2.6.9-r1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/vilistextum/vilistextum-2.6.9-r1.ebuild?r1=1.4&r2=1.5

Index: vilistextum-2.6.9-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/vilistextum/vilistextum-2.6.9-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- vilistextum-2.6.9-r1.ebuild	22 Dec 2013 18:48:27 -0000	1.4
+++ vilistextum-2.6.9-r1.ebuild	23 Dec 2013 15:28:43 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/vilistextum/vilistextum-2.6.9-r1.ebuild,v 1.4 2013/12/22 18:48:27 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/vilistextum/vilistextum-2.6.9-r1.ebuild,v 1.5 2013/12/23 15:28:43 ago Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 ppc sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
 #IUSE="unicode kde"
 IUSE="unicode"
 



1.43                 app-text/vilistextum/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/vilistextum/ChangeLog?rev=1.43&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/vilistextum/ChangeLog?rev=1.43&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/vilistextum/ChangeLog?r1=1.42&r2=1.43

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/vilistextum/ChangeLog,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -r1.42 -r1.43
--- ChangeLog	22 Dec 2013 18:48:27 -0000	1.42
+++ ChangeLog	23 Dec 2013 15:28:43 -0000	1.43
@@ -1,6 +1,9 @@
 # ChangeLog for app-text/vilistextum
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/vilistextum/ChangeLog,v 1.42 2013/12/22 18:48:27 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/vilistextum/ChangeLog,v 1.43 2013/12/23 15:28:43 ago Exp $
+
+  23 Dec 2013; Agostino Sarubbo <ago@gentoo.org> vilistextum-2.6.9-r1.ebuild:
+  Stable for sparc, wrt bug #491954
 
   22 Dec 2013; Pacho Ramos <pacho@gentoo.org> vilistextum-2.6.9-r1.ebuild:
   amd64 stable, bug #491954





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

* [gentoo-commits] gentoo-x86 commit in app-text/vilistextum: vilistextum-2.6.9-r1.ebuild ChangeLog
@ 2013-12-24 12:56 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 4+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-12-24 12:56 UTC (permalink / raw
  To: gentoo-commits

ago         13/12/24 12:56:14

  Modified:             vilistextum-2.6.9-r1.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #491954
  
  (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.6                  app-text/vilistextum/vilistextum-2.6.9-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/vilistextum/vilistextum-2.6.9-r1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/vilistextum/vilistextum-2.6.9-r1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/vilistextum/vilistextum-2.6.9-r1.ebuild?r1=1.5&r2=1.6

Index: vilistextum-2.6.9-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/vilistextum/vilistextum-2.6.9-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- vilistextum-2.6.9-r1.ebuild	23 Dec 2013 15:28:43 -0000	1.5
+++ vilistextum-2.6.9-r1.ebuild	24 Dec 2013 12:56:14 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/vilistextum/vilistextum-2.6.9-r1.ebuild,v 1.5 2013/12/23 15:28:43 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/vilistextum/vilistextum-2.6.9-r1.ebuild,v 1.6 2013/12/24 12:56:14 ago Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ppc sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
 #IUSE="unicode kde"
 IUSE="unicode"
 



1.44                 app-text/vilistextum/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/vilistextum/ChangeLog?rev=1.44&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/vilistextum/ChangeLog?rev=1.44&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/vilistextum/ChangeLog?r1=1.43&r2=1.44

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/vilistextum/ChangeLog,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- ChangeLog	23 Dec 2013 15:28:43 -0000	1.43
+++ ChangeLog	24 Dec 2013 12:56:14 -0000	1.44
@@ -1,6 +1,9 @@
 # ChangeLog for app-text/vilistextum
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/vilistextum/ChangeLog,v 1.43 2013/12/23 15:28:43 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/vilistextum/ChangeLog,v 1.44 2013/12/24 12:56:14 ago Exp $
+
+  24 Dec 2013; Agostino Sarubbo <ago@gentoo.org> vilistextum-2.6.9-r1.ebuild:
+  Stable for x86, wrt bug #491954
 
   23 Dec 2013; Agostino Sarubbo <ago@gentoo.org> vilistextum-2.6.9-r1.ebuild:
   Stable for sparc, wrt bug #491954





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

end of thread, other threads:[~2013-12-24 12:56 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-21 15:53 [gentoo-commits] gentoo-x86 commit in app-text/vilistextum: vilistextum-2.6.9-r1.ebuild ChangeLog Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2013-12-24 12:56 Agostino Sarubbo (ago)
2013-12-23 15:28 Agostino Sarubbo (ago)
2013-09-11 17:29 Fabian Groffen (grobian)

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