2010-07-15 12:34:23 +00:00
|
|
|
|
# Build -python subpackage
|
|
|
|
|
%bcond_without python
|
|
|
|
|
# Build -java subpackage
|
|
|
|
|
%bcond_without java
|
|
|
|
|
# Don't require gtest
|
|
|
|
|
%bcond_with gtest
|
|
|
|
|
|
|
|
|
|
%if %{with python}
|
2008-11-25 18:48:07 +00:00
|
|
|
|
%define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
Summary: Protocol Buffers - Google's data interchange format
|
|
|
|
|
Name: protobuf
|
2011-06-09 20:21:43 +00:00
|
|
|
|
Version: 2.4.1
|
2012-07-21 03:14:55 +00:00
|
|
|
|
Release: 7%{?dist}
|
2008-11-25 18:48:07 +00:00
|
|
|
|
License: BSD
|
|
|
|
|
Group: Development/Libraries
|
|
|
|
|
Source: http://protobuf.googlecode.com/files/%{name}-%{version}.tar.bz2
|
2009-09-18 12:56:32 +00:00
|
|
|
|
Source1: ftdetect-proto.vim
|
2011-06-09 20:21:43 +00:00
|
|
|
|
Patch1: protobuf-2.3.0-fedora-gtest.patch
|
2012-03-19 13:16:06 +00:00
|
|
|
|
Patch2: protobuf-2.4.1-java-fixes.patch
|
2008-11-25 18:48:07 +00:00
|
|
|
|
URL: http://code.google.com/p/protobuf/
|
|
|
|
|
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
|
2011-09-27 19:36:27 +00:00
|
|
|
|
BuildRequires: automake autoconf libtool pkgconfig zlib-devel
|
2010-07-15 12:34:23 +00:00
|
|
|
|
%if %{with gtest}
|
2008-11-25 18:48:07 +00:00
|
|
|
|
BuildRequires: gtest-devel
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%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
|
|
|
|
|
Summary: Protocol Buffers compiler
|
|
|
|
|
Group: Development/Libraries
|
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
%description compiler
|
|
|
|
|
This package contains Protocol Buffers compiler for all programming
|
|
|
|
|
languages
|
|
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
|
Summary: Protocol Buffers C++ headers and libraries
|
|
|
|
|
Group: Development/Libraries
|
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
|
Requires: %{name}-compiler = %{version}-%{release}
|
|
|
|
|
Requires: pkgconfig
|
|
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
|
This package contains Protocol Buffers compiler for all languages and
|
|
|
|
|
C++ headers and libraries
|
|
|
|
|
|
|
|
|
|
%package static
|
|
|
|
|
Summary: Static development files for %{name}
|
|
|
|
|
Group: Development/Libraries
|
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
%description static
|
|
|
|
|
Static libraries for Protocol Buffers
|
|
|
|
|
|
2009-09-18 12:56:32 +00:00
|
|
|
|
%package lite
|
|
|
|
|
Summary: Protocol Buffers LITE_RUNTIME libraries
|
|
|
|
|
Group: Development/Libraries
|
|
|
|
|
|
|
|
|
|
%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
|
|
|
|
|
Summary: Protocol Buffers LITE_RUNTIME development libraries
|
|
|
|
|
Requires: %{name}-devel = %{version}-%{release}
|
|
|
|
|
Requires: %{name}-lite = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
%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
|
|
|
|
|
Summary: Static development files for %{name}-lite
|
|
|
|
|
Group: Development/Libraries
|
|
|
|
|
Requires: %{name}-devel = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
%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}
|
2008-11-25 18:48:07 +00:00
|
|
|
|
%package python
|
|
|
|
|
Summary: Python bindings for Google Protocol Buffers
|
|
|
|
|
Group: Development/Languages
|
|
|
|
|
BuildRequires: python-devel
|
|
|
|
|
BuildRequires: python-setuptools-devel
|
|
|
|
|
Conflicts: %{name}-compiler > %{version}
|
|
|
|
|
Conflicts: %{name}-compiler < %{version}
|
|
|
|
|
|
|
|
|
|
%description python
|
|
|
|
|
This package contains Python libraries for Google Protocol Buffers
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%package vim
|
|
|
|
|
Summary: Vim syntax highlighting for Google Protocol Buffers descriptions
|
|
|
|
|
Group: Development/Libraries
|
|
|
|
|
Requires: vim-enhanced
|
|
|
|
|
|
|
|
|
|
%description vim
|
|
|
|
|
This package contains syntax highlighting for Google Protocol Buffers
|
|
|
|
|
descriptions in Vim editor
|
|
|
|
|
|
2010-07-15 12:34:23 +00:00
|
|
|
|
%if %{with java}
|
2008-11-25 18:48:07 +00:00
|
|
|
|
%package java
|
|
|
|
|
Summary: Java Protocol Buffers runtime library
|
|
|
|
|
Group: Development/Languages
|
|
|
|
|
BuildRequires: java-devel >= 1.6
|
|
|
|
|
BuildRequires: jpackage-utils
|
2012-03-19 13:16:06 +00:00
|
|
|
|
BuildRequires: maven
|
2011-01-13 12:58:40 +00:00
|
|
|
|
BuildRequires: maven-compiler-plugin
|
|
|
|
|
BuildRequires: maven-install-plugin
|
|
|
|
|
BuildRequires: maven-jar-plugin
|
|
|
|
|
BuildRequires: maven-javadoc-plugin
|
|
|
|
|
BuildRequires: maven-resources-plugin
|
|
|
|
|
BuildRequires: maven-surefire-plugin
|
|
|
|
|
BuildRequires: maven-antrun-plugin
|
2010-07-15 12:34:23 +00:00
|
|
|
|
BuildRequires: maven-doxia
|
|
|
|
|
BuildRequires: maven-doxia-sitetools
|
2008-11-25 18:48:07 +00:00
|
|
|
|
Requires: java
|
|
|
|
|
Requires: jpackage-utils
|
|
|
|
|
Conflicts: %{name}-compiler > %{version}
|
|
|
|
|
Conflicts: %{name}-compiler < %{version}
|
|
|
|
|
|
|
|
|
|
%description java
|
|
|
|
|
This package contains Java Protocol Buffers runtime library.
|
|
|
|
|
|
|
|
|
|
%package javadoc
|
|
|
|
|
Summary: Javadocs for %{name}-java
|
|
|
|
|
Group: Documentation
|
|
|
|
|
Requires: jpackage-utils
|
|
|
|
|
Requires: %{name}-java = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
%description javadoc
|
|
|
|
|
This package contains the API documentation for %{name}-java.
|
|
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
|
%setup -q
|
2010-07-15 12:34:23 +00:00
|
|
|
|
%if %{with gtest}
|
2009-09-18 12:56:32 +00:00
|
|
|
|
rm -rf gtest
|
2011-06-09 20:21:43 +00:00
|
|
|
|
%patch1 -p1 -b .gtest
|
2008-11-25 18:48:07 +00:00
|
|
|
|
%endif
|
|
|
|
|
chmod 644 examples/*
|
2010-07-15 12:34:23 +00:00
|
|
|
|
%if %{with java}
|
2011-06-09 20:21:43 +00:00
|
|
|
|
%patch2 -p1 -b .java-fixes
|
2008-11-25 18:48:07 +00:00
|
|
|
|
rm -rf java/src/test
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%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
|
|
|
|
|
|
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
2010-07-15 12:34:23 +00:00
|
|
|
|
%if %{with python}
|
2008-11-25 18:48:07 +00:00
|
|
|
|
pushd python
|
|
|
|
|
python ./setup.py build
|
|
|
|
|
sed -i -e 1d build/lib/google/protobuf/descriptor_pb2.py
|
|
|
|
|
popd
|
|
|
|
|
%endif
|
|
|
|
|
|
2010-07-15 12:34:23 +00:00
|
|
|
|
%if %{with java}
|
2008-11-25 18:48:07 +00:00
|
|
|
|
pushd java
|
2012-03-19 13:16:06 +00:00
|
|
|
|
mvn-rpmbuild install javadoc:javadoc
|
2008-11-25 18:48:07 +00:00
|
|
|
|
popd
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%check
|
2012-03-19 14:03:58 +00:00
|
|
|
|
#make %{?_smp_mflags} check
|
2008-11-25 18:48:07 +00:00
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
|
rm -rf %{buildroot}
|
|
|
|
|
make %{?_smp_mflags} install DESTDIR=%{buildroot} STRIPBINARIES=no INSTALL="%{__install} -p" CPPROG="cp -p"
|
|
|
|
|
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
|
|
|
|
|
python ./setup.py install --root=%{buildroot} --single-version-externally-managed --record=INSTALLED_FILES --optimize=1
|
|
|
|
|
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}
|
2008-11-25 18:48:07 +00:00
|
|
|
|
pushd java
|
|
|
|
|
install -d -m 755 %{buildroot}%{_javadir}
|
2011-01-13 12:58:40 +00:00
|
|
|
|
install -pm 644 target/%{name}-java-%{version}.jar %{buildroot}%{_javadir}/%{name}.jar
|
2008-11-25 18:48:07 +00:00
|
|
|
|
|
|
|
|
|
install -d -m 755 %{buildroot}%{_javadocdir}/%{name}
|
|
|
|
|
cp -rp target/site/apidocs %{buildroot}%{_javadocdir}/%{name}
|
|
|
|
|
|
2011-01-13 12:58:40 +00:00
|
|
|
|
install -d -m 755 %{buildroot}%{_mavenpomdir}
|
|
|
|
|
install -pm 644 pom.xml %{buildroot}%{_mavenpomdir}/JPP-%{name}.pom
|
2012-03-19 13:16:06 +00:00
|
|
|
|
%add_maven_depmap JPP-%{name}.pom %{name}.jar
|
2008-11-25 18:48:07 +00:00
|
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
|
2009-09-18 12:56:32 +00:00
|
|
|
|
%post lite -p /sbin/ldconfig
|
|
|
|
|
%postun lite -p /sbin/ldconfig
|
|
|
|
|
|
2008-11-25 18:48:07 +00:00
|
|
|
|
%post compiler -p /sbin/ldconfig
|
|
|
|
|
%postun compiler -p /sbin/ldconfig
|
|
|
|
|
|
|
|
|
|
%clean
|
|
|
|
|
rm -rf %{buildroot}
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
|
%defattr(-, root, root, -)
|
|
|
|
|
%{_libdir}/libprotobuf.so.*
|
|
|
|
|
%doc CHANGES.txt CONTRIBUTORS.txt COPYING.txt README.txt
|
|
|
|
|
|
|
|
|
|
%files compiler
|
|
|
|
|
%defattr(-, root, root, -)
|
|
|
|
|
%{_bindir}/protoc
|
|
|
|
|
%{_libdir}/libprotoc.so.*
|
|
|
|
|
%doc COPYING.txt README.txt
|
|
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
|
%defattr(-, root, root, -)
|
|
|
|
|
%dir %{_includedir}/google
|
|
|
|
|
%{_includedir}/google/protobuf/
|
|
|
|
|
%{_libdir}/libprotobuf.so
|
|
|
|
|
%{_libdir}/libprotoc.so
|
|
|
|
|
%{_libdir}/pkgconfig/protobuf.pc
|
|
|
|
|
%doc examples/add_person.cc examples/addressbook.proto examples/list_people.cc examples/Makefile examples/README.txt
|
|
|
|
|
|
|
|
|
|
%files static
|
|
|
|
|
%defattr(-, root, root, -)
|
|
|
|
|
%{_libdir}/libprotobuf.a
|
|
|
|
|
%{_libdir}/libprotoc.a
|
|
|
|
|
|
2009-09-18 12:56:32 +00:00
|
|
|
|
%files lite
|
|
|
|
|
%defattr(-, root, root, -)
|
|
|
|
|
%{_libdir}/libprotobuf-lite.so.*
|
|
|
|
|
|
|
|
|
|
%files lite-devel
|
|
|
|
|
%defattr(-, root, root, -)
|
|
|
|
|
%{_libdir}/libprotobuf-lite.so
|
|
|
|
|
%{_libdir}/pkgconfig/protobuf-lite.pc
|
|
|
|
|
|
|
|
|
|
%files lite-static
|
|
|
|
|
%defattr(-, root, root, -)
|
|
|
|
|
%{_libdir}/libprotobuf-lite.a
|
|
|
|
|
|
2010-07-15 12:34:23 +00:00
|
|
|
|
%if %{with python}
|
2008-11-25 18:48:07 +00:00
|
|
|
|
%files python
|
|
|
|
|
%defattr(-, root, root, -)
|
|
|
|
|
%dir %{python_sitelib}/google
|
|
|
|
|
%{python_sitelib}/google/protobuf/
|
2010-07-26 11:24:13 +00:00
|
|
|
|
%{python_sitelib}/protobuf-%{version}-py2.?.egg-info/
|
|
|
|
|
%{python_sitelib}/protobuf-%{version}-py2.?-nspkg.pth
|
2012-03-19 13:16:06 +00:00
|
|
|
|
%doc python/README.txt
|
2008-11-25 18:48:07 +00:00
|
|
|
|
%doc examples/add_person.py examples/list_people.py examples/addressbook.proto
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%files vim
|
|
|
|
|
%defattr(-, root, root, -)
|
|
|
|
|
%{_datadir}/vim/vimfiles/ftdetect/proto.vim
|
|
|
|
|
%{_datadir}/vim/vimfiles/syntax/proto.vim
|
|
|
|
|
|
2010-07-15 12:34:23 +00:00
|
|
|
|
%if %{with java}
|
2008-11-25 18:48:07 +00:00
|
|
|
|
%files java
|
|
|
|
|
%defattr(-, root, root, -)
|
2012-03-19 13:16:06 +00:00
|
|
|
|
%{_mavenpomdir}/JPP-%{name}.pom
|
|
|
|
|
%{_mavendepmapfragdir}/%{name}
|
|
|
|
|
%{_javadir}/%{name}.jar
|
2008-11-25 18:48:07 +00:00
|
|
|
|
%doc examples/AddPerson.java examples/ListPeople.java
|
|
|
|
|
|
|
|
|
|
%files javadoc
|
|
|
|
|
%defattr(-, root, root, -)
|
|
|
|
|
%{_javadocdir}/%{name}
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%changelog
|
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
|
|
|
|
|
- Correct use of %bcond macros
|
|
|
|
|
|
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
|
|
|
|
|
|
2009-09-30 13:15:05 +00:00
|
|
|
|
* Wed Sep 30 2009 Lev Shamardin <shamardin@gmail.com> - 2.2.0-2
|
|
|
|
|
- added export PTHREAD_LIBS="-lpthread"
|
|
|
|
|
|
2009-09-18 12:56:32 +00:00
|
|
|
|
* Fri Sep 18 2009 Lev Shamardin <shamardin@gmail.com> - 2.2.0-1
|
|
|
|
|
- Upgraded to upstream protobuf-2.2.0
|
|
|
|
|
- New -lite packages
|
2009-07-26 19:29:54 +00:00
|
|
|
|
|
2009-03-01 10:36:00 +00:00
|
|
|
|
* Sun Mar 01 2009 Caolán McNamra <caolanm@redhat.com> - 2.0.2-8
|
|
|
|
|
- add stdio.h for sprintf, perror, etc.
|
|
|
|
|
|
2009-02-27 02:33:23 +00:00
|
|
|
|
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.2-7
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
|
2008-12-23 10:57:52 +00:00
|
|
|
|
* Tue Dec 23 2008 Lev Shamardin <shamardin@gmail.com> - 2.0.2-6
|
|
|
|
|
- Small fixes for python 2.6 eggs.
|
|
|
|
|
- Temporarily disabled java subpackage due to build problems, will be fixed and
|
|
|
|
|
turned back on in future.
|
|
|
|
|
|
2008-11-27 12:44:28 +00:00
|
|
|
|
* Thu Nov 27 2008 Lev Shamardin <shamardin@gmail.com> - 2.0.2-5
|
|
|
|
|
- No problems with ppc & ppc64 arch in rawhide, had to do a release bump.
|
|
|
|
|
|
2008-11-25 18:48:07 +00:00
|
|
|
|
* Sat Nov 22 2008 Lev Shamardin <shamardin@gmail.com> - 2.0.2-4
|
|
|
|
|
- Added patch from subversion r70 to workaround gcc 4.3.0 bug (see
|
|
|
|
|
http://code.google.com/p/protobuf/issues/detail?id=45 for more
|
|
|
|
|
details).
|
|
|
|
|
|
|
|
|
|
* Tue Nov 11 2008 Lev Shamardin <shamardin@gmail.com> - 2.0.2-3
|
|
|
|
|
- Added conflicts to java and python subpackages to prevent using with
|
|
|
|
|
wrong compiler versions.
|
|
|
|
|
- Fixed license.
|
|
|
|
|
- Fixed BuildRequires for -python subpackage.
|
|
|
|
|
- Fixed Requires and Group for -javadoc subpackage.
|
|
|
|
|
- Fixed Requires for -devel subpackage.
|
|
|
|
|
- Fixed issue with wrong shebang in descriptor_pb2.py.
|
|
|
|
|
- Specify build options via --with/--without.
|
|
|
|
|
- Use Fedora-packaged gtest library instead of a bundled one by
|
|
|
|
|
default (optional).
|
|
|
|
|
|
|
|
|
|
* Fri Oct 31 2008 Lev Shamardin <shamardin@gmail.com> - 2.0.2-2
|
|
|
|
|
- Use python_sitelib macro instead of INSTALLED_FILES.
|
|
|
|
|
- Fix the license.
|
|
|
|
|
- Fix redundant requirement for -devel subpackage.
|
|
|
|
|
- Fix wrong dependences for -python subpackage.
|
|
|
|
|
- Fix typo in requirements for -javadoc subpackage.
|
|
|
|
|
- Use -p option for cp and install to preserve timestamps.
|
|
|
|
|
- Remove unneeded ldconfig call for post scripts of -devel subpackage.
|
|
|
|
|
- Fix directories ownership.
|
|
|
|
|
|
|
|
|
|
* Sun Oct 12 2008 Lev Shamardin <shamardin@gmail.com> - 2.0.2-1
|
|
|
|
|
- Update to version 2.0.2
|
|
|
|
|
- New -java and -javadoc subpackages.
|
|
|
|
|
- Options to disable building of -python and -java* subpackages
|
|
|
|
|
|
|
|
|
|
* Mon Sep 15 2008 Lev Shamardin <shamardin@gmail.com> - 2.0.1-2
|
|
|
|
|
- Added -p switch to install commands to preserve timestamps.
|
|
|
|
|
- Fixed Version and Libs in pkgconfig script.
|
|
|
|
|
- Added pkgconfig requires for -devel package.
|
|
|
|
|
- Removed libtool archives from -devel package.
|
|
|
|
|
|
|
|
|
|
* Thu Sep 04 2008 Lev Shamardin <shamardin@gmail.com> - 2.0.1-1
|
|
|
|
|
- Updated to 2.0.1 version.
|
|
|
|
|
|
|
|
|
|
* Wed Aug 13 2008 Lev Shamardin <shamardin@gmail.com> - 2.0.0-0.1.beta
|
|
|
|
|
- Initial package version. Credits for vim subpackage and pkgconfig go
|
|
|
|
|
to Rick L Vinyard Jr <rvinyard@cs.nmsu.edu>
|