public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-text/iso-codes: ChangeLog iso-codes-3.57.ebuild
@ 2014-11-02 10:16 Gilles Dartiguelongue (eva)
  0 siblings, 0 replies; 4+ messages in thread
From: Gilles Dartiguelongue (eva) @ 2014-11-02 10:16 UTC (permalink / raw
  To: gentoo-commits

eva         14/11/02 10:16:40

  Modified:             ChangeLog
  Added:                iso-codes-3.57.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key C6085806)

Revision  Changes    Path
1.174                app-text/iso-codes/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/iso-codes/ChangeLog?rev=1.174&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/iso-codes/ChangeLog?rev=1.174&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/iso-codes/ChangeLog?r1=1.173&r2=1.174

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/iso-codes/ChangeLog,v
retrieving revision 1.173
retrieving revision 1.174
diff -u -r1.173 -r1.174
--- ChangeLog	11 Oct 2014 11:31:26 -0000	1.173
+++ ChangeLog	2 Nov 2014 10:16:40 -0000	1.174
@@ -1,6 +1,11 @@
 # ChangeLog for app-text/iso-codes
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/iso-codes/ChangeLog,v 1.173 2014/10/11 11:31:26 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/iso-codes/ChangeLog,v 1.174 2014/11/02 10:16:40 eva Exp $
+
+*iso-codes-3.57 (02 Nov 2014)
+
+  02 Nov 2014; Gilles Dartiguelongue <eva@gentoo.org> +iso-codes-3.57.ebuild:
+  Version bump.
 
   11 Oct 2014; Markus Meier <maekke@gentoo.org> iso-codes-3.55.ebuild:
   arm stable, bug #512012



1.1                  app-text/iso-codes/iso-codes-3.57.ebuild

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

Index: iso-codes-3.57.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/iso-codes/iso-codes-3.57.ebuild,v 1.1 2014/11/02 10:16:40 eva Exp $

EAPI="5"

PLOCALES="af am ar as ast az be bg bn bn_IN br bs byn ca crh cs cy da de dz el en eo es et eu fa fi fo fr ga gez gl gu haw he hi hr hu hy ia id is it ja ka kk km kn ko kok ku lt lv mi mk ml mn mr ms mt nb ne nl nn nso oc or pa pl ps pt pt_BR ro ru rw si sk sl so sq sr sr@latin sv sw ta te th ti tig tk tl tr tt tt@iqtelif ug uk ve vi wa wal wo xh zh_CN zh_HK zh_TW zu"

inherit eutils l10n

DESCRIPTION="ISO language, territory, currency, script codes and their translations"
HOMEPAGE="http://pkg-isocodes.alioth.debian.org/"
SRC_URI="http://pkg-isocodes.alioth.debian.org/downloads/${P}.tar.xz"

LICENSE="LGPL-2.1+"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
IUSE=""

RDEPEND=""
DEPEND="
	app-arch/xz-utils
	sys-devel/gettext
"

# This ebuild does not install any binaries
RESTRICT="binchecks strip"

src_prepare() {
	local norm loc all_locales mylinguas
	local all_norms="iso_15924 iso_3166 iso_3166_2 iso_4217 iso_639 iso_639_3 iso_639_5"

	# l10n_find_plocales_changes doesn't support multiple directories
	einfo "Looking for new locales ..."
	for norm in ${all_norms}; do
		pushd "${norm}" > /dev/null || die
		for loc in *.po; do
			all_locales+="${loc%.po} "
		done
		popd > /dev/null
	done

	all_locales=$(echo "${all_locales}" | sed 's/ /\n/g' | sort | uniq)
	all_locales=${all_locales//[[:space:]]/ }
	all_locales=${all_locales#[[:space:]]}
	all_locales=${all_locales%[[:space:]]}
	if [[ ${PLOCALES} != ${all_locales} ]]; then
		einfo "There are changes in locales! This ebuild should be updated to:"
		einfo "PLOCALES=\"${all_locales}\""
	else
		einfo "Done"
	fi

	for norm in ${all_norms}; do
		einfo "Preparing ${norm} ..."
		pushd "${norm}" > /dev/null || die
		mylinguas=
		for loc in *.po; do
			if use "linguas_"${loc%.po}; then
				mylinguas+="${loc} "
			fi
		done

		sed -e "s:pofiles =.*:pofiles = ${mylinguas} ${NULL}:" \
			-e "s:mofiles =.*:mofiles = ${mylinguas//.po/.mo} ${NULL}:" \
			-i Makefile.am Makefile.in || die "sed in ${norm} folder failed"
		popd > /dev/null
	done
}





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

* [gentoo-commits] gentoo-x86 commit in app-text/iso-codes: ChangeLog iso-codes-3.57.ebuild
@ 2014-12-12 11:43 Jeroen Roovers (jer)
  0 siblings, 0 replies; 4+ messages in thread
From: Jeroen Roovers (jer) @ 2014-12-12 11:43 UTC (permalink / raw
  To: gentoo-commits

jer         14/12/12 11:43:25

  Modified:             ChangeLog iso-codes-3.57.ebuild
  Log:
  Stable for HPPA (bug #529964).
  
  (Portage version: 2.2.15/cvs/Linux x86_64, RepoMan options: --ignore-arches, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.175                app-text/iso-codes/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/iso-codes/ChangeLog?rev=1.175&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/iso-codes/ChangeLog?rev=1.175&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/iso-codes/ChangeLog?r1=1.174&r2=1.175

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/iso-codes/ChangeLog,v
retrieving revision 1.174
retrieving revision 1.175
diff -u -r1.174 -r1.175
--- ChangeLog	2 Nov 2014 10:16:40 -0000	1.174
+++ ChangeLog	12 Dec 2014 11:43:25 -0000	1.175
@@ -1,6 +1,9 @@
 # ChangeLog for app-text/iso-codes
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/iso-codes/ChangeLog,v 1.174 2014/11/02 10:16:40 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/iso-codes/ChangeLog,v 1.175 2014/12/12 11:43:25 jer Exp $
+
+  12 Dec 2014; Jeroen Roovers <jer@gentoo.org> iso-codes-3.57.ebuild:
+  Stable for HPPA (bug #529964).
 
 *iso-codes-3.57 (02 Nov 2014)
 



1.2                  app-text/iso-codes/iso-codes-3.57.ebuild

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

Index: iso-codes-3.57.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/iso-codes/iso-codes-3.57.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- iso-codes-3.57.ebuild	2 Nov 2014 10:16:40 -0000	1.1
+++ iso-codes-3.57.ebuild	12 Dec 2014 11:43:25 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/iso-codes/iso-codes-3.57.ebuild,v 1.1 2014/11/02 10:16:40 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/iso-codes/iso-codes-3.57.ebuild,v 1.2 2014/12/12 11:43:25 jer Exp $
 
 EAPI="5"
 
@@ -14,7 +14,7 @@
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
 IUSE=""
 
 RDEPEND=""





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

* [gentoo-commits] gentoo-x86 commit in app-text/iso-codes: ChangeLog iso-codes-3.57.ebuild
@ 2015-01-01 20:54 Markus Meier (maekke)
  0 siblings, 0 replies; 4+ messages in thread
From: Markus Meier (maekke) @ 2015-01-01 20:54 UTC (permalink / raw
  To: gentoo-commits

maekke      15/01/01 20:54:39

  Modified:             ChangeLog iso-codes-3.57.ebuild
  Log:
  arm stable, bug #529964
  
  (Portage version: 2.2.15/cvs/Linux x86_64, RepoMan options: --include-arches="arm", signed Manifest commit with key 072AD062)

Revision  Changes    Path
1.182                app-text/iso-codes/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/iso-codes/ChangeLog?rev=1.182&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/iso-codes/ChangeLog?rev=1.182&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/iso-codes/ChangeLog?r1=1.181&r2=1.182

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/iso-codes/ChangeLog,v
retrieving revision 1.181
retrieving revision 1.182
diff -u -r1.181 -r1.182
--- ChangeLog	1 Jan 2015 08:40:17 -0000	1.181
+++ ChangeLog	1 Jan 2015 20:54:39 -0000	1.182
@@ -1,6 +1,9 @@
 # ChangeLog for app-text/iso-codes
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/iso-codes/ChangeLog,v 1.181 2015/01/01 08:40:17 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/iso-codes/ChangeLog,v 1.182 2015/01/01 20:54:39 maekke Exp $
+
+  01 Jan 2015; Markus Meier <maekke@gentoo.org> iso-codes-3.57.ebuild:
+  arm stable, bug #529964
 
   01 Jan 2015; Agostino Sarubbo <ago@gentoo.org> iso-codes-3.57.ebuild:
   Stable for sparc, wrt bug #529964



1.9                  app-text/iso-codes/iso-codes-3.57.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/iso-codes/iso-codes-3.57.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/iso-codes/iso-codes-3.57.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/iso-codes/iso-codes-3.57.ebuild?r1=1.8&r2=1.9

Index: iso-codes-3.57.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/iso-codes/iso-codes-3.57.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- iso-codes-3.57.ebuild	1 Jan 2015 08:40:17 -0000	1.8
+++ iso-codes-3.57.ebuild	1 Jan 2015 20:54:39 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/iso-codes/iso-codes-3.57.ebuild,v 1.8 2015/01/01 08:40:17 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/iso-codes/iso-codes-3.57.ebuild,v 1.9 2015/01/01 20:54:39 maekke Exp $
 
 EAPI="5"
 
@@ -14,7 +14,7 @@
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
 IUSE=""
 
 RDEPEND=""





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

* [gentoo-commits] gentoo-x86 commit in app-text/iso-codes: ChangeLog iso-codes-3.57.ebuild
@ 2015-03-03  5:57 Yixun Lan (dlan)
  0 siblings, 0 replies; 4+ messages in thread
From: Yixun Lan (dlan) @ 2015-03-03  5:57 UTC (permalink / raw
  To: gentoo-commits

dlan        15/03/03 05:57:20

  Modified:             ChangeLog iso-codes-3.57.ebuild
  Log:
  add arm64 support, tested on A53 board
  
  (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 0xAABEFD55)

Revision  Changes    Path
1.184                app-text/iso-codes/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/iso-codes/ChangeLog?rev=1.184&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/iso-codes/ChangeLog?rev=1.184&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/iso-codes/ChangeLog?r1=1.183&r2=1.184

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/iso-codes/ChangeLog,v
retrieving revision 1.183
retrieving revision 1.184
diff -u -r1.183 -r1.184
--- ChangeLog	2 Jan 2015 12:08:19 -0000	1.183
+++ ChangeLog	3 Mar 2015 05:57:19 -0000	1.184
@@ -1,6 +1,9 @@
 # ChangeLog for app-text/iso-codes
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/iso-codes/ChangeLog,v 1.183 2015/01/02 12:08:19 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/iso-codes/ChangeLog,v 1.184 2015/03/03 05:57:19 dlan Exp $
+
+  02 Mar 2015; Yixun Lan <dlan@gentoo.org> iso-codes-3.57.ebuild:
+  add arm64 support, tested on A53 board
 
   02 Jan 2015; Agostino Sarubbo <ago@gentoo.org> iso-codes-3.57.ebuild:
   Stable for alpha, wrt bug #529964



1.11                 app-text/iso-codes/iso-codes-3.57.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/iso-codes/iso-codes-3.57.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/iso-codes/iso-codes-3.57.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/iso-codes/iso-codes-3.57.ebuild?r1=1.10&r2=1.11

Index: iso-codes-3.57.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/iso-codes/iso-codes-3.57.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- iso-codes-3.57.ebuild	2 Jan 2015 12:08:19 -0000	1.10
+++ iso-codes-3.57.ebuild	3 Mar 2015 05:57:19 -0000	1.11
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/iso-codes/iso-codes-3.57.ebuild,v 1.10 2015/01/02 12:08:19 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/iso-codes/iso-codes-3.57.ebuild,v 1.11 2015/03/03 05:57:19 dlan Exp $
 
 EAPI="5"
 
@@ -14,7 +14,7 @@
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
 IUSE=""
 
 RDEPEND=""





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

end of thread, other threads:[~2015-03-03  5:57 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-02 10:16 [gentoo-commits] gentoo-x86 commit in app-text/iso-codes: ChangeLog iso-codes-3.57.ebuild Gilles Dartiguelongue (eva)
  -- strict thread matches above, loose matches on Subject: below --
2014-12-12 11:43 Jeroen Roovers (jer)
2015-01-01 20:54 Markus Meier (maekke)
2015-03-03  5:57 Yixun Lan (dlan)

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