282019
# Build -python2 subpackage
282019
%bcond_with python2
282019
# Build -python3 subpackage
282019
%bcond_without python3
282019
# Build -java subpackage
282019
%bcond_with java
282019
282019
%global emacs_version %(pkg-config emacs --modversion)
282019
%global emacs_lispdir %(pkg-config emacs --variable sitepkglispdir)
282019
%global emacs_startdir %(pkg-config emacs --variable sitestartdir)
282019
282019
#global rcver rc2
282019
282019
Summary:        Protocol Buffers - Google's data interchange format
282019
Name:           protobuf
282019
Version:        3.5.0
282019
Release:        13%{?dist}
282019
License:        BSD
282019
URL:            https://github.com/google/protobuf
282019
Source:         https://github.com/google/protobuf/archive/v%{version}%{?rcver}/%{name}-%{version}%{?rcver}.tar.gz
282019
Source1:        ftdetect-proto.vim
282019
Source2:        protobuf-init.el
282019
# For tests
282019
Source3:        https://github.com/google/googlemock/archive/release-1.7.0.tar.gz#/googlemock-1.7.0.tar.gz
282019
Source4:        https://github.com/google/googletest/archive/release-1.7.0.tar.gz#/googletest-1.7.0.tar.gz
282019
# Might be upstreamable, but for now temporary workaround
282019
Patch0:         0001-fix-build-on-s390x.patch
282019
282019
BuildRequires:  autoconf
282019
BuildRequires:  automake
282019
BuildRequires:  emacs(bin)
282019
BuildRequires:  emacs-el >= 24.1
282019
BuildRequires:  gcc-c++
282019
BuildRequires:  libtool
282019
BuildRequires:  pkgconfig
282019
BuildRequires:  zlib-devel
282019
282019
%description
282019
Protocol Buffers are a way of encoding structured data in an efficient
282019
yet extensible format. Google uses Protocol Buffers for almost all of
282019
its internal RPC protocols and file formats.
282019
282019
Protocol buffers are a flexible, efficient, automated mechanism for
282019
serializing structured data – think XML, but smaller, faster, and
282019
simpler. You define how you want your data to be structured once, then
282019
you can use special generated source code to easily write and read
282019
your structured data to and from a variety of data streams and using a
282019
variety of languages. You can even update your data structure without
282019
breaking deployed programs that are compiled against the "old" format.
282019
282019
%package compiler
282019
Summary:        Protocol Buffers compiler
282019
Requires:       %{name} = %{version}-%{release}
282019
282019
%description compiler
282019
This package contains Protocol Buffers compiler for all programming
282019
languages
282019
282019
%package devel
282019
Summary:        Protocol Buffers C++ headers and libraries
282019
Requires:       %{name} = %{version}-%{release}
282019
Requires:       %{name}-compiler = %{version}-%{release}
282019
Requires:       zlib-devel
282019
Requires:       pkgconfig
282019
282019
%description devel
282019
This package contains Protocol Buffers compiler for all languages and
282019
C++ headers and libraries
282019
282019
%package static
282019
Summary:        Static development files for %{name}
282019
Requires:       %{name}-devel = %{version}-%{release}
282019
282019
%description static
282019
Static libraries for Protocol Buffers
282019
282019
%package lite
282019
Summary:        Protocol Buffers LITE_RUNTIME libraries
282019
282019
%description lite
282019
Protocol Buffers built with optimize_for = LITE_RUNTIME.
282019
282019
The "optimize_for = LITE_RUNTIME" option causes the compiler to generate code
282019
which only depends libprotobuf-lite, which is much smaller than libprotobuf but
282019
lacks descriptors, reflection, and some other features.
282019
282019
%package lite-devel
282019
Summary:        Protocol Buffers LITE_RUNTIME development libraries
282019
Requires:       %{name}-devel = %{version}-%{release}
282019
Requires:       %{name}-lite = %{version}-%{release}
282019
282019
%description lite-devel
282019
This package contains development libraries built with
282019
optimize_for = LITE_RUNTIME.
282019
282019
The "optimize_for = LITE_RUNTIME" option causes the compiler to generate code
282019
which only depends libprotobuf-lite, which is much smaller than libprotobuf but
282019
lacks descriptors, reflection, and some other features.
282019
282019
%package lite-static
282019
Summary:        Static development files for %{name}-lite
282019
Requires:       %{name}-devel = %{version}-%{release}
282019
282019
%description lite-static
282019
This package contains static development libraries built with
282019
optimize_for = LITE_RUNTIME.
282019
282019
The "optimize_for = LITE_RUNTIME" option causes the compiler to generate code
282019
which only depends libprotobuf-lite, which is much smaller than libprotobuf but
282019
lacks descriptors, reflection, and some other features.
282019
282019
%if %{with python2}
282019
%package -n python2-%{name}
282019
Summary:        Python 2 bindings for Google Protocol Buffers
282019
BuildArch:      noarch
282019
BuildRequires:  python2-devel
282019
BuildRequires:  python-setuptools
282019
%if 0%{?fedora}
282019
# For tests
282019
BuildRequires:  python-google-apputils
282019
%endif
282019
Requires:       python-six >= 1.9
282019
Conflicts:      %{name}-compiler > %{version}
282019
Conflicts:      %{name}-compiler < %{version}
282019
Obsoletes:      %{name}-python < 3.1.0-4
282019
Provides:       %{name}-python = %{version}-%{release}
282019
%{?python_provide:%python_provide python2-%{name}}
282019
282019
%description -n python2-%{name}
282019
This package contains Python 2 libraries for Google Protocol Buffers
282019
%endif
282019
282019
%if %{with python3}
282019
%package -n python%{python3_pkgversion}-%{name}
282019
Summary:        Python 3 bindings for Google Protocol Buffers
282019
BuildArch:      noarch
282019
BuildRequires:  python%{python3_pkgversion}-devel
282019
BuildRequires:  python%{python3_pkgversion}-setuptools
282019
%if 0%{?fedora}
282019
# For tests
282019
BuildRequires:  python%{python3_pkgversion}-google-apputils
282019
%endif
282019
Requires:       python%{python3_pkgversion}-six >= 1.9
282019
Conflicts:      %{name}-compiler > %{version}
282019
Conflicts:      %{name}-compiler < %{version}
282019
Provides:       %{name}-python3 = %{version}-%{release}
282019
%{?python_provide:%python_provide python%{python3_pkgversion}-%{name}}
282019
282019
%description -n python%{python3_pkgversion}-%{name}
282019
This package contains Python 3 libraries for Google Protocol Buffers
282019
%endif
282019
282019
%package vim
282019
Summary:        Vim syntax highlighting for Google Protocol Buffers descriptions
282019
BuildArch:      noarch
282019
Requires:       vim-enhanced
282019
282019
%description vim
282019
This package contains syntax highlighting for Google Protocol Buffers
282019
descriptions in Vim editor
282019
282019
%package emacs
282019
Summary:        Emacs mode for Google Protocol Buffers descriptions
282019
BuildArch:      noarch
282019
Requires:       emacs(bin) >= 0%{emacs_version}
282019
282019
%description emacs
282019
This package contains syntax highlighting for Google Protocol Buffers
282019
descriptions in the Emacs editor.
282019
282019
%package emacs-el
282019
Summary:        Elisp source files for Google protobuf Emacs mode
282019
BuildArch:      noarch
282019
Requires:       protobuf-emacs = %{version}
282019
282019
%description emacs-el
282019
This package contains the elisp source files for %{name}-emacs
282019
under GNU Emacs. You do not need to install this package to use
282019
%{name}-emacs.
282019
282019
282019
%if %{with java}
282019
%package java
282019
Summary:        Java Protocol Buffers runtime library
282019
BuildArch:      noarch
282019
BuildRequires:  maven-local
282019
BuildRequires:  mvn(com.google.code.gson:gson)
282019
BuildRequires:  mvn(com.google.guava:guava)
282019
BuildRequires:  mvn(junit:junit)
282019
BuildRequires:  mvn(org.apache.felix:maven-bundle-plugin)
282019
BuildRequires:  mvn(org.apache.maven.plugins:maven-antrun-plugin)
282019
BuildRequires:  mvn(org.apache.maven.plugins:maven-source-plugin)
282019
BuildRequires:  mvn(org.codehaus.mojo:build-helper-maven-plugin)
282019
BuildRequires:  mvn(org.easymock:easymock)
282019
Conflicts:      %{name}-compiler > %{version}
282019
Conflicts:      %{name}-compiler < %{version}
282019
282019
%description java
282019
This package contains Java Protocol Buffers runtime library.
282019
282019
%package java-util
282019
Summary:        Utilities for Protocol Buffers
282019
BuildArch:      noarch
282019
282019
%description java-util
282019
Utilities to work with protos. It contains JSON support
282019
as well as utilities to work with proto3 well-known types.
282019
282019
%package javadoc
282019
Summary:        Javadoc for %{name}-java
282019
BuildArch:      noarch
282019
282019
%description javadoc
282019
This package contains the API documentation for %{name}-java.
282019
282019
%package javanano
282019
Summary:        Protocol Buffer JavaNano API
282019
BuildArch:      noarch
282019
282019
%description javanano
282019
JavaNano is a special code generator and runtime
282019
library designed specially for resource-restricted
282019
systems, like Android.
282019
282019
%package parent
282019
Summary:        Protocol Buffer Parent POM
282019
BuildArch:      noarch
282019
282019
%description parent
282019
Protocol Buffer Parent POM.
282019
282019
%endif
282019
282019
%prep
282019
%setup -q -n %{name}-%{version}%{?rcver} -a 3 -a 4
282019
%autopatch -p1
282019
mv googlemock-release-1.7.0 gmock
282019
mv googletest-release-1.7.0 gmock/gtest
282019
find -name \*.cc -o -name \*.h | xargs chmod -x
282019
chmod 644 examples/*
282019
%if %{with java}
282019
%pom_remove_parent java/pom.xml
282019
%pom_remove_dep org.easymock:easymockclassextension java/pom.xml java/*/pom.xml
282019
# These use easymockclassextension
282019
rm java/core/src/test/java/com/google/protobuf/ServiceTest.java
282019
#rm -r java/core/src/test
282019
282019
# used by https://github.com/googlei18n/libphonenumber
282019
%pom_xpath_inject "pom:project/pom:modules" "<module>../javanano</module>" java
282019
%pom_remove_parent javanano
282019
%pom_remove_dep org.easymock:easymockclassextension javanano
282019
282019
# Make OSGi dependency on sun.misc package optional
282019
%pom_xpath_inject "pom:configuration/pom:instructions" "<Import-Package>sun.misc;resolution:=optional,*</Import-Package>" java/core
282019
282019
# Backward compatibility symlink
282019
%mvn_file :protobuf-java:jar: %{name}/%{name}-java %{name}
282019
282019
# This test is incredibly slow on arm
282019
# https://github.com/google/protobuf/issues/2389
282019
%ifarch %{arm}
282019
mv java/core/src/test/java/com/google/protobuf/IsValidUtf8Test.java \
282019
   java/core/src/test/java/com/google/protobuf/IsValidUtf8Test.java.slow
282019
%endif
282019
%endif
282019
282019
rm -f src/solaris/libstdc++.la
282019
282019
%build
282019
iconv -f iso8859-1 -t utf-8 CONTRIBUTORS.txt > CONTRIBUTORS.txt.utf8
282019
mv CONTRIBUTORS.txt.utf8 CONTRIBUTORS.txt
282019
export PTHREAD_LIBS="-lpthread"
282019
./autogen.sh
282019
%configure
282019
282019
make %{?_smp_mflags}
282019
282019
%if %{with python2}
282019
pushd python
282019
%py2_build
282019
popd
282019
%endif
282019
282019
%if %{with python3}
282019
pushd python
282019
%py3_build
282019
popd
282019
%endif
282019
282019
%if %{with java}
282019
%mvn_build -s -- -f java/pom.xml
282019
%endif
282019
282019
emacs -batch -f batch-byte-compile editors/protobuf-mode.el
282019
282019
%check
282019
# TODO: failures; get them fixed and remove || :
282019
# https://github.com/google/protobuf/issues/631
282019
make %{?_smp_mflags} check || :
282019
282019
%install
282019
make %{?_smp_mflags} install DESTDIR=%{buildroot} STRIPBINARIES=no INSTALL="%{__install} -p" CPPROG="cp -p"
282019
find %{buildroot} -type f -name "*.la" -exec rm -f {} \;
282019
282019
%if %{with python2}
282019
pushd python
282019
#python ./setup.py install --root=%{buildroot} --single-version-externally-managed --record=INSTALLED_FILES --optimize=1
282019
%py2_install
282019
find %{buildroot}%{python2_sitelib} -name \*.py |
282019
  xargs sed -i -e '1{\@^#!@d}'
282019
popd
282019
%endif
282019
282019
%if %{with python3}
282019
pushd python
282019
#python ./setup.py install --root=%{buildroot} --single-version-externally-managed --record=INSTALLED_FILES --optimize=1
282019
%py3_install
282019
find %{buildroot}%{python3_sitelib} -name \*.py |
282019
  xargs sed -i -e '1{\@^#!@d}'
282019
popd
282019
%endif
282019
282019
install -p -m 644 -D %{SOURCE1} %{buildroot}%{_datadir}/vim/vimfiles/ftdetect/proto.vim
282019
install -p -m 644 -D editors/proto.vim %{buildroot}%{_datadir}/vim/vimfiles/syntax/proto.vim
282019
282019
%if %{with java}
282019
%mvn_install
282019
%endif
282019
282019
mkdir -p $RPM_BUILD_ROOT%{emacs_lispdir}
282019
mkdir -p $RPM_BUILD_ROOT%{emacs_startdir}
282019
install -p -m 0644 editors/protobuf-mode.el $RPM_BUILD_ROOT%{emacs_lispdir}
282019
install -p -m 0644 editors/protobuf-mode.elc $RPM_BUILD_ROOT%{emacs_lispdir}
282019
install -p -m 0644 %{SOURCE2} $RPM_BUILD_ROOT%{emacs_startdir}
282019
282019
%ldconfig_scriptlets
282019
%ldconfig_scriptlets lite
282019
%ldconfig_scriptlets compiler
282019
282019
%files
282019
%{_libdir}/libprotobuf.so.15*
282019
%doc CHANGES.txt CONTRIBUTORS.txt README.md
282019
%license LICENSE
282019
282019
%files compiler
282019
%{_bindir}/protoc
282019
%{_libdir}/libprotoc.so.15*
282019
%doc README.md
282019
%license LICENSE
282019
282019
%files devel
282019
%dir %{_includedir}/google
282019
%{_includedir}/google/protobuf/
282019
%{_libdir}/libprotobuf.so
282019
%{_libdir}/libprotoc.so
282019
%{_libdir}/pkgconfig/protobuf.pc
282019
%doc examples/add_person.cc examples/addressbook.proto examples/list_people.cc examples/Makefile examples/README.md
282019
282019
%files static
282019
%{_libdir}/libprotobuf.a
282019
%{_libdir}/libprotoc.a
282019
282019
%files lite
282019
%{_libdir}/libprotobuf-lite.so.15*
282019
282019
%files lite-devel
282019
%{_libdir}/libprotobuf-lite.so
282019
%{_libdir}/pkgconfig/protobuf-lite.pc
282019
282019
%files lite-static
282019
%{_libdir}/libprotobuf-lite.a
282019
282019
%if %{with python2}
282019
%files -n python2-protobuf
282019
%dir %{python2_sitelib}/google
282019
%{python2_sitelib}/google/protobuf/
282019
%{python2_sitelib}/protobuf-%{version}%{?rcver}-py2.?.egg-info/
282019
%{python2_sitelib}/protobuf-%{version}%{?rcver}-py2.?-nspkg.pth
282019
%doc python/README.md
282019
%doc examples/add_person.py examples/list_people.py examples/addressbook.proto
282019
%endif
282019
282019
%if %{with python3}
282019
%files -n python%{python3_pkgversion}-protobuf
282019
%dir %{python3_sitelib}/google
282019
%{python3_sitelib}/google/protobuf/
282019
%{python3_sitelib}/protobuf-%{version}%{?rcver}-py3.?.egg-info/
282019
%{python3_sitelib}/protobuf-%{version}%{?rcver}-py3.?-nspkg.pth
282019
%doc python/README.md
282019
%doc examples/add_person.py examples/list_people.py examples/addressbook.proto
282019
%endif
282019
282019
%files vim
282019
%{_datadir}/vim/vimfiles/ftdetect/proto.vim
282019
%{_datadir}/vim/vimfiles/syntax/proto.vim
282019
282019
%files emacs
282019
%{emacs_startdir}/protobuf-init.el
282019
%{emacs_lispdir}/protobuf-mode.elc
282019
282019
%files emacs-el
282019
%{emacs_lispdir}/protobuf-mode.el
282019
282019
%if %{with java}
282019
%files java -f .mfiles-protobuf-java
282019
%doc examples/AddPerson.java examples/ListPeople.java
282019
%doc java/README.md
282019
%license LICENSE
282019
282019
%files java-util -f .mfiles-protobuf-java-util
282019
282019
%files javadoc -f .mfiles-javadoc
282019
%license LICENSE
282019
282019
%files javanano -f .mfiles-protobuf-javanano
282019
%doc javanano/README.md
282019
%license LICENSE
282019
282019
%files parent -f .mfiles-protobuf-parent
282019
%license LICENSE
282019
%endif
282019
282019
%changelog
282019
* Thu May 28 2020 Adrian Reber <areber@redhat.com> - 3.5.0-13
282019
- Rebuild
282019
282019
* Tue May 26 2020 Adrian Reber <areber@redhat.com> - 3.5.0-10
282019
- Rebuild
282019
282019
* Thu Apr 09 2020 Adrian Reber <areber@redhat.com> - 3.5.0-8
282019
- Rebuild
282019
282019
* Thu Jul 12 2018 Adrian Reber <areber@redhat.com> - 3.5.0-7
282019
- Build without python2 subpackage
282019
282019
* Wed Jun 20 2018 Adrian Reber <areber@redhat.com> - 3.5.0-6
282019
- Only BR python-google-apputils on Fedora
282019
282019
* Wed May 30 2018 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.5.0-5
282019
- Build without -java supbackage
282019
282019
* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.5.0-4
282019
- Escape macros in %%changelog
282019
282019
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.0-3
282019
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
282019
282019
* Fri Feb 02 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.5.0-2
282019
- Switch to %%ldconfig_scriptlets
282019
282019
* Thu Nov 23 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.5.0-1
282019
- Update to 3.5.0
282019
282019
* Mon Nov 13 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.4.1-1
282019
- Update to 3.4.1
282019
282019
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.1-4
282019
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
282019
282019
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.1-3
282019
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
282019
282019
* Tue Jun 27 2017 Mat Booth <mat.booth@redhat.com> - 3.3.1-2
282019
- Make OSGi dependency on sun.misc package optional. This package is not
282019
  available in all execution environments and will not be available in Java 9.
282019
282019
* Mon Jun 12 2017 Orion Poplawski <orion@cora.nwra.com> - 3.3.1-1
282019
- Update to 3.3.1
282019
282019
* Mon May 15 2017 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.0-3
282019
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_27_Mass_Rebuild
282019
282019
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.0-2
282019
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
282019
282019
* Fri Jan 27 2017 Orion Poplawski <orion@cora.nwra.com> - 3.2.0-1
282019
- Update to 3.2.0 final
282019
282019
* Mon Jan 23 2017 Orion Poplawski <orion@cora.nwra.com> - 3.2.0-0.1.rc2
282019
- Update to 3.2.0rc2
282019
282019
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 3.1.0-6
282019
- Rebuild for Python 3.6
282019
282019
* Sat Nov 19 2016 Orion Poplawski <orion@cora.nwra.com> - 3.1.0-5
282019
- Disable slow test on arm
282019
282019
* Fri Nov 18 2016 Orion Poplawski <orion@cora.nwra.com> - 3.1.0-4
282019
- Ship python 3 module
282019
282019
* Fri Nov 18 2016 Orion Poplawski <orion@cora.nwra.com> - 3.1.0-3
282019
- Fix jar file compat symlink
282019
282019
* Fri Nov 18 2016 Orion Poplawski <orion@cora.nwra.com> - 3.1.0-2
282019
- Add needed python requirement
282019
282019
* Fri Nov 04 2016 Orion Poplawski <orion@cora.nwra.com> - 3.1.0-2
282019
- Make various sub-packages noarch
282019
282019
* Fri Nov 04 2016 gil cattaneo <puntogil@libero.it> 3.1.0-2
282019
- enable javanano
282019
- minor changes to adapt to current guidelines
282019
282019
* Fri Nov 04 2016 Orion Poplawski <orion@cora.nwra.com> - 3.1.0-1
282019
- Update to 3.1.0
282019
282019
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.1-5
282019
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
282019
282019
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.1-4
282019
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
282019
282019
* Wed Jan 20 2016 Orion Poplawski <orion@cora.nwra.com> - 2.6.1-3
282019
- Tests no longer segfaulting on arm
282019
282019
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.1-2
282019
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
282019
282019
* Mon Apr 6 2015 Orion Poplawski <orion@cora.nwra.com> - 2.6.1-1
282019
- Update to 2.6.1
282019
- New URL
282019
- Cleanup spec
282019
- Add patch to fix emacs compilation with emacs 24.4
282019
- Drop java-fixes patch, use pom macros instead
282019
- Add BR on python-google-apputils and mvn(org.easymock:easymock)
282019
- Run make check
282019
- Make -static require -devel (bug #1067475)
282019
282019
* Thu Mar 26 2015 Kalev Lember <kalevlember@gmail.com> - 2.6.0-4
282019
- Rebuilt for GCC 5 ABI change
282019
282019
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 2.6.0-3
282019
- Rebuilt for Fedora 23 Change
282019
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
282019
282019
* Wed Dec 17 2014 Peter Lemenkov <lemenkov@gmail.com> - 2.6.0-2
282019
- Added missing Requires zlib-devel to protobuf-devel (see rhbz #1173343). See
282019
  also rhbz #732087.
282019
282019
* Sun Oct 19 2014 Conrad Meyer <cemeyer@uw.edu> - 2.6.0-1
282019
- Bump to upstream release 2.6.0 (rh# 1154474).
282019
- Rebase 'java fixes' patch on 2.6.0 pom.xml.
282019
- Drop patch #3 (fall back to generic GCC atomics if no specialized atomics
282019
  exist, e.g. AArch64 GCC); this has been upstreamed.
282019
282019
* Sun Oct 19 2014 Conrad Meyer <cemeyer@uw.edu> - 2.5.0-11
282019
- protobuf-emacs requires emacs(bin), not emacs (rh# 1154456)
282019
282019
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.0-10
282019
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
282019
282019
* Mon Jun 16 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.5.0-9
282019
- Update to current Java packaging guidelines
282019
282019
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.0-8
282019
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
282019
282019
* Tue Mar 04 2014 Stanislav Ochotnicky <sochotnicky@redhat.com> - 2.5.0-7
282019
- Use Requires: java-headless rebuild (#1067528)
282019
282019
* Thu Dec 12 2013 Conrad Meyer <cemeyer@uw.edu> - 2.5.0-6
282019
- BR python-setuptools-devel -> python-setuptools
282019
282019
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.0-5
282019
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
282019
282019
* Thu May 16 2013 Dan Horák <dan[at]danny.cz> - 2.5.0-4
282019
- export the new generic atomics header (rh #926374)
282019
282019
* Mon May 6 2013 Stanislav Ochotnicky <sochotnicky@redhat.com> - 2.5.0-3
282019
- Add support for generic gcc atomic operations (rh #926374)
282019
282019
* Sat Apr 27 2013 Conrad Meyer <cemeyer@uw.edu> - 2.5.0-2
282019
- Remove changelog history from before 2010
282019
- This spec already runs autoreconf -fi during %%build, but bump build for
282019
  rhbz #926374
282019
282019
* Sat Mar 9 2013 Conrad Meyer <cemeyer@uw.edu> - 2.5.0-1
282019
- Bump to latest upstream (#883822)
282019
- Rebase gtest, maven patches on 2.5.0
282019
282019
* Tue Feb 26 2013 Conrad Meyer <cemeyer@uw.edu> - 2.4.1-12
282019
- Nuke BR on maven-doxia, maven-doxia-sitetools (#915620)
282019
282019
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.1-11
282019
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
282019
282019
* Wed Feb 06 2013 Java SIG <java-devel@lists.fedoraproject.org> - 2.4.1-10
282019
- Update for https://fedoraproject.org/wiki/Fedora_19_Maven_Rebuild
282019
- Replace maven BuildRequires with maven-local
282019
282019
* Sun Jan 20 2013 Conrad Meyer <konrad@tylerc.org> - 2.4.1-9
282019
- Fix packaging bug, -emacs-el subpackage should depend on -emacs subpackage of
282019
  the same version (%%version), not the emacs version number...
282019
282019
* Thu Jan 17 2013 Tim Niemueller <tim@niemueller.de> - 2.4.1-8
282019
- Added sub-package for Emacs editing mode
282019
282019
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.1-7
282019
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
282019
282019
* Mon Mar 19 2012 Dan Horák <dan[at]danny.cz> - 2.4.1-6
282019
- disable test-suite until g++ 4.7 issues are resolved
282019
282019
* Mon Mar 19 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 2.4.1-5
282019
- Update to latest java packaging guidelines
282019
282019
* Tue Feb 28 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.1-4
282019
- Rebuilt for c++ ABI breakage
282019
282019
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.1-3
282019
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
282019
282019
* Tue Sep 27 2011 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.4.1-2
282019
- Adding zlib-devel as BR (rhbz: #732087)
282019
282019
* Thu Jun 09 2011 BJ Dierkes <wdierkes@rackspace.com> - 2.4.1-1
282019
- Latest sources from upstream.
282019
- Rewrote Patch2 as protobuf-2.4.1-java-fixes.patch
282019
282019
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.0-7
282019
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
282019
282019
* Thu Jan 13 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 2.3.0-6
282019
- Fix java subpackage bugs #669345 and #669346
282019
- Use new maven plugin names
282019
- Use mavenpomdir macro for pom installation
282019
282019
* Mon Jul 26 2010 David Malcolm <dmalcolm@redhat.com> - 2.3.0-5
282019
- generalize hardcoded reference to 2.6 in python subpackage %%files manifest
282019
282019
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 2.3.0-4
282019
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
282019
282019
* Thu Jul 15 2010 James Laska <jlaska@redhat.com> - 2.3.0-3
282019
- Correct use of %%bcond macros
282019
282019
* Wed Jul 14 2010 James Laska <jlaska@redhat.com> - 2.3.0-2
282019
- Enable python and java sub-packages
282019
282019
* Tue May 4 2010 Conrad Meyer <konrad@tylerc.org> - 2.3.0-1
282019
- bump to 2.3.0