Accepting request 293069 from server:monitoring
1 OBS-URL: https://build.opensuse.org/request/show/293069 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/protobuf-c?expand=0&rev=9
This commit is contained in:
parent
ded030173f
commit
64cb57081e
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:8fcb538e13a5431c46168fc8f2e6ad2574e2db9b684c0c72b066e24f010a0036
|
|
||||||
size 500911
|
|
3
protobuf-c-1.1.0.tar.gz
Normal file
3
protobuf-c-1.1.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:9a973fc04aac003f9cf2b5a90ac4b8fa294cacb4e3f0796d3b5a789a5ad46c07
|
||||||
|
size 453852
|
@ -1,3 +1,37 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 5 10:11:04 UTC 2015 - dimstar@opensuse.org
|
||||||
|
|
||||||
|
- Update to version 1.1.0:
|
||||||
|
+ Fix a bug when merging optional byte fields.
|
||||||
|
+ Documentation updates.
|
||||||
|
+ Implement oneof support (Issue #174). Protobuf 2.6.0 or newer
|
||||||
|
is now required to build protobuf-c.
|
||||||
|
+ Print leading comments for enum, message, and field definitions
|
||||||
|
into generated header files (Issue #175).
|
||||||
|
- Changes from version 1.0.2:
|
||||||
|
+ Fix a build failure with Protobuf 2.6.0 related to aliased enum
|
||||||
|
constants (Issue #163).
|
||||||
|
+ Protobuf 2.5.0 or newer is now required to build protobuf-c
|
||||||
|
(Issue #166). This is due to the fix for #163.
|
||||||
|
+ Eliminate void pointer arithmetic (Issue #167).
|
||||||
|
+ Always define PROTOBUF_C__DEPRECATED, even on compilers that
|
||||||
|
are not GCC (Issue #167).
|
||||||
|
+ Work around the lack of the 'inline' keyword in Microsoft
|
||||||
|
compilers (Issue #167).
|
||||||
|
+ Add a CMakeLists.txt file as a fallback build system for
|
||||||
|
Windows (Issue #168).
|
||||||
|
+ Fix a build failure in the test suite that occurred with a
|
||||||
|
parallel make running on a system with a large number of CPUs
|
||||||
|
(Issue #156, #169).
|
||||||
|
- Changes from version 1.0.1:
|
||||||
|
+ Explicitly set the .data field of ProtobufCBinaryData's to NULL
|
||||||
|
when unpacking a zero length byte string (Issue #157).
|
||||||
|
- For a list of changes between 0.15 and 1.0.0, please refer to the
|
||||||
|
extensive ChangeLog file.
|
||||||
|
- Bump soname to 1, following upstream.
|
||||||
|
- Update Url tag: project moved over to github.
|
||||||
|
- Update license to be BSD-3-Clause and install LICENSE file.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Aug 31 07:11:06 UTC 2011 - coolo@suse.com
|
Wed Aug 31 07:11:06 UTC 2011 - coolo@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package protobuf-c
|
# spec file for package protobuf-c
|
||||||
#
|
#
|
||||||
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2011 Pascal Bleser
|
# Copyright (c) 2011 Pascal Bleser
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
@ -17,17 +17,16 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Name: protobuf-c
|
Name: protobuf-c
|
||||||
Version: 0.15
|
Version: 1.1.0
|
||||||
Release: 1
|
Release: 0
|
||||||
%define soname 0
|
%define soname 1
|
||||||
Summary: C bindings for Google's Protocol Buffers
|
Summary: C bindings for Google's Protocol Buffers
|
||||||
Source: http://protobuf-c.googlecode.com/files/protobuf-c-%{version}.tar.gz
|
License: BSD-3-Clause
|
||||||
Source99: protobuf-c-rpmlintrc
|
|
||||||
Url: http://code.google.com/p/protobuf-c/
|
|
||||||
Group: Development/Tools/Other
|
Group: Development/Tools/Other
|
||||||
License: Apache-2.0
|
Source: https://github.com/%{name}/%{name}/releases/download/v%{version}/%{name}-%{version}.tar.gz
|
||||||
|
Source99: protobuf-c-rpmlintrc
|
||||||
|
Url: https://github.com/protobuf-c/protobuf-c
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
BuildRequires: autoconf
|
BuildRequires: autoconf
|
||||||
BuildRequires: automake
|
BuildRequires: automake
|
||||||
@ -36,7 +35,7 @@ BuildRequires: glibc-devel
|
|||||||
BuildRequires: libtool
|
BuildRequires: libtool
|
||||||
BuildRequires: make
|
BuildRequires: make
|
||||||
BuildRequires: pkgconfig
|
BuildRequires: pkgconfig
|
||||||
BuildRequires: protobuf-devel
|
BuildRequires: protobuf-devel >= 2.6.0
|
||||||
Requires: libprotobuf-c-devel = %{version}
|
Requires: libprotobuf-c-devel = %{version}
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -112,6 +111,7 @@ popd #build
|
|||||||
|
|
||||||
%files -n libprotobuf-c%{soname}
|
%files -n libprotobuf-c%{soname}
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
|
%doc LICENSE
|
||||||
%{_libdir}/libprotobuf-c.so.%{soname}
|
%{_libdir}/libprotobuf-c.so.%{soname}
|
||||||
%{_libdir}/libprotobuf-c.so.%{soname}.*
|
%{_libdir}/libprotobuf-c.so.%{soname}.*
|
||||||
|
|
||||||
@ -119,6 +119,7 @@ popd #build
|
|||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%dir %{_includedir}/google
|
%dir %{_includedir}/google
|
||||||
%{_includedir}/google/protobuf-c
|
%{_includedir}/google/protobuf-c
|
||||||
|
%{_includedir}/protobuf-c/
|
||||||
%{_libdir}/libprotobuf-c.so
|
%{_libdir}/libprotobuf-c.so
|
||||||
%{_libdir}/pkgconfig/libprotobuf-c.pc
|
%{_libdir}/pkgconfig/libprotobuf-c.pc
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user