forked from protocolbuffers/protobuf
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
git clean -xdf git submodule sync --recursive git submodule update --init --recursive tar zcvf ../protobuf_3.21.5.orig.tar.gz --exclude=.git . debuild -uc -us cp protobuf.spec ../protobuf_3.21.5-2.spec mv ../*protobuf*3.21.5*.{gz,xz,spec,dsc} /osc/home\:alvistack/protocolbuffers-protobuf-3.21.5/ rm -rf ../*protobuf*.* See protocolbuffers#5144 (comment) Signed-off-by: Wong Hoi Sing Edison <[email protected]>
- Loading branch information
Showing
26 changed files
with
251 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
*.substvars | ||
*debhelper* | ||
.debhelper | ||
autoreconf.* | ||
files | ||
libprotobuf-dev | ||
libprotobuf-lite32 | ||
libprotobuf32 | ||
libprotoc-dev | ||
libprotoc32 | ||
protobuf-compiler | ||
python3-protobuf | ||
tmp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
protobuf (100:3.21.5-1) UNRELEASED; urgency=medium | ||
|
||
* https://github.com/protocolbuffers/protobuf/releases/tag/v3.21.5 | ||
|
||
-- Wong Hoi Sing Edison <[email protected]> Sat, 03 Sep 2022 18:01:15 +0800 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
Source: protobuf | ||
Section: devel | ||
Priority: optional | ||
Standards-Version: 4.5.0 | ||
Maintainer: Wong Hoi Sing Edison <[email protected]> | ||
Homepage: https://github.com/protocolbuffers/protobuf/tags | ||
Vcs-Browser: https://github.com/alvistack/protocolbuffers-protobuf | ||
Vcs-Git: https://github.com/alvistack/protocolbuffers-protobuf.git | ||
Build-Depends: | ||
debhelper, | ||
debhelper-compat (= 10), | ||
dh-python, | ||
fdupes, | ||
cmake, | ||
ninja-build, | ||
python3-dev, | ||
python3-setuptools, | ||
zlib1g-dev, | ||
|
||
Package: libprotobuf32 | ||
Architecture: any | ||
Section: libs | ||
Description: protocol buffers C++ library | ||
This package contains the runtime library needed for C++ applications. | ||
Depends: | ||
${misc:Depends}, | ||
${shlibs:Depends}, | ||
Breaks: | ||
cura-engine (<< 1:3.3.0-2.1+b1), | ||
libarcus3 (<< 3.3.0-2), | ||
|
||
Package: libprotobuf-lite32 | ||
Architecture: any | ||
Section: libs | ||
Description: protocol buffers C++ library (lite version) | ||
This package contains the runtime library needed for C++ applications whose | ||
message definitions have the "lite runtime" optimization setting. | ||
Depends: | ||
${misc:Depends}, | ||
${shlibs:Depends}, | ||
|
||
Package: libprotobuf-dev | ||
Architecture: any | ||
Section: libdevel | ||
Description: protocol buffers C++ library (development files) and proto files | ||
This package contains the development headers and static libraries needed for | ||
writing C++ applications. Includes well known proto type files. | ||
Depends: | ||
${misc:Depends}, | ||
zlib1g-dev, | ||
libprotobuf32 (= ${source:Version}), | ||
libprotobuf-lite32 (= ${source:Version}), | ||
Breaks: | ||
protobuf-compiler (<< ${source:Version}), | ||
protobuf-compiler (>> ${source:Version}), | ||
Provides: | ||
protobuf-api-32-0, | ||
|
||
Package: libprotoc32 | ||
Architecture: any | ||
Multi-Arch: same | ||
Section: libs | ||
Description: protocol buffers compiler library | ||
This package contains the runtime library needed for the protocol buffer | ||
compiler. | ||
Depends: | ||
${shlibs:Depends}, | ||
${misc:Depends}, | ||
|
||
Package: libprotoc-dev | ||
Architecture: any | ||
Section: libdevel | ||
Description: protocol buffers compiler library (development files) | ||
This package contains the development headers and static library needed for | ||
writing protobuf compilers. | ||
Depends: | ||
${misc:Depends}, | ||
libprotobuf-dev (= ${source:Version}), | ||
libprotoc32 (= ${source:Version}), | ||
Replaces: | ||
libprotobuf-dev (<< 2.1.0), | ||
Breaks: | ||
libprotobuf-dev (<< 2.1.0), | ||
|
||
Package: protobuf-compiler | ||
Architecture: any | ||
Description: compiler for protocol buffer definition files | ||
This package contains the protocol buffer compiler that is used for | ||
translating from .proto files (containing the definitions) to the language | ||
binding for the supported languages. | ||
Depends: | ||
${shlibs:Depends}, | ||
${misc:Depends}, | ||
libprotoc32 (= ${binary:Version}), | ||
Recommends: | ||
libprotobuf-dev, | ||
Suggests: | ||
protobuf-mode-el, | ||
|
||
Package: python3-protobuf | ||
Architecture: any | ||
Section: python | ||
Description: Python 3 bindings for protocol buffers | ||
This package contains the Python 3 bindings for the protocol buffers. You will | ||
need the protoc tool (in the protobuf-compiler package) to compile your | ||
definition to Python classes, and then the modules in this package will allow | ||
you to use those classes in your programs. | ||
Depends: | ||
${misc:Depends}, | ||
${python3:Depends}, | ||
${shlibs:Depends}, | ||
python3, |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
usr/include | ||
usr/lib/*/libprotobuf-lite.so | ||
usr/lib/*/libprotobuf.so | ||
usr/lib/*/pkgconfig/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
libprotobuf-dev: copyright-without-copyright-notice | ||
libprotobuf-dev: initial-upload-closes-no-bugs | ||
libprotobuf-dev: zero-byte-file-in-doc-directory |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
usr/lib/*/libprotobuf-lite.so.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
libprotobuf-lite32: copyright-without-copyright-notice | ||
libprotobuf-lite32: initial-upload-closes-no-bugs | ||
libprotobuf-lite32: package-name-doesnt-match-sonames | ||
libprotobuf-lite32: zero-byte-file-in-doc-directory |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
usr/lib/*/libprotobuf.so.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
libprotobuf32: copyright-without-copyright-notice | ||
libprotobuf32: initial-upload-closes-no-bugs | ||
libprotobuf32: package-name-doesnt-match-sonames | ||
libprotobuf32: zero-byte-file-in-doc-directory |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
usr/include/google/protobuf/compiler | ||
usr/lib/*/libprotoc.so |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
libprotoc-dev: copyright-without-copyright-notice | ||
libprotoc-dev: initial-upload-closes-no-bugs | ||
libprotoc-dev: zero-byte-file-in-doc-directory |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
usr/lib/*/libprotoc*.so.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
libprotoc32: copyright-without-copyright-notice | ||
libprotoc32: initial-upload-closes-no-bugs | ||
libprotoc32: package-name-doesnt-match-sonames | ||
libprotoc32: zero-byte-file-in-doc-directory |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
usr/bin/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
protobuf-compiler: copyright-without-copyright-notice | ||
protobuf-compiler: initial-upload-closes-no-bugs | ||
protobuf-compiler: no-manual-page | ||
protobuf-compiler: zero-byte-file-in-doc-directory |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
usr/lib/python*/*-packages/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
python3-protobuf: copyright-without-copyright-notice | ||
python3-protobuf: initial-upload-closes-no-bugs | ||
python3-protobuf: shared-library-lacks-prerequisites | ||
python3-protobuf: zero-byte-file-in-doc-directory |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
#!/usr/bin/make -f | ||
|
||
SHELL := /bin/bash | ||
|
||
PYTHON3_PROTOBUF_VERSION = $(shell cat python/google/protobuf/__init__.py | grep version | sed "s/^.*'\(.*\)'/\1/g") | ||
|
||
override_dh_autoreconf: | ||
|
||
override_dh_auto_configure: | ||
pushd src && \ | ||
cmake \ | ||
../cmake \ | ||
-DCMAKE_BUILD_TYPE=Release \ | ||
-DCMAKE_INSTALL_PREFIX=/usr \ | ||
-Dprotobuf_BUILD_LIBPROTOC=ON \ | ||
-Dprotobuf_BUILD_PROTOC_BINARIES=ON \ | ||
-Dprotobuf_BUILD_SHARED_LIBS=ON \ | ||
-Dprotobuf_BUILD_TESTS=OFF && \ | ||
popd | ||
|
||
override_dh_auto_build: | ||
pushd src && \ | ||
cmake \ | ||
--build . \ | ||
--parallel 10 \ | ||
--config Release && \ | ||
popd | ||
pushd python && \ | ||
python3 setup.py build \ | ||
--cpp_implementation && \ | ||
popd | ||
|
||
override_dh_auto_install: | ||
pushd src && \ | ||
export DESTDIR=../debian/tmp && \ | ||
cmake \ | ||
--install . && \ | ||
popd | ||
pushd python && \ | ||
python3 setup.py install \ | ||
--cpp_implementation \ | ||
--no-compile \ | ||
--install-layout=deb \ | ||
--root=../debian/tmp && \ | ||
popd | ||
find debian/tmp/usr/lib/python*/*-packages -type f -name '*.pyc' -exec rm -rf {} \; | ||
fdupes -qnrps debian/tmp/usr/lib/python*/*-packages | ||
|
||
override_dh_install: | ||
dh_install | ||
rm -rf debian/libprotobuf-dev/usr/include/google/protobuf/compiler | ||
|
||
override_dh_gencontrol: | ||
dh_gencontrol | ||
dh_gencontrol -ppython3-protobuf -- -v$(PYTHON3_PROTOBUF_VERSION) | ||
|
||
override_dh_auto_test: | ||
|
||
override_dh_auto_clean: | ||
|
||
%: | ||
dh $@ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3.0 (quilt) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
protobuf source: configure-generated-file-in-source | ||
protobuf source: dependency-is-not-multi-archified | ||
protobuf source: no-debian-changes | ||
protobuf source: not-binnmuable-any-depends-any | ||
protobuf source: python3-depends-but-no-python3-helper | ||
protobuf source: weak-library-dev-dependency |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,8 @@ | |
extern "C++" { | ||
*google*; | ||
}; | ||
scc_info_*; | ||
descriptor_table_*; | ||
|
||
local: | ||
*; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,8 @@ | |
extern "C++" { | ||
*google*; | ||
}; | ||
scc_info_*; | ||
descriptor_table_*; | ||
|
||
local: | ||
*; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,8 @@ | |
extern "C++" { | ||
*google*; | ||
}; | ||
scc_info_*; | ||
descriptor_table_*; | ||
|
||
local: | ||
*; | ||
|