* [gentoo-commits] gentoo-x86 commit in dev-libs/protobuf: ChangeLog protobuf-2.5.0.ebuild
@ 2013-03-05 5:21 Tim Harder (radhermit)
0 siblings, 0 replies; 4+ messages in thread
From: Tim Harder (radhermit) @ 2013-03-05 5:21 UTC (permalink / raw
To: gentoo-commits
radhermit 13/03/05 05:21:45
Modified: ChangeLog
Added: protobuf-2.5.0.ebuild
Log:
Version bump. Migrate to distutils-r1 and add subslot.
(Portage version: 2.2.0_alpha165/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Revision Changes Path
1.42 dev-libs/protobuf/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/protobuf/ChangeLog?rev=1.42&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/protobuf/ChangeLog?rev=1.42&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/protobuf/ChangeLog?r1=1.41&r2=1.42
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/protobuf/ChangeLog,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- ChangeLog 19 Feb 2013 03:39:19 -0000 1.41
+++ ChangeLog 5 Mar 2013 05:21:45 -0000 1.42
@@ -1,6 +1,11 @@
# ChangeLog for dev-libs/protobuf
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/protobuf/ChangeLog,v 1.41 2013/02/19 03:39:19 zmedico Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/protobuf/ChangeLog,v 1.42 2013/03/05 05:21:45 radhermit Exp $
+
+*protobuf-2.5.0 (05 Mar 2013)
+
+ 05 Mar 2013; Tim Harder <radhermit@gentoo.org> +protobuf-2.5.0.ebuild:
+ Version bump. Migrate to distutils-r1 and add subslot.
19 Feb 2013; Zac Medico <zmedico@gentoo.org> protobuf-2.4.1.ebuild:
Add ~arm-linux keyword.
1.1 dev-libs/protobuf/protobuf-2.5.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/protobuf/protobuf-2.5.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/protobuf/protobuf-2.5.0.ebuild?rev=1.1&content-type=text/plain
Index: protobuf-2.5.0.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/protobuf/protobuf-2.5.0.ebuild,v 1.1 2013/03/05 05:21:45 radhermit Exp $
EAPI=5
JAVA_PKG_IUSE="source"
PYTHON_COMPAT=( python{2_5,2_6,2_7} )
inherit autotools eutils 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="http://protobuf.googlecode.com/files/${P}.tar.bz2"
LICENSE="Apache-2.0"
SLOT="0/8" # subslot = soname major version
KEYWORDS="~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~x86 ~amd64-linux ~arm-linux ~x64-macos ~x86-linux"
IUSE="emacs examples java python static-libs vim-syntax"
DEPEND="java? ( >=virtual/jdk-1.5 )
emacs? ( virtual/emacs )"
RDEPEND="java? ( >=virtual/jre-1.5 )
emacs? ( virtual/emacs )"
src_prepare() {
epatch "${FILESDIR}"/${PN}-2.3.0-asneeded-2.patch
eautoreconf
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] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/protobuf: ChangeLog protobuf-2.5.0.ebuild
@ 2013-06-29 20:36 Tim Harder (radhermit)
0 siblings, 0 replies; 4+ messages in thread
From: Tim Harder (radhermit) @ 2013-06-29 20:36 UTC (permalink / raw
To: gentoo-commits
radhermit 13/06/29 20:36:06
Modified: ChangeLog protobuf-2.5.0.ebuild
Log:
Make python deps optional (bug #475242 by Diego Elio Pettenò).
(Portage version: 2.2.0_alpha184/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Revision Changes Path
1.49 dev-libs/protobuf/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/protobuf/ChangeLog?rev=1.49&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/protobuf/ChangeLog?rev=1.49&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/protobuf/ChangeLog?r1=1.48&r2=1.49
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/protobuf/ChangeLog,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- ChangeLog 29 Jun 2013 19:40:40 -0000 1.48
+++ ChangeLog 29 Jun 2013 20:36:06 -0000 1.49
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/protobuf
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/protobuf/ChangeLog,v 1.48 2013/06/29 19:40:40 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/protobuf/ChangeLog,v 1.49 2013/06/29 20:36:06 radhermit Exp $
+
+ 29 Jun 2013; Tim Harder <radhermit@gentoo.org> protobuf-2.5.0.ebuild:
+ Make python deps optional (bug #475242 by Diego Elio Pettenò).
29 Jun 2013; Agostino Sarubbo <ago@gentoo.org> protobuf-2.4.1.ebuild:
Stable for ppc64, wrt bug #474922
1.3 dev-libs/protobuf/protobuf-2.5.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/protobuf/protobuf-2.5.0.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/protobuf/protobuf-2.5.0.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/protobuf/protobuf-2.5.0.ebuild?r1=1.2&r2=1.3
Index: protobuf-2.5.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/protobuf/protobuf-2.5.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- protobuf-2.5.0.ebuild 15 Jun 2013 11:26:56 -0000 1.2
+++ protobuf-2.5.0.ebuild 29 Jun 2013 20:36:06 -0000 1.3
@@ -1,10 +1,11 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/protobuf/protobuf-2.5.0.ebuild,v 1.2 2013/06/15 11:26:56 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/protobuf/protobuf-2.5.0.ebuild,v 1.3 2013/06/29 20:36:06 radhermit Exp $
EAPI=5
JAVA_PKG_IUSE="source"
PYTHON_COMPAT=( python{2_5,2_6,2_7} )
+DISTUTILS_OPTIONAL=1
inherit autotools eutils distutils-r1 java-pkg-opt-2 elisp-common
@@ -17,10 +18,12 @@
KEYWORDS="~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~x86 ~amd64-linux ~arm-linux ~x86-linux ~x64-macos x86-macos"
IUSE="emacs examples java python static-libs vim-syntax"
-DEPEND="java? ( >=virtual/jdk-1.5 )
- emacs? ( virtual/emacs )"
-RDEPEND="java? ( >=virtual/jre-1.5 )
- emacs? ( virtual/emacs )"
+CDEPEND="emacs? ( virtual/emacs )
+ python? ( ${PYTHON_DEPS} )"
+DEPEND="${CDEPEND}
+ java? ( >=virtual/jdk-1.5 )"
+RDEPEND="${CDEPEND}
+ java? ( >=virtual/jre-1.5 )"
src_prepare() {
if [[ ${CHOST} != *-darwin* ]] ; then
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/protobuf: ChangeLog protobuf-2.5.0.ebuild
@ 2013-09-06 18:03 Tim Harder (radhermit)
0 siblings, 0 replies; 4+ messages in thread
From: Tim Harder (radhermit) @ 2013-09-06 18:03 UTC (permalink / raw
To: gentoo-commits
radhermit 13/09/06 18:03:17
Modified: ChangeLog protobuf-2.5.0.ebuild
Log:
Add missing setuptools dep for python support (bug #479678 by hasufell).
(Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Revision Changes Path
1.53 dev-libs/protobuf/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/protobuf/ChangeLog?rev=1.53&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/protobuf/ChangeLog?rev=1.53&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/protobuf/ChangeLog?r1=1.52&r2=1.53
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/protobuf/ChangeLog,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -r1.52 -r1.53
--- ChangeLog 5 Sep 2013 18:29:53 -0000 1.52
+++ ChangeLog 6 Sep 2013 18:03:17 -0000 1.53
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/protobuf
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/protobuf/ChangeLog,v 1.52 2013/09/05 18:29:53 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/protobuf/ChangeLog,v 1.53 2013/09/06 18:03:17 radhermit Exp $
+
+ 06 Sep 2013; Tim Harder <radhermit@gentoo.org> protobuf-2.5.0.ebuild:
+ Add missing setuptools dep for python support (bug #479678 by hasufell).
05 Sep 2013; Michał Górny <mgorny@gentoo.org> protobuf-2.5.0.ebuild:
Clean up PYTHON_COMPAT from old implementations.
1.5 dev-libs/protobuf/protobuf-2.5.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/protobuf/protobuf-2.5.0.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/protobuf/protobuf-2.5.0.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/protobuf/protobuf-2.5.0.ebuild?r1=1.4&r2=1.5
Index: protobuf-2.5.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/protobuf/protobuf-2.5.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- protobuf-2.5.0.ebuild 5 Sep 2013 18:29:53 -0000 1.4
+++ protobuf-2.5.0.ebuild 6 Sep 2013 18:03:17 -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/dev-libs/protobuf/protobuf-2.5.0.ebuild,v 1.4 2013/09/05 18:29:53 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/protobuf/protobuf-2.5.0.ebuild,v 1.5 2013/09/06 18:03:17 radhermit Exp $
EAPI=5
JAVA_PKG_IUSE="source"
@@ -21,7 +21,8 @@
CDEPEND="emacs? ( virtual/emacs )
python? ( ${PYTHON_DEPS} )"
DEPEND="${CDEPEND}
- java? ( >=virtual/jdk-1.5 )"
+ java? ( >=virtual/jdk-1.5 )
+ python? ( dev-python/setuptools[${PYTHON_USEDEP}] )"
RDEPEND="${CDEPEND}
java? ( >=virtual/jre-1.5 )"
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/protobuf: ChangeLog protobuf-2.5.0.ebuild
@ 2014-01-30 23:14 Markus Meier (maekke)
0 siblings, 0 replies; 4+ messages in thread
From: Markus Meier (maekke) @ 2014-01-30 23:14 UTC (permalink / raw
To: gentoo-commits
maekke 14/01/30 23:14:01
Modified: ChangeLog protobuf-2.5.0.ebuild
Log:
arm stable, bug #496842
(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.59 dev-libs/protobuf/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/protobuf/ChangeLog?rev=1.59&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/protobuf/ChangeLog?rev=1.59&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/protobuf/ChangeLog?r1=1.58&r2=1.59
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/protobuf/ChangeLog,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -r1.58 -r1.59
--- ChangeLog 20 Jan 2014 15:57:06 -0000 1.58
+++ ChangeLog 30 Jan 2014 23:14:01 -0000 1.59
@@ -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.58 2014/01/20 15:57:06 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/protobuf/ChangeLog,v 1.59 2014/01/30 23:14:01 maekke Exp $
+
+ 30 Jan 2014; Markus Meier <maekke@gentoo.org> protobuf-2.5.0.ebuild:
+ arm stable, bug #496842
20 Jan 2014; Agostino Sarubbo <ago@gentoo.org> protobuf-2.5.0.ebuild:
Stable for ppc, wrt bug #496842
1.11 dev-libs/protobuf/protobuf-2.5.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/protobuf/protobuf-2.5.0.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/protobuf/protobuf-2.5.0.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/protobuf/protobuf-2.5.0.ebuild?r1=1.10&r2=1.11
Index: protobuf-2.5.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/protobuf/protobuf-2.5.0.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- protobuf-2.5.0.ebuild 20 Jan 2014 15:57:06 -0000 1.10
+++ protobuf-2.5.0.ebuild 30 Jan 2014 23:14:01 -0000 1.11
@@ -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.5.0.ebuild,v 1.10 2014/01/20 15:57:06 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/protobuf/protobuf-2.5.0.ebuild,v 1.11 2014/01/30 23:14:01 maekke Exp $
EAPI=5
JAVA_PKG_IUSE="source"
@@ -15,7 +15,7 @@
LICENSE="Apache-2.0"
SLOT="0/8" # subslot = soname major version
-KEYWORDS="amd64 ~arm ~ia64 ~mips ppc ppc64 x86 ~amd64-linux ~arm-linux ~x86-linux ~x64-macos x86-macos"
+KEYWORDS="amd64 arm ~ia64 ~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] 4+ messages in thread
end of thread, other threads:[~2014-01-30 23:14 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-30 23:14 [gentoo-commits] gentoo-x86 commit in dev-libs/protobuf: ChangeLog protobuf-2.5.0.ebuild Markus Meier (maekke)
-- strict thread matches above, loose matches on Subject: below --
2013-09-06 18:03 Tim Harder (radhermit)
2013-06-29 20:36 Tim Harder (radhermit)
2013-03-05 5:21 Tim Harder (radhermit)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox