- Submitter:
- Jérémy Lal
- Date:
- 2025-08-07 20:25:41 UTC
- Severity:
- normal
- Tags:
As can be seen below, the use of "Conflicts" does not allow for a smooth transition. This is policy 7.6.1 - Breaks/Replaces is the normal mecanism for packages overwriting files of other packages. Le lun. 21 juil. 2025 à 09:47, Mathias Gibbens <gibmat@debian.org> a écrit : Hi all, I mentioned this on the IRC channel, but am also bringing it up here. A couple of days ago a handful of bookworm -> trixie upgrade bugs were reported, all relating to packages that depend on protobuf: #1109513, #1109514, #1109515, #1109516, #1109517. The root cause in each bug seems to be the golang-github-golang- protobuf 1-3 -> 1-5 transition. Here's what apt reports:
Also, the `Conflicts: protoc-gen-go` will be an issue, for the same reason.
So are these the right patches? It seems both golang-github-golang-protobuf-1-3 and golang-github-golang-protobuf-1-5 uses Conflicts and needs to be modified. The first patch below is for 1-3 and the last one for 1-5. I have limited time so if anyone has time to test, revise patches and do the upload, please don't wait for me. /Simon
What makes this tricky is that golang-github-golang-protobuf-1-3 provides pre-APIv2 protobuf libraries and golang-github-golang- protobuf-1-5 provides APIv2. While some code might compile with both versions, they are runtime incompatible and mixing resulting binaries will result most likely in crashes. I think that a Breaks+Replaces as suggested in bug #1109655 isn't correct. I'm not familiar enough with the details to be able to confidently suggest the correct solution to this problem. I did mention this on the debian-go mailing list hoping to solicit feedback from others. The affected packages in bugs #1109513-7 are all golang development libraries, which aren't expected to be used other than building golang packages. I think the odds of an end user encountering the upgrade issue is low, although it would still be good to fix. Mathias
I believe Simon is on the right track, but I see that the patches completely remove the "Conflicts" relationship. Given that the following package do have file conflicts, I think that change is incomplete: https://packages.debian.org/bookworm/all/golang-github-golang-protobuf-1-3-dev/filelist https://packages.debian.org/trixie/all/golang-github-golang-protobuf-1-5-dev/filelist I am thinking that the "Conflicts" relationship needs to remain, but needs to be accompanied with a mutual "Breaks" relationship. Additionally, I suggest modifying the golang-github-golang-protobuf-1-5-dev package to declare a "Replaces" relationship against the package golang-github-golang-protobuf-1-3-dev. The thinking here is to help apt to prefer packages that do work with protobuf 1.5 in favor of those that don't. In general, Matthias is correct and protobuf 1.3 and 1.5 are known to cause runtime crashes. As such, packages that still require 1.3 need to be updated or removed from testing.
Le lun. 28 juil. 2025, 10:03, Reinhard Tartler <siretart@gmail.com> a écrit : I do not believe this is what Debian policy explains, in case of files conflict. Additionally, I suggest modifying the golang-github-golang-protobuf-1-5-dev
Quoting from https://www.debian.org/doc/debian-policy/ch-relationships.html#conflicting-binary-packages-conflicts : Conflicts should be used - when two packages provide the same file and will continue to do so, The filelist links above indicate that this is indeed the case in this situation. Jeremy, can you please elaborate what I might be overlooking? Best,
Le lun. 28 juil. 2025, 12:02, Reinhard Tartler <siretart@gmail.com> a écrit : Well, i was seeing 1-5 as eventually replacing 1-3, but if both are meant to stay they should indeed conflict.
* Simon Josefsson <simon@josefsson.org> [2025-07-21 10:35]: I did a quick test and this does not solve the upgrade problem. To test yourself you can simply run: PKG=golang-github-denverdino-aliyungo-dev; mmdebstrap \ --chrooted-customize-hook="set -x ; apt -y install $PKG && sed -e s/bookworm/trixie/ -i /etc/apt/sources.list && apt update" \ --chrooted-customize-hook=bash bookworm /dev/null once it dropped into the shell edit the Packages file from outside: unshare --map-root-user --map-auto vi \ /tmp/mmdebstrap.*/var/lib/apt/lists/deb.debian.org_debian_dists_trixie_main_binary-amd64_Packages and then run apt dist-upgrade inside the mmdebstrap shell. * Mathias Gibbens <gibmat@debian.org> [2025-07-27 17:50]: That sounds bad. Given that most packages now have an alternative dependency on 1-3 and 1-5 I guess we have packages compiled against both versions in the repo. Do you know an example for mixing the binaries where we should check? Correct, the problem is at dependency resolution time where this is unrelated. Also see above. I agree with this. Cheers Jochen
Hello, Bug #1109655 in golang-github-golang-protobuf-1-5 reported by you has been fixed in the Git repository and is awaiting an upload. You can see the commit message below and you can check the diff of the fix at: https://salsa.debian.org/go-team/packages/golang-github-golang-protobuf-1-5/-/commit/2739999e3baf72f7e534fccc40918c8d5ce94229 ------------------------------------------------------------------------ Add appropriate Breaks/Replaces relationships Closes: #1109655, 1109513, 1109514, 1109515, 1109516, 1109517 ------------------------------------------------------------------------ (this message was generated automatically) -- Greetings https://bugs.debian.org/1109655
Thank you for providing an easy to use test case. I was able to run it and confirm the issue. So, I've locally build a new package with https://salsa.debian.org/go-team/packages/golang-github-golang-protobuf-1-5/-/commit/2739999e3baf72f7e534fccc40918c8d5ce94229 included, and it seems that with your test case above, no packages are held back and the upgrade passes. My understanding is that the "Replaces" relationship give apt the hint that it is fine to remove golang-github-golang-protobuf-1-3-dev, which is the intended outcome. In fact, all of the packages of the cloned bug no longer reference golang-github-golang-protobuf-1-3 at all. However, it is very easy to end up with a system that has golang-github-golang-protobuf-1-3-dev installed in bookworm, and we would rather have apt uninstall it for trixie ugprades in favor of golang-github-golang-protobuf-1-5. Jochen, please let me know if I'm overlooking anything, otherwise I would upload that salsa commit tomorrow. Thanks for looking into this.
Hi Reinhard, * Reinhard Tartler <siretart@gmail.com> [2025-07-28 18:55]: I tried to reproduce it like this: mmdebstrap --chrooted-customize-hook="set -x ; apt -y install golang-github-denverdino-aliyungo-dev \ && sed -e s/bookworm/trixie/ -i /etc/apt/sources.list && apt update \ && sed -i -e 's/Package: golang-github-golang-protobuf-1-5-dev/&\nBreaks: golang-github-golang-protobuf-1-3-dev (<< 1.5)\nReplaces: golang-github-golang-protobuf-1-3-dev (<< 1.5)/' \ -e 's/Package: protoc-gen-go-1-5/&\nBreaks: protoc-gen-go-1-3 (<< 1.5)\nReplaces: protoc-gen-go-1-3 (<< 1.5)/' \ /var/lib/apt/lists/deb.debian.org_debian_dists_trixie_main_binary-amd64_Packages \ && apt dist-upgrade" bookworm /dev/null But still see: The following packages have been kept back: golang-github-denverdino-aliyungo-dev Did I miss anything? Also note that marking 1-5 replace 1-3 would/could make golang-gopkg-rethinkdb-rethinkdb-go.v6 FTBFS as I wrote in 1109513#30. I think the only working way is to finish the 1-5 transition and make 1-3 a transitional dummy package as per https://wiki.debian.org/RenamingPackages and as outlined in 1109513#25. Cheers Jochen
PKG=golang-github-denverdino-aliyungo-dev; mmdebstrap \
--chrooted-customize-hook="set -x ; apt -y install $PKG && sed -e
s/bookworm/trixie/ -i /etc/apt/sources.list && apt update" \
--chrooted-customize-hook=bash bookworm /dev/null
Then I copied the resulting deb files into /tmp/mmdebstrap.*/packages
And added the following to /tmp/mmdebstrap.*/etc/apt/sources.list:
deb [trusted=true] file:///packages ./
Also, inside the chroot I created the necessary index files with:
apt-ftparchive packages . > Packages
apt-ftparchive release . > Release
Then, after an `apt-get update && apt-get dist-upgrade`, I didn't end up
with held back packages:
root@x1:/packages# apt update
Get:1 file:/packages ./ InRelease
Ign:1 file:/packages ./ InRelease
Get:2 file:/packages ./ Release [816 B]
Get:2 file:/packages ./ Release [816 B]
Get:3 file:/packages ./ Release.gpg
Ign:3 file:/packages ./ Release.gpg
Get:4 file:/packages ./ Packages [3385 B]
Hit:5 http://security.debian.org/debian-security trixie-security InRelease
Hit:6 http://deb.debian.org/debian trixie InRelease
Hit:7 http://deb.debian.org/debian trixie-updates InRelease
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
159 packages can be upgraded. Run 'apt list --upgradable' to see them.
root@x1:/packages# apt dist-upgrade
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Calculating upgrade... Done
The following packages were automatically installed and are no longer
required:
libapt-pkg6.0 libargon2-1 libc-dev-bin libc6-dev libcrypt-dev libgnutls30
libnsl-dev libnsl2
libprotobuf-dev libprotobuf-lite32t64 libprotobuf32t64 libprotoc32t64
libtasn1-6 libtirpc-dev libunistring2
linux-libc-dev protobuf-compiler protoc-gen-go-1-3 rpcsvc-proto zlib1g-dev
Use 'apt autoremove' to remove them.
The following packages will be REMOVED:
golang-github-golang-protobuf-1-3-dev golang-goprotobuf-dev libdb5.3
libelf1 libext2fs2 libgdbm-compat4
libgdbm6 libhogweed6 libnettle8 libprotobuf-lite32 libprotobuf32
libprotoc32 libreadline8 libssl3 libtirpc3
The following NEW packages will be installed:
gcc-14-base golang-github-golang-protobuf-1-5-dev
golang-github-google-go-cmp-dev
golang-google-protobuf-dev libapt-pkg7.0 libdb5.3t64 libelf1t64
libext2fs2t64 libgdbm-compat4t64
libgdbm6t64 libhogweed6t64 liblastlog2-2 libnettle8t64 libperl5.40
libprotobuf-lite32t64 libprotobuf32t64
libprotoc32t64 libreadline8t64 libsqlite3-0 libssl3t64 libtirpc3t64
libunistring5 login.defs
openssl-provider-legacy perl-modules-5.40 sqv
The following packages will be upgraded:
adduser apt apt-utils base-files base-passwd bash bsdutils coreutils cpio
cron cron-daemon-common dash
debconf debconf-i18n debian-archive-keyring debianutils diffutils
dmidecode dmsetup dpkg e2fsprogs fdisk
findutils gcc-12-base golang-github-denverdino-aliyungo-dev gpgv grep
gzip hostname ifupdown init
init-system-helpers iproute2 iputils-ping isc-dhcp-client isc-dhcp-common
kmod less libacl1 libapparmor1
libargon2-1 libattr1 libaudit-common libaudit1 libblkid1 libbpf1 libbsd0
libbz2-1.0 libc-bin libc-dev-bin
libc6 libc6-dev libcap-ng0 libcap2 libcap2-bin libcom-err2 libcrypt-dev
libcrypt1 libcryptsetup12
libdebconfclient0 libdevmapper1.02.1 libedit2 libfdisk1 libffi8
libfile-find-rule-perl libgcc-s1
libgcrypt20 libgmp10 libgpg-error0 libgssapi-krb5-2 libidn2-0 libip4tc2
libjansson4 libjson-c5 libk5crypto3
libkeyutils1 libkmod2 libkrb5-3 libkrb5support0 liblocale-gettext-perl
liblz4-1 liblzma5 libmd0 libmnl0
libmount1 libncursesw6 libnewt0.52 libnftables1 libnftnl11 libnsl-dev
libnsl2 libp11-kit0 libpam-modules
libpam-modules-bin libpam-runtime libpam0g libpcre2-8-0 libpopt0
libproc2-0 libprotobuf-dev libseccomp2
libselinux1 libsemanage-common libsemanage2 libsepol2 libslang2
libsmartcols1 libss2 libstdc++6
libsystemd-shared libsystemd0 libtasn1-6 libtext-charwidth-perl
libtext-iconv-perl libtinfo6
libtirpc-common libtirpc-dev libudev1 libuuid1 libxtables12 libxxhash0
libzstd1 linux-libc-dev login
logrotate logsave mawk mount nano ncurses-base ncurses-bin netbase
nftables passwd perl perl-base procps
protobuf-compiler protoc-gen-go-1-3 readline-common sed sensible-utils
systemd systemd-sysv sysvinit-utils
tar tasksel tasksel-data tzdata udev usrmerge util-linux util-linux-extra
vim-common vim-tiny whiptail
zlib1g zlib1g-dev
158 upgraded, 26 newly installed, 15 to remove and 0 not upgraded.
Need to get 73.1 MB/73.3 MB of archives.
After this operation, 89.1 MB of additional disk space will be used.
Do you want to continue? [Y/n]
I believe this is a more realistic test than patching the apt internal
files, as I don't
claim to be an expert on apt internals at all
Also note that marking 1-5 replace 1-3 would/could make
Let's track this separately. I agree that rethinkdb-go.v6 should be ported
to protobuf@1.5,
which has been done upstream in
https://github.com/rethinkdb/rethinkdb-go/pull/508
I believe this package has been introduced as a dependency of docker.io at
the time, but may
not be needed at this point. If that were true, maybe we should remove that
package for trixie.
I can do that, but I'm concerned that this would break packages, such as
rethinkdb.v6,
which haven't been updated to work with protobuf@v1.5.
According to https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1109513#25:
golang-github-golang-groupcache: golang-github-golang-protobuf-1-3-dev
golang-github-spiffe-go-spiffe: protoc-gen-go-1-3
golang-google-appengine: golang-github-golang-protobuf-1-3-dev
golang-gopkg-rethinkdb-rethinkdb-go.v6: golang-github-golang-protobuf-1-3-dev
protoc-gen-go-1-3
golang-protobuf-extensions: golang-github-golang-protobuf-1-3-dev
golang-v2ray-core: protoc-gen-go-1-3
seems that those packages get broken by mechanically replacing 1.5 for 1.3,
and may require
additional changes.
I can look into that a bit more. In the meantime, are you sure that adding
the Replaces/Breaks
isn't sufficient for apt to remove the unneeded
golang-github-golang-protobuf-1-3-dev
package?
I wonder why my test case indicates that it would be fine?
* Reinhard Tartler <siretart@gmail.com> [2025-07-29 06:31]: gbp clone vcsgit:golang-github-golang-protobuf-1-5 cd golang-github-golang-protobuf-1-5/ dch -i '' -D unstable git deborig sbuild cd .. mmdebstrap --customize-hook='copy-in \ golang-github-golang-protobuf-1-5-dev_1.5.4-1.1_all.deb \ protoc-gen-go-1-5_1.5.4-1.1_amd64.deb /opt' \ --chrooted-customize-hook="set -x ; apt -y install \ golang-github-denverdino-aliyungo-dev apt-utils && cd /opt && \ apt-ftparchive packages . > Packages && \ apt-ftparchive release . > Release && \ echo 'deb [trusted=true] file:///opt ./' >> /etc/apt/sources.list && \ sed -e s/bookworm/trixie/ -i /etc/apt/sources.list && \ apt update && apt dist-upgrade" bookworm /dev/null And I still get: The following packages have been kept back: golang-github-denverdino-aliyungo-dev Can you please verify? Cheers Jochen
I'm afraid you are correct, I am able to verify that the package is being held back. I guess you are right, and in order to avoid having these held-back packages, we would have to remove protobuf@v1.3 completely out of trixie by adding a transitional dummy package. My concern about that is that software that hasn't been updated to 1.5 would break at build or runtime. Is that a risk we want to take that late in the cycle? I wonder whether some documentation in the release notes wouldn't be the more prudent approach. Release team, please advise what path is more appropriate for trixie.
Hello, Bug #1109655 in golang-github-golang-protobuf-1-5 reported by you has been fixed in the Git repository and is awaiting an upload. You can see the commit message below and you can check the diff of the fix at: https://salsa.debian.org/go-team/packages/golang-github-golang-protobuf-1-5/-/commit/cbb6c8f618fbfadb355a04a99c0258cbde36e253 (this message was generated automatically) -- Greetings https://bugs.debian.org/1109655
Hello, Bug #1109655 in golang-github-golang-protobuf-1-5 reported by you has been fixed in the Git repository and is awaiting an upload. You can see the commit message below and you can check the diff of the fix at: https://salsa.debian.org/go-team/packages/golang-github-golang-protobuf-1-5/-/commit/1f82aafbea029f750d4531c24179793bcbac6b76 (this message was generated automatically) -- Greetings https://bugs.debian.org/1109655
Hello, Bug #1109655 in golang-github-golang-protobuf-1-5 reported by you has been fixed in the Git repository and is awaiting an upload. You can see the commit message below and you can check the diff of the fix at: https://salsa.debian.org/go-team/packages/golang-github-golang-protobuf-1-5/-/commit/1892b9481ff85c7a82805215f24a2ecc9b7cb0a9 (this message was generated automatically) -- Greetings https://bugs.debian.org/1109655
Hello, Bug #1109655 in golang-github-golang-protobuf-1-5 reported by you has been fixed in the Git repository and is awaiting an upload. You can see the commit message below and you can check the diff of the fix at: https://salsa.debian.org/go-team/packages/golang-github-golang-protobuf-1-5/-/commit/09fa9f68e81a86ae8cf64ff88e4cc505c9a65e98 (this message was generated automatically) -- Greetings https://bugs.debian.org/1109655
Release Team, I'd like to ask that you tag #1109513 & merged friends with trixie- no-auto-remove. Pretty late in the release freeze cycle a few bugs were filed against golang libraries that don't cleanly dist-upgrade from bookworm due to the golang-github-golang-protobuf-1-3-dev -> golang- github-golang-protobuf-1-5-dev transition last summer. Post trixie upgrade, a simple `apt install ...-dev` is enough to hit apt through installing the updated packages. protobuf-1-3 provides a pre-v2 API, while protobuf-1-5 provides the v2 API. As such, it's not a straightforward replacement exercise to update all golang packages to use the protobuf-1-5 library. A handful of additional bugs have been filed identifying golang packages that still depend on protobuf-1-3 (#1110159-64), but those might in turn have additional dependencies that would require an update and/or rebuild. Given that these are development libraries intended for building other golang packages, and therefore unlikely to be installed by an end user, and that we're in the final freeze, I would request that the trixie-no-auto-remove tag be applied since an autorm would remove a ton of other golang packages that really should be part of the trixie release. Once forky development opens up, we can then address the dependency issues. Thanks, Mathias
Hello, Bug #1109655 in golang-github-golang-protobuf-1-5 reported by you has been fixed in the Git repository and is awaiting an upload. You can see the commit message below and you can check the diff of the fix at: https://salsa.debian.org/go-team/packages/golang-github-golang-protobuf-1-5/-/commit/09fa9f68e81a86ae8cf64ff88e4cc505c9a65e98 (this message was generated automatically) -- Greetings https://bugs.debian.org/1109655
We believe that the bug you reported is fixed in the latest version of
golang-github-golang-protobuf-1-5, 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 1109513@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Reinhard Tartler <siretart@tauware.de> (supplier of updated golang-github-golang-protobuf-1-5 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 ftpmaster@ftp-master.debian.org)
Format: 1.8
Date: Thu, 07 Aug 2025 07:22:32 -0400
Source: golang-github-golang-protobuf-1-5
Architecture: source
Version: 1.5.4-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Changed-By: Reinhard Tartler <siretart@tauware.de>
Closes: 1109513 1109514 1109515 1109516 1109517 1109655
Changes:
golang-github-golang-protobuf-1-5 (1.5.4-2) unstable; urgency=medium
.
* Team upload
* Bump Standards-Version to 4.7.2 (no changes needed)
* Add transitional dummy packages to migrate to
golang-github-golang-protobuf-1-5-dev (Closes: #1109655, 1109513,
1109514, 1109515, 1109516, 1109517)
Checksums-Sha1:
c56ff4e7c12ff666a64657a76234deb1586aa32e 3016 golang-github-golang-protobuf-1-5_1.5.4-2.dsc
92c9aefbba24ec94792a10732864796b8db8d014 3832 golang-github-golang-protobuf-1-5_1.5.4-2.debian.tar.xz
11df81a5d26cbf005eff7f58812e8e3fc890602c 322284 golang-github-golang-protobuf-1-5_1.5.4-2.git.tar.xz
91d52479cb9a8772c5eaf5d14c90a31bbccd38ac 18158 golang-github-golang-protobuf-1-5_1.5.4-2_source.buildinfo
Checksums-Sha256:
23cea1356ebd25c6f0c01d6304d0d6e629fa48dad741e4b4cd11f5e93ebbd25c 3016 golang-github-golang-protobuf-1-5_1.5.4-2.dsc
78d039a290f35bdf0956312489494a0818acac3153d17b6481e2c4399afd9fc7 3832 golang-github-golang-protobuf-1-5_1.5.4-2.debian.tar.xz
75f7526f0e9b120139b5bc637b6b1c223e20f5aede8191b986477b09c903982d 322284 golang-github-golang-protobuf-1-5_1.5.4-2.git.tar.xz
c98dd4f9766852081f73e0487b6fc2b9f096b98a6e10f6f2b9e226d8e41fe4a8 18158 golang-github-golang-protobuf-1-5_1.5.4-2_source.buildinfo
Files:
6c496325cc20a1853fc3d7070aa5bea6 3016 golang optional golang-github-golang-protobuf-1-5_1.5.4-2.dsc
7a359bdf3ed953403867e62a15ac2bb2 3832 golang optional golang-github-golang-protobuf-1-5_1.5.4-2.debian.tar.xz
89385b3dcc99a7028c710b495375bafc 322284 golang optional golang-github-golang-protobuf-1-5_1.5.4-2.git.tar.xz
263365fdcaca59901de86f48342160e5 18158 golang optional golang-github-golang-protobuf-1-5_1.5.4-2_source.buildinfo
Git-Tag-Info: tag=43d2d6a21b8af4da664fa4f4899a3d421b259a41 fp=30de7d1763ab9452c7e0825049a76977942826cb
Git-Tag-Tagger: Reinhard Tartler <siretart@tauware.de>
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCgAdFiEEN02M5NuW6cvUwJcqYG0ITkaDwHkFAmiVA1cACgkQYG0ITkaD
wHmKWBAAy7IEtmIRX6cBxnQxhBYmgiwXJehM1ictbFhoGQhS/Mxrvj3HjgHuhmjT
Lcez/5OLS9xf/y4Q/sEsexI6l1aQts4kCOMDF64rgnDBsK8vAlot/6wfq4Pi/l19
+s13t7OLQGib6cEgYoQHkWKL9s9vlPEmMVRyMHMla68nhQ2C+Sk8IfErcDM9/7wt
tZKmRM23AwNL9T1E4HcBy7dfVOt5Kepu0HSq4rOuimk1IZmFJr2ln1b38cWxA9Qi
NTRKax30lnB0wCiT+rnwY+rUw/kUwDXHOXOEFywQXKq/58GBy/hrnJPzIS+5b7be
cGWlsvLxEq3+zY5zAtl92j4o4ZdX8yv3LHQ6hMMEdHg/CcGUlceWNWgZfoJniA3a
7t4YKXQ/PxdrLAuz9Df0X9yVaqJEzRN6GiQ42oa5ycMAicMiSkZBHUsWRz4HYfWn
VxjXiRWJEj89Rc6TWLFFZRooEJMk0uV1+Ujy+ssyctjlamtMR9zn1AE0O9CgG//i
cR5klWwsxyFIbiOfVeosmVG+HildFQ2K2WUfiO1iO3WciUCkUaW9mursOqOiQ6Pw
m7CMKVzglux2rBGQsBZvx5IfCjSTyzMiuMOFwQKzO7Zew2XBLs5lhFc4bL/eDqI/
+jo5TtvvV67YygXUZR+4r5z5XyL9+48A9rr3DbVFzlG7zSImvtY=
=4Wph
-----END PGP SIGNATURE-----
We believe that the bug you reported is fixed in the latest version of
golang-github-golang-protobuf-1-5, 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 1109514@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Reinhard Tartler <siretart@tauware.de> (supplier of updated golang-github-golang-protobuf-1-5 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 ftpmaster@ftp-master.debian.org)
Format: 1.8
Date: Thu, 07 Aug 2025 07:22:32 -0400
Source: golang-github-golang-protobuf-1-5
Architecture: source
Version: 1.5.4-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Changed-By: Reinhard Tartler <siretart@tauware.de>
Closes: 1109513 1109514 1109515 1109516 1109517 1109655
Changes:
golang-github-golang-protobuf-1-5 (1.5.4-2) unstable; urgency=medium
.
* Team upload
* Bump Standards-Version to 4.7.2 (no changes needed)
* Add transitional dummy packages to migrate to
golang-github-golang-protobuf-1-5-dev (Closes: #1109655, 1109513,
1109514, 1109515, 1109516, 1109517)
Checksums-Sha1:
c56ff4e7c12ff666a64657a76234deb1586aa32e 3016 golang-github-golang-protobuf-1-5_1.5.4-2.dsc
92c9aefbba24ec94792a10732864796b8db8d014 3832 golang-github-golang-protobuf-1-5_1.5.4-2.debian.tar.xz
11df81a5d26cbf005eff7f58812e8e3fc890602c 322284 golang-github-golang-protobuf-1-5_1.5.4-2.git.tar.xz
91d52479cb9a8772c5eaf5d14c90a31bbccd38ac 18158 golang-github-golang-protobuf-1-5_1.5.4-2_source.buildinfo
Checksums-Sha256:
23cea1356ebd25c6f0c01d6304d0d6e629fa48dad741e4b4cd11f5e93ebbd25c 3016 golang-github-golang-protobuf-1-5_1.5.4-2.dsc
78d039a290f35bdf0956312489494a0818acac3153d17b6481e2c4399afd9fc7 3832 golang-github-golang-protobuf-1-5_1.5.4-2.debian.tar.xz
75f7526f0e9b120139b5bc637b6b1c223e20f5aede8191b986477b09c903982d 322284 golang-github-golang-protobuf-1-5_1.5.4-2.git.tar.xz
c98dd4f9766852081f73e0487b6fc2b9f096b98a6e10f6f2b9e226d8e41fe4a8 18158 golang-github-golang-protobuf-1-5_1.5.4-2_source.buildinfo
Files:
6c496325cc20a1853fc3d7070aa5bea6 3016 golang optional golang-github-golang-protobuf-1-5_1.5.4-2.dsc
7a359bdf3ed953403867e62a15ac2bb2 3832 golang optional golang-github-golang-protobuf-1-5_1.5.4-2.debian.tar.xz
89385b3dcc99a7028c710b495375bafc 322284 golang optional golang-github-golang-protobuf-1-5_1.5.4-2.git.tar.xz
263365fdcaca59901de86f48342160e5 18158 golang optional golang-github-golang-protobuf-1-5_1.5.4-2_source.buildinfo
Git-Tag-Info: tag=43d2d6a21b8af4da664fa4f4899a3d421b259a41 fp=30de7d1763ab9452c7e0825049a76977942826cb
Git-Tag-Tagger: Reinhard Tartler <siretart@tauware.de>
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCgAdFiEEN02M5NuW6cvUwJcqYG0ITkaDwHkFAmiVA1cACgkQYG0ITkaD
wHmKWBAAy7IEtmIRX6cBxnQxhBYmgiwXJehM1ictbFhoGQhS/Mxrvj3HjgHuhmjT
Lcez/5OLS9xf/y4Q/sEsexI6l1aQts4kCOMDF64rgnDBsK8vAlot/6wfq4Pi/l19
+s13t7OLQGib6cEgYoQHkWKL9s9vlPEmMVRyMHMla68nhQ2C+Sk8IfErcDM9/7wt
tZKmRM23AwNL9T1E4HcBy7dfVOt5Kepu0HSq4rOuimk1IZmFJr2ln1b38cWxA9Qi
NTRKax30lnB0wCiT+rnwY+rUw/kUwDXHOXOEFywQXKq/58GBy/hrnJPzIS+5b7be
cGWlsvLxEq3+zY5zAtl92j4o4ZdX8yv3LHQ6hMMEdHg/CcGUlceWNWgZfoJniA3a
7t4YKXQ/PxdrLAuz9Df0X9yVaqJEzRN6GiQ42oa5ycMAicMiSkZBHUsWRz4HYfWn
VxjXiRWJEj89Rc6TWLFFZRooEJMk0uV1+Ujy+ssyctjlamtMR9zn1AE0O9CgG//i
cR5klWwsxyFIbiOfVeosmVG+HildFQ2K2WUfiO1iO3WciUCkUaW9mursOqOiQ6Pw
m7CMKVzglux2rBGQsBZvx5IfCjSTyzMiuMOFwQKzO7Zew2XBLs5lhFc4bL/eDqI/
+jo5TtvvV67YygXUZR+4r5z5XyL9+48A9rr3DbVFzlG7zSImvtY=
=4Wph
-----END PGP SIGNATURE-----
We believe that the bug you reported is fixed in the latest version of
golang-github-golang-protobuf-1-5, 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 1109515@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Reinhard Tartler <siretart@tauware.de> (supplier of updated golang-github-golang-protobuf-1-5 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 ftpmaster@ftp-master.debian.org)
Format: 1.8
Date: Thu, 07 Aug 2025 07:22:32 -0400
Source: golang-github-golang-protobuf-1-5
Architecture: source
Version: 1.5.4-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Changed-By: Reinhard Tartler <siretart@tauware.de>
Closes: 1109513 1109514 1109515 1109516 1109517 1109655
Changes:
golang-github-golang-protobuf-1-5 (1.5.4-2) unstable; urgency=medium
.
* Team upload
* Bump Standards-Version to 4.7.2 (no changes needed)
* Add transitional dummy packages to migrate to
golang-github-golang-protobuf-1-5-dev (Closes: #1109655, 1109513,
1109514, 1109515, 1109516, 1109517)
Checksums-Sha1:
c56ff4e7c12ff666a64657a76234deb1586aa32e 3016 golang-github-golang-protobuf-1-5_1.5.4-2.dsc
92c9aefbba24ec94792a10732864796b8db8d014 3832 golang-github-golang-protobuf-1-5_1.5.4-2.debian.tar.xz
11df81a5d26cbf005eff7f58812e8e3fc890602c 322284 golang-github-golang-protobuf-1-5_1.5.4-2.git.tar.xz
91d52479cb9a8772c5eaf5d14c90a31bbccd38ac 18158 golang-github-golang-protobuf-1-5_1.5.4-2_source.buildinfo
Checksums-Sha256:
23cea1356ebd25c6f0c01d6304d0d6e629fa48dad741e4b4cd11f5e93ebbd25c 3016 golang-github-golang-protobuf-1-5_1.5.4-2.dsc
78d039a290f35bdf0956312489494a0818acac3153d17b6481e2c4399afd9fc7 3832 golang-github-golang-protobuf-1-5_1.5.4-2.debian.tar.xz
75f7526f0e9b120139b5bc637b6b1c223e20f5aede8191b986477b09c903982d 322284 golang-github-golang-protobuf-1-5_1.5.4-2.git.tar.xz
c98dd4f9766852081f73e0487b6fc2b9f096b98a6e10f6f2b9e226d8e41fe4a8 18158 golang-github-golang-protobuf-1-5_1.5.4-2_source.buildinfo
Files:
6c496325cc20a1853fc3d7070aa5bea6 3016 golang optional golang-github-golang-protobuf-1-5_1.5.4-2.dsc
7a359bdf3ed953403867e62a15ac2bb2 3832 golang optional golang-github-golang-protobuf-1-5_1.5.4-2.debian.tar.xz
89385b3dcc99a7028c710b495375bafc 322284 golang optional golang-github-golang-protobuf-1-5_1.5.4-2.git.tar.xz
263365fdcaca59901de86f48342160e5 18158 golang optional golang-github-golang-protobuf-1-5_1.5.4-2_source.buildinfo
Git-Tag-Info: tag=43d2d6a21b8af4da664fa4f4899a3d421b259a41 fp=30de7d1763ab9452c7e0825049a76977942826cb
Git-Tag-Tagger: Reinhard Tartler <siretart@tauware.de>
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCgAdFiEEN02M5NuW6cvUwJcqYG0ITkaDwHkFAmiVA1cACgkQYG0ITkaD
wHmKWBAAy7IEtmIRX6cBxnQxhBYmgiwXJehM1ictbFhoGQhS/Mxrvj3HjgHuhmjT
Lcez/5OLS9xf/y4Q/sEsexI6l1aQts4kCOMDF64rgnDBsK8vAlot/6wfq4Pi/l19
+s13t7OLQGib6cEgYoQHkWKL9s9vlPEmMVRyMHMla68nhQ2C+Sk8IfErcDM9/7wt
tZKmRM23AwNL9T1E4HcBy7dfVOt5Kepu0HSq4rOuimk1IZmFJr2ln1b38cWxA9Qi
NTRKax30lnB0wCiT+rnwY+rUw/kUwDXHOXOEFywQXKq/58GBy/hrnJPzIS+5b7be
cGWlsvLxEq3+zY5zAtl92j4o4ZdX8yv3LHQ6hMMEdHg/CcGUlceWNWgZfoJniA3a
7t4YKXQ/PxdrLAuz9Df0X9yVaqJEzRN6GiQ42oa5ycMAicMiSkZBHUsWRz4HYfWn
VxjXiRWJEj89Rc6TWLFFZRooEJMk0uV1+Ujy+ssyctjlamtMR9zn1AE0O9CgG//i
cR5klWwsxyFIbiOfVeosmVG+HildFQ2K2WUfiO1iO3WciUCkUaW9mursOqOiQ6Pw
m7CMKVzglux2rBGQsBZvx5IfCjSTyzMiuMOFwQKzO7Zew2XBLs5lhFc4bL/eDqI/
+jo5TtvvV67YygXUZR+4r5z5XyL9+48A9rr3DbVFzlG7zSImvtY=
=4Wph
-----END PGP SIGNATURE-----
We believe that the bug you reported is fixed in the latest version of
golang-github-golang-protobuf-1-5, 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 1109516@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Reinhard Tartler <siretart@tauware.de> (supplier of updated golang-github-golang-protobuf-1-5 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 ftpmaster@ftp-master.debian.org)
Format: 1.8
Date: Thu, 07 Aug 2025 07:22:32 -0400
Source: golang-github-golang-protobuf-1-5
Architecture: source
Version: 1.5.4-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Changed-By: Reinhard Tartler <siretart@tauware.de>
Closes: 1109513 1109514 1109515 1109516 1109517 1109655
Changes:
golang-github-golang-protobuf-1-5 (1.5.4-2) unstable; urgency=medium
.
* Team upload
* Bump Standards-Version to 4.7.2 (no changes needed)
* Add transitional dummy packages to migrate to
golang-github-golang-protobuf-1-5-dev (Closes: #1109655, 1109513,
1109514, 1109515, 1109516, 1109517)
Checksums-Sha1:
c56ff4e7c12ff666a64657a76234deb1586aa32e 3016 golang-github-golang-protobuf-1-5_1.5.4-2.dsc
92c9aefbba24ec94792a10732864796b8db8d014 3832 golang-github-golang-protobuf-1-5_1.5.4-2.debian.tar.xz
11df81a5d26cbf005eff7f58812e8e3fc890602c 322284 golang-github-golang-protobuf-1-5_1.5.4-2.git.tar.xz
91d52479cb9a8772c5eaf5d14c90a31bbccd38ac 18158 golang-github-golang-protobuf-1-5_1.5.4-2_source.buildinfo
Checksums-Sha256:
23cea1356ebd25c6f0c01d6304d0d6e629fa48dad741e4b4cd11f5e93ebbd25c 3016 golang-github-golang-protobuf-1-5_1.5.4-2.dsc
78d039a290f35bdf0956312489494a0818acac3153d17b6481e2c4399afd9fc7 3832 golang-github-golang-protobuf-1-5_1.5.4-2.debian.tar.xz
75f7526f0e9b120139b5bc637b6b1c223e20f5aede8191b986477b09c903982d 322284 golang-github-golang-protobuf-1-5_1.5.4-2.git.tar.xz
c98dd4f9766852081f73e0487b6fc2b9f096b98a6e10f6f2b9e226d8e41fe4a8 18158 golang-github-golang-protobuf-1-5_1.5.4-2_source.buildinfo
Files:
6c496325cc20a1853fc3d7070aa5bea6 3016 golang optional golang-github-golang-protobuf-1-5_1.5.4-2.dsc
7a359bdf3ed953403867e62a15ac2bb2 3832 golang optional golang-github-golang-protobuf-1-5_1.5.4-2.debian.tar.xz
89385b3dcc99a7028c710b495375bafc 322284 golang optional golang-github-golang-protobuf-1-5_1.5.4-2.git.tar.xz
263365fdcaca59901de86f48342160e5 18158 golang optional golang-github-golang-protobuf-1-5_1.5.4-2_source.buildinfo
Git-Tag-Info: tag=43d2d6a21b8af4da664fa4f4899a3d421b259a41 fp=30de7d1763ab9452c7e0825049a76977942826cb
Git-Tag-Tagger: Reinhard Tartler <siretart@tauware.de>
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCgAdFiEEN02M5NuW6cvUwJcqYG0ITkaDwHkFAmiVA1cACgkQYG0ITkaD
wHmKWBAAy7IEtmIRX6cBxnQxhBYmgiwXJehM1ictbFhoGQhS/Mxrvj3HjgHuhmjT
Lcez/5OLS9xf/y4Q/sEsexI6l1aQts4kCOMDF64rgnDBsK8vAlot/6wfq4Pi/l19
+s13t7OLQGib6cEgYoQHkWKL9s9vlPEmMVRyMHMla68nhQ2C+Sk8IfErcDM9/7wt
tZKmRM23AwNL9T1E4HcBy7dfVOt5Kepu0HSq4rOuimk1IZmFJr2ln1b38cWxA9Qi
NTRKax30lnB0wCiT+rnwY+rUw/kUwDXHOXOEFywQXKq/58GBy/hrnJPzIS+5b7be
cGWlsvLxEq3+zY5zAtl92j4o4ZdX8yv3LHQ6hMMEdHg/CcGUlceWNWgZfoJniA3a
7t4YKXQ/PxdrLAuz9Df0X9yVaqJEzRN6GiQ42oa5ycMAicMiSkZBHUsWRz4HYfWn
VxjXiRWJEj89Rc6TWLFFZRooEJMk0uV1+Ujy+ssyctjlamtMR9zn1AE0O9CgG//i
cR5klWwsxyFIbiOfVeosmVG+HildFQ2K2WUfiO1iO3WciUCkUaW9mursOqOiQ6Pw
m7CMKVzglux2rBGQsBZvx5IfCjSTyzMiuMOFwQKzO7Zew2XBLs5lhFc4bL/eDqI/
+jo5TtvvV67YygXUZR+4r5z5XyL9+48A9rr3DbVFzlG7zSImvtY=
=4Wph
-----END PGP SIGNATURE-----
We believe that the bug you reported is fixed in the latest version of
golang-github-golang-protobuf-1-5, 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 1109517@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Reinhard Tartler <siretart@tauware.de> (supplier of updated golang-github-golang-protobuf-1-5 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 ftpmaster@ftp-master.debian.org)
Format: 1.8
Date: Thu, 07 Aug 2025 07:22:32 -0400
Source: golang-github-golang-protobuf-1-5
Architecture: source
Version: 1.5.4-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Changed-By: Reinhard Tartler <siretart@tauware.de>
Closes: 1109513 1109514 1109515 1109516 1109517 1109655
Changes:
golang-github-golang-protobuf-1-5 (1.5.4-2) unstable; urgency=medium
.
* Team upload
* Bump Standards-Version to 4.7.2 (no changes needed)
* Add transitional dummy packages to migrate to
golang-github-golang-protobuf-1-5-dev (Closes: #1109655, 1109513,
1109514, 1109515, 1109516, 1109517)
Checksums-Sha1:
c56ff4e7c12ff666a64657a76234deb1586aa32e 3016 golang-github-golang-protobuf-1-5_1.5.4-2.dsc
92c9aefbba24ec94792a10732864796b8db8d014 3832 golang-github-golang-protobuf-1-5_1.5.4-2.debian.tar.xz
11df81a5d26cbf005eff7f58812e8e3fc890602c 322284 golang-github-golang-protobuf-1-5_1.5.4-2.git.tar.xz
91d52479cb9a8772c5eaf5d14c90a31bbccd38ac 18158 golang-github-golang-protobuf-1-5_1.5.4-2_source.buildinfo
Checksums-Sha256:
23cea1356ebd25c6f0c01d6304d0d6e629fa48dad741e4b4cd11f5e93ebbd25c 3016 golang-github-golang-protobuf-1-5_1.5.4-2.dsc
78d039a290f35bdf0956312489494a0818acac3153d17b6481e2c4399afd9fc7 3832 golang-github-golang-protobuf-1-5_1.5.4-2.debian.tar.xz
75f7526f0e9b120139b5bc637b6b1c223e20f5aede8191b986477b09c903982d 322284 golang-github-golang-protobuf-1-5_1.5.4-2.git.tar.xz
c98dd4f9766852081f73e0487b6fc2b9f096b98a6e10f6f2b9e226d8e41fe4a8 18158 golang-github-golang-protobuf-1-5_1.5.4-2_source.buildinfo
Files:
6c496325cc20a1853fc3d7070aa5bea6 3016 golang optional golang-github-golang-protobuf-1-5_1.5.4-2.dsc
7a359bdf3ed953403867e62a15ac2bb2 3832 golang optional golang-github-golang-protobuf-1-5_1.5.4-2.debian.tar.xz
89385b3dcc99a7028c710b495375bafc 322284 golang optional golang-github-golang-protobuf-1-5_1.5.4-2.git.tar.xz
263365fdcaca59901de86f48342160e5 18158 golang optional golang-github-golang-protobuf-1-5_1.5.4-2_source.buildinfo
Git-Tag-Info: tag=43d2d6a21b8af4da664fa4f4899a3d421b259a41 fp=30de7d1763ab9452c7e0825049a76977942826cb
Git-Tag-Tagger: Reinhard Tartler <siretart@tauware.de>
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCgAdFiEEN02M5NuW6cvUwJcqYG0ITkaDwHkFAmiVA1cACgkQYG0ITkaD
wHmKWBAAy7IEtmIRX6cBxnQxhBYmgiwXJehM1ictbFhoGQhS/Mxrvj3HjgHuhmjT
Lcez/5OLS9xf/y4Q/sEsexI6l1aQts4kCOMDF64rgnDBsK8vAlot/6wfq4Pi/l19
+s13t7OLQGib6cEgYoQHkWKL9s9vlPEmMVRyMHMla68nhQ2C+Sk8IfErcDM9/7wt
tZKmRM23AwNL9T1E4HcBy7dfVOt5Kepu0HSq4rOuimk1IZmFJr2ln1b38cWxA9Qi
NTRKax30lnB0wCiT+rnwY+rUw/kUwDXHOXOEFywQXKq/58GBy/hrnJPzIS+5b7be
cGWlsvLxEq3+zY5zAtl92j4o4ZdX8yv3LHQ6hMMEdHg/CcGUlceWNWgZfoJniA3a
7t4YKXQ/PxdrLAuz9Df0X9yVaqJEzRN6GiQ42oa5ycMAicMiSkZBHUsWRz4HYfWn
VxjXiRWJEj89Rc6TWLFFZRooEJMk0uV1+Ujy+ssyctjlamtMR9zn1AE0O9CgG//i
cR5klWwsxyFIbiOfVeosmVG+HildFQ2K2WUfiO1iO3WciUCkUaW9mursOqOiQ6Pw
m7CMKVzglux2rBGQsBZvx5IfCjSTyzMiuMOFwQKzO7Zew2XBLs5lhFc4bL/eDqI/
+jo5TtvvV67YygXUZR+4r5z5XyL9+48A9rr3DbVFzlG7zSImvtY=
=4Wph
-----END PGP SIGNATURE-----
We believe that the bug you reported is fixed in the latest version of
golang-github-golang-protobuf-1-5, 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 1109655@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Reinhard Tartler <siretart@tauware.de> (supplier of updated golang-github-golang-protobuf-1-5 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 ftpmaster@ftp-master.debian.org)
Format: 1.8
Date: Thu, 07 Aug 2025 07:22:32 -0400
Source: golang-github-golang-protobuf-1-5
Architecture: source
Version: 1.5.4-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Changed-By: Reinhard Tartler <siretart@tauware.de>
Closes: 1109513 1109514 1109515 1109516 1109517 1109655
Changes:
golang-github-golang-protobuf-1-5 (1.5.4-2) unstable; urgency=medium
.
* Team upload
* Bump Standards-Version to 4.7.2 (no changes needed)
* Add transitional dummy packages to migrate to
golang-github-golang-protobuf-1-5-dev (Closes: #1109655, 1109513,
1109514, 1109515, 1109516, 1109517)
Checksums-Sha1:
c56ff4e7c12ff666a64657a76234deb1586aa32e 3016 golang-github-golang-protobuf-1-5_1.5.4-2.dsc
92c9aefbba24ec94792a10732864796b8db8d014 3832 golang-github-golang-protobuf-1-5_1.5.4-2.debian.tar.xz
11df81a5d26cbf005eff7f58812e8e3fc890602c 322284 golang-github-golang-protobuf-1-5_1.5.4-2.git.tar.xz
91d52479cb9a8772c5eaf5d14c90a31bbccd38ac 18158 golang-github-golang-protobuf-1-5_1.5.4-2_source.buildinfo
Checksums-Sha256:
23cea1356ebd25c6f0c01d6304d0d6e629fa48dad741e4b4cd11f5e93ebbd25c 3016 golang-github-golang-protobuf-1-5_1.5.4-2.dsc
78d039a290f35bdf0956312489494a0818acac3153d17b6481e2c4399afd9fc7 3832 golang-github-golang-protobuf-1-5_1.5.4-2.debian.tar.xz
75f7526f0e9b120139b5bc637b6b1c223e20f5aede8191b986477b09c903982d 322284 golang-github-golang-protobuf-1-5_1.5.4-2.git.tar.xz
c98dd4f9766852081f73e0487b6fc2b9f096b98a6e10f6f2b9e226d8e41fe4a8 18158 golang-github-golang-protobuf-1-5_1.5.4-2_source.buildinfo
Files:
6c496325cc20a1853fc3d7070aa5bea6 3016 golang optional golang-github-golang-protobuf-1-5_1.5.4-2.dsc
7a359bdf3ed953403867e62a15ac2bb2 3832 golang optional golang-github-golang-protobuf-1-5_1.5.4-2.debian.tar.xz
89385b3dcc99a7028c710b495375bafc 322284 golang optional golang-github-golang-protobuf-1-5_1.5.4-2.git.tar.xz
263365fdcaca59901de86f48342160e5 18158 golang optional golang-github-golang-protobuf-1-5_1.5.4-2_source.buildinfo
Git-Tag-Info: tag=43d2d6a21b8af4da664fa4f4899a3d421b259a41 fp=30de7d1763ab9452c7e0825049a76977942826cb
Git-Tag-Tagger: Reinhard Tartler <siretart@tauware.de>
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCgAdFiEEN02M5NuW6cvUwJcqYG0ITkaDwHkFAmiVA1cACgkQYG0ITkaD
wHmKWBAAy7IEtmIRX6cBxnQxhBYmgiwXJehM1ictbFhoGQhS/Mxrvj3HjgHuhmjT
Lcez/5OLS9xf/y4Q/sEsexI6l1aQts4kCOMDF64rgnDBsK8vAlot/6wfq4Pi/l19
+s13t7OLQGib6cEgYoQHkWKL9s9vlPEmMVRyMHMla68nhQ2C+Sk8IfErcDM9/7wt
tZKmRM23AwNL9T1E4HcBy7dfVOt5Kepu0HSq4rOuimk1IZmFJr2ln1b38cWxA9Qi
NTRKax30lnB0wCiT+rnwY+rUw/kUwDXHOXOEFywQXKq/58GBy/hrnJPzIS+5b7be
cGWlsvLxEq3+zY5zAtl92j4o4ZdX8yv3LHQ6hMMEdHg/CcGUlceWNWgZfoJniA3a
7t4YKXQ/PxdrLAuz9Df0X9yVaqJEzRN6GiQ42oa5ycMAicMiSkZBHUsWRz4HYfWn
VxjXiRWJEj89Rc6TWLFFZRooEJMk0uV1+Ujy+ssyctjlamtMR9zn1AE0O9CgG//i
cR5klWwsxyFIbiOfVeosmVG+HildFQ2K2WUfiO1iO3WciUCkUaW9mursOqOiQ6Pw
m7CMKVzglux2rBGQsBZvx5IfCjSTyzMiuMOFwQKzO7Zew2XBLs5lhFc4bL/eDqI/
+jo5TtvvV67YygXUZR+4r5z5XyL9+48A9rr3DbVFzlG7zSImvtY=
=4Wph
-----END PGP SIGNATURE-----