public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-libs/protobuf: ChangeLog protobuf-2.6.0.ebuild
@ 2014-09-30  6:58 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 5+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2014-09-30  6:58 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    14/09/30 06:58:29

  Modified:             ChangeLog
  Added:                protobuf-2.6.0.ebuild
  Log:
  Version bump, bug #521406 . Drop keywords because of new python deps; arm (bug #524082), ia64 (bug #524084).
  
  (Portage version: 2.2.8-r1/cvs/Linux i686, signed Manifest commit with key 0x4F1A2555EA71991D!)

Revision  Changes    Path
1.63                 dev-libs/protobuf/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/protobuf/ChangeLog?rev=1.63&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/protobuf/ChangeLog?rev=1.63&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/protobuf/ChangeLog?r1=1.62&r2=1.63

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/protobuf/ChangeLog,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -r1.62 -r1.63
--- ChangeLog	26 Sep 2014 04:47:05 -0000	1.62
+++ ChangeLog	30 Sep 2014 06:58:29 -0000	1.63
@@ -1,6 +1,12 @@
 # ChangeLog for dev-libs/protobuf
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/protobuf/ChangeLog,v 1.62 2014/09/26 04:47:05 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/protobuf/ChangeLog,v 1.63 2014/09/30 06:58:29 phajdan.jr Exp $
+
+*protobuf-2.6.0 (30 Sep 2014)
+
+  30 Sep 2014; Pawel Hajdan jr <phajdan.jr@gentoo.org> +protobuf-2.6.0.ebuild:
+  Version bump, bug #521406 . Drop keywords because of new python deps; arm
+  (bug #524082), ia64 (bug #524084).
 
 *protobuf-2.5.0-r1 (26 Sep 2014)
 



1.1                  dev-libs/protobuf/protobuf-2.6.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/protobuf/protobuf-2.6.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/protobuf/protobuf-2.6.0.ebuild?rev=1.1&content-type=text/plain

Index: protobuf-2.6.0.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/protobuf/protobuf-2.6.0.ebuild,v 1.1 2014/09/30 06:58:29 phajdan.jr Exp $

EAPI=5
JAVA_PKG_IUSE="source"
PYTHON_COMPAT=( python{2_6,2_7} )
DISTUTILS_OPTIONAL=1

inherit autotools eutils flag-o-matic distutils-r1 java-pkg-opt-2 elisp-common

DESCRIPTION="Google's Protocol Buffers -- an efficient method of encoding structured data"
HOMEPAGE="http://code.google.com/p/protobuf/"
SRC_URI="https://protobuf.googlecode.com/svn/rc/${P}.tar.bz2"

LICENSE="Apache-2.0"
SLOT="0/9" # subslot = soname major version
KEYWORDS="~amd64 -hppa ~mips -ppc -ppc64 ~x86 ~amd64-linux ~arm-linux ~x86-linux ~x64-macos ~x86-macos"
IUSE="emacs examples java python static-libs vim-syntax"

CDEPEND="emacs? ( virtual/emacs )
	python? ( ${PYTHON_DEPS} )"
# python-dateutil uses deprecated distutils eclass.
DEPEND="${CDEPEND}
	java? ( >=virtual/jdk-1.5 )
	python? (
		dev-python/google-apputils[${PYTHON_USEDEP}]
		dev-python/python-dateutil:python-2
		dev-python/python-gflags[${PYTHON_USEDEP}]
		dev-python/setuptools[${PYTHON_USEDEP}]
	)"
RDEPEND="${CDEPEND}
	java? ( >=virtual/jre-1.5 )"

src_prepare() {
	append-cxxflags -DGOOGLE_PROTOBUF_NO_RTTI

	if [[ ${CHOST} != *-darwin* ]] ; then
		# breaks Darwin, bug #472514
		epatch "${FILESDIR}"/${PN}-2.3.0-asneeded-2.patch
		eautoreconf
	fi

	if use python; then
		cd python && distutils-r1_src_prepare
	fi
}

src_configure() {
	econf \
		$(use_enable static-libs static)
}

src_compile() {
	default

	if use python; then
		einfo "Compiling Python library ..."
		pushd python >/dev/null
		distutils-r1_src_compile
		popd >/dev/null
	fi

	if use java; then
		einfo "Compiling Java library ..."
		src/protoc --java_out=java/src/main/java --proto_path=src src/google/protobuf/descriptor.proto
		mkdir java/build
		pushd java/src/main/java >/dev/null
		ejavac -d ../../../build $(find . -name '*.java') || die "java compilation failed"
		popd >/dev/null
		jar cf ${PN}.jar -C java/build . || die "jar failed"
	fi

	if use emacs; then
		elisp-compile "${S}"/editors/protobuf-mode.el
	fi
}

src_test() {
	emake check

	if use python; then
		pushd python >/dev/null
		distutils-r1_src_test
		popd >/dev/null
	fi
}

src_install() {
	emake DESTDIR="${D}" install
	dodoc CHANGES.txt CONTRIBUTORS.txt README.txt
	prune_libtool_files

	if use python; then
		pushd python >/dev/null
		distutils-r1_src_install
		popd >/dev/null
	fi

	if use java; then
		java-pkg_dojar ${PN}.jar
		use source && java-pkg_dosrc java/src/main/java/*
	fi

	if use vim-syntax; then
		insinto /usr/share/vim/vimfiles/syntax
		doins editors/proto.vim
		insinto /usr/share/vim/vimfiles/ftdetect/
		doins "${FILESDIR}"/proto.vim
	fi

	if use emacs; then
		elisp-install ${PN} editors/protobuf-mode.el*
		elisp-site-file-install "${FILESDIR}"/70${PN}-gentoo.el
	fi

	if use examples; then
		dodoc -r examples
		docompress -x /usr/share/doc/${PF}/examples
	fi
}

pkg_postinst() {
	use emacs && elisp-site-regen
}

pkg_postrm() {
	use emacs && elisp-site-regen
}





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/protobuf: ChangeLog protobuf-2.6.0.ebuild
@ 2014-09-30 17:28 Tim Harder (radhermit)
  0 siblings, 0 replies; 5+ messages in thread
From: Tim Harder (radhermit) @ 2014-09-30 17:28 UTC (permalink / raw
  To: gentoo-commits

radhermit    14/09/30 17:28:27

  Modified:             ChangeLog protobuf-2.6.0.ebuild
  Log:
  Remove unused python-dateutil and python-gflags deps as pointed out by Arfrever.
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with key 4F064CA3)

Revision  Changes    Path
1.64                 dev-libs/protobuf/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/protobuf/ChangeLog?rev=1.64&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/protobuf/ChangeLog?rev=1.64&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/protobuf/ChangeLog?r1=1.63&r2=1.64

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/protobuf/ChangeLog,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -r1.63 -r1.64
--- ChangeLog	30 Sep 2014 06:58:29 -0000	1.63
+++ ChangeLog	30 Sep 2014 17:28:27 -0000	1.64
@@ -1,6 +1,10 @@
 # ChangeLog for dev-libs/protobuf
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/protobuf/ChangeLog,v 1.63 2014/09/30 06:58:29 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/protobuf/ChangeLog,v 1.64 2014/09/30 17:28:27 radhermit Exp $
+
+  30 Sep 2014; Tim Harder <radhermit@gentoo.org> protobuf-2.6.0.ebuild:
+  Remove unused python-dateutil and python-gflags deps as pointed out by
+  Arfrever.
 
 *protobuf-2.6.0 (30 Sep 2014)
 



1.2                  dev-libs/protobuf/protobuf-2.6.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/protobuf/protobuf-2.6.0.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/protobuf/protobuf-2.6.0.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/protobuf/protobuf-2.6.0.ebuild?r1=1.1&r2=1.2

Index: protobuf-2.6.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/protobuf/protobuf-2.6.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- protobuf-2.6.0.ebuild	30 Sep 2014 06:58:29 -0000	1.1
+++ protobuf-2.6.0.ebuild	30 Sep 2014 17:28:27 -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/dev-libs/protobuf/protobuf-2.6.0.ebuild,v 1.1 2014/09/30 06:58:29 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/protobuf/protobuf-2.6.0.ebuild,v 1.2 2014/09/30 17:28:27 radhermit Exp $
 
 EAPI=5
 JAVA_PKG_IUSE="source"
@@ -25,8 +25,6 @@
 	java? ( >=virtual/jdk-1.5 )
 	python? (
 		dev-python/google-apputils[${PYTHON_USEDEP}]
-		dev-python/python-dateutil:python-2
-		dev-python/python-gflags[${PYTHON_USEDEP}]
 		dev-python/setuptools[${PYTHON_USEDEP}]
 	)"
 RDEPEND="${CDEPEND}





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/protobuf: ChangeLog protobuf-2.6.0.ebuild
@ 2014-09-30 17:31 Tim Harder (radhermit)
  0 siblings, 0 replies; 5+ messages in thread
From: Tim Harder (radhermit) @ 2014-09-30 17:31 UTC (permalink / raw
  To: gentoo-commits

radhermit    14/09/30 17:31:23

  Modified:             ChangeLog protobuf-2.6.0.ebuild
  Log:
  Drop python2_6 support and remove old dateutil comment.
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with key 4F064CA3)

Revision  Changes    Path
1.65                 dev-libs/protobuf/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/protobuf/ChangeLog?rev=1.65&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/protobuf/ChangeLog?rev=1.65&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/protobuf/ChangeLog?r1=1.64&r2=1.65

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/protobuf/ChangeLog,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -r1.64 -r1.65
--- ChangeLog	30 Sep 2014 17:28:27 -0000	1.64
+++ ChangeLog	30 Sep 2014 17:31:23 -0000	1.65
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/protobuf
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/protobuf/ChangeLog,v 1.64 2014/09/30 17:28:27 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/protobuf/ChangeLog,v 1.65 2014/09/30 17:31:23 radhermit Exp $
+
+  30 Sep 2014; Tim Harder <radhermit@gentoo.org> protobuf-2.6.0.ebuild:
+  Drop python2_6 support and remove old dateutil comment.
 
   30 Sep 2014; Tim Harder <radhermit@gentoo.org> protobuf-2.6.0.ebuild:
   Remove unused python-dateutil and python-gflags deps as pointed out by



1.3                  dev-libs/protobuf/protobuf-2.6.0.ebuild

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

Index: protobuf-2.6.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/protobuf/protobuf-2.6.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- protobuf-2.6.0.ebuild	30 Sep 2014 17:28:27 -0000	1.2
+++ protobuf-2.6.0.ebuild	30 Sep 2014 17:31:23 -0000	1.3
@@ -1,10 +1,10 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/protobuf/protobuf-2.6.0.ebuild,v 1.2 2014/09/30 17:28:27 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/protobuf/protobuf-2.6.0.ebuild,v 1.3 2014/09/30 17:31:23 radhermit Exp $
 
 EAPI=5
 JAVA_PKG_IUSE="source"
-PYTHON_COMPAT=( python{2_6,2_7} )
+PYTHON_COMPAT=( python2_7 )
 DISTUTILS_OPTIONAL=1
 
 inherit autotools eutils flag-o-matic distutils-r1 java-pkg-opt-2 elisp-common
@@ -20,7 +20,6 @@
 
 CDEPEND="emacs? ( virtual/emacs )
 	python? ( ${PYTHON_DEPS} )"
-# python-dateutil uses deprecated distutils eclass.
 DEPEND="${CDEPEND}
 	java? ( >=virtual/jdk-1.5 )
 	python? (





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/protobuf: ChangeLog protobuf-2.6.0.ebuild
@ 2014-10-07  6:47 Tim Harder (radhermit)
  0 siblings, 0 replies; 5+ messages in thread
From: Tim Harder (radhermit) @ 2014-10-07  6:47 UTC (permalink / raw
  To: gentoo-commits

radhermit    14/10/07 06:47:27

  Modified:             ChangeLog protobuf-2.6.0.ebuild
  Log:
  Add github homepage.
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)

Revision  Changes    Path
1.66                 dev-libs/protobuf/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/protobuf/ChangeLog?rev=1.66&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/protobuf/ChangeLog?rev=1.66&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/protobuf/ChangeLog?r1=1.65&r2=1.66

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/protobuf/ChangeLog,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -r1.65 -r1.66
--- ChangeLog	30 Sep 2014 17:31:23 -0000	1.65
+++ ChangeLog	7 Oct 2014 06:47:27 -0000	1.66
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/protobuf
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/protobuf/ChangeLog,v 1.65 2014/09/30 17:31:23 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/protobuf/ChangeLog,v 1.66 2014/10/07 06:47:27 radhermit Exp $
+
+  07 Oct 2014; Tim Harder <radhermit@gentoo.org> protobuf-2.6.0.ebuild:
+  Add github homepage.
 
   30 Sep 2014; Tim Harder <radhermit@gentoo.org> protobuf-2.6.0.ebuild:
   Drop python2_6 support and remove old dateutil comment.



1.4                  dev-libs/protobuf/protobuf-2.6.0.ebuild

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

Index: protobuf-2.6.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/protobuf/protobuf-2.6.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- protobuf-2.6.0.ebuild	30 Sep 2014 17:31:23 -0000	1.3
+++ protobuf-2.6.0.ebuild	7 Oct 2014 06:47:27 -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-libs/protobuf/protobuf-2.6.0.ebuild,v 1.3 2014/09/30 17:31:23 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/protobuf/protobuf-2.6.0.ebuild,v 1.4 2014/10/07 06:47:27 radhermit Exp $
 
 EAPI=5
 JAVA_PKG_IUSE="source"
@@ -10,7 +10,7 @@
 inherit autotools eutils flag-o-matic distutils-r1 java-pkg-opt-2 elisp-common
 
 DESCRIPTION="Google's Protocol Buffers -- an efficient method of encoding structured data"
-HOMEPAGE="http://code.google.com/p/protobuf/"
+HOMEPAGE="http://code.google.com/p/protobuf/ https://github.com/google/protobuf/"
 SRC_URI="https://protobuf.googlecode.com/svn/rc/${P}.tar.bz2"
 
 LICENSE="Apache-2.0"





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/protobuf: ChangeLog protobuf-2.6.0.ebuild
@ 2014-10-10 20:17 Markus Meier (maekke)
  0 siblings, 0 replies; 5+ messages in thread
From: Markus Meier (maekke) @ 2014-10-10 20:17 UTC (permalink / raw
  To: gentoo-commits

maekke      14/10/10 20:17:25

  Modified:             ChangeLog protobuf-2.6.0.ebuild
  Log:
  add ~arm, bug #524082
  
  (Portage version: 2.2.14_rc1/cvs/Linux x86_64, RepoMan options: --include-arches="arm", signed Manifest commit with key 072AD062)

Revision  Changes    Path
1.67                 dev-libs/protobuf/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/protobuf/ChangeLog?rev=1.67&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/protobuf/ChangeLog?rev=1.67&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/protobuf/ChangeLog?r1=1.66&r2=1.67

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/protobuf/ChangeLog,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -r1.66 -r1.67
--- ChangeLog	7 Oct 2014 06:47:27 -0000	1.66
+++ ChangeLog	10 Oct 2014 20:17:24 -0000	1.67
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/protobuf
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/protobuf/ChangeLog,v 1.66 2014/10/07 06:47:27 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/protobuf/ChangeLog,v 1.67 2014/10/10 20:17:24 maekke Exp $
+
+  10 Oct 2014; Markus Meier <maekke@gentoo.org> protobuf-2.6.0.ebuild:
+  add ~arm, bug #524082
 
   07 Oct 2014; Tim Harder <radhermit@gentoo.org> protobuf-2.6.0.ebuild:
   Add github homepage.



1.5                  dev-libs/protobuf/protobuf-2.6.0.ebuild

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

Index: protobuf-2.6.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/protobuf/protobuf-2.6.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- protobuf-2.6.0.ebuild	7 Oct 2014 06:47:27 -0000	1.4
+++ protobuf-2.6.0.ebuild	10 Oct 2014 20:17:24 -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-libs/protobuf/protobuf-2.6.0.ebuild,v 1.4 2014/10/07 06:47:27 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/protobuf/protobuf-2.6.0.ebuild,v 1.5 2014/10/10 20:17:24 maekke Exp $
 
 EAPI=5
 JAVA_PKG_IUSE="source"
@@ -15,7 +15,7 @@
 
 LICENSE="Apache-2.0"
 SLOT="0/9" # subslot = soname major version
-KEYWORDS="~amd64 -hppa ~mips -ppc -ppc64 ~x86 ~amd64-linux ~arm-linux ~x86-linux ~x64-macos ~x86-macos"
+KEYWORDS="~amd64 ~arm -hppa ~mips -ppc -ppc64 ~x86 ~amd64-linux ~arm-linux ~x86-linux ~x64-macos ~x86-macos"
 IUSE="emacs examples java python static-libs vim-syntax"
 
 CDEPEND="emacs? ( virtual/emacs )





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

end of thread, other threads:[~2014-10-10 20:17 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-30  6:58 [gentoo-commits] gentoo-x86 commit in dev-libs/protobuf: ChangeLog protobuf-2.6.0.ebuild PaweA Hajdan (phajdan.jr)
  -- strict thread matches above, loose matches on Subject: below --
2014-09-30 17:28 Tim Harder (radhermit)
2014-09-30 17:31 Tim Harder (radhermit)
2014-10-07  6:47 Tim Harder (radhermit)
2014-10-10 20:17 Markus Meier (maekke)

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