Bug#909787: dh-golang: Wrong iterate logic in exec_chunked

2018-09-28 Thread Shengjing Zhu
Control: found -1 1.27 This bug is a regression when fixing #885696. So set found version to 1.27.

Bug#909787: dh-golang: Wrong iterate logic in exec_chunked

2018-09-28 Thread Shengjing Zhu
Package: dh-golang Severity: important Tags: patch Hmm, I think the previous discussion in #908552 has no relation to this bug, although the result(incomplete Built-Using info) is same. So I'm creating a new bug. On Thu, Sep 27, 2018 at 09:06:34PM +0800, Shengjing Zhu wrote: > I don't know p

Bug#908552: dh-golang: Wrong iterate logic in exec_chunked

2018-09-27 Thread Shengjing Zhu
nce, the @list array changes. } return @result; } Take packer as example, the uniq(@godeps) has 394 elements. But I find the exec_single only executed once, while the CHUNKSIZE is 200. tincho, could you help look at the perl code? -- Shengjing Zhu signature.asc Description: PGP signature

Bug#907432: [pkg-go] Bug#907432: golang-github-cloudflare-redoctober: FTBFS (too many arguments in call to activation.Listeners)

2018-09-14 Thread Shengjing Zhu
ers(true) >From the go-systemd commit comment, they just removed the arg, and assume it's default is true. -- Best regards, Shengjing Zhu

Bug#868050: RFS: golang-github-shibukawa-configdir -- Configuration directories handling for Go

2018-09-10 Thread Shengjing Zhu
rg/new/golang-github-shibukawa-configdir_0.0~git20170330.e180dbd-1.html -- Shengjing Zhu

Bug#908055: docker.io: CVE-2017-14992

2018-09-05 Thread Shengjing Zhu
On Thu, Sep 6, 2018 at 9:40 AM Arnaud Rebillout wrote: > > > On 09/05/2018 10:22 PM, Shengjing Zhu wrote: > > Dear docker.io maintainer, > > > > I'm not sure why the Built-Using field in docker.io doesn't contain > > golang-github-vbatts-tar-

Bug#908055: docker.io: CVE-2017-14992

2018-09-05 Thread Shengjing Zhu
doesn't have buildinfo for amd64. But I guess it was built with golang-github-vbatts-tar-split 0.10.2-1(which was uploaded at 2017-11-30). Thus the docker.io version in testing/unstable is not affected by this security issue. -- Regards, Shengjing Zhu

Bug#907959: ben: Can only filter fields listed in query -s option

2018-09-04 Thread Shengjing Zhu
ed results with following command, ben query -s Source,Built-Using ".built-using ~ /golang-1.\d\b/" /var/lib/apt/lists/xxx_unstable_main_binary-amd64_Packages So I guess the query command will only apply filter to fields listed in -s option. I don't think the -s option could affect the filter.

Bug#906250: ITP: execline -- small and non-interactive scripting language

2018-09-03 Thread Shengjing Zhu
On Mon, Sep 3, 2018 at 4:43 PM Shengjing Zhu wrote: > > Three of them (cd, umask, wait) clash with shell's regular built-in > > utilities. POSIX requires them to be exec(2)able[0][1]. Debian doesn't > > currently provide standalone executables for them (which is a bug), but >

Bug#906250: ITP: execline -- small and non-interactive scripting language

2018-09-03 Thread Shengjing Zhu
On Mon, Sep 3, 2018 at 4:17 PM Jakub Wilk wrote: > > * Shengjing Zhu , 2018-09-02, 14:42: > >When I try to package execline(a non-interactive shell script)[1], it > >installs following binaries in default PATH, > > > >cd, if, exec, wait, > > Three of them

Bug#906250: ITP: execline -- small and non-interactive scripting language

2018-09-02 Thread Shengjing Zhu
be in default PATH. Any advice with packaging, can I install these binaries in default PATH(like /usr/bin)? [1] https://skarnet.org/software/execline/ [2] https://www.mail-archive.com/skaware@list.skarnet.org/msg01225.html -- Shengjing Zhu

Bug#907714: golang-x-text: FTBFS in buster/sid (failing tests)

2018-09-01 Thread Shengjing Zhu
used, so I don't think the test is so important to kick packages out of testing. Can we skip this test? -- Shengjing Zhu

Bug#907570: libmodule-install-perl: install_script shouldn't change the shebang to realpath

2018-08-29 Thread Shengjing Zhu
/1.35/Makefile.PL/#L7 -- Shengjing Zhu

Bug#907547: anbox: Enable --use-rootfs-overlay in anbox-container-manager.service by default?

2018-08-29 Thread Shengjing Zhu
/usr/bin/anbox container-manager --daemon --privileged --data-path=/var/lib/anbox --use-rootfs-overlay ``` -- Best regards, Shengjing Zhu signature.asc Description: PGP signature

Bug#907263: dh-golang: Failed to build with gccgo-8

2018-08-26 Thread Shengjing Zhu
o the second patch is attached. -- Shengjing Zhu From 389d176cfef89a41b495b4af4578780b48d01972 Mon Sep 17 00:00:00 2001 From: Shengjing Zhu Date: Mon, 27 Aug 2018 11:55:01 +0800 Subject: [PATCH] Fix index out of range when using gccgo Signed-off-by: Shengjing Zhu --- script/dh_golang | 6 ++

Bug#907263: dh-golang: Failed to build with gccgo-8

2018-08-26 Thread Shengjing Zhu
ver if we go with filtering out std libraries(only for gccgo?), more lines will be in dh_golang...lol. And different logic for gccgo? -- Best regards, Shengjing Zhu

Bug#907263: dh-golang: Failed to build with gccgo-8

2018-08-26 Thread Shengjing Zhu
g for golang-go compiler. For gccgo, there's no such need because it will depends libgo. So for gccgo, it's true that we can filter out the std library. But I doubt if there's clean way... -- Best regards, Shengjing Zhu

Bug#907263: dh-golang: Failed to build with gccgo-8

2018-08-25 Thread Shengjing Zhu
ndard library. So the template will execute things like `index [] 0`. Patch is attached. -- Best regards, Shengjing Zhu >From 18c297db3557315a9ab844d1f6c4bdaceabbe987 Mon Sep 17 00:00:00 2001 From: Shengjing Zhu Date: Sat, 25 Aug 2018 23:57:58 +0800 Subject: [PATCH] Fix index out of range whe

Bug#907093: orphaning packages

2018-08-24 Thread Shengjing Zhu
not hijack it if you're still around. But AFAIK, the current version of skalibs has no Build-Depends/Depends in Debian archive, and is far behind upstream release. As I want to package s6, I'll need the latest version of skalibs. So I hope I can co-maintain this with you. -- Best regards, Shengjing Zhu

Bug#907093: ITA: skalibs -- Public domain general-purpose libraries

2018-08-23 Thread Shengjing Zhu
Control: retitle -1 ITA: skalibs -- Public domain general-purpose libraries Control: owner -1 ! I'm not aware of this package, thus I filed another ITP. Anyway, I'll adopt it since I'm going to package s6, which depends it.

Bug#906698: anbox-session-manager segmentation fault

2018-08-21 Thread Shengjing Zhu
fo at github. But please remember upstream only supports snap :( I see morphis has recognized it as a bug, let's wait to see what will happen. -- Best regards, Shengjing Zhu

Bug#906698: anbox-session-manager segmentation fault

2018-08-20 Thread Shengjing Zhu
dering, however this is not available in Debian package. Meanwhile the reporter got it worked after disabling Nvidia graphics. Do you have Nvidia graphics? -- Best regards, Shengjing Zhu

Bug#906698: anbox-session-manager segmentation fault

2018-08-19 Thread Shengjing Zhu
f1c7b7, > in > #0Object "/usr/lib/x86_64-linux-gnu/dri/i965_dri.so", at 0x7fe1ccf24349, > in > Segmentation fault (Address not mapped to object [0x7c]) > > What can I do ? Can I provide the info that you need to debug this issue > I think it's caused by recent changes to mesa. Could you paste output of `anbox system-info`. I suspect there's something wrong in `graphics` section. -- Best regards, Shengjing Zhu

Bug#906250: ITP: execline -- small and non-interactive scripting language

2018-08-16 Thread Shengjing Zhu
Package: wnpp Severity: wishlist Owner: Shengjing Zhu Control: block 733915 by -1 Control: block -1 by 906200 * Package name: execline Version : 2.5.0.1 Upstream Author : Laurent Bercot * URL : https://skarnet.org/software/execline/ * License : ISC

Bug#906200: ITP: skalibs -- development files used for building software at skarnet.org

2018-08-15 Thread Shengjing Zhu
Package: wnpp Severity: wishlist Owner: Shengjing Zhu Control: block 733915 by -1 * Package name: skalibs Version : 2.7.0.0 Upstream Author : Laurent Bercot * URL : https://skarnet.org/software/skalibs/ * License : ISC Programming Lang: C Description

Bug#733915: ITP: s6 -- a small suite of programs for UNIX, designed to allow process supervision

2018-08-12 Thread Shengjing Zhu
Control: retitle -1 ITP: s6 -- a small suite of programs for UNIX, designed to allow process supervision Control: owner -1 ! I intent to package s6. I personally use it in my container. -- Shengjing Zhu

Bug#903392: want support for packaging-only maintainer views

2018-08-04 Thread Shengjing Zhu
On Tue, Jul 31, 2018 at 10:50 AM Shengjing Zhu wrote: > > Here's the example for my package, which only has debian dir in > debian-branch. > > https://salsa.debian.org/zhsj-guest/anbox > > To build, using > > gbp clone https://salsa.debian.org/zhsj-guest/anbox > gbp

Bug#902467: [pkg-go] Bug#902467: golang-github-kardianos-osext: FTBFS in buster/sid (failing tests)

2018-08-04 Thread Shengjing Zhu
instead of rewriting the logic... -- Best regards, Shengjing Zhu

Bug#905075: RFS: golang-github-juju-collections/0.0~git20180717.9be91dc-1 [ITP]

2018-08-03 Thread Shengjing Zhu
On Fri, Aug 3, 2018 at 3:33 PM Alexandre Viau wrote: > > On 2018-07-31 09:43 AM, Shengjing Zhu wrote: > > X-Debbugs-CC: debian...@lists.debian.org > > > > Hi Go team, > > > > Here is > > https://salsa.debian.org/go-team/packages/golang-github-juju-c

Bug#905074: RFS: golang-github-canonicalltd-raft-test/0.0~git20180628.c3345b5-1 [ITP]

2018-08-03 Thread Shengjing Zhu
On Fri, Aug 3, 2018 at 3:40 PM Alexandre Viau wrote: > > Hello, > > On 2018-07-31 09:45 AM, Shengjing Zhu wrote: > > X-Debbugs-CC: debian...@lists.debian.org > > > > Hi Go team, > > > > Here is > > https://salsa.debian.org/go-team/packages/go

Bug#902467: golang-github-kardianos-osext: FTBFS in buster/sid (failing tests)

2018-08-03 Thread Shengjing Zhu
Hi team, Here is the patch to skip this test. -- Shengjing Zhu diff -Nru golang-github-kardianos-osext-0.0~git20170510.0.ae77be6/debian/changelog golang-github-kardianos-osext-0.0~git20170510.0.ae77be6/debian/changelog --- golang-github-kardianos-osext-0.0~git20170510.0.ae77be6/debian

Bug#868724: debian/watch file for the ledgersmb package

2018-08-02 Thread Shengjing Zhu
at there're two kinds of tarball. Don't look at https://github.com/ledgersmb/LedgerSMB/tags, which doesn't have asc signatures. And I think using upstream http release page is much simpler for you. -- Best regards, Shengjing Zhu

Bug#902467: golang-github-kardianos-osext: FTBFS in buster/sid (failing tests)

2018-08-02 Thread Shengjing Zhu
le. It of cause prints the "/tmp/go-buildnnn/b001/osext.test (deleted)". ^ Besides in go >= 1.8, this package's Executable function just fallback to go system os package. -- Best regards, Shengjing Zhu signature.asc Description: PGP signature

Bug#905074: RFS: golang-github-canonicalltd-raft-test/0.0~git20180628.c3345b5-1 [ITP]

2018-07-31 Thread Shengjing Zhu
X-Debbugs-CC: debian...@lists.debian.org Hi Go team, Here is https://salsa.debian.org/go-team/packages/golang-github-canonicalltd-raft-test PS, haven't run dch -r yet Helping nodens for packaging lxd at debconf :) -- Shengjing Zhu signature.asc Description: PGP signature

Bug#905075: RFS: golang-github-juju-collections/0.0~git20180717.9be91dc-1 [ITP]

2018-07-31 Thread Shengjing Zhu
X-Debbugs-CC: debian...@lists.debian.org Hi Go team, Here is https://salsa.debian.org/go-team/packages/golang-github-juju-collections PS, haven't run dch -r yet Helping nodens for packaging lxd at debconf :) -- Shengjing Zhu signature.asc Description: PGP signature

Bug#905073: RFS: golang-github-frankban-quicktest/1.0.0-1 [ITP]

2018-07-31 Thread Shengjing Zhu
X-Debbugs-CC: debian...@lists.debian.org Hi Go team, Here is https://salsa.debian.org/go-team/packages/golang-github-frankban-quicktest PS, haven't run dch -r yet Helping nodens for packaging lxd at debconf :) -- Shengjing Zhu signature.asc Description: PGP signature

Bug#903392: want support for packaging-only maintainer views

2018-07-30 Thread Shengjing Zhu
gbp.conf elsewhere, so let me you if you can't build. -- Shengjing Zhu signature.asc Description: PGP signature

Bug#904261: dh-golang: Don't install files listed in DH_GOLANG_EXCLUDES to dev pacakge

2018-07-22 Thread Shengjing Zhu
Best regards, Shengjing Zhu

Bug#904261: dh-golang: Don't install files listed in DH_GOLANG_EXCLUDES to dev pacakge

2018-07-22 Thread Shengjing Zhu
that why golang-github-prometheus-client-golang installs `examples` files twice in -dev package, (once installed by dh-golang, once installed by dh_installexamples). -- Best regards, Shengjing Zhu

Bug#903842: anbox: Please also package anbox-modules-dkms

2018-07-15 Thread Shengjing Zhu
wait sometime for this kernel version entering testing and becoming the default one. You're still able to manually install it from unstable. -- Best regards, Shengjing Zhu

Bug#903808: leela-zero: Not functional without downloading extra resources

2018-07-14 Thread Shengjing Zhu
Package: leela-zero Severity: serious Justification: Policy 2.2.1 Dear Maintainer, When I try to run leela-zero, it tells me there's no weights file, and I need to download extra file to make it functional. Thus I think this package breaks the policy 2.2.1 > In addition, the packages in main >

Bug#812721: gbp could filter out Files-Excluded: entries when committing to the pristine-tar branch

2018-07-09 Thread Shengjing Zhu
ory clean. Usually I want to remove vendor directory(actually they're not non-free, like the go vendor directory), and these files are often modified, making normal merge hard... -- Best regards, Shengjing Zhu

Bug#812721: gbp could filter out Files-Excluded: entries when committing to the pristine-tar branch

2018-07-07 Thread Shengjing Zhu
it these dfsg tarballs into pristine-tar branch or other places. -- Best regards, Shengjing Zhu

Bug#903147: RFS: backward-cpp/1.4-1 [ITP]

2018-07-06 Thread Shengjing Zhu
et/package/backward-cpp Alternatively, one can download the package with dget using this command: dget -x https://mentors.debian.net/debian/pool/main/b/backward-cpp/backward-cpp_1.4-1.dsc Or https://salsa.debian.org/zhsj-guest/backward-cpp -- Best Regards, Shengjing Zhu

Bug#812721: gbp could filter out Files-Excluded: entries when committing to the pristine-tar branch

2018-07-05 Thread Shengjing Zhu
tream log, along with some `git rm` commits; or like one import commit per release version? If it's latter, maybe it can be easily regenerated with all orig tarballs.-- Best regards, Shengjing Zhu

Bug#812721: gbp could filter out Files-Excluded: entries when committing to the pristine-tar branch

2018-07-05 Thread Shengjing Zhu
tory for packages done this way. Maybe from this point, uscan is enough now? -- Best regards, Shengjing Zhu

Bug#812721: gbp could filter out Files-Excluded: entries when committing to the pristine-tar branch

2018-07-05 Thread Shengjing Zhu
--exclude-with-copyright`, you will get a orig tarball which excludes files in Files-Excluded. [1] https://github.com/agx/git-buildpackage/pull/56 -- Regards, Shengjing Zhu signature.asc Description: PGP signature

Bug#884797: ITP: anbox -- Run Android applications on any GNU/Linux operating system

2018-07-04 Thread Shengjing Zhu
0.0~git20180612-1_amd64.buildinfo > Uploading anbox_0.0~git20180612-1_amd64.deb > Uploading anbox_0.0~git20180612-1_amd64.changes > > $ echo $? > 0 > Thanks, it hits NEW now. -- Best regards, Shengjing Zhu

Bug#884797: ITP: anbox -- Run Android applications on any GNU/Linux operating system

2018-07-04 Thread Shengjing Zhu
commands: > > > rm anbox* > Files removed: anbox_0.0~git20180612-1.debian.tar.xz > anbox_0.0~git20180612-1.dsc anbox-dbgsym_0.0~git20180612-1_amd64.deb > > anbox_0.0~git20180612.orig.tar.gz All problem files should be deleted now. Please upload again, thanks! -- Best regards, Shengjing Zhu

Bug#884797: ITP: anbox -- Run Android applications on any GNU/Linux operating system

2018-07-04 Thread Shengjing Zhu
Hi Chirs, On Wed, Jul 4, 2018 at 5:29 PM Shengjing Zhu wrote: > > Uploaded.. although there was some cruft in the queue, so it might get > > rejected. Please check it hits NEW... :) > > That's because I upload this by mistake, forget to put `mentors` between > `dput` and cha

Bug#884797: ITP: anbox -- Run Android applications on any GNU/Linux operating system

2018-07-04 Thread Shengjing Zhu
On Wed, Jul 4, 2018 at 5:14 PM Chris Lamb wrote: > > Hi Shengjing Zhu, > > > https://mentors.debian.net/debian/pool/contrib/a/anbox/anbox_0.0~git20180612-1.dsc > > Uploaded.. although there was some cruft in the queue, so it might get > rejected. Please check it hits NEW

Bug#884797: ITP: anbox -- Run Android applications on any GNU/Linux operating system

2018-07-03 Thread Shengjing Zhu
`anbox` command. > tests seem to hang for me: I don't know the reason from your log. the log says buffered_io_stream_tests stared but not finished. Does this happen in sbuild or other environment? It's fine on my side and I can't reproduce (in sbuild). -- Best regards, Shengjing Zhu

Bug#902966: pstore: crypto_comp_decompress failed

2018-07-03 Thread Shengjing Zhu
Package: src:linux Version: 4.17.3-1 Severity: normal Dear Maintainer, Updating to 4.17, dmesg shows pstore: crypto_comp_decompress failed I didn't know what's pstore used for, maybe efi? Looking at config, maybe some pstore_*_compress should be set? grep -i pstore /boot/config-4.17.0-1-amd64

Bug#902568: dpkg: error: dpkg status database is locked by another process

2018-06-27 Thread Shengjing Zhu
Package: apt Version: 1.6.2 Severity: normal Dear Maintainer, During today's upgrade, I meet the following error: Unpacking apt (1.6.2) over (1.6.1) ... dpkg: error: dpkg status database is locked by another process E: Sub-process /usr/bin/dpkg returned an error code (2) Full log is,

Bug#902400: ITP: backward-cpp -- Beautiful stack trace pretty printer for C++

2018-06-25 Thread Shengjing Zhu
Package: wnpp Severity: wishlist Owner: Shengjing Zhu * Package name: backward-cpp Version : 1.4(upcoming) Upstream Author : François-Xavier Bourlet bomb...@gmail.com * URL : https://github.com/bombela/backward-cpp * License : MIT Programming Lang: C

Bug#902328: pius: New upstream supports python3

2018-06-24 Thread Shengjing Zhu
Package: pius Version: 2.2.4-1 Severity: wishlist Dear Maintainer, Could you upload the new release 2.2.6. And move the python depends to python3. Since 2.2.5, pius supports python3. Thanks Shengjing Zhu signature.asc Description: PGP signature

Bug#884797: ITP: anbox -- Run Android applications on any GNU/Linux operating system

2018-06-22 Thread Shengjing Zhu
l. [1] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=901134#47 -- Best regards, Shengjing Zhu

Bug#901134: RFS: anbox-modules/0.0~git20180608-1 [ITP]

2018-06-22 Thread Shengjing Zhu
On Sat, Jun 23, 2018 at 1:04 AM Ben Hutchings wrote: > I needed to make some small changes to build them as modules. The next > upload using Linux 4.17 should include ashmem_linux and binder_linux > modules for amd64, arm64 and armhf. > Thanks for your time! -- Best regards, Shengjing Zhu

Bug#901984: tinc: New pre release 1.1pre16

2018-06-20 Thread Shengjing Zhu
Package: tinc Version: 1.1~pre15-1 Severity: wishlist Dear Maintainer, 1.1pre16 has been released, could you package it to experimental Thanks Shengjing Zhu signature.asc Description: PGP signature

Bug#901134: RFS: anbox-modules/0.0~git20180608-1 [ITP]

2018-06-20 Thread Shengjing Zhu
Hi Ben, On Thu, Jun 14, 2018 at 10:46 AM Shengjing Zhu wrote: > > On Thu, Jun 14, 2018 at 01:09:39AM +0100, Ben Hutchings wrote: > > I agree, I don't think it makes much sense to build these OOT if they > > can be built in-tree. > > Here goes the bug #901492 (linux: Plea

Bug#884797: ITP: anbox -- Run Android applications on any GNU/Linux operating system

2018-06-17 Thread Shengjing Zhu
Hi Chris, Seems that we got lost with the notification system on mentors.d.n. I replied you three days after you first comment, since the comment didn't come to my mailbox(forget to subscribe on web page). And you're not likely to receive my comments on web page too. If you haven't seen the

Bug#763390: bash: malloc assertion failed at bashline.c:1745

2018-06-15 Thread Shengjing Zhu
. */ if (state == 0) { rl_filename_stat_hook = bash_command_name_stat_hook; if (dequoted_hint && dequoted_hint != hint) free (dequoted_hint); if (hint) free (hint); <--- this line [...] I don't have bash-completion installed. And I can't reproduce it. Thanks, Shengjing Zhu

Bug#901134: RFS: anbox-modules/0.0~git20180608-1 [ITP]

2018-06-13 Thread Shengjing Zhu
On Thu, Jun 14, 2018 at 01:09:39AM +0100, Ben Hutchings wrote: > On Wed, 2018-06-13 at 13:23 +0200, Adam Borowski wrote: > > Hi Ben! > > Could you please chime in to bug #901134 (RFS: anbox-modules)? > > > > This package wants to ship redundant copies of two modules (ashmem and > > binder) that

Bug#901492: linux: Please enable Android ashmem and binder module

2018-06-13 Thread Shengjing Zhu
applications on any GNU/Linux operating system #901130 ITP: anbox-modules -- Android kernel driver (binder, ashmem) in DKMS format This will obsolete #901130. [1] https://github.com/anbox/anbox Thanks Shengjing Zhu signature.asc Description: PGP signature

Bug#901134: RFS: anbox-modules/0.0~git20180608-1 [ITP]

2018-06-13 Thread Shengjing Zhu
ion but no free alternative on Debian). Anbox[1] is the approach to do this. If you want to test, you can have a look at my other RFS(#901137). Also noted, anbox will be in contrib area, since we don't have Android image(rootfs) in main. [1] https://github.com/anbox/anbox -- Best regards, Shengjing Zhu

Bug#901134: RFS: anbox-modules/0.0~git20180608-1 [ITP]

2018-06-12 Thread Shengjing Zhu
on't think it would be problem. Just to clarify, there's no d/patches file, so no GPL-3 code is patched to GPL-2 code. -- Regards, Shengjing Zhu signature.asc Description: PGP signature

Bug#901137: RFS: anbox/0.0~git20180608-1 [ITP]

2018-06-09 Thread Shengjing Zhu
he package with dget using this command: dget -x https://mentors.debian.net/debian/pool/contrib/a/anbox/anbox_0.0~git20180608-1.dsc More information about anbox can be obtained from https://anbox.io Changes since the last upload: * Initial release. (Closes: #884797) Regards, She

Bug#901134: RFS: anbox-modules/0.0~git20180608-1 [ITP]

2018-06-09 Thread Shengjing Zhu
: https://mentors.debian.net/package/anbox-modules Alternatively, one can download the package with dget using this command: dget -x https://mentors.debian.net/debian/pool/main/a/anbox-modules/anbox-modules_0.0~git20180608-1.dsc Regards, Shengjing Zhu signature.asc Description: PGP signature

Bug#901130: ITP: anbox-modules -- Android kernel driver (binder, ashmem) in DKMS format

2018-06-09 Thread Shengjing Zhu
Package: wnpp Severity: wishlist Owner: Shengjing Zhu * Package name: anbox-modules-dkms Version : 0.0~git20180608 Upstream Author : Simon Fels * URL : https://github.com/anbox/anbox-modules/ * License : GPL-2 Programming Lang: C Description : Android

Bug#884797: ITP: anbox -- Run Android applications on any GNU/Linux operating system

2018-06-08 Thread Shengjing Zhu
Control: owner -1 ! Taking over it. Also some notes, After contacted with @morphis(upstream maintainer), he will move anbox kernel modules to a separated source repository. So I'll submit another ITP for anbox-dkms package. -- Best regards, Shengjing Zhu

Bug#884797: ITP: anbox -- Run Android applications on any GNU/Linux operating system

2018-06-07 Thread Shengjing Zhu
It seems to me that the ITP being owned by DD is more convenient than me. I'll take it next day if you haven't changed mind. My previous work is done at https://github.com/zhsj/pkg-anbox/ -- Best regards, Shengjing Zhu

Bug#900476: vim-runtime: Wrong debcontrolArchitecture keyword

2018-05-31 Thread Shengjing Zhu
of packages vim-runtime recommends: ii vim-nox [vim] 2:8.0.1766-1 vim-runtime suggests no packages. -- no debconf information From 6d49735f68d38013e1df439ca96ec53082cacad8 Mon Sep 17 00:00:00 2001 From: Shengjing Zhu Date: Thu, 31 May 2018 17:23:45 +0800 Subject: [PATCH] fix debcontrolArchitecture

Bug#884797: ITP: anbox -- Run Android applications on any GNU/Linux operating system

2018-05-30 Thread Shengjing Zhu
by upstream. But it's still worth to do, as said in the RFP message, this is the only way to run Android natively on GNU/Linux. -- Best regards, Shengjing Zhu

Bug#900258: shadowsocks-libev: Drop apg/pwgen from Depends

2018-05-27 Thread Shengjing Zhu
RELEASED; urgency=medium + + * Drop apg and pwgen from Depends, use perl rand to generate +password. + + -- Shengjing Zhu <i...@zhsj.me> Mon, 28 May 2018 13:29:05 +0800 + shadowsocks-libev (3.1.3+ds-2) unstable; urgency=medium [ Sync from 3.1.3+ds-1ubuntu1 ] diff -Nru shadowsocks-li

Bug#899296: gf-complete: Enable SSE3/SSE4 again

2018-05-22 Thread Shengjing Zhu
Source: gf-complete Severity: wishlist X-Debbugs-CC: b...@debian.org Dear Maintainer, I would like to propose to enable SSE3/SSE4 again on amd64. Previously it was disabled due to https://bugs.debian.org/894670 Quote from bunk: You cannot pass -mfpu or -msse functions to gcc when

Bug#898151: bpfcc: Not migrate to testing

2018-05-07 Thread Shengjing Zhu
Source: bpfcc Severity: normal Dear Maintainer, bpfcc didn't migrate to testing. I see you have tried to request RoM but still not migrated. After consulting on #debian-dev 12:18 I think it is because arch-all packages are depending on packages that only exist on some arches

Bug#898149: Recommends: freerdp-x11 won't be in buster

2018-05-07 Thread Shengjing Zhu
Package: krdc Version: 4:17.08.3-1 Severity: serious Justification: Policy 2.2.1 Dear Maintainer, Due to https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=890928 freerdp-x11 won't be in buster, was superseded by freerdp2-x11. Policy 2.2.1: the packages in main must not require or recommend a

Bug#895338: awscli: zsh completion doesn't work as expected

2018-04-09 Thread Shengjing Zhu
Package: awscli Version: 1.14.44-1 Severity: minor Dear Maintainer, This package ships /usr/share/zsh/vendor-completions/_awscli which I expect it to work like other files in zsh/vendor-completions. For example, I should have `aws` completion if I just called `compinit` in my zshrc. But I

Bug#893199: rapidjson maintenance

2018-03-25 Thread Shengjing Zhu
On Sun, Mar 25, 2018 at 06:44:59PM +0300, Alexander Gerasiov wrote: > Hello Shengjing Zhu, > > If you need a help in maintenance or sponsoring the upload, feel free > to contact me. > > I've also pushed some small fixups to salsa repo feel free to use them. > Hi Alex

Bug#893199: O: rapidjson -- fast JSON parser/generator for C++ with SAX/DOM style API

2018-03-25 Thread Shengjing Zhu
Control: retitle -1 ITA: rapidjson -- fast JSON parser/generator for C++ with SAX/DOM style API Control: owner -1 ! I intent to adopt this package. I'm preparing the new version of ceph, which needs this library. Thanks!

Bug#791445: ceph: uses bundled "libjerasure" library again

2018-03-19 Thread Shengjing Zhu
Source: ceph Followup-For: Bug #791445 X-Debbugs-CC: z...@debian.org Dear Maintainer, Things are getting better now, upstream gf-complete now supports runtime SIMD detection, http://lab.jerasure.org/jerasure/gf-complete/commit/4339569f14c95a8895a347845f8ed6e18b345ace And ceph since 11.0.1

Bug#893173: rocksdb: miss ppc specific objs when linking

2018-03-17 Thread Shengjing Zhu
Source: rocksdb Severity: normal Tags: upstream patch Forwarded: https://github.com/facebook/rocksdb/pull/3619 Dear Maintainer, librocksdb.so in ppc* platform misses some ppc specific objs, like crc32c_ppc.o I've sent the patch to upstream, but not merged yet. Thanks!

Bug#893073: rocksdb: please enable more architectures

2018-03-17 Thread Shengjing Zhu
ithub.com/facebook/rocksdb/pull/3622 [1] https://github.com/facebook/rocksdb/tree/master/examples -- Best regards, Shengjing Zhu

Bug#893073: rocksdb: please enable more architectures

2018-03-16 Thread Shengjing Zhu
On Fri, Mar 16, 2018 at 2:35 PM, László Böszörményi (GCS) <g...@debian.org> wrote: > Control: -1 +pending > > Hi Shengjing, > > On Fri, Mar 16, 2018 at 7:01 AM, Shengjing Zhu <i...@zhsj.me> wrote: >> Could you use linux-any in Architectures field? > I cou

Bug#893073: rocksdb: please enable more architectures

2018-03-16 Thread Shengjing Zhu
Source: rocksdb Severity: wishlist Dear Maintainer, Could you use linux-any in Architectures field? It seems rocksdb can be built on other architectures too. for ref: https://koji.fedoraproject.org/koji/buildinfo?buildID=1055642 at least s390x is fine. -- System Information: Debian Release:

Bug#891894: golang-golang-x-sys: redefinition of 'SyscallNoError' when building with gccgo 8

2018-03-01 Thread Shengjing Zhu
Source: golang-golang-x-sys Version: 0.0~git20180126.0.ff2a66f-1 Severity: important Tags: upstream Dear Maintainer, It failed to build with gccgo 8 https://buildd.debian.org/status/fetch.php?pkg=elvish=ppc64el=0.11%2Bds1-4=1519965549=0 It's been fixed in

Bug#891822: elvish: failed to build on arm64/mips64el

2018-03-01 Thread Shengjing Zhu
Package: elvish Version: 0.11+ds1-3+b1 Severity: serious Tags: upstream Justification: fails to build from source (but built successfully in the past) Forwarded: https://github.com/elves/elvish/issues/612 Dear Maintainer, Failed to build with Go 1.10 on arm64 and mips64el

Bug#883454: telegram-desktop: Please consider backporting IME fix from trunk

2017-12-04 Thread Shengjing Zhu
Package: telegram-desktop Version: 1.1.23-2 Severity: wishlist Dear Maintainer, After 1.1.23-2 entering testing, I meet the problem when I type with IME(fcitx input method) in telegram-desktop. However 1.1.23-1 is fine. I'm not sure how this happened, maybe the upgrade of Qt? The bug is same in

Bug#883136: libgo11: Please consider moving gox files to a separate package

2017-11-29 Thread Shengjing Zhu
Package: libgo11 Version: 7.2.0-16 Severity: wishlist Dear Maintainer, *.gox files are shipped in libgo11, in /usr/lib/x86_64-linux-gnu/go/7/. IMHO, these files are like *.h for C, and should be in a separate package. -- System Information: Debian Release: buster/sid APT prefers testing

Bug#882155: libgo11: libgo.so.11.0.0 is with debug_info and not stripped

2017-11-29 Thread Shengjing Zhu
On Wed, Nov 29, 2017 at 11:37 PM, Shengjing Zhu <i...@zhsj.me> wrote: > On Wed, Nov 29, 2017 at 9:32 AM, Matthias Klose <d...@debian.org> wrote: >>> /usr/lib/x86_64-linux-gnu/libgo.so.11.0.0 is not stripped which make the >>> file very large, nearly 48M. >>

Bug#882155: libgo11: libgo.so.11.0.0 is with debug_info and not stripped

2017-11-29 Thread Shengjing Zhu
e the bug in upstream? I didn't meet problem(can build and run applications) with stripped libgo. -- Best regards, Shengjing Zhu

Bug#882155: libgo11: libgo.so.11.0.0 is with debug_info and not stripped

2017-11-19 Thread Shengjing Zhu
Package: libgo11 Version: 7.2.0-14 Severity: normal Dear Maintainer, /usr/lib/x86_64-linux-gnu/libgo.so.11.0.0 is not stripped which make the file very large, nearly 48M. and libgo11-dbg is empty, maybe the debug info should be in this package instead. ``` apt-file show libgo11-dbg

Bug#812721: gbp could filter out Files-Excluded: entries when committing to the pristine-tar branch

2017-11-06 Thread Shengjing Zhu
"git-ref" can be parsed as an option, so we can store it in gbp.conf. And I suggest the `--filter` option can also be remained, when importing from upstream git. Besides, adding an option like `--filter-with-copyright` to indicate filtering files from "Files-Excluded" in d/copyright file. -- Shengjing Zhu

Bug#878771: golang-github-spf13-cobra FTBFS on mips: error: redefinition of 'AF_ALG'

2017-10-16 Thread Shengjing Zhu
bb8f8e16490ce03ce084c8e170ea4c9e79f53ba2 > ___ > Pkg-go-maintainers mailing list > pkg-go-maintain...@lists.alioth.debian.org > http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers -- Best regards, Shengjing Zhu

Bug#867358: mips/mipsel: mips-linux-gnu-gccgo-7: waitid: bad address

2017-10-03 Thread Shengjing Zhu
so I won't apply it until > it's either accepted upstream or reviewed by Aurelien or another MIPS > porter. > Ben, James' two patches are included in 4.13. Forget to close this bug in latest upload to unstable? Best regards, Shengjing Zhu

Bug#877146: update to runc (1.0.0~rc4) breaks docker

2017-09-30 Thread Shengjing Zhu
newer than 1.0.0-rc4. Packaging the lasted docker release is hard, but eventually we will do. And the runc/docker-runc in Debian will become duplicated. CCing docker.io maintainers, so they will be aware of this. -- Best regards, Shengjing Zhu

Bug#877008: golang-github-mattn-go-sqlite3: FTBFS: FAIL: TestShortTimeout

2017-09-27 Thread Shengjing Zhu
https://tests.reproducible-builds.org/debian/rb-pkg/unstable/armhf/golang-github-mattn-go-sqlite3.html --- FAIL: TestShortTimeout (5.60s) sqlite3_go18_test.go:83: Executing db initializing statements sqlite3_go18_test.go:128: context deadline exceeded -- Best regards, Shengjing Zhu

Bug#876875: golang-github-gin-gonic-gin FTBFS with Go 1.9

2017-09-26 Thread Shengjing Zhu
On Tue, 26 Sep 2017 18:05:49 +0300 Adrian Bunk wrote: > Source: golang-github-gin-gonic-gin > Version: 1.2+dfsg1-2 > Severity: serious > > https://tests.reproducible-builds.org/debian/rb-pkg/unstable/amd64/golang-github-gin-gonic-gin.html > > ... > === RUN TestPanicInHandler >

Bug#876639: libgo11: Please consider backport "libgo: use gc's arch names as the default GOARCHs on MIPS"

2017-09-24 Thread Shengjing Zhu
-318574018 ) So I think backport this fix in gccgo can be really helpful. Thanks Shengjing Zhu signature.asc Description: PGP signature

Bug#839108: dh-golang: Please document behavior and variables used

2017-09-23 Thread Shengjing Zhu
umentation into the dh_golang(1) manpage seems inappropriate, > as that manpage should only document the dh_golang executable, right? Add to man 3 Debian::Debhelper::Buildsystem::golang? If you add the docs to lib/Debian/Debhelper/Buildsystem/golang.pm, the auto generated manpage is man3/Debian::De

<    5   6   7   8   9   10   11   >