Your message dated Fri, 18 Dec 2020 16:00:11 +0000
with message-id <[email protected]>
and subject line Bug#927721: fixed in protobuf 3.14.0-1
has caused the Debian Bug report #927721,
regarding protobuf: please build PHP package
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
927721: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=927721
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: protobuf
Version: 3.6.1.3-2
Severity: wishlist
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
The attached patch adds a new package that contains the native PHP package
for protobuf. It is a trivial patch - it does not build the C extension,
which has better performance, but is otherwise the same.
The package will be needed for the movim package in the future.
-----BEGIN PGP SIGNATURE-----
iQKJBAEBCgBzFiEEPJ1UpHV1wCb7F/0mt5o8FqDE8pYFAly86XkxGmh0dHBzOi8v
d3d3LmRvbWluaWstZ2VvcmdlLmRlL2dwZy1wb2xpY3kudHh0LmFzYyMcZG9taW5p
ay5nZW9yZ2VAaXQucGlyYXRlbnBhcnRlaS5kZQAKCRC3mjwWoMTyll1WEADCXq4X
Wk3qCrlW1SB9UoiCNeQ3OpjKi9TShwbzVaWGX5Kten+3cWSYNyYxXj3qKyFcGCff
ezvBWQa6w+ziC0r62mOKJcBXJrYpK2L93LA8F5O2jLXKo4h8Mr1HZU63u79MffZc
d2xWM+DbfD90K58ShL1zROWg5bF++8uiDGpXqmIvZVGd97W5gHT6Mqm5azBmsg38
6y1P+DK7GfuqflXmkjax4iVSl/6YtgpWTfz3HZwJVyhVRdjcNVGnAkoGieifFbxt
NYBblMYY4H9jp3Giy5xXXv2cQ3C4jDQpbLqTM6j/sBbCFE1jOPj6yMuqbVjvVkDL
4AzMIAKTDUCzc3ulIebaRGfny5tPiH5C/AXKHXnTDxDvIiSDzDnYIaRtpiRdyPqs
q0eEKToUxSNt36VS4aqkT/jf/2CW6vyo6Ix6nNliT0kPCII9ovnTXtL311ivchNF
BqHnwU028XJO4qXHTpqu2GtsRPMsgKnx3Uboon8w+Td6Taa3CtsGukpqtlCMNOlO
ZbofKXysrayyFSXUYNee9FUpQZNQVWcD55vtV6GxTU0vTpPIOLVilWO8Zi954zwC
dDiJrcrJs4Zl+ixLwO8quHbWljleha/k2qNeX/kHwaPKy0F8SWH6+pqCqIVk0U24
14SrywdKQQ4jb8d68efnsDAwqLSO+Hpnne67Mw==
=aUWg
-----END PGP SIGNATURE-----
diff -Nru protobuf-3.6.1.3/debian/changelog protobuf-3.6.1.3/debian/changelog
--- protobuf-3.6.1.3/debian/changelog 2019-04-17 00:12:03.000000000 +0200
+++ protobuf-3.6.1.3/debian/changelog 2019-04-21 23:14:53.000000000 +0200
@@ -1,3 +1,10 @@
+protobuf (3.6.1.3-2.1) unstable; urgency=medium
+
+ * Non-maintainer upload.
+ * Build PHP package..
+
+ -- Dominik George <[email protected]> Sun, 21 Apr 2019 23:14:53 +0200
+
protobuf (3.6.1.3-2) unstable; urgency=medium
* Prevent installation of non-working combination of libarcus3 and
diff -Nru protobuf-3.6.1.3/debian/control protobuf-3.6.1.3/debian/control
--- protobuf-3.6.1.3/debian/control 2019-04-17 00:12:03.000000000 +0200
+++ protobuf-3.6.1.3/debian/control 2019-04-21 23:14:53.000000000 +0200
@@ -26,6 +26,8 @@
# Ruby
, rake-compiler
, gem2deb
+# PHP
+ , pkg-php-tools (>= 1.7~)
Build-Depends-Indep:
# Java
, ant
@@ -253,3 +255,29 @@
need the protoc tool (in the protobuf-compiler package) to compile your
definition to Java classes, and then the modules in this package will allow
you to use those classes in your programs.
+
+Package: php-google-protobuf
+Architecture: all
+Section: php
+Depends: ${misc:Depends}, ${phpcomposer:Debian-require}
+Recommends: ${phpcomposer:Debian-recommend}
+Suggests: ${phpcomposer:Debian-suggest}
+Replaces: ${phpcomposer:Debian-replace}
+Breaks: ${phpcomposer:Debian-conflict}, ${phpcomposer:Debian-replace}
+Provides: ${phpcomposer:Debian-provide}
+Description: PHP bindings for protocol buffers
+ Protocol buffers are a flexible, efficient, automated mechanism for
+ serializing structured data - similar to 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.
+ .
+ Google uses Protocol Buffers for almost all of its internal RPC protocols and
+ file formats.
+ .
+ This package contains the PHP bindings for the protocol buffers. You will
+ need the protoc tool (in the protobuf-compiler package) to compile your
+ definition to PHP code, and then the modules in this package will allow
+ you to use those classes in your programs.
diff -Nru protobuf-3.6.1.3/debian/php-google-protobuf.install
protobuf-3.6.1.3/debian/php-google-protobuf.install
--- protobuf-3.6.1.3/debian/php-google-protobuf.install 1970-01-01
01:00:00.000000000 +0100
+++ protobuf-3.6.1.3/debian/php-google-protobuf.install 2019-04-21
23:14:53.000000000 +0200
@@ -0,0 +1,2 @@
+php/src/Google usr/share/php/
+php/src/GPBMetadata usr/share/php/
diff -Nru protobuf-3.6.1.3/debian/rules protobuf-3.6.1.3/debian/rules
--- protobuf-3.6.1.3/debian/rules 2018-11-27 00:23:31.000000000 +0100
+++ protobuf-3.6.1.3/debian/rules 2019-04-21 23:14:53.000000000 +0200
@@ -15,7 +15,7 @@
endif
%:
- dh $@ --with autoreconf,python2,python3
+ dh $@ --with autoreconf,python2,python3,phpcomposer
ifneq ($(DEB_BUILD_ARCH),$(DEB_HOST_ARCH))
override_dh_auto_configure:
--- End Message ---
--- Begin Message ---
Source: protobuf
Source-Version: 3.14.0-1
Done: Laszlo Boszormenyi (GCS) <[email protected]>
We believe that the bug you reported is fixed in the latest version of
protobuf, which is due to be installed in the Debian FTP archive.
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Laszlo Boszormenyi (GCS) <[email protected]> (supplier of updated protobuf
package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
Format: 1.8
Date: Tue, 15 Dec 2020 07:15:10 +0100
Source: protobuf
Binary: elpa-protobuf-mode libprotobuf-dev libprotobuf-java libprotobuf-lite25
libprotobuf-lite25-dbgsym libprotobuf25 libprotobuf25-dbgsym libprotoc-dev
libprotoc25 libprotoc25-dbgsym php-google-protobuf protobuf-compiler
protobuf-compiler-dbgsym python3-protobuf python3-protobuf-dbgsym
ruby-google-protobuf ruby-google-protobuf-dbgsym
Architecture: source all amd64
Version: 3.14.0-1
Distribution: experimental
Urgency: medium
Maintainer: Laszlo Boszormenyi (GCS) <[email protected]>
Changed-By: Laszlo Boszormenyi (GCS) <[email protected]>
Description:
elpa-protobuf-mode - Emacs addon for editing protocol buffers
libprotobuf-dev - protocol buffers C++ library (development files) and proto
files
libprotobuf-java - Java bindings for protocol buffers
libprotobuf-lite25 - protocol buffers C++ library (lite version)
libprotobuf25 - protocol buffers C++ library
libprotoc-dev - protocol buffers compiler library (development files)
libprotoc25 - protocol buffers compiler library
php-google-protobuf - PHP bindings for protocol buffers
protobuf-compiler - compiler for protocol buffer definition files
python3-protobuf - Python 3 bindings for protocol buffers
ruby-google-protobuf - Protocol Buffers
Closes: 927721
Changes:
protobuf (3.14.0-1) experimental; urgency=medium
.
* New major upstream release.
* Update patches.
* Let libprotobuf-dev provide API version.
* Library transition from libproto*23 to libproto*25 .
.
[ Dominik George <[email protected]> ]
* Build PHP package (closes: #927721).
Checksums-Sha1:
dada9d48bed206422c56a289ce74b538d4cbcc3d 2814 protobuf_3.14.0-1.dsc
b613ab3057c8a7400e7b7d3004824274d964a196 5319779 protobuf_3.14.0.orig.tar.gz
5d3752e0951e48e66af8d1fccb0ae4b713bf9809 26832 protobuf_3.14.0-1.debian.tar.xz
b015441ddb6f4e40a41cb118c38f6431223a70b8 56340
elpa-protobuf-mode_3.14.0-1_all.deb
df69c3e9912f1c9f5c326da02fde1c4c3bba76f1 1252816
libprotobuf-dev_3.14.0-1_amd64.deb
a4ab08cef41f4cc3fdd2bb59ce42c3ae92022f16 1231376
libprotobuf-java_3.14.0-1_all.deb
23e8aae5482b3483c987d5336accda791d8e2c83 1638700
libprotobuf-lite25-dbgsym_3.14.0-1_amd64.deb
1a9c7d25097f6009c90c66ae2bfb5c648d51c6d4 248008
libprotobuf-lite25_3.14.0-1_amd64.deb
8ee6fcf07a11444fbbafdd3b5499a9cad5f63d36 11019184
libprotobuf25-dbgsym_3.14.0-1_amd64.deb
3d984e2a748dca05f444e8d00c3fd2f059061e5d 911612
libprotobuf25_3.14.0-1_amd64.deb
c1f81dfaa3c23d56ac8f7869268ce3b3e7afc9bc 929012
libprotoc-dev_3.14.0-1_amd64.deb
701cc5c07abdd3aaffba4caf21ef435b0a125b11 14100828
libprotoc25-dbgsym_3.14.0-1_amd64.deb
11bb4407500dd07ffd8a207c3ff7930fe98c4050 810700 libprotoc25_3.14.0-1_amd64.deb
e8922daacd5add179f28aa3970674e796e7cae51 115740
php-google-protobuf_3.14.0-1_all.deb
7e3ddb233cbc84cc267e4686090f7c204ea8b71e 110212
protobuf-compiler-dbgsym_3.14.0-1_amd64.deb
c388cac90b97a8ad678e3b6b50483fa60a8a29c2 77464
protobuf-compiler_3.14.0-1_amd64.deb
92343817f3c0279136a5fc15a3b21b54483ca9ce 18713
protobuf_3.14.0-1_amd64.buildinfo
1f5bb23ae246a6759360aedc1969ec42455fb3ee 1214532
python3-protobuf-dbgsym_3.14.0-1_amd64.deb
662c4cca96135dcec4c62536e67ef5f3fec6101f 237216
python3-protobuf_3.14.0-1_amd64.deb
2b9c631ada20c0fc3b198472284bbe9ddf227b3a 555208
ruby-google-protobuf-dbgsym_3.14.0-1_amd64.deb
6f87de4611687df9a592272049309bbd0ad92abe 181244
ruby-google-protobuf_3.14.0-1_amd64.deb
Checksums-Sha256:
519c63b731e33604b6e00775d812da8f5d62114901f2dc7256db6e2a7d9d53e0 2814
protobuf_3.14.0-1.dsc
d0f5f605d0d656007ce6c8b5a82df3037e1d8fe8b121ed42e536f569dec16113 5319779
protobuf_3.14.0.orig.tar.gz
2d658198dd9d37aaac04ea09be274831d80b159aa6fb6fa4900e11842649cd54 26832
protobuf_3.14.0-1.debian.tar.xz
9e31515a1739544f3a1ff8ea05367d9cac90ddbb1c8c6dd28932757e5a8ad518 56340
elpa-protobuf-mode_3.14.0-1_all.deb
1f0a201d894832fad8e5cd6e0ac09f31cd0aa5b8821e7aebc2eee8642923609b 1252816
libprotobuf-dev_3.14.0-1_amd64.deb
b49c7a2e44090da20ca06e84ab41521baeddacecfa7e9bda30f9c2598b85701d 1231376
libprotobuf-java_3.14.0-1_all.deb
03c419ee120c4bfdb99f721243b30814a17fc7537ff242c25ad3b57f5792446e 1638700
libprotobuf-lite25-dbgsym_3.14.0-1_amd64.deb
550a9fa8cad043143b77254438f98245e6d6984d25447a49063ac419bfd40bf4 248008
libprotobuf-lite25_3.14.0-1_amd64.deb
4388af6304cec1c82b30a779a93de7d3913876688f2841febe9c20d674750655 11019184
libprotobuf25-dbgsym_3.14.0-1_amd64.deb
6f7dc4f7146133775ac62fefd1629719f7ae25db9e00b7ce5e6a85bd555c1a36 911612
libprotobuf25_3.14.0-1_amd64.deb
10e63a1eb72299b4ec83481821a4fe7b7cb0ee336526b0266688e9e3f8ce4ead 929012
libprotoc-dev_3.14.0-1_amd64.deb
03f900c4f35640bca7ab491b7bd4983b57582ed169d22f3e510d327b11fddb90 14100828
libprotoc25-dbgsym_3.14.0-1_amd64.deb
69810f062433a3d0d9e87dae26ed4fefd9feff9f9861520c0408616db0526527 810700
libprotoc25_3.14.0-1_amd64.deb
7154e5f625a730038fafdb9a633336f8f35ba50e64bd1c464d52b2c3b5dcc0ad 115740
php-google-protobuf_3.14.0-1_all.deb
8c91f372665869f4fb7a97b07ff86e6aa50177244889abc50cc117b6bf9e66cd 110212
protobuf-compiler-dbgsym_3.14.0-1_amd64.deb
2661c72a2719c2a3cbf77fdb928822168ca1bc4f12b0bfcca9879560bae215dc 77464
protobuf-compiler_3.14.0-1_amd64.deb
32150d75f4f1c0c1ddee2444cd8a22b8f7125548fe3530ac9225b71f9b47cee9 18713
protobuf_3.14.0-1_amd64.buildinfo
3e162c61939e7de7a171731a42f690f44e7fdd6f718b50ff0a3c63c05b5fb6f1 1214532
python3-protobuf-dbgsym_3.14.0-1_amd64.deb
aff0647b77f2c8d7fd708b8687835a0085d25d092291d7415daf25d2cdd1a116 237216
python3-protobuf_3.14.0-1_amd64.deb
00aa65679200334c6e3193a844ff95078d81e0c6b8499a7e335d82dee9452818 555208
ruby-google-protobuf-dbgsym_3.14.0-1_amd64.deb
c6046ee9115e8f2fd0cb47a73a348e96cc5160b873de43bead3a8037c81e952d 181244
ruby-google-protobuf_3.14.0-1_amd64.deb
Files:
f26c25fe72efe94847f1cdb81fdb5f2c 2814 devel optional protobuf_3.14.0-1.dsc
0c9d2a96f3656ba7ef3b23b533fb6170 5319779 devel optional
protobuf_3.14.0.orig.tar.gz
37ebd4884a986c0d25e70d1a86de02c0 26832 devel optional
protobuf_3.14.0-1.debian.tar.xz
e3a0358f885eb556cf644563782ec8f5 56340 editors optional
elpa-protobuf-mode_3.14.0-1_all.deb
7aecc8824d460080b1c9dc69c2dd31fe 1252816 libdevel optional
libprotobuf-dev_3.14.0-1_amd64.deb
37f83ac2ca338f8dabc7b4a4a1f95b55 1231376 java optional
libprotobuf-java_3.14.0-1_all.deb
7282965cb56b357dbee3928195e351d9 1638700 debug optional
libprotobuf-lite25-dbgsym_3.14.0-1_amd64.deb
0b2c57904c76a843215e40d061011dcc 248008 libs optional
libprotobuf-lite25_3.14.0-1_amd64.deb
e0472a35a7bed8f1c956898e34cf962c 11019184 debug optional
libprotobuf25-dbgsym_3.14.0-1_amd64.deb
c80fc576320b13803a2940426e960bf1 911612 libs optional
libprotobuf25_3.14.0-1_amd64.deb
928a31daeaf3ee6cac26b7100b3c7c92 929012 libdevel optional
libprotoc-dev_3.14.0-1_amd64.deb
6fe429f2b4e98a5bcdf581c08b01e2de 14100828 debug optional
libprotoc25-dbgsym_3.14.0-1_amd64.deb
7a33d0587173d8a3b5ec463e5f1420b2 810700 libs optional
libprotoc25_3.14.0-1_amd64.deb
369aceb4798f2540bdfa022033040556 115740 php optional
php-google-protobuf_3.14.0-1_all.deb
7deb7de93d100957ace51c4c1dcb95f1 110212 debug optional
protobuf-compiler-dbgsym_3.14.0-1_amd64.deb
1ecde999dfea076192f0e15c712160b9 77464 devel optional
protobuf-compiler_3.14.0-1_amd64.deb
7cdc2f5cdf9ad0114c317e29a86d3a5a 18713 devel optional
protobuf_3.14.0-1_amd64.buildinfo
bd0ecfe672532d943f5b61b91315352a 1214532 debug optional
python3-protobuf-dbgsym_3.14.0-1_amd64.deb
2a1c6c9fb8e9b7e8a14f666f130b67ec 237216 python optional
python3-protobuf_3.14.0-1_amd64.deb
6638b430a3eacc41b74c9015517ca864 555208 debug optional
ruby-google-protobuf-dbgsym_3.14.0-1_amd64.deb
e12666a52aacebfe574adf59d42b1f41 181244 ruby optional
ruby-google-protobuf_3.14.0-1_amd64.deb
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCgAdFiEEfYh9yLp7u6e4NeO63OMQ54ZMyL8FAl/YWFkACgkQ3OMQ54ZM
yL99YQ/+MMKTz3pDq04Nq7zVvW49xIjEFYULGjtPoh+LwduyB2V8VwsQJBJ09yDA
Lu303fSIEAv/A3HoBCNzddYsWcrEKg1yDHHvyuQC9w3YPedTInro5W7pjWrURMqk
4CULWiKdH5mnUrjF7ZabfvqNcRU6S6vbS+6/5V87C7wgcDhPF6kgnvAt7yXxbLOu
/Pct7OmHsrsWPyiqS/yFlWaD7TC2Wm3Dx93gMwidN7rFMdYGqAWx6vYFTeB7rzkE
y/Fg4rkp4sEsJ9Da2aNpU8q14GJS6mvuIDpN9jHfvgj28zcXMsYQHhw+sd3m8UFY
gCPh5I4XJ+8/0JQ4zVJBaQWiifGiFltiinJxuU4AsMvTs9snzUYrYLubGRK1tzcY
NtRoe471gQ5iGi6q4QrEc9ssxwzQiwnPaBykizK687mm6+TXN+/DnJp2lxyQI0di
RCYeG8lqJtzIH4FZX9Q0gyIHV2D1P/2I8LCdrgX1x7VKL4AnQpD7l6OCQ/ByIqOR
067tHqEKSKs9F+aZxQh382h/wLPaN+6GMwCJ7EF/rxvZ5vCnxshgscEhRLIqIWZo
Jkeav+SFvpbKfAxVdYtcUk70QtY/YI7kz3ipvD8d+zRx/s3pCSZJutcd6LZw7STB
VmfH7xbKGR8A4EUpAIR/+8g82HaKgOLnf/79OStsD2dg6X6c7Do=
=yeEG
-----END PGP SIGNATURE-----
--- End Message ---