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