public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in eclass: mozlinguas.eclass ChangeLog
@ 2012-02-07 15:17 Lars Wendler (polynomial-c)
  0 siblings, 0 replies; 2+ messages in thread
From: Lars Wendler (polynomial-c) @ 2012-02-07 15:17 UTC (permalink / raw
  To: gentoo-commits

polynomial-c    12/02/07 15:17:47

  Modified:             mozlinguas.eclass ChangeLog
  Log:
  Fixed eclass for usage with seamonkey (which has langpacks in beta releases)

Revision  Changes    Path
1.2                  eclass/mozlinguas.eclass

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/mozlinguas.eclass?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/mozlinguas.eclass?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/mozlinguas.eclass?r1=1.1&r2=1.2

Index: mozlinguas.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/mozlinguas.eclass,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- mozlinguas.eclass	4 Feb 2012 18:28:32 -0000	1.1
+++ mozlinguas.eclass	7 Feb 2012 15:17:47 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/mozlinguas.eclass,v 1.1 2012/02/04 18:28:32 nirbheek Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/mozlinguas.eclass,v 1.2 2012/02/07 15:17:47 polynomial-c Exp $
 
 # @ECLASS: mozlinguas.eclass
 # @MAINTAINER:
@@ -69,7 +69,7 @@
 
 # Add linguas_* to IUSE according to available language packs
 # No language packs for alphas and betas
-if ! [[ ${PV} =~ alpha|beta ]]; then
+if ! [[ ${PV} =~ alpha|beta ]]|| { [[ ${PN} == seamonkey ]] && ! [[ ${PV} =~ alpha ]] ; } ; then
 	for x in "${MOZ_LANGS[@]}" ; do
 		# en and en_US are handled internally
 		if [[ ${x} == en ]] || [[ ${x} == en-US ]]; then
@@ -91,7 +91,11 @@
 # Generate the list of language packs called "mozlinguas"
 # This list is used to unpack and install the xpi language packs
 mozlinguas_export() {
-	[[ ${PV} =~ alpha|beta ]] && return
+	if [[ ${PN} == seamonkey ]] ; then
+		[[ ${PV} =~ alpha ]] && return
+	else
+		[[ ${PV} =~ alpha|beta ]] && return
+	fi
 	local lingua
 	mozlinguas=()
 	for lingua in ${LINGUAS}; do



1.118                eclass/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.118&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.118&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.117&r2=1.118

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.117
retrieving revision 1.118
diff -u -r1.117 -r1.118
--- ChangeLog	7 Feb 2012 12:47:54 -0000	1.117
+++ ChangeLog	7 Feb 2012 15:17:47 -0000	1.118
@@ -1,6 +1,9 @@
 # ChangeLog for eclass directory
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.117 2012/02/07 12:47:54 slyfox Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.118 2012/02/07 15:17:47 polynomial-c Exp $
+
+  07 Feb 2012; Lars Wendler <polynomial-c@gentoo.org> mozlinguas.eclass:
+  Fixed eclass for usage with seamonkey (which has langpacks in beta releases).
 
   07 Feb 2012; Sergei Trofimovich <slyfox@gentoo.org> haskell-cabal.eclass:
   Added support for CABAL_EXTRA_BUILD_FLAGS and HCFLAGS magic variables.






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

* [gentoo-commits] gentoo-x86 commit in eclass: mozlinguas.eclass ChangeLog
@ 2012-02-07 15:19 Lars Wendler (polynomial-c)
  0 siblings, 0 replies; 2+ messages in thread
From: Lars Wendler (polynomial-c) @ 2012-02-07 15:19 UTC (permalink / raw
  To: gentoo-commits

polynomial-c    12/02/07 15:19:22

  Modified:             mozlinguas.eclass ChangeLog
  Log:
  Whitespace fix

Revision  Changes    Path
1.3                  eclass/mozlinguas.eclass

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

Index: mozlinguas.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/mozlinguas.eclass,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- mozlinguas.eclass	7 Feb 2012 15:17:47 -0000	1.2
+++ mozlinguas.eclass	7 Feb 2012 15:19:22 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/mozlinguas.eclass,v 1.2 2012/02/07 15:17:47 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/mozlinguas.eclass,v 1.3 2012/02/07 15:19:22 polynomial-c Exp $
 
 # @ECLASS: mozlinguas.eclass
 # @MAINTAINER:
@@ -69,7 +69,7 @@
 
 # Add linguas_* to IUSE according to available language packs
 # No language packs for alphas and betas
-if ! [[ ${PV} =~ alpha|beta ]]|| { [[ ${PN} == seamonkey ]] && ! [[ ${PV} =~ alpha ]] ; } ; then
+if ! [[ ${PV} =~ alpha|beta ]] || { [[ ${PN} == seamonkey ]] && ! [[ ${PV} =~ alpha ]] ; } ; then
 	for x in "${MOZ_LANGS[@]}" ; do
 		# en and en_US are handled internally
 		if [[ ${x} == en ]] || [[ ${x} == en-US ]]; then



1.119                eclass/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.119&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.119&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.118&r2=1.119

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.118
retrieving revision 1.119
diff -u -r1.118 -r1.119
--- ChangeLog	7 Feb 2012 15:17:47 -0000	1.118
+++ ChangeLog	7 Feb 2012 15:19:22 -0000	1.119
@@ -1,6 +1,9 @@
 # ChangeLog for eclass directory
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.118 2012/02/07 15:17:47 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.119 2012/02/07 15:19:22 polynomial-c Exp $
+
+  07 Feb 2012; Lars Wendler <polynomial-c@gentoo.org> mozlinguas.eclass:
+  Whitespace fix
 
   07 Feb 2012; Lars Wendler <polynomial-c@gentoo.org> mozlinguas.eclass:
   Fixed eclass for usage with seamonkey (which has langpacks in beta releases).






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

end of thread, other threads:[~2012-02-07 15:19 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-07 15:17 [gentoo-commits] gentoo-x86 commit in eclass: mozlinguas.eclass ChangeLog Lars Wendler (polynomial-c)
  -- strict thread matches above, loose matches on Subject: below --
2012-02-07 15:19 Lars Wendler (polynomial-c)

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