2010-07-15 12:34:23 +00:00
|
|
|
|
# Build -python subpackage
|
|
|
|
|
%bcond_without python
|
|
|
|
|
# Build -java subpackage
|
|
|
|
|
%bcond_without java
|
|
|
|
|
|
2017-01-28 03:34:05 +00:00
|
|
|
|
#global rcver rc2
|
2017-01-24 15:53:18 +00:00
|
|
|
|
|
2008-11-25 18:48:07 +00:00
|
|
|
|
Summary: Protocol Buffers - Google's data interchange format
|
|
|
|
|
Name: protobuf
|
2020-06-19 15:32:31 +00:00
|
|
|
|
Version: 3.12.3
|
2020-08-01 07:14:11 +00:00
|
|
|
|
Release: 4%{?dist}
|
2008-11-25 18:48:07 +00:00
|
|
|
|
License: BSD
|
2018-11-20 17:04:27 +00:00
|
|
|
|
URL: https://github.com/protocolbuffers/protobuf
|
|
|
|
|
Source: https://github.com/protocolbuffers/protobuf/archive/v%{version}%{?rcver}/%{name}-%{version}%{?rcver}-all.tar.gz
|
2009-09-18 12:56:32 +00:00
|
|
|
|
Source1: ftdetect-proto.vim
|
2013-01-20 20:02:08 +00:00
|
|
|
|
Source2: protobuf-init.el
|
2019-12-18 11:59:17 +00:00
|
|
|
|
# For tests (using exactly the same version as the release)
|
|
|
|
|
Source3: https://github.com/google/googletest/archive/5ec7f0c4a113e2f18ac2c6cc7df51ad6afc24081.zip
|
2016-11-04 17:24:28 +00:00
|
|
|
|
|
|
|
|
|
BuildRequires: autoconf
|
|
|
|
|
BuildRequires: automake
|
2019-05-09 14:04:06 +00:00
|
|
|
|
BuildRequires: emacs
|
2016-11-04 17:24:28 +00:00
|
|
|
|
BuildRequires: gcc-c++
|
|
|
|
|
BuildRequires: libtool
|
|
|
|
|
BuildRequires: pkgconfig
|
|
|
|
|
BuildRequires: zlib-devel
|
2008-11-25 18:48:07 +00:00
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
|
Protocol Buffers are a way of encoding structured data in an efficient
|
|
|
|
|
yet extensible format. Google uses Protocol Buffers for almost all of
|
|
|
|
|
its internal RPC protocols and file formats.
|
|
|
|
|
|
|
|
|
|
Protocol buffers are a flexible, efficient, automated mechanism for
|
|
|
|
|
serializing structured data – think XML, but smaller, faster, and
|
|
|
|
|
simpler. You define how you want your data to be structured once, then
|
|
|
|
|
you can use special generated source code to easily write and read
|
|
|
|
|
your structured data to and from a variety of data streams and using a
|
|
|
|
|
variety of languages. You can even update your data structure without
|
|
|
|
|
breaking deployed programs that are compiled against the "old" format.
|
|
|
|
|
|
|
|
|
|
%package compiler
|
2016-11-04 17:24:28 +00:00
|
|
|
|
Summary: Protocol Buffers compiler
|
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
2019-05-09 14:04:06 +00:00
|
|
|
|
Obsoletes: protobuf-emacs < 3.6.1-4
|
|
|
|
|
Obsoletes: protobuf-emacs-el < 3.6.1-4
|
2019-12-18 11:59:17 +00:00
|
|
|
|
Requires: emacs-filesystem >= %{_emacs_version}
|
2008-11-25 18:48:07 +00:00
|
|
|
|
|
|
|
|
|
%description compiler
|
|
|
|
|
This package contains Protocol Buffers compiler for all programming
|
|
|
|
|
languages
|
|
|
|
|
|
|
|
|
|
%package devel
|
2016-11-04 17:24:28 +00:00
|
|
|
|
Summary: Protocol Buffers C++ headers and libraries
|
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
|
Requires: %{name}-compiler = %{version}-%{release}
|
|
|
|
|
Requires: zlib-devel
|
|
|
|
|
Requires: pkgconfig
|
2008-11-25 18:48:07 +00:00
|
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
|
This package contains Protocol Buffers compiler for all languages and
|
|
|
|
|
C++ headers and libraries
|
|
|
|
|
|
|
|
|
|
%package static
|
2016-11-04 17:24:28 +00:00
|
|
|
|
Summary: Static development files for %{name}
|
|
|
|
|
Requires: %{name}-devel = %{version}-%{release}
|
2008-11-25 18:48:07 +00:00
|
|
|
|
|
|
|
|
|
%description static
|
|
|
|
|
Static libraries for Protocol Buffers
|
|
|
|
|
|
2009-09-18 12:56:32 +00:00
|
|
|
|
%package lite
|
2016-11-04 17:24:28 +00:00
|
|
|
|
Summary: Protocol Buffers LITE_RUNTIME libraries
|
2009-09-18 12:56:32 +00:00
|
|
|
|
|
|
|
|
|
%description lite
|
|
|
|
|
Protocol Buffers built with optimize_for = LITE_RUNTIME.
|
|
|
|
|
|
|
|
|
|
The "optimize_for = LITE_RUNTIME" option causes the compiler to generate code
|
|
|
|
|
which only depends libprotobuf-lite, which is much smaller than libprotobuf but
|
|
|
|
|
lacks descriptors, reflection, and some other features.
|
|
|
|
|
|
|
|
|
|
%package lite-devel
|
2016-11-04 17:24:28 +00:00
|
|
|
|
Summary: Protocol Buffers LITE_RUNTIME development libraries
|
|
|
|
|
Requires: %{name}-devel = %{version}-%{release}
|
|
|
|
|
Requires: %{name}-lite = %{version}-%{release}
|
2009-09-18 12:56:32 +00:00
|
|
|
|
|
|
|
|
|
%description lite-devel
|
2012-03-19 13:16:06 +00:00
|
|
|
|
This package contains development libraries built with
|
2009-09-18 12:56:32 +00:00
|
|
|
|
optimize_for = LITE_RUNTIME.
|
|
|
|
|
|
|
|
|
|
The "optimize_for = LITE_RUNTIME" option causes the compiler to generate code
|
|
|
|
|
which only depends libprotobuf-lite, which is much smaller than libprotobuf but
|
|
|
|
|
lacks descriptors, reflection, and some other features.
|
|
|
|
|
|
|
|
|
|
%package lite-static
|
2016-11-04 17:24:28 +00:00
|
|
|
|
Summary: Static development files for %{name}-lite
|
|
|
|
|
Requires: %{name}-devel = %{version}-%{release}
|
2009-09-18 12:56:32 +00:00
|
|
|
|
|
|
|
|
|
%description lite-static
|
2012-03-19 13:16:06 +00:00
|
|
|
|
This package contains static development libraries built with
|
2009-09-18 12:56:32 +00:00
|
|
|
|
optimize_for = LITE_RUNTIME.
|
|
|
|
|
|
|
|
|
|
The "optimize_for = LITE_RUNTIME" option causes the compiler to generate code
|
|
|
|
|
which only depends libprotobuf-lite, which is much smaller than libprotobuf but
|
|
|
|
|
lacks descriptors, reflection, and some other features.
|
|
|
|
|
|
2010-07-15 12:34:23 +00:00
|
|
|
|
%if %{with python}
|
2016-11-18 20:54:49 +00:00
|
|
|
|
%package -n python%{python3_pkgversion}-%{name}
|
|
|
|
|
Summary: Python 3 bindings for Google Protocol Buffers
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
BuildRequires: python%{python3_pkgversion}-devel
|
|
|
|
|
BuildRequires: python%{python3_pkgversion}-setuptools
|
|
|
|
|
Requires: python%{python3_pkgversion}-six >= 1.9
|
|
|
|
|
Conflicts: %{name}-compiler > %{version}
|
|
|
|
|
Conflicts: %{name}-compiler < %{version}
|
|
|
|
|
Provides: %{name}-python3 = %{version}-%{release}
|
|
|
|
|
%{?python_provide:%python_provide python%{python3_pkgversion}-%{name}}
|
|
|
|
|
|
|
|
|
|
%description -n python%{python3_pkgversion}-%{name}
|
|
|
|
|
This package contains Python 3 libraries for Google Protocol Buffers
|
2008-11-25 18:48:07 +00:00
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%package vim
|
2016-11-04 17:24:28 +00:00
|
|
|
|
Summary: Vim syntax highlighting for Google Protocol Buffers descriptions
|
2016-11-04 17:43:15 +00:00
|
|
|
|
BuildArch: noarch
|
2016-11-04 17:24:28 +00:00
|
|
|
|
Requires: vim-enhanced
|
2008-11-25 18:48:07 +00:00
|
|
|
|
|
|
|
|
|
%description vim
|
|
|
|
|
This package contains syntax highlighting for Google Protocol Buffers
|
|
|
|
|
descriptions in Vim editor
|
|
|
|
|
|
2013-01-20 20:02:08 +00:00
|
|
|
|
|
2010-07-15 12:34:23 +00:00
|
|
|
|
%if %{with java}
|
2008-11-25 18:48:07 +00:00
|
|
|
|
%package java
|
2016-11-04 17:24:28 +00:00
|
|
|
|
Summary: Java Protocol Buffers runtime library
|
2016-11-04 17:43:15 +00:00
|
|
|
|
BuildArch: noarch
|
2016-11-04 17:24:28 +00:00
|
|
|
|
BuildRequires: maven-local
|
|
|
|
|
BuildRequires: mvn(com.google.code.gson:gson)
|
|
|
|
|
BuildRequires: mvn(com.google.guava:guava)
|
|
|
|
|
BuildRequires: mvn(junit:junit)
|
|
|
|
|
BuildRequires: mvn(org.apache.felix:maven-bundle-plugin)
|
|
|
|
|
BuildRequires: mvn(org.apache.maven.plugins:maven-antrun-plugin)
|
|
|
|
|
BuildRequires: mvn(org.apache.maven.plugins:maven-source-plugin)
|
|
|
|
|
BuildRequires: mvn(org.codehaus.mojo:build-helper-maven-plugin)
|
|
|
|
|
BuildRequires: mvn(org.easymock:easymock)
|
|
|
|
|
Conflicts: %{name}-compiler > %{version}
|
|
|
|
|
Conflicts: %{name}-compiler < %{version}
|
2018-11-20 17:04:27 +00:00
|
|
|
|
Obsoletes: %{name}-javanano < 3.6.0
|
2008-11-25 18:48:07 +00:00
|
|
|
|
|
|
|
|
|
%description java
|
|
|
|
|
This package contains Java Protocol Buffers runtime library.
|
|
|
|
|
|
2019-12-18 11:59:17 +00:00
|
|
|
|
%package javalite
|
|
|
|
|
Summary: Java Protocol Buffers lite runtime library
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
|
|
%description javalite
|
|
|
|
|
This package contains Java Protocol Buffers lite runtime library.
|
|
|
|
|
|
2016-11-04 17:24:28 +00:00
|
|
|
|
%package java-util
|
|
|
|
|
Summary: Utilities for Protocol Buffers
|
2016-11-04 17:43:15 +00:00
|
|
|
|
BuildArch: noarch
|
2016-11-04 17:24:28 +00:00
|
|
|
|
|
|
|
|
|
%description java-util
|
|
|
|
|
Utilities to work with protos. It contains JSON support
|
|
|
|
|
as well as utilities to work with proto3 well-known types.
|
|
|
|
|
|
2008-11-25 18:48:07 +00:00
|
|
|
|
%package javadoc
|
2016-11-04 17:24:28 +00:00
|
|
|
|
Summary: Javadoc for %{name}-java
|
2016-11-04 17:43:15 +00:00
|
|
|
|
BuildArch: noarch
|
2008-11-25 18:48:07 +00:00
|
|
|
|
|
|
|
|
|
%description javadoc
|
|
|
|
|
This package contains the API documentation for %{name}-java.
|
|
|
|
|
|
2016-11-04 17:24:28 +00:00
|
|
|
|
%package parent
|
|
|
|
|
Summary: Protocol Buffer Parent POM
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
|
|
%description parent
|
|
|
|
|
Protocol Buffer Parent POM.
|
|
|
|
|
|
2019-12-18 11:59:17 +00:00
|
|
|
|
%package bom
|
|
|
|
|
Summary: Protocol Buffer BOM POM
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
|
|
%description bom
|
|
|
|
|
Protocol Buffer BOM POM.
|
|
|
|
|
|
2008-11-25 18:48:07 +00:00
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%prep
|
2019-02-28 14:58:58 +00:00
|
|
|
|
%setup -q -n %{name}-%{version}%{?rcver} -a 3
|
2017-11-28 20:01:53 +00:00
|
|
|
|
%autopatch -p1
|
2019-12-18 11:59:17 +00:00
|
|
|
|
mv googletest-5ec7f0c4a113e2f18ac2c6cc7df51ad6afc24081/* third_party/googletest/
|
2016-11-18 20:54:49 +00:00
|
|
|
|
find -name \*.cc -o -name \*.h | xargs chmod -x
|
2008-11-25 18:48:07 +00:00
|
|
|
|
chmod 644 examples/*
|
2010-07-15 12:34:23 +00:00
|
|
|
|
%if %{with java}
|
2019-12-18 11:59:17 +00:00
|
|
|
|
%pom_remove_dep org.easymock:easymockclassextension java/pom.xml java/core/pom.xml java/lite/pom.xml java/util/pom.xml
|
|
|
|
|
%pom_remove_dep com.google.truth:truth java/pom.xml java/core/pom.xml java/lite/pom.xml java/util/pom.xml
|
|
|
|
|
%pom_remove_dep com.google.errorprone:error_prone_annotations java/util/pom.xml
|
|
|
|
|
%pom_remove_dep com.google.guava:guava-testlib java/pom.xml java/util/pom.xml
|
2016-11-04 17:24:28 +00:00
|
|
|
|
# These use easymockclassextension
|
|
|
|
|
rm java/core/src/test/java/com/google/protobuf/ServiceTest.java
|
2019-12-18 11:59:17 +00:00
|
|
|
|
# These use truth or error_prone_annotations or guava-testlib
|
|
|
|
|
rm java/core/src/test/java/com/google/protobuf/LiteralByteStringTest.java
|
|
|
|
|
rm java/core/src/test/java/com/google/protobuf/BoundedByteStringTest.java
|
|
|
|
|
rm java/core/src/test/java/com/google/protobuf/RopeByteStringTest.java
|
|
|
|
|
rm java/core/src/test/java/com/google/protobuf/RopeByteStringSubstringTest.java
|
|
|
|
|
rm -r java/util/src/test/java/com/google/protobuf/util
|
|
|
|
|
rm -r java/util/src/main/java/com/google/protobuf/util
|
2016-11-04 17:24:28 +00:00
|
|
|
|
|
2017-06-27 19:27:33 +00:00
|
|
|
|
# Make OSGi dependency on sun.misc package optional
|
|
|
|
|
%pom_xpath_inject "pom:configuration/pom:instructions" "<Import-Package>sun.misc;resolution:=optional,*</Import-Package>" java/core
|
|
|
|
|
|
2016-11-04 17:24:28 +00:00
|
|
|
|
# Backward compatibility symlink
|
2016-11-18 19:08:27 +00:00
|
|
|
|
%mvn_file :protobuf-java:jar: %{name}/%{name}-java %{name}
|
2016-11-04 17:24:28 +00:00
|
|
|
|
|
2016-11-19 17:25:59 +00:00
|
|
|
|
# This test is incredibly slow on arm
|
|
|
|
|
# https://github.com/google/protobuf/issues/2389
|
2019-12-18 11:59:17 +00:00
|
|
|
|
%ifarch %{arm} s390x
|
2016-11-19 17:25:59 +00:00
|
|
|
|
mv java/core/src/test/java/com/google/protobuf/IsValidUtf8Test.java \
|
|
|
|
|
java/core/src/test/java/com/google/protobuf/IsValidUtf8Test.java.slow
|
2019-12-18 11:59:17 +00:00
|
|
|
|
mv java/core/src/test/java/com/google/protobuf/DecodeUtf8Test.java \
|
|
|
|
|
java/core/src/test/java/com/google/protobuf/DecodeUtf8Test.java.slow
|
2016-11-19 17:25:59 +00:00
|
|
|
|
%endif
|
2008-11-25 18:48:07 +00:00
|
|
|
|
%endif
|
|
|
|
|
|
2016-11-04 17:24:28 +00:00
|
|
|
|
rm -f src/solaris/libstdc++.la
|
|
|
|
|
|
2008-11-25 18:48:07 +00:00
|
|
|
|
%build
|
2009-09-18 12:56:32 +00:00
|
|
|
|
iconv -f iso8859-1 -t utf-8 CONTRIBUTORS.txt > CONTRIBUTORS.txt.utf8
|
|
|
|
|
mv CONTRIBUTORS.txt.utf8 CONTRIBUTORS.txt
|
2009-09-30 13:15:05 +00:00
|
|
|
|
export PTHREAD_LIBS="-lpthread"
|
2008-11-25 18:48:07 +00:00
|
|
|
|
./autogen.sh
|
|
|
|
|
%configure
|
|
|
|
|
|
2020-05-27 11:36:51 +00:00
|
|
|
|
# -Wno-error=type-limits:
|
|
|
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=1838470
|
|
|
|
|
# https://github.com/protocolbuffers/protobuf/issues/7514
|
|
|
|
|
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95148
|
|
|
|
|
# (also set in %%check)
|
|
|
|
|
%make_build CXXFLAGS="%{build_cxxflags} -Wno-error=type-limits"
|
2008-11-25 18:48:07 +00:00
|
|
|
|
|
2010-07-15 12:34:23 +00:00
|
|
|
|
%if %{with python}
|
2008-11-25 18:48:07 +00:00
|
|
|
|
pushd python
|
2016-11-18 20:54:49 +00:00
|
|
|
|
%py3_build
|
2008-11-25 18:48:07 +00:00
|
|
|
|
popd
|
|
|
|
|
%endif
|
|
|
|
|
|
2010-07-15 12:34:23 +00:00
|
|
|
|
%if %{with java}
|
2019-12-18 11:59:17 +00:00
|
|
|
|
%ifarch s390x %{arm}
|
|
|
|
|
export MAVEN_OPTS=-Xmx1024m
|
|
|
|
|
%endif
|
2016-11-18 19:08:27 +00:00
|
|
|
|
%mvn_build -s -- -f java/pom.xml
|
2008-11-25 18:48:07 +00:00
|
|
|
|
%endif
|
|
|
|
|
|
2019-05-09 14:04:06 +00:00
|
|
|
|
%{_emacs_bytecompile} editors/protobuf-mode.el
|
|
|
|
|
|
2013-01-20 20:02:08 +00:00
|
|
|
|
|
2008-11-25 18:48:07 +00:00
|
|
|
|
%check
|
2019-02-28 14:58:58 +00:00
|
|
|
|
# Java tests fail on s390x
|
|
|
|
|
%ifarch s390x
|
|
|
|
|
fail=0
|
|
|
|
|
%else
|
|
|
|
|
fail=1
|
|
|
|
|
%endif
|
2020-05-27 11:36:51 +00:00
|
|
|
|
%make_build check CXXFLAGS="%{build_cxxflags} -Wno-error=type-limits" || exit $fail
|
2008-11-25 18:48:07 +00:00
|
|
|
|
|
2019-05-09 14:04:06 +00:00
|
|
|
|
|
2008-11-25 18:48:07 +00:00
|
|
|
|
%install
|
2019-05-09 14:04:06 +00:00
|
|
|
|
%make_install %{?_smp_mflags} STRIPBINARIES=no INSTALL="%{__install} -p" CPPROG="cp -p"
|
2008-11-25 18:48:07 +00:00
|
|
|
|
find %{buildroot} -type f -name "*.la" -exec rm -f {} \;
|
2009-09-18 12:56:32 +00:00
|
|
|
|
|
2010-07-15 12:34:23 +00:00
|
|
|
|
%if %{with python}
|
2008-11-25 18:48:07 +00:00
|
|
|
|
pushd python
|
2016-11-18 20:54:49 +00:00
|
|
|
|
#python ./setup.py install --root=%{buildroot} --single-version-externally-managed --record=INSTALLED_FILES --optimize=1
|
|
|
|
|
%py3_install
|
2019-11-19 15:05:15 +00:00
|
|
|
|
find %{buildroot}%{python3_sitelib} -name \*.py |
|
2016-11-18 20:54:49 +00:00
|
|
|
|
xargs sed -i -e '1{\@^#!@d}'
|
2008-11-25 18:48:07 +00:00
|
|
|
|
popd
|
|
|
|
|
%endif
|
2009-09-18 12:56:32 +00:00
|
|
|
|
install -p -m 644 -D %{SOURCE1} %{buildroot}%{_datadir}/vim/vimfiles/ftdetect/proto.vim
|
2008-11-25 18:48:07 +00:00
|
|
|
|
install -p -m 644 -D editors/proto.vim %{buildroot}%{_datadir}/vim/vimfiles/syntax/proto.vim
|
|
|
|
|
|
2010-07-15 12:34:23 +00:00
|
|
|
|
%if %{with java}
|
2014-06-16 08:45:48 +00:00
|
|
|
|
%mvn_install
|
2008-11-25 18:48:07 +00:00
|
|
|
|
%endif
|
|
|
|
|
|
2019-05-09 14:04:06 +00:00
|
|
|
|
mkdir -p %{buildroot}%{_emacs_sitelispdir}/%{name}
|
|
|
|
|
install -p -m 0644 editors/protobuf-mode.el %{buildroot}%{_emacs_sitelispdir}/%{name}
|
|
|
|
|
install -p -m 0644 editors/protobuf-mode.elc %{buildroot}%{_emacs_sitelispdir}/%{name}
|
|
|
|
|
mkdir -p %{buildroot}%{_emacs_sitestartdir}
|
|
|
|
|
install -p -m 0644 %{SOURCE2} %{buildroot}%{_emacs_sitestartdir}
|
2013-01-20 20:02:08 +00:00
|
|
|
|
|
2018-02-02 09:50:52 +00:00
|
|
|
|
%ldconfig_scriptlets
|
|
|
|
|
%ldconfig_scriptlets lite
|
|
|
|
|
%ldconfig_scriptlets compiler
|
2008-11-25 18:48:07 +00:00
|
|
|
|
|
|
|
|
|
%files
|
2015-04-22 16:13:02 +00:00
|
|
|
|
%doc CHANGES.txt CONTRIBUTORS.txt README.md
|
|
|
|
|
%license LICENSE
|
2020-06-19 15:32:31 +00:00
|
|
|
|
%{_libdir}/libprotobuf.so.23*
|
2008-11-25 18:48:07 +00:00
|
|
|
|
|
|
|
|
|
%files compiler
|
2015-04-22 16:13:02 +00:00
|
|
|
|
%doc README.md
|
|
|
|
|
%license LICENSE
|
2019-05-09 14:04:06 +00:00
|
|
|
|
%{_bindir}/protoc
|
2020-06-19 15:32:31 +00:00
|
|
|
|
%{_libdir}/libprotoc.so.23*
|
2019-05-09 14:04:06 +00:00
|
|
|
|
%{_emacs_sitelispdir}/%{name}/
|
|
|
|
|
%{_emacs_sitestartdir}/protobuf-init.el
|
2008-11-25 18:48:07 +00:00
|
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
|
%dir %{_includedir}/google
|
|
|
|
|
%{_includedir}/google/protobuf/
|
|
|
|
|
%{_libdir}/libprotobuf.so
|
|
|
|
|
%{_libdir}/libprotoc.so
|
|
|
|
|
%{_libdir}/pkgconfig/protobuf.pc
|
2017-11-23 18:02:48 +00:00
|
|
|
|
%doc examples/add_person.cc examples/addressbook.proto examples/list_people.cc examples/Makefile examples/README.md
|
2008-11-25 18:48:07 +00:00
|
|
|
|
|
|
|
|
|
%files static
|
|
|
|
|
%{_libdir}/libprotobuf.a
|
|
|
|
|
%{_libdir}/libprotoc.a
|
|
|
|
|
|
2009-09-18 12:56:32 +00:00
|
|
|
|
%files lite
|
2020-06-19 15:32:31 +00:00
|
|
|
|
%{_libdir}/libprotobuf-lite.so.23*
|
2009-09-18 12:56:32 +00:00
|
|
|
|
|
|
|
|
|
%files lite-devel
|
|
|
|
|
%{_libdir}/libprotobuf-lite.so
|
|
|
|
|
%{_libdir}/pkgconfig/protobuf-lite.pc
|
|
|
|
|
|
|
|
|
|
%files lite-static
|
|
|
|
|
%{_libdir}/libprotobuf-lite.a
|
|
|
|
|
|
2010-07-15 12:34:23 +00:00
|
|
|
|
%if %{with python}
|
2016-11-18 20:54:49 +00:00
|
|
|
|
%files -n python%{python3_pkgversion}-protobuf
|
|
|
|
|
%dir %{python3_sitelib}/google
|
|
|
|
|
%{python3_sitelib}/google/protobuf/
|
2019-11-19 15:05:15 +00:00
|
|
|
|
%{python3_sitelib}/protobuf-%{version}%{?rcver}-py3.*.egg-info/
|
|
|
|
|
%{python3_sitelib}/protobuf-%{version}%{?rcver}-py3.*-nspkg.pth
|
2016-11-18 20:54:49 +00:00
|
|
|
|
%doc python/README.md
|
|
|
|
|
%doc examples/add_person.py examples/list_people.py examples/addressbook.proto
|
2008-11-25 18:48:07 +00:00
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%files vim
|
|
|
|
|
%{_datadir}/vim/vimfiles/ftdetect/proto.vim
|
|
|
|
|
%{_datadir}/vim/vimfiles/syntax/proto.vim
|
|
|
|
|
|
2010-07-15 12:34:23 +00:00
|
|
|
|
%if %{with java}
|
2016-11-18 19:08:27 +00:00
|
|
|
|
%files java -f .mfiles-protobuf-java
|
2008-11-25 18:48:07 +00:00
|
|
|
|
%doc examples/AddPerson.java examples/ListPeople.java
|
2016-11-04 17:24:28 +00:00
|
|
|
|
%doc java/README.md
|
|
|
|
|
%license LICENSE
|
|
|
|
|
|
2016-11-18 19:08:27 +00:00
|
|
|
|
%files java-util -f .mfiles-protobuf-java-util
|
2008-11-25 18:48:07 +00:00
|
|
|
|
|
2016-11-18 19:08:27 +00:00
|
|
|
|
%files javadoc -f .mfiles-javadoc
|
2016-11-04 17:24:28 +00:00
|
|
|
|
%license LICENSE
|
|
|
|
|
|
2016-11-18 19:08:27 +00:00
|
|
|
|
%files parent -f .mfiles-protobuf-parent
|
2016-11-04 17:24:28 +00:00
|
|
|
|
%license LICENSE
|
2019-12-18 11:59:17 +00:00
|
|
|
|
|
|
|
|
|
%files bom -f .mfiles-protobuf-bom
|
|
|
|
|
%license LICENSE
|
|
|
|
|
|
|
|
|
|
%files javalite -f .mfiles-protobuf-javalite
|
|
|
|
|
%license LICENSE
|
2008-11-25 18:48:07 +00:00
|
|
|
|
%endif
|
|
|
|
|
|
2019-05-09 14:04:06 +00:00
|
|
|
|
|
2008-11-25 18:48:07 +00:00
|
|
|
|
%changelog
|
2020-08-01 07:14:11 +00:00
|
|
|
|
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.12.3-4
|
|
|
|
|
- Second attempt - Rebuilt for
|
|
|
|
|
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
|
2020-07-28 23:03:34 +00:00
|
|
|
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.12.3-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
|
2020-07-11 03:24:01 +00:00
|
|
|
|
* Sat Jul 11 2020 Jiri Vanek <jvanek@redhat.com> - 3.12.3-2
|
|
|
|
|
- Rebuilt for JDK-11, see https://fedoraproject.org/wiki/Changes/Java11
|
|
|
|
|
|
2020-06-19 15:32:31 +00:00
|
|
|
|
* Fri Jun 19 2020 Adrian Reber <adrian@lisas.de> - 3.12.3-2
|
|
|
|
|
- Update to 3.12.3
|
|
|
|
|
|
2020-05-26 00:56:53 +00:00
|
|
|
|
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 3.11.4-2
|
|
|
|
|
- Rebuilt for Python 3.9
|
|
|
|
|
|
2020-03-31 13:08:33 +00:00
|
|
|
|
* Tue Mar 31 2020 Adrian Reber <adrian@lisas.de> - 3.11.4-1
|
|
|
|
|
- Update to 3.11.4
|
|
|
|
|
|
2020-01-30 09:49:34 +00:00
|
|
|
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.11.2-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
|
2019-12-18 11:59:17 +00:00
|
|
|
|
* Wed Dec 18 2019 Adrian Reber <adrian@lisas.de> - 3.11.2-1
|
|
|
|
|
- Update to 3.11.2
|
|
|
|
|
|
2019-11-19 15:05:15 +00:00
|
|
|
|
* Tue Nov 19 2019 Miro Hrončok <mhroncok@redhat.com> - 3.6.1-9
|
|
|
|
|
- Drop python2-protobuf (#1765879)
|
|
|
|
|
|
2019-10-27 03:16:17 +00:00
|
|
|
|
* Sat Oct 26 2019 Orion Poplawski <orion@nwra.com> - 3.6.1-8
|
|
|
|
|
- Drop obsolete BR on python-google-apputils
|
|
|
|
|
|
2019-10-03 11:58:52 +00:00
|
|
|
|
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 3.6.1-7
|
|
|
|
|
- Rebuilt for Python 3.8.0rc1 (#1748018)
|
|
|
|
|
|
2019-08-19 08:22:59 +00:00
|
|
|
|
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 3.6.1-6
|
|
|
|
|
- Rebuilt for Python 3.8
|
|
|
|
|
|
2019-07-26 11:21:48 +00:00
|
|
|
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.6.1-5
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
|
2019-05-09 14:04:06 +00:00
|
|
|
|
* Wed May 8 2019 Orion Poplawski <orion@nwra.com> - 3.6.1-4
|
|
|
|
|
- Update emacs packaging to comply with guidelines
|
|
|
|
|
|
2019-02-28 14:58:58 +00:00
|
|
|
|
* Wed Feb 27 2019 Orion Poplawski <orion@nwra.com> - 3.6.1-3
|
|
|
|
|
- Update googletest to 1.8.1 to re-enable tests
|
|
|
|
|
|
2019-02-02 04:51:32 +00:00
|
|
|
|
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.6.1-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
|
2018-11-20 17:04:27 +00:00
|
|
|
|
* Tue Oct 23 2018 Felix Kaechele <heffer@fedoraproject.org> - 3.6.1-1
|
|
|
|
|
- update to 3.6.1
|
|
|
|
|
- obsolete javanano subpackage; discontinued upstream
|
|
|
|
|
|
2018-07-27 12:55:20 +00:00
|
|
|
|
* Fri Jul 27 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.5.0-8
|
|
|
|
|
- Rebuild for new binutils
|
|
|
|
|
|
2018-07-13 22:53:30 +00:00
|
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.0-7
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
|
2018-06-19 08:49:56 +00:00
|
|
|
|
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 3.5.0-6
|
|
|
|
|
- Rebuilt for Python 3.7
|
|
|
|
|
|
2018-02-21 01:29:39 +00:00
|
|
|
|
* Wed Feb 21 2018 Iryna Shcherbina <ishcherb@redhat.com> - 3.5.0-5
|
|
|
|
|
- Update Python 2 dependency declarations to new packaging standards
|
|
|
|
|
(See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
|
|
|
|
|
|
2018-02-09 08:05:34 +00:00
|
|
|
|
* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.5.0-4
|
|
|
|
|
- Escape macros in %%changelog
|
|
|
|
|
|
2018-02-09 05:48:58 +00:00
|
|
|
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.0-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
|
2018-02-02 09:50:52 +00:00
|
|
|
|
* Fri Feb 02 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.5.0-2
|
|
|
|
|
- Switch to %%ldconfig_scriptlets
|
|
|
|
|
|
2017-11-23 17:12:05 +00:00
|
|
|
|
* Thu Nov 23 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.5.0-1
|
|
|
|
|
- Update to 3.5.0
|
|
|
|
|
|
2017-11-13 08:56:54 +00:00
|
|
|
|
* Mon Nov 13 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.4.1-1
|
|
|
|
|
- Update to 3.4.1
|
|
|
|
|
|
2017-08-03 06:23:20 +00:00
|
|
|
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.1-4
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
|
2017-07-27 09:04:16 +00:00
|
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.1-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
|
2017-06-27 19:27:33 +00:00
|
|
|
|
* Tue Jun 27 2017 Mat Booth <mat.booth@redhat.com> - 3.3.1-2
|
|
|
|
|
- Make OSGi dependency on sun.misc package optional. This package is not
|
|
|
|
|
available in all execution environments and will not be available in Java 9.
|
|
|
|
|
|
2017-06-12 21:50:49 +00:00
|
|
|
|
* Mon Jun 12 2017 Orion Poplawski <orion@cora.nwra.com> - 3.3.1-1
|
|
|
|
|
- Update to 3.3.1
|
|
|
|
|
|
2017-05-15 20:17:32 +00:00
|
|
|
|
* Mon May 15 2017 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.0-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_27_Mass_Rebuild
|
|
|
|
|
|
2017-02-11 07:52:23 +00:00
|
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.0-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
|
2017-01-28 03:34:05 +00:00
|
|
|
|
* Fri Jan 27 2017 Orion Poplawski <orion@cora.nwra.com> - 3.2.0-1
|
|
|
|
|
- Update to 3.2.0 final
|
|
|
|
|
|
2017-01-24 15:53:18 +00:00
|
|
|
|
* Mon Jan 23 2017 Orion Poplawski <orion@cora.nwra.com> - 3.2.0-0.1.rc2
|
|
|
|
|
- Update to 3.2.0rc2
|
|
|
|
|
|
2016-12-19 17:20:36 +00:00
|
|
|
|
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 3.1.0-6
|
|
|
|
|
- Rebuild for Python 3.6
|
|
|
|
|
|
2016-11-19 17:25:59 +00:00
|
|
|
|
* Sat Nov 19 2016 Orion Poplawski <orion@cora.nwra.com> - 3.1.0-5
|
|
|
|
|
- Disable slow test on arm
|
|
|
|
|
|
2016-11-18 20:54:49 +00:00
|
|
|
|
* Fri Nov 18 2016 Orion Poplawski <orion@cora.nwra.com> - 3.1.0-4
|
|
|
|
|
- Ship python 3 module
|
|
|
|
|
|
2016-11-18 19:08:27 +00:00
|
|
|
|
* Fri Nov 18 2016 Orion Poplawski <orion@cora.nwra.com> - 3.1.0-3
|
|
|
|
|
- Fix jar file compat symlink
|
|
|
|
|
|
2016-11-18 16:02:40 +00:00
|
|
|
|
* Fri Nov 18 2016 Orion Poplawski <orion@cora.nwra.com> - 3.1.0-2
|
|
|
|
|
- Add needed python requirement
|
|
|
|
|
|
2016-11-04 17:43:15 +00:00
|
|
|
|
* Fri Nov 04 2016 Orion Poplawski <orion@cora.nwra.com> - 3.1.0-2
|
|
|
|
|
- Make various sub-packages noarch
|
|
|
|
|
|
2016-11-04 17:24:28 +00:00
|
|
|
|
* Fri Nov 04 2016 gil cattaneo <puntogil@libero.it> 3.1.0-2
|
|
|
|
|
- enable javanano
|
|
|
|
|
- minor changes to adapt to current guidelines
|
|
|
|
|
|
|
|
|
|
* Fri Nov 04 2016 Orion Poplawski <orion@cora.nwra.com> - 3.1.0-1
|
|
|
|
|
- Update to 3.1.0
|
|
|
|
|
|
2016-07-19 08:22:18 +00:00
|
|
|
|
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.1-5
|
|
|
|
|
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
|
|
|
|
|
2016-02-04 18:29:49 +00:00
|
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.1-4
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
|
2016-01-20 23:45:23 +00:00
|
|
|
|
* Wed Jan 20 2016 Orion Poplawski <orion@cora.nwra.com> - 2.6.1-3
|
|
|
|
|
- Tests no longer segfaulting on arm
|
|
|
|
|
|
2015-06-18 17:51:27 +00:00
|
|
|
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.1-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
|
2015-04-22 16:13:02 +00:00
|
|
|
|
* Mon Apr 6 2015 Orion Poplawski <orion@cora.nwra.com> - 2.6.1-1
|
|
|
|
|
- Update to 2.6.1
|
|
|
|
|
- New URL
|
|
|
|
|
- Cleanup spec
|
|
|
|
|
- Add patch to fix emacs compilation with emacs 24.4
|
|
|
|
|
- Drop java-fixes patch, use pom macros instead
|
|
|
|
|
- Add BR on python-google-apputils and mvn(org.easymock:easymock)
|
|
|
|
|
- Run make check
|
|
|
|
|
- Make -static require -devel (bug #1067475)
|
|
|
|
|
|
2015-03-26 21:17:57 +00:00
|
|
|
|
* Thu Mar 26 2015 Kalev Lember <kalevlember@gmail.com> - 2.6.0-4
|
|
|
|
|
- Rebuilt for GCC 5 ABI change
|
|
|
|
|
|
2015-02-21 21:26:54 +00:00
|
|
|
|
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 2.6.0-3
|
|
|
|
|
- Rebuilt for Fedora 23 Change
|
|
|
|
|
https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
|
|
|
|
|
|
2014-12-17 13:16:55 +00:00
|
|
|
|
* Wed Dec 17 2014 Peter Lemenkov <lemenkov@gmail.com> - 2.6.0-2
|
|
|
|
|
- Added missing Requires zlib-devel to protobuf-devel (see rhbz #1173343). See
|
|
|
|
|
also rhbz #732087.
|
|
|
|
|
|
2014-11-06 18:20:38 +00:00
|
|
|
|
* Sun Oct 19 2014 Conrad Meyer <cemeyer@uw.edu> - 2.6.0-1
|
2014-11-06 18:22:51 +00:00
|
|
|
|
- Bump to upstream release 2.6.0 (rh# 1154474).
|
2014-11-06 18:20:38 +00:00
|
|
|
|
- Rebase 'java fixes' patch on 2.6.0 pom.xml.
|
|
|
|
|
- Drop patch #3 (fall back to generic GCC atomics if no specialized atomics
|
|
|
|
|
exist, e.g. AArch64 GCC); this has been upstreamed.
|
|
|
|
|
|
2014-10-19 23:14:45 +00:00
|
|
|
|
* Sun Oct 19 2014 Conrad Meyer <cemeyer@uw.edu> - 2.5.0-11
|
|
|
|
|
- protobuf-emacs requires emacs(bin), not emacs (rh# 1154456)
|
|
|
|
|
|
2014-08-17 19:59:17 +00:00
|
|
|
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.0-10
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
|
2014-06-16 08:45:48 +00:00
|
|
|
|
* Mon Jun 16 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.5.0-9
|
|
|
|
|
- Update to current Java packaging guidelines
|
|
|
|
|
|
2014-06-07 17:17:31 +00:00
|
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.0-8
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
|
2014-03-04 08:05:13 +00:00
|
|
|
|
* Tue Mar 04 2014 Stanislav Ochotnicky <sochotnicky@redhat.com> - 2.5.0-7
|
|
|
|
|
- Use Requires: java-headless rebuild (#1067528)
|
|
|
|
|
|
2013-12-12 13:55:23 +00:00
|
|
|
|
* Thu Dec 12 2013 Conrad Meyer <cemeyer@uw.edu> - 2.5.0-6
|
|
|
|
|
- BR python-setuptools-devel -> python-setuptools
|
|
|
|
|
|
2013-08-04 05:16:31 +00:00
|
|
|
|
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.0-5
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
|
2013-05-16 09:16:08 +00:00
|
|
|
|
* Thu May 16 2013 Dan Horák <dan[at]danny.cz> - 2.5.0-4
|
|
|
|
|
- export the new generic atomics header (rh #926374)
|
|
|
|
|
|
2013-05-09 15:02:47 +00:00
|
|
|
|
* Mon May 6 2013 Stanislav Ochotnicky <sochotnicky@redhat.com> - 2.5.0-3
|
|
|
|
|
- Add support for generic gcc atomic operations (rh #926374)
|
|
|
|
|
|
2013-04-27 21:26:30 +00:00
|
|
|
|
* Sat Apr 27 2013 Conrad Meyer <cemeyer@uw.edu> - 2.5.0-2
|
|
|
|
|
- Remove changelog history from before 2010
|
|
|
|
|
- This spec already runs autoreconf -fi during %%build, but bump build for
|
|
|
|
|
rhbz #926374
|
|
|
|
|
|
2013-03-10 03:31:48 +00:00
|
|
|
|
* Sat Mar 9 2013 Conrad Meyer <cemeyer@uw.edu> - 2.5.0-1
|
|
|
|
|
- Bump to latest upstream (#883822)
|
|
|
|
|
- Rebase gtest, maven patches on 2.5.0
|
|
|
|
|
|
2013-02-26 09:02:25 +00:00
|
|
|
|
* Tue Feb 26 2013 Conrad Meyer <cemeyer@uw.edu> - 2.4.1-12
|
|
|
|
|
- Nuke BR on maven-doxia, maven-doxia-sitetools (#915620)
|
|
|
|
|
|
2013-02-14 18:24:10 +00:00
|
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.1-11
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
|
2013-02-06 19:40:15 +00:00
|
|
|
|
* Wed Feb 06 2013 Java SIG <java-devel@lists.fedoraproject.org> - 2.4.1-10
|
|
|
|
|
- Update for https://fedoraproject.org/wiki/Fedora_19_Maven_Rebuild
|
|
|
|
|
- Replace maven BuildRequires with maven-local
|
|
|
|
|
|
2013-01-20 22:12:51 +00:00
|
|
|
|
* Sun Jan 20 2013 Conrad Meyer <konrad@tylerc.org> - 2.4.1-9
|
|
|
|
|
- Fix packaging bug, -emacs-el subpackage should depend on -emacs subpackage of
|
|
|
|
|
the same version (%%version), not the emacs version number...
|
|
|
|
|
|
2013-01-20 20:02:08 +00:00
|
|
|
|
* Thu Jan 17 2013 Tim Niemueller <tim@niemueller.de> - 2.4.1-8
|
|
|
|
|
- Added sub-package for Emacs editing mode
|
|
|
|
|
|
2012-07-21 03:14:55 +00:00
|
|
|
|
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.1-7
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
|
2012-03-19 14:03:58 +00:00
|
|
|
|
* Mon Mar 19 2012 Dan Horák <dan[at]danny.cz> - 2.4.1-6
|
|
|
|
|
- disable test-suite until g++ 4.7 issues are resolved
|
|
|
|
|
|
2012-03-19 13:16:06 +00:00
|
|
|
|
* Mon Mar 19 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 2.4.1-5
|
|
|
|
|
- Update to latest java packaging guidelines
|
|
|
|
|
|
2012-02-28 19:43:33 +00:00
|
|
|
|
* Tue Feb 28 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.1-4
|
|
|
|
|
- Rebuilt for c++ ABI breakage
|
|
|
|
|
|
2012-01-14 01:15:03 +00:00
|
|
|
|
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.1-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
|
2011-09-27 19:36:27 +00:00
|
|
|
|
* Tue Sep 27 2011 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.4.1-2
|
|
|
|
|
- Adding zlib-devel as BR (rhbz: #732087)
|
|
|
|
|
|
2011-06-09 20:21:43 +00:00
|
|
|
|
* Thu Jun 09 2011 BJ Dierkes <wdierkes@rackspace.com> - 2.4.1-1
|
|
|
|
|
- Latest sources from upstream.
|
|
|
|
|
- Rewrote Patch2 as protobuf-2.4.1-java-fixes.patch
|
|
|
|
|
|
2011-02-09 16:59:44 +00:00
|
|
|
|
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.0-7
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
|
2011-01-13 12:58:40 +00:00
|
|
|
|
* Thu Jan 13 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 2.3.0-6
|
|
|
|
|
- Fix java subpackage bugs #669345 and #669346
|
|
|
|
|
- Use new maven plugin names
|
|
|
|
|
- Use mavenpomdir macro for pom installation
|
|
|
|
|
|
2010-07-26 11:24:13 +00:00
|
|
|
|
* Mon Jul 26 2010 David Malcolm <dmalcolm@redhat.com> - 2.3.0-5
|
|
|
|
|
- generalize hardcoded reference to 2.6 in python subpackage %%files manifest
|
|
|
|
|
|
2010-07-22 03:06:18 +00:00
|
|
|
|
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 2.3.0-4
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
|
|
|
|
|
|
2010-07-15 12:34:23 +00:00
|
|
|
|
* Thu Jul 15 2010 James Laska <jlaska@redhat.com> - 2.3.0-3
|
2018-02-09 08:05:34 +00:00
|
|
|
|
- Correct use of %%bcond macros
|
2010-07-15 12:34:23 +00:00
|
|
|
|
|
2010-07-14 17:37:06 +00:00
|
|
|
|
* Wed Jul 14 2010 James Laska <jlaska@redhat.com> - 2.3.0-2
|
|
|
|
|
- Enable python and java sub-packages
|
|
|
|
|
|
2010-05-05 06:26:00 +00:00
|
|
|
|
* Tue May 4 2010 Conrad Meyer <konrad@tylerc.org> - 2.3.0-1
|
|
|
|
|
- bump to 2.3.0
|