forked from pool/protobuf-c
Compare commits
2 Commits
Author | SHA256 | Date | |
---|---|---|---|
|
d9d65a8866 | ||
|
16dccf6ba8 |
4
_scmsync.obsinfo
Normal file
4
_scmsync.obsinfo
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
mtime: 1739145091
|
||||||
|
commit: 5c2778b5293c15465359be6a2fb048b022a32455180904f5104e89d9698d4694
|
||||||
|
url: https://src.opensuse.org/jengelh/protobuf-c
|
||||||
|
revision: master
|
3
build.specials.obscpio
Normal file
3
build.specials.obscpio
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:147443428f8f687aabf4f59b5a85c8fdff4f2ec76f2902a8f5ac512bbe27bd91
|
||||||
|
size 256
|
BIN
protobuf-c-1.5.0.tar.gz
(Stored with Git LFS)
BIN
protobuf-c-1.5.0.tar.gz
(Stored with Git LFS)
Binary file not shown.
BIN
protobuf-c-1.5.1.tar.gz
(Stored with Git LFS)
Normal file
BIN
protobuf-c-1.5.1.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -1,3 +1,35 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Feb 9 23:46:28 UTC 2025 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
- Update to release 1.5.1
|
||||||
|
* Order `oneof` union members from largest to smallest
|
||||||
|
* Better compatibility with protobuf >= 26.0
|
||||||
|
- Delete 711.patch (merged)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 27 11:25:31 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
- Implement naming guidelines and rename libprotobuf-c-devel back
|
||||||
|
to just %name-devel. (The divergence came about on Nov 19 2021
|
||||||
|
as a result of merging two subpackages.)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 22 08:48:51 UTC 2024 - Fridrich Strba <fstrba@suse.com>
|
||||||
|
|
||||||
|
- Modified patch:
|
||||||
|
* 711.patch
|
||||||
|
+ Drop a hunk that was creating problems when the protoc-c
|
||||||
|
was called directly and not just as a plugin to protoc
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Oct 21 18:20:27 UTC 2024 - Fridrich Strba <fstrba@suse.com>
|
||||||
|
|
||||||
|
- Added patch:
|
||||||
|
* 711.patch
|
||||||
|
+ Backport the changes from the pull request #711
|
||||||
|
https://github.com/protobuf-c/protobuf-c/pull/711 fixing
|
||||||
|
build with protobuf 26.0+
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Aug 12 21:14:32 UTC 2024 - Andreas Stieger <andreas.stieger@gmx.de>
|
Mon Aug 12 21:14:32 UTC 2024 - Andreas Stieger <andreas.stieger@gmx.de>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package protobuf-c
|
# spec file for package protobuf-c
|
||||||
#
|
#
|
||||||
# Copyright (c) 2023 SUSE LLC
|
# Copyright (c) 2025 SUSE LLC
|
||||||
# Copyright (c) 2011 Pascal Bleser
|
# Copyright (c) 2011 Pascal Bleser
|
||||||
# Copyright (c) 2024 Andreas Stieger <Andreas.Stieger@gmx.de>
|
# Copyright (c) 2024 Andreas Stieger <Andreas.Stieger@gmx.de>
|
||||||
#
|
#
|
||||||
@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
%define sover 1
|
%define sover 1
|
||||||
Name: protobuf-c
|
Name: protobuf-c
|
||||||
Version: 1.5.0
|
Version: 1.5.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: C bindings for Google's Protocol Buffers
|
Summary: C bindings for Google's Protocol Buffers
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
@ -50,15 +50,17 @@ Group: System/Libraries
|
|||||||
This package provides a code generator and runtime libraries to use Protocol
|
This package provides a code generator and runtime libraries to use Protocol
|
||||||
Buffers from pure C (not C++).
|
Buffers from pure C (not C++).
|
||||||
|
|
||||||
%package -n libprotobuf-c-devel
|
%package devel
|
||||||
Summary: C bindings for Google's Protocol Buffers
|
Summary: protobuf generator and headers
|
||||||
Group: Development/Libraries/C and C++
|
Group: Development/Libraries/C and C++
|
||||||
Requires: libprotobuf-c%sover = %version
|
Requires: libprotobuf-c%sover = %version
|
||||||
Recommends: (protobuf-devel >= 2.6.0 with protobuf-devel < 22)
|
Recommends: (protobuf-devel >= 2.6.0 with protobuf-devel < 22)
|
||||||
Provides: %name = %version
|
Provides: protobuf-c = %version-%release
|
||||||
Obsoletes: %name <= 1.4.0
|
Obsoletes: protobuf-c <= %version-%release
|
||||||
|
Provides: libprotobuf-c-devel = %version-%release
|
||||||
|
Obsoletes: libprotobuf-c-devel <= %version-%release
|
||||||
|
|
||||||
%description -n libprotobuf-c-devel
|
%description devel
|
||||||
This package provides a code generator and runtime libraries to use Protocol
|
This package provides a code generator and runtime libraries to use Protocol
|
||||||
Buffers from pure C (not C++).
|
Buffers from pure C (not C++).
|
||||||
|
|
||||||
@ -87,7 +89,7 @@ make check
|
|||||||
%_libdir/libprotobuf-c.so.%sover
|
%_libdir/libprotobuf-c.so.%sover
|
||||||
%_libdir/libprotobuf-c.so.%sover.*
|
%_libdir/libprotobuf-c.so.%sover.*
|
||||||
|
|
||||||
%files -n libprotobuf-c-devel
|
%files devel
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%dir %_includedir/protobuf-c
|
%dir %_includedir/protobuf-c
|
||||||
%dir %_includedir/google
|
%dir %_includedir/google
|
||||||
|
Loading…
x
Reference in New Issue
Block a user