public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-perl/XML-LibXML: ChangeLog XML-LibXML-2.1.400.ebuild
@ 2012-12-08  9:07 Torsten Veller (tove)
  0 siblings, 0 replies; 4+ messages in thread
From: Torsten Veller (tove) @ 2012-12-08  9:07 UTC (permalink / raw
  To: gentoo-commits

tove        12/12/08 09:07:27

  Modified:             ChangeLog
  Added:                XML-LibXML-2.1.400.ebuild
  Log:
  [bump] dev-perl/XML-LibXML-2.1.400
  
  (Portage version: 2.2.0_alpha144/cvs/Linux x86_64, signed Manifest commit with key 0x5772769F4E046AEC)

Revision  Changes    Path
1.146                dev-perl/XML-LibXML/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/XML-LibXML/ChangeLog?rev=1.146&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/XML-LibXML/ChangeLog?rev=1.146&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/XML-LibXML/ChangeLog?r1=1.145&r2=1.146

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-perl/XML-LibXML/ChangeLog,v
retrieving revision 1.145
retrieving revision 1.146
diff -u -r1.145 -r1.146
--- ChangeLog	9 Nov 2012 19:12:06 -0000	1.145
+++ ChangeLog	8 Dec 2012 09:07:27 -0000	1.146
@@ -1,6 +1,11 @@
 # ChangeLog for dev-perl/XML-LibXML
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/XML-LibXML/ChangeLog,v 1.145 2012/11/09 19:12:06 tove Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/XML-LibXML/ChangeLog,v 1.146 2012/12/08 09:07:27 tove Exp $
+
+*XML-LibXML-2.1.400 (08 Dec 2012)
+
+  08 Dec 2012; Torsten Veller <tove@gentoo.org> +XML-LibXML-2.1.400.ebuild:
+  Version bump
 
 *XML-LibXML-2.1.200 (09 Nov 2012)
 



1.1                  dev-perl/XML-LibXML/XML-LibXML-2.1.400.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/XML-LibXML/XML-LibXML-2.1.400.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/XML-LibXML/XML-LibXML-2.1.400.ebuild?rev=1.1&content-type=text/plain

Index: XML-LibXML-2.1.400.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/XML-LibXML/XML-LibXML-2.1.400.ebuild,v 1.1 2012/12/08 09:07:27 tove Exp $

EAPI=4

MODULE_AUTHOR=SHLOMIF
MODULE_VERSION=2.0014
inherit perl-module

DESCRIPTION="A Perl module to parse XSL Transformational sheets using gnome's libXSLT"

SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="test"

RDEPEND="
	>=dev-perl/XML-SAX-0.120.0
	>=dev-libs/libxml2-2.6.21
	>=dev-perl/XML-NamespaceSupport-1.70.0
"
DEPEND="${RDEPEND}
	test? (
		dev-perl/Test-Pod
	)
"

SRC_TEST="do"

# rac can't discern any difference between the build with or without
# this, and if somebody wants to reactivate it, get it out of global
# scope.
#export PERL5LIB=`perl -e 'print map { ":$ENV{D}/$_" } @INC'`
mytargets="pure_install doc_install"

src_compile() {
	export SKIP_SAX_INSTALL=1
	perl-module_src_compile
}

pkg_postinst() {
	pkg_update_parser add XML::LibXML::SAX::Parser
	pkg_update_parser add XML::LibXML::SAX
}

pkg_postrm() {
	pkg_update_parser remove XML::LibXML::SAX::Parser
	pkg_update_parser remove XML::LibXML::SAX
}

pkg_update_parser() {
	# pkg_update_parser [add|remove] $parser_module
	local action=$1
	local parser_module=$2

	if [[ "$ROOT" = "/" ]] ; then
		einfo "Update Parser: $1 $2"
		perl -MXML::SAX -e "XML::SAX->${action}_parser(q(${parser_module}))->save_parsers()" \
			|| ewarn "Update Parser: $1 $2 failed"
	else
		elog "To $1 $2 run:"
		elog "perl -MXML::SAX -e 'XML::SAX->${action}_parser(q(${parser_module}))->save_parsers()'"
	fi
}





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

* [gentoo-commits] gentoo-x86 commit in dev-perl/XML-LibXML: ChangeLog XML-LibXML-2.1.400.ebuild
@ 2014-02-11 18:54 Jeroen Roovers (jer)
  0 siblings, 0 replies; 4+ messages in thread
From: Jeroen Roovers (jer) @ 2014-02-11 18:54 UTC (permalink / raw
  To: gentoo-commits

jer         14/02/11 18:54:30

  Modified:             ChangeLog XML-LibXML-2.1.400.ebuild
  Log:
  Stable for HPPA (bug #495512).
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --ignore-arches, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.150                dev-perl/XML-LibXML/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/XML-LibXML/ChangeLog?rev=1.150&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/XML-LibXML/ChangeLog?rev=1.150&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/XML-LibXML/ChangeLog?r1=1.149&r2=1.150

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-perl/XML-LibXML/ChangeLog,v
retrieving revision 1.149
retrieving revision 1.150
diff -u -r1.149 -r1.150
--- ChangeLog	11 Feb 2014 15:40:08 -0000	1.149
+++ ChangeLog	11 Feb 2014 18:54:30 -0000	1.150
@@ -1,6 +1,9 @@
 # ChangeLog for dev-perl/XML-LibXML
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/XML-LibXML/ChangeLog,v 1.149 2014/02/11 15:40:08 hattya Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/XML-LibXML/ChangeLog,v 1.150 2014/02/11 18:54:30 jer Exp $
+
+  11 Feb 2014; Jeroen Roovers <jer@gentoo.org> XML-LibXML-2.1.400.ebuild:
+  Stable for HPPA (bug #495512).
 
   11 Feb 2014; Akinori Hattori <hattya@gentoo.org> XML-LibXML-2.1.400.ebuild:
   ia64 stable wrt bug #495512



1.4                  dev-perl/XML-LibXML/XML-LibXML-2.1.400.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/XML-LibXML/XML-LibXML-2.1.400.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/XML-LibXML/XML-LibXML-2.1.400.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/XML-LibXML/XML-LibXML-2.1.400.ebuild?r1=1.3&r2=1.4

Index: XML-LibXML-2.1.400.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-perl/XML-LibXML/XML-LibXML-2.1.400.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- XML-LibXML-2.1.400.ebuild	11 Feb 2014 15:40:08 -0000	1.3
+++ XML-LibXML-2.1.400.ebuild	11 Feb 2014 18:54:30 -0000	1.4
@@ -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/dev-perl/XML-LibXML/XML-LibXML-2.1.400.ebuild,v 1.3 2014/02/11 15:40:08 hattya Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/XML-LibXML/XML-LibXML-2.1.400.ebuild,v 1.4 2014/02/11 18:54:30 jer Exp $
 
 EAPI=4
 
@@ -11,7 +11,7 @@
 DESCRIPTION="A Perl module to parse XSL Transformational sheets using gnome's libXSLT"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 
 RDEPEND="





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

* [gentoo-commits] gentoo-x86 commit in dev-perl/XML-LibXML: ChangeLog XML-LibXML-2.1.400.ebuild
@ 2014-02-16 21:21 Markus Meier (maekke)
  0 siblings, 0 replies; 4+ messages in thread
From: Markus Meier (maekke) @ 2014-02-16 21:21 UTC (permalink / raw
  To: gentoo-commits

maekke      14/02/16 21:21:22

  Modified:             ChangeLog XML-LibXML-2.1.400.ebuild
  Log:
  arm stable, bug #495512
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --include-arches="arm", signed Manifest commit with key 072AD062)

Revision  Changes    Path
1.151                dev-perl/XML-LibXML/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/XML-LibXML/ChangeLog?rev=1.151&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/XML-LibXML/ChangeLog?rev=1.151&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/XML-LibXML/ChangeLog?r1=1.150&r2=1.151

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-perl/XML-LibXML/ChangeLog,v
retrieving revision 1.150
retrieving revision 1.151
diff -u -r1.150 -r1.151
--- ChangeLog	11 Feb 2014 18:54:30 -0000	1.150
+++ ChangeLog	16 Feb 2014 21:21:22 -0000	1.151
@@ -1,6 +1,9 @@
 # ChangeLog for dev-perl/XML-LibXML
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/XML-LibXML/ChangeLog,v 1.150 2014/02/11 18:54:30 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/XML-LibXML/ChangeLog,v 1.151 2014/02/16 21:21:22 maekke Exp $
+
+  16 Feb 2014; Markus Meier <maekke@gentoo.org> XML-LibXML-2.1.400.ebuild:
+  arm stable, bug #495512
 
   11 Feb 2014; Jeroen Roovers <jer@gentoo.org> XML-LibXML-2.1.400.ebuild:
   Stable for HPPA (bug #495512).



1.5                  dev-perl/XML-LibXML/XML-LibXML-2.1.400.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/XML-LibXML/XML-LibXML-2.1.400.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/XML-LibXML/XML-LibXML-2.1.400.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/XML-LibXML/XML-LibXML-2.1.400.ebuild?r1=1.4&r2=1.5

Index: XML-LibXML-2.1.400.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-perl/XML-LibXML/XML-LibXML-2.1.400.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- XML-LibXML-2.1.400.ebuild	11 Feb 2014 18:54:30 -0000	1.4
+++ XML-LibXML-2.1.400.ebuild	16 Feb 2014 21:21:22 -0000	1.5
@@ -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/dev-perl/XML-LibXML/XML-LibXML-2.1.400.ebuild,v 1.4 2014/02/11 18:54:30 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/XML-LibXML/XML-LibXML-2.1.400.ebuild,v 1.5 2014/02/16 21:21:22 maekke Exp $
 
 EAPI=4
 
@@ -11,7 +11,7 @@
 DESCRIPTION="A Perl module to parse XSL Transformational sheets using gnome's libXSLT"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 
 RDEPEND="





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

* [gentoo-commits] gentoo-x86 commit in dev-perl/XML-LibXML: ChangeLog XML-LibXML-2.1.400.ebuild
@ 2014-02-24  2:12 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 4+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2014-02-24  2:12 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    14/02/24 02:12:41

  Modified:             ChangeLog XML-LibXML-2.1.400.ebuild
  Log:
  x86 stable wrt bug #495512
  
  (Portage version: 2.2.7/cvs/Linux i686, RepoMan options: --ignore-arches, signed Manifest commit with key 0x4F1A2555EA71991D!)

Revision  Changes    Path
1.152                dev-perl/XML-LibXML/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/XML-LibXML/ChangeLog?rev=1.152&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/XML-LibXML/ChangeLog?rev=1.152&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/XML-LibXML/ChangeLog?r1=1.151&r2=1.152

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-perl/XML-LibXML/ChangeLog,v
retrieving revision 1.151
retrieving revision 1.152
diff -u -r1.151 -r1.152
--- ChangeLog	16 Feb 2014 21:21:22 -0000	1.151
+++ ChangeLog	24 Feb 2014 02:12:41 -0000	1.152
@@ -1,6 +1,10 @@
 # ChangeLog for dev-perl/XML-LibXML
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/XML-LibXML/ChangeLog,v 1.151 2014/02/16 21:21:22 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/XML-LibXML/ChangeLog,v 1.152 2014/02/24 02:12:41 phajdan.jr Exp $
+
+  24 Feb 2014; Pawel Hajdan jr <phajdan.jr@gentoo.org>
+  XML-LibXML-2.1.400.ebuild:
+  x86 stable wrt bug #495512
 
   16 Feb 2014; Markus Meier <maekke@gentoo.org> XML-LibXML-2.1.400.ebuild:
   arm stable, bug #495512



1.6                  dev-perl/XML-LibXML/XML-LibXML-2.1.400.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/XML-LibXML/XML-LibXML-2.1.400.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/XML-LibXML/XML-LibXML-2.1.400.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/XML-LibXML/XML-LibXML-2.1.400.ebuild?r1=1.5&r2=1.6

Index: XML-LibXML-2.1.400.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-perl/XML-LibXML/XML-LibXML-2.1.400.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- XML-LibXML-2.1.400.ebuild	16 Feb 2014 21:21:22 -0000	1.5
+++ XML-LibXML-2.1.400.ebuild	24 Feb 2014 02:12:41 -0000	1.6
@@ -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/dev-perl/XML-LibXML/XML-LibXML-2.1.400.ebuild,v 1.5 2014/02/16 21:21:22 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/XML-LibXML/XML-LibXML-2.1.400.ebuild,v 1.6 2014/02/24 02:12:41 phajdan.jr Exp $
 
 EAPI=4
 
@@ -11,7 +11,7 @@
 DESCRIPTION="A Perl module to parse XSL Transformational sheets using gnome's libXSLT"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 
 RDEPEND="





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

end of thread, other threads:[~2014-02-24  2:12 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-24  2:12 [gentoo-commits] gentoo-x86 commit in dev-perl/XML-LibXML: ChangeLog XML-LibXML-2.1.400.ebuild PaweA Hajdan (phajdan.jr)
  -- strict thread matches above, loose matches on Subject: below --
2014-02-16 21:21 Markus Meier (maekke)
2014-02-11 18:54 Jeroen Roovers (jer)
2012-12-08  9:07 Torsten Veller (tove)

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