Bug#985478: [v2 PATCH] options: Always reset OPTIND in getoptsreset

2024-05-19 Thread Herbert Xu
as this simply trashes the caller's getopts state. Reported-by: наб Reported-by: Harald van Dijk Signed-off-by: Herbert Xu diff --git a/src/options.c b/src/options.c index 4d0a53a..c74e4fe 100644 --- a/src/options.c +++ b/src/options.c @@ -393,7 +393,7 @@ setcmd(int argc, char **argv) void g

Bug#985478: [PATCH] options: Always reset OPTIND in getoptsreset

2024-05-19 Thread Herbert Xu
3881b07cb724fd4fa54422ef2bc>, > if that change is desired for dash it is easy to apply. I've decided to make getoptsreset always do the reset, regardless of the value of OPTIND. Why else would you assign it anyway? ---8<--- Always reset OPTIND if it is modified by the user, regardless of its value. Repo

Bug#547902: Upstream fix coming soon

2024-05-19 Thread Herbert Xu
This will be fixed upstream soon with https://patchwork.kernel.org/project/dash/patch/fd52d05affd400c2c2f2ba238ff83555d11ca648.1716096097.git.herb...@gondor.apana.org.au/ Cheers, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert

Bug#1071041: grep: Buggy multi-character collating symbol/equivalent class

2024-05-13 Thread herbert
Package: grep Version: 3.8-5 Severity: normal These three commands should all return patch, but the last one does not (and is buggy): $ echo patch | LC_ALL=cs_CZ grep '[[.ch.]]$' patch $ echo patch | LC_ALL=cs_CZ grep 't[[=ch=]]$' patch $ echo patch | LC_ALL=cs_CZ grep '[[=ch=]]$' $ -- System

Bug#935781: manpages: nsswitch.conf should document automount option

2023-12-26 Thread Herbert Xu
5/RHEL-5-manual/Deployment_Guide-en-US/s1-nfs-client-config-autofs.html Cheers, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

Bug#1053550: IKEv2 regression when IP address changes behind NAT-T

2023-10-06 Thread Herbert Xu
s and create new ones with the new address. Cheers, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

Bug#1020249: PipeWire?

2022-09-28 Thread Herbert Snorrason
isn't reporting that it can autoremove most of GNOME. That I can probably live with. Sorry for the noise. With greetings, Herbert Snorrason

Bug#1020249: PipeWire?

2022-09-27 Thread Herbert Snorrason
be installed again? Pipewire completely fails to start, and I really don't see how it's unreasonable to prefer continuing to use the sound system that, you know, works. :) With greetings, Herbert Snorrason

Bug#1019473: iproute2-doc: Examples from source should be included

2022-09-10 Thread herbert
Package: iproute2-doc Version: 5.10.0-4 Severity: normal The examples from the iproute2 source package should be included in iproute2-doc. Thanks, -- System Information Debian Release: 11.2 Kernel Version: Linux gwarestrin 5.16.0 #1 SMP PREEMPT Mon Jan 17 13:04:35 AEDT 2022 x86_64 GNU/Linux

Bug#1004116: ssmtp: ssmtp truncates headers longer than BUF_SZ

2022-01-20 Thread herbert
trlen(buf)); + + if(buf != stbuf) { + free(buf); + } return (outbytes >= 0) ? outbytes : 0; } -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

Bug#874264: [PATCH] exec: Check executable bit when searching path

2021-11-09 Thread Herbert Xu
t; ii debianutils 4.8.1.1 > ii dpkg 1.18.24 > ii libc62.24-11+deb9u1 > > dash recommends no packages. > > dash suggests no packages. > > -- debconf information: > * dash/sh: true This is inherited from NetBSD. There is even a commented-out block

Bug#976865: Fwd: Bug#974900: dash removes trailing slash from script arguments

2020-12-10 Thread Herbert Xu
On Thu, Dec 10, 2020 at 10:20:29AM -0500, Jeff King wrote: > > It seems like it happens for "foo/", too. If I compile: I think the key is that dash uses GLOB_NOMAGIC. Cheers, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana

Bug#976865: Fwd: Bug#974900: dash removes trailing slash from script arguments

2020-12-10 Thread Herbert Xu
"foo". This should return no match. If you change the pattern to "foo/", then it also matches but returns with the string "foo/" as expected. The only flag we pass to glob(3) is GLOB_NOMAGIC. Cheers, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

Bug#976865: Fwd: Bug#974900: dash removes trailing slash from script arguments

2020-12-10 Thread Herbert Xu
em doesn't occur for "foo/". Cheers, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

Bug#976865: Fwd: Bug#974900: dash removes trailing slash from script arguments

2020-12-09 Thread Herbert Xu
org.au/ Cheers, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

Bug#974705: Changes to job handling cause hangs in wait

2020-12-06 Thread Herbert Xu
utopkgtest [13:21:42]: test timedated: ---] > autopkgtest [13:21:42]: test timedated: - - - - - - - - - - results - - - - > - - - - - - > timedatedFAIL non-zero exit status 143 > > > Running with sh -x > ... > + kill 825 > + wait 825 &

Bug#974705: [PATCH] jobs: Only block in waitcmd on first run

2020-12-01 Thread Herbert Xu
Only clear gotsigchld when waiting...") Reported-by: Michael Biebl Signed-off-by: Herbert Xu diff --git a/src/jobs.c b/src/jobs.c index 3417633..516786f 100644 --- a/src/jobs.c +++ b/src/jobs.c @@ -81,6 +81,7 @@ #define DOWAIT_NONBLOCK 0 #define DOWAIT_BLOCK 1 #define DOWAIT_WAITCMD

Bug#974705: Changes to job handling cause hangs in wait

2020-12-01 Thread Herbert Xu
eed a change in behaviour which is undesirable. Cheers, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

Bug#974705: Changes to job handling cause hangs in wait

2020-12-01 Thread Herbert Xu
bash script rather than bash itself. Cheers, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

Bug#974705: Changes to job handling cause hangs in wait

2020-12-01 Thread Herbert Xu
en around that you don't know of. In the original bug, the proper solution is to wait on the PID that the script just sent a kill signal to. Cheers, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

Bug#974705: Changes to job handling cause hangs in wait

2020-12-01 Thread Herbert Xu
On Tue, Dec 01, 2020 at 10:55:06AM +, Harald van Dijk wrote: > > You wrote: "So the problem is really in the parent of this shell, which > appears to be bash:" You should read my follow-up email too that suggested changing the systemd script. Cheers, -- Email: Herbert

Bug#974705: Changes to job handling cause hangs in wait

2020-12-01 Thread Herbert Xu
the last command in a list when it can just > exec() without a fork() instead. A minimal example without an explicit exec > is > > bash -c 'dash -c ": & wait" <(sleep 1d)' I'm not sure about that because bash itself is still hanging around, if it were really the -c optimisation then bash should not appear in the ps output at all. Cheers, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

Bug#974705: Changes to job handling cause hangs in wait

2020-11-30 Thread Herbert Xu
On Tue, Dec 01, 2020 at 05:06:18PM +1100, Herbert Xu wrote: > > For some reason this is causing the final two tee's to be created > as children of debian/tests/timedated rather than the bash shell. An alternative to changing the parent is of course to do wait $MONPID

Bug#974705: Changes to job handling cause hangs in wait

2020-11-30 Thread Herbert Xu
On Tue, Dec 01, 2020 at 04:38:37PM +1100, Herbert Xu wrote: > > FWIW I'm unable to reproduce it with autopkgtest. This is what > I get: > > root@test0:~# autopkgtest --test-name=timedated systemd-246.6/ -B -- lxc -s > autopkgtest-sid > autopkgtest [16:32:45]: star

Bug#974705: Changes to job handling cause hangs in wait

2020-11-30 Thread Herbert Xu
SS autopkgtest [16:33:32]: summary timedatedPASS root@test0:~# Cheers, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

Bug#974705: Changes to job handling cause hangs in wait

2020-11-30 Thread Herbert Xu
On Tue, Dec 01, 2020 at 04:42:03PM +1100, Herbert Xu wrote: > > Nevermind, I see that the script has been modified to use bash. > > I can reproduce the problem now so it's all good. OK the problem is this: sh -c 'sleep 1d& exec $MYSHELL -c "sleep 1& wait&q

Bug#974900: Fwd: Bug#974900: dash removes trailing slash from script arguments

2020-11-16 Thread Herbert Xu
Andrej Shadura wrote: > > this is another bug report I have received. This is a bug in glob(3). Please dup and reassign to libc6. There is a patch in the queue to disable glob by default again. Cheers, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key

Bug#964173: vim-tiny: vim-tiny creates broken mailcap entries

2020-07-03 Thread herbert
Package: vim-tiny Version: 2:8.1.0875-5 Severity: important The vim-tiny package depends on vim-common, which contains the file /usr/share/applications/vim.desktop, that in turn causes mailcap entries to be generated such as: text/x-csrc; vim %s; needsterminal However, these entries are broken

Bug#858288: [PATCH] eval: Check nflag in evaltree instead of cmdloop

2020-06-04 Thread Herbert Xu
This patch moves the nflag check from cmdloop into evaltree. This is so that nflag will be in force even if we enter the shell via a path other than cmdloop, e.g., through sh -c. Reported-by: Joey Hess Signed-off-by: Herbert Xu diff --git a/src/eval.c b/src/eval.c index d10be38..9476fbb

Bug#782540: dash: wait returns whenever a child process is stopped/continued

2020-06-02 Thread Herbert Xu
This is fixed in dash 0.5.11. -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

Bug#716789: dash: Dash sometimes misbehaves when backticks are included after an || operator

2020-06-02 Thread Herbert Xu
This has been fixed in dash 0.5.11. -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

Bug#716789: dash: Dash sometimes misbehaves when backticks are included after an || operator

2020-05-28 Thread Herbert Xu
This has been fixed upstream with https://git.kernel.org/pub/scm/utils/dash/dash.git/commit/?id=51e2d88d6e513150a76c007111bbee21bb922c33 Thanks, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

Bug#755446: [PATCH] redir: Retry open64 on EINTR

2020-05-28 Thread Herbert Xu
to retry the open64 call if necessary. It also calls sh_error when appropriate. Fixes: 3800d4934391 ("[JOBS] Fix dowait signal race") Reported-by: Samuel Thibault Signed-off-by: Herbert Xu diff --git a/src/input.c b/src/input.c index 17544e7..6103312 100644 --- a/src/input.c +++ b/s

Bug#436466: dash: Please optimise single command given to -c to exec it

2020-05-27 Thread Herbert Xu
gotten by someone who understands the > > problems in 642922, which seem to have been fixed elsewhere. > > Thanks for the reminder, Tim. Indeed, this won't be forgotten. Looks it had been forgotten :) I gather that the ocamlbuild bug has been fixed so can this be reinstated please? T

Bug#960249: inn2: Please enable DO_RNEWS_SAVE_BAD for rnews

2020-05-24 Thread Herbert Xu
t; Also note the "-v" option, already present but somehow undocumented in the > man page, that will log the reason of the rejection. Thanks for the change! -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

Bug#960478: xorg-server: Allow XDMCP keepalives to be disabled

2020-05-12 Thread herbert
Package: xorg-server Version: 2:1.20.4-1 Severity: wishlist As it is, when an XDMCP session is used over TCP keepalive packets are periodically sent and the session is torn down if no replies come back. During a transient network failure, this causes an X session that could otherwise survive

Bug#960249: inn2: Please enable DO_RNEWS_SAVE_BAD for rnews

2020-05-11 Thread Herbert Xu
option would be the best. Thanks, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

Bug#960249: inn2: Please enable DO_RNEWS_SAVE_BAD for rnews

2020-05-10 Thread herbert
Package: inn2 Version: 2.6.3-1+deb10u2 Severity: normal The compile-time option DO_RNEWS_SAVE_BAD should be enabled as otherwise articles rejected by the news server are lost forever. -- System Information Debian Release: 10.3 Kernel Version: Linux gwarestrin 5.2.0+ #3 SMP PREEMPT Tue Aug 20

Bug#759230: shell: Always use explicit large file API

2020-05-07 Thread Herbert Xu
There are some remaining stat/readdir calls in dash that may lead to spurious EOVERFLOW errors on 32-bit platforms. This patch changes them (as well as open(2)) to use the explicit large file API. Reported-by: Tatsuki Sugiura Signed-off-by: Herbert Xu diff --git a/configure.ac b/configure.ac

Bug#939298: ssmtp: Keep From: header intact

2019-09-02 Thread herbert
Package: ssmtp Version: 2.64-8 Severity: normal As it stands ssmtp will either set the envelope from address based on the "From:" (note the colon) header or override both the "From:" address as well as the envelope address. The second behaviour is wrong as you should never change the "From:"

Bug#935781: manpages: nsswitch.conf should document automount option

2019-08-26 Thread Herbert Xu
Package: manpages Version: 4.16-2 Severity: normal There is an undocumented automount option in nsswitch.conf which can be used to control how auto.master(5) looks up sources starting with the plus sign. This should be documented. Please see:

Bug#935492: rpcbind: Broadcast requests broken

2019-08-23 Thread herbert
://sourceforge.net/p/libtirpc/mailman/message/36377522/ Fortunately it is easy to fix it by enabling it at build time with --enable-rmtcalls. Could you please do that and also inform upstream that people do use this feature? Thanks, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP

Bug#930274: RFS: junitparser/1.3.2-1 [ITP]

2019-07-29 Thread Herbert Fortes
t it and use only the 'Testsuite: autopkgtest-pkg-python' it is fine to me. Ask FTP-Master to Reject the package and do it. There is no problem. I will re-upload the package I take care of with 'Testsuite' only. Regards, Herbert

Bug#931970: gphoto2: autopkgtest failure block readline migration

2019-07-23 Thread Herbert Fortes
:29]: test upstream-test-suite.sh: - - - - - - - - - - results - - - - - - - - - - upstream-test-suite.sh PASS autopkgtest [14:14:29]: summary upstream-test-suite.sh PASS Can you detail more what is wrong? Regards, Herbert

Bug#932547: RFS: desktopfolder/1.1.0-2

2019-07-23 Thread Herbert Fortes
Hi, On 7/20/19 11:14 AM, David Mohammed wrote: > Package: sponsorship-requests > Severity: normal > > Dear mentors, > > I am looking for a sponsor for my package "desktopfolder" I granted upload permissions to you. Regards, Herbert

Bug#912367: stretch-pu: package gthumb/3:3.4.4.1-5

2019-07-20 Thread Herbert Fortes
On 7/19/19 4:06 PM, Adam D. Barratt wrote: > On Thu, 2019-07-18 at 16:30 -0300, Herbert Fortes wrote: >> On 7/18/19 4:19 PM, Salvatore Bonaccorso wrote: > [...] >>> As discussed in the backlog of this bug, this should actually have >>> been 3:3.4.4.1-*5*+deb9u1, bu

Bug#912367: stretch-pu: package gthumb/3:3.4.4.1-5

2019-07-19 Thread Herbert Fortes
[...] > >> > >> Uploaded. > > > > As discussed in the backlog of this bug, this should actually have > > been 3:3.4.4.1-*5*+deb9u1, but I see > > > > gthumb | 3:3.4.4.1-6+deb9u1 | oldstable-new | source, amd64 > > > > should that be rejected and re-uploaded? > > > > Yes! Reject the

Bug#912367: stretch-pu: package gthumb/3:3.4.4.1-5

2019-07-18 Thread Herbert Fortes
On 7/18/19 4:19 PM, Salvatore Bonaccorso wrote: > hey! > > On Thu, Jul 18, 2019 at 03:55:40PM -0300, Herbert Fortes wrote: >> On Tue, 16 Jul 2019 20:38:15 +0100 "Adam D. Barratt" >> wrote: >>> On Sat, 2019-03-09 at 16:41 +, Adam D. Barratt wrote

Bug#912367: stretch-pu: package gthumb/3:3.4.4.1-5

2019-07-18 Thread Herbert Fortes
> > > Ping? > > Ping? If nothing happens by August 15th then I plan to close this bug. > > Regards, > > Adam > Uploaded. Regards, Herbert

Bug#923162: RFS: python-rfid/1.2 [ITP] -- friendly greeter

2019-07-09 Thread Herbert Fortes
ts.debian.org/debian-legal/2004/12/msg00123.html Project: https://github.com/bastianraschke/pyfingerprint/blob/Development/LICENSE There are some incompatible parts/snippets. Although GPL appears in the text. One more link: https://spdx.org/licenses/ Regards, Herbert

Bug#923158: RFS: libpam-rfid/1.4 [ITP] -- friendly greeter

2019-07-09 Thread Herbert Fortes
l Project: https://github.com/bastianraschke/pyfingerprint/blob/Development/LICENSE There are some incompatible parts/snippets. Although GPL appears in the text. One more link: https://spdx.org/licenses/ Regards, Herbert

Bug#922966: RFS: eclipse-package/1.0 [ITP]

2019-07-09 Thread Herbert Fortes
l Project: https://github.com/bastianraschke/pyfingerprint/blob/Development/LICENSE There are some incompatible parts/snippets. Although GPL appears in the text. One more link: https://spdx.org/licenses/ Regards, Herbert

Bug#923157: RFS: libpam-fingerprint/1.5 [ITP]

2019-07-09 Thread Herbert Fortes
org/debian-legal/2004/12/msg00123.html Project: https://github.com/bastianraschke/pyfingerprint/blob/Development/LICENSE There are some incompatible parts/snippets. Although GPL appears in the text. One more link: https://spdx.org/licenses/ Regards, Herbert

Bug#922965: RFS: arduino-package/1.0 [ITP] --friendly greeter

2019-07-09 Thread Herbert Fortes
3.html Project: https://github.com/bastianraschke/pyfingerprint/blob/Development/LICENSE There are some incompatible parts/snippets. Although GPL appears in the text. One more link: https://spdx.org/licenses/ Regards, Herbert

Bug#922963: RFS: gamewake/3.5.1 [ITP] -- friendly greeter

2019-07-09 Thread Herbert Fortes
erprint/blob/Development/LICENSE There are some incompatible parts/snippets. Although GPL appears in the text. One more link: https://spdx.org/licenses/ Regards, Herbert

Bug#922964: RFS: python-fingerprint/1.5 [ITP]

2019-07-03 Thread Herbert Fortes
ippets. Although GPL appears in the text. Regards, Herbert

Bug#930274: RFS: junitparser/1.3.2-1 [ITP]

2019-06-30 Thread Herbert Fortes
On 6/29/19 10:28 AM, Bastian Germann wrote: > Hi Herbert, > > Thanks for coming back to me. I uploaded a new version with the > suggested changes. > >> # lintian-info -t 'tag' >> >> - upstream-metadata-file-is-missing >> >>It is pedantic.

Bug#930274: RFS: junitparser/1.3.2-1 [ITP]

2019-06-24 Thread Herbert Fortes
npage. The rest can be a documentation in '/usr/share' The package does not build twice because junitparser.egg-info dir is not removed between builds. Please override dh_clean to do that. There is no 'debian/tests/control' file. No CI. Please see to how run upstream tests by autopkgtest. https://ci.debian.net/ Regards, Herbert -

Bug#893572: tracker.debian.org: Debian Maintainer display: [dm] links empty, should be uppercase and use parentheses

2019-06-16 Thread Herbert Fortes
Ok. No dm.txt. Thanks Paul and Raphael. Regards, Herbert Em sáb, 15 de jun de 2019 05:52, Raphael Hertzog escreveu: > On Sat, 15 Jun 2019, Raphael Hertzog wrote: > > I also don't know why you picked this bug report to start your journey > > into distro-tracker. It's not

Bug#893572: tracker.debian.org: Debian Maintainer display: [dm] links empty, should be uppercase and use parentheses

2019-06-14 Thread Herbert Fortes
ow. But no > downloads yet. > > Here is the forked repository: > https://salsa.debian.org/hpfn/distro-tracker/commit/56b2a5d95f9ce4aa3eaee9e21668a45d54a79094 I did a commit to use 'urlopen' and do not have to worry about it. Regards, Herbert

Bug#893572: tracker.debian.org: Debian Maintainer display: [dm] links empty, should be uppercase and use parentheses

2019-06-14 Thread Herbert Fortes
On 6/13/19 6:14 PM, Raphael Hertzog wrote: > Hi, > > On Thu, 13 Jun 2019, Herbert Fortes wrote: >> I found where to make the change. But the information about >> who gave the permission I do not know where it is at *debian.org. >> >> In distro_tr

Bug#893572: tracker.debian.org: Debian Maintainer display: [dm] links empty, should be uppercase and use parentheses

2019-06-13 Thread Herbert Fortes
Hi, On Wed, 21 Mar 2018 10:32:00 +0800 Paul Wise wrote: > On Tue, 20 Mar 2018 07:25:35 +0800 Paul Wise wrote: > > > I think these changes are needed: > > It would also be nice to have info on who approved the package. > > > Here is how these changes should look in the HTML: > > Updated

Bug#812609: tracker.debian.org: wrong versioned links for security versions

2019-06-10 Thread Herbert Fortes
a 404 though, it just says: > > ,--- > | Error > | > | two or more packages specified (claws-mail updates) > `--- > > regards, > Yes. The problem is the link in 'versions': - old-sec: 3.11.1-3+deb8u1 https://packages.debian.org/source/oldstable/updates/claws-mail The 'updates' should not be there. As bug 850409 made clear. All .dsc links in 'versioned links' are fine. Regards, Herbert

Bug#927785: pyparted: FTBFS randomly (Floating point exception)

2019-04-24 Thread Herbert Fortes
forwarded 927785 https://github.com/dcantrell/pyparted/issues/57 thanks Sent debugging.txt file (Bernhard Übelacker file) On 4/23/19 6:35 AM, Bernhard Übelacker wrote: > Dear Maintainer, > I just tried to find some more information. > > I could reproduce the issue in a unstable amd64 VM > on

Bug#927785: pyparted: FTBFS randomly (Floating point exception)

2019-04-23 Thread Herbert Fortes
n." I can nothing about it. Just send a report to upstream. Regards, Herbert > > Kind regards, > Bernhard > > > > 1708gpt_alloc_metadata (PedDisk *disk) > 1709{ > ... > 1718 gptlength = ped_div_round_up (sizeof (GuidPartitionTableHeader_t), > 1

Bug#927143: [Pkg-phototools-devel] Bug#927143: libgphoto2 2.5.22

2019-04-15 Thread Herbert Fortes
itories: https://github.com/gphoto/ What is the intent of the bug report? Regards, Herbert

Bug#926940: unblock: watson/1.6.0-6

2019-04-12 Thread Herbert Fortes
g, merging = watson.merge_report( -str(datafiles) + '/frames-with-conflict') +TEST_FIXTURE_DIR + '/frames-with-conflict') Attached you will find the 'debdiff watson_1.6.0-5.dsc watson_1.6.0-6.dsc' compressed file. Regards, Herbert watson_deb_revision_5_to_6.debdiff.gz Description: a

Bug#908879: pyparted: FTBFS randomly (ImportError: No module named _ped)

2019-02-28 Thread Herbert Fortes
r((float(sector) / (heads * sectors)) + 1)) ./src/parted/device.py:271:return long(math.ceil(float((sector + 1)) / (heads * sectors))) ./src/parted/device.py:299:size = float(self.__device.length) src/pytimer.c has float() - 222, 298 https://docs.python.org/2/library/decimal.html?highlight=floating Regards, Herbert

Bug#922081: pyparted: Please enable build-time tests in pyparted

2019-02-27 Thread Herbert Fortes
me your opinion on that? Regards, Herbert

Bug#922081: pyparted: Please enable build-time tests in pyparted

2019-02-26 Thread Herbert Fortes
On 2/26/19 7:55 AM, Herbert Fortes wrote: > On 2/26/19 6:07 AM, Steve Langasek wrote: >> On Mon, Feb 25, 2019 at 01:43:03PM -0300, Herbert Fortes wrote: >>> On Wed, 20 Feb 2019 17:37:35 -0300 Herbert Fortes wrote: >> >> It looks like this build has passed now:

Bug#922081: pyparted: Please enable build-time tests in pyparted

2019-02-26 Thread Herbert Fortes
On 2/26/19 6:07 AM, Steve Langasek wrote: > On Mon, Feb 25, 2019 at 01:43:03PM -0300, Herbert Fortes wrote: >> On Wed, 20 Feb 2019 17:37:35 -0300 Herbert Fortes wrote: > >>> On 2/20/19 1:55 PM, Steve Langasek wrote: >>>> Package: pyparted >>>> Ver

Bug#922081: pyparted: Please enable build-time tests in pyparted

2019-02-25 Thread Herbert Fortes
Hi, On Wed, 20 Feb 2019 17:37:35 -0300 Herbert Fortes wrote: > On 2/20/19 1:55 PM, Steve Langasek wrote: > > Package: pyparted > > Version: 3.11.2-6 > > Followup-For: Bug #922081 > > User: ubuntu-de...@lists.ubuntu.com > > Usertags: origin-ubuntu d

Bug#922081: pyparted: Please enable build-time tests in pyparted

2019-02-20 Thread Herbert Fortes
on with an override with a find for it only. ./.pybuild/cpython2_2.7_parted/ AssertionError version 3.11.2-3 has only the patch you sent. I did not work for everybody. You can check upstream Makefile. Regards, Herbert

Bug#922402: lintian: False positive: pkg-config-references-unknown-shared-library

2019-02-15 Thread Herbert Fortes
/pkgconfig/libgphoto2_port.pc -lm (line 12) 'libm.so' is shipped in libc6-dev. Thanks Andreas at debian-mentors. Regards, Herbert

Bug#922379: [Pkg-phototools-devel] Bug#922379: libgphoto2: shuts down Sony cameras upon initialization

2019-02-15 Thread Herbert Fortes
1e3b5ae8f9d8258db9a19861749b2bb6ad57b1e I will see that. Thanks! Regards, Herbert

Bug#908879: pyparted: FTBFS randomly (ImportError: No module named _ped)

2019-02-13 Thread Herbert Fortes
It was expected. I had this 'undefined symbol: _Py_ZeroStruct' error here in my notebook. But I decided to confirm doing the upload. I received a bugreport with a patch and asking to enable build-time tests again. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=922081 Regards, Herbert

Bug#922081: fixed in pyparted 3.11.2-3

2019-02-12 Thread Herbert Fortes
f.assertRaises(_ped.PartedException, _ped.disk_flag_get_name, 1000)    class DiskFlagGetByNameTestCase(unittest.TestCase): def runTest(self): -ValueError +_ped.PartedException And complete remove unknow_parttition_flag.patch. Did you run tests against Python2.7? Regards, Herbert http://incoming.debian.org/debian-buildd/pool/main/p/pyparted/

Bug#922081: pyparted: Please enable build-time tests in pyparted

2019-02-12 Thread Herbert Fortes
On 2/11/19 6:45 PM, Steve Langasek wrote: > Package: pyparted > Version: 3.11.2-2 > Severity: normal > Tags: patch > User: ubuntu-de...@lists.ubuntu.com > Usertags: origin-ubuntu disco ubuntu-patch > > Dear Herbert, > > In Ubuntu, we have applied the attached patch

Bug#922027: python-django: Django security release

2019-02-11 Thread Herbert Fortes
On Mon, 11 Feb 2019 10:15:54 -0200 Herbert Fortes wrote: > Package: python-django > Version: Django 2.2, 1.11 > Severity: normal > > > CVE-2019-6975: Memory exhaustion in django.utils.numberformat.format() > > If django.utils.numberformat.format() -- used

Bug#922027: python-django: Django security release

2019-02-11 Thread Herbert Fortes
/security-releases/ Regards, Herbert

Bug#787603: [src:genshi] Some sources are not included in your package

2019-02-03 Thread Herbert Fortes
> > In order to solve this problem, you could: > 1. repack the origin tarball adding the missing source to it. > 2 add the source files to "debian/missing-sources" directory > I will add the tarball. 892K jquery-1.1.4.tar.gz Regards, Herbert

Bug#920218: RFS: webcamoid/8.5.0+dfsg-1

2019-01-22 Thread Herbert Fortes
mbols file * debian/webcamoid-data.install: - StandAlone does not have .json and effects.xml files Regards, Herbert

Bug#918580: RFS: libgphoto2/2.5.22-1

2019-01-07 Thread Herbert Fortes
- Bump Standards-Version from 4.2.1 to 4.3.0 * debian/copyright: - Update year for myself * debian/watch: - sf.net only It is a bugfix release. Regards, Herbert

Bug#918571: RFS: python-gphoto2/1.9.0-1

2019-01-07 Thread Herbert Fortes
Regards, Herbert

Bug#913363: RFS: desktopfolder/1.0.10-1 [ITP]

2018-12-07 Thread Herbert Fortes
On 07/12/2018 08:10, foss.freedom wrote: It has been about a month since the initial package was uploaded to mentors. Still hoping for some feedback please. Yesterday I've tweaked the package to remove an unnecessary build-dependency after discussing with upstream. I note one new

Bug#915041: does not create a subcommand '[test_without_migrations]'

2018-12-01 Thread Herbert Fortes
The package works. I forgot to declare it in the settings.py file. But it is a module to use when developping a Django project. When one should use a virtual env and 'pip'. And the package has this lintian that I did a *-overrides (severity: normal):  -

Bug#911711: svgwrite FTBFS: tests fail

2018-12-01 Thread Herbert Fortes
l: Set Vcs-* to salsa.debian.org    * d/control: Remove ancient X-Python-Version field    * d/control: Remove ancient X-Python3-Version field  .    [ Herbert Parentes Fortes Neto ]    * debian/control:    - Remove version number for python-all    * debian/copyright:    - Update    * de

Bug#915041: does not create a subcommand '[test_without_migrations]'

2018-11-29 Thread Herbert Parentes Fortes Neto
Package: python3-django-test-without-migrations Version: 0.6-5 Severity: grave Justification: renders package unusable After run 'python3 manage.py' it is expected to see last lines with: [test_without_migrations] test testserver But there is no '[test_without_migrations]'. 'test' and

Bug#911711: svgwrite FTBFS: tests fail

2018-11-28 Thread Herbert Fortes
Hi, I plan to work on this ticket[0] on the weekend. [0] - https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=911711 Regards, Herbert

Bug#913261: RFS: chkboot/1.2-1 [ITP]

2018-11-21 Thread Herbert Fortes
On 21/11/2018 13:31, Baptiste BEAUPLAT wrote: Hello Herbert, I hope you are well. I was wondering if you had time to take a second look at this package? No. I had to improve the Debian CI tests for some of the packages I take care. Anyone can take of that package if necessary. I can

Bug#913796: O: videotrans -- DVD authoring utilities

2018-11-15 Thread Herbert Parentes Fortes Neto
Package: wnpp Severity: normal I intend to orphan the videotrans package. I have no interest in it for quite some time. The package description is: A collection of utilities and scripts designed to help with DVD authoring: * movie-to-dvd - convert video to MPEG2 + MP2 or AC3 * movie-title -

Bug#913744: onedrive: Fails to sync after curl upgrade

2018-11-14 Thread Herbert Snorrason
Package: onedrive Version: 1.1.20180922~really1.1.3-1+b1 Severity: grave Tags: upstream Justification: renders package unusable Dear Maintainer, onedrive makes three attempts to synchronise a file, reporting a 302 Found as an error, before throwing an exception and barfing a stack trace. This is

Bug#911711: svgwrite FTBFS: tests fail

2018-11-14 Thread Herbert Fortes
g> [DMD <https://udd.debian.org/dmd/?moeller%40debian.org#todo>] wants to do. I will wait until last week of November, 26/11 - monday. Regards, Herbert

Bug#913261: RFS: chkboot/1.2-1 [ITP]

2018-11-10 Thread Herbert Fortes
sktopalert.8 chkboot-1.2/man/chkboot.8 dpkg-source: error: aborting due to unexpected upstream changes, see /tmp/chkboot_1.2-1.diff.PNYbwP Please clean these files. Regards, Herbert * Package name: chkboot Version : 1.2-1 Upstream Author : Giancarlo Razzolin

Bug#913047: python3-celery: depends on billiard >= 3.5.0.2

2018-11-06 Thread Herbert Parentes Fortes Neto
not import name 'close_open_fds' It is set that python3-celery depends on 'python3-billiard (>= 3.3.0.23)' but the source code says it depends on 'setup.cfg: billiard >= 3.5.0.2' I also checked the billiard.compat. 'close_open_fds' and 'get_fdmax' are in version 3.5.0.2. Regards, Herb

Bug#912367: stretch-pu: package gthumb/3:3.4.4.1-5

2018-10-31 Thread Herbert Fortes
On 31/10/2018 05:32, Salvatore Bonaccorso wrote: Hi Herbert, [Dislcaimer: not SRM here, but only commenting on small issue below] On Tue, Oct 30, 2018 at 03:31:27PM -0300, Herbert Parentes Fortes Neto wrote: Package: release.debian.org Severity: normal Tags: stretch User: release.debian

Bug#912367: stretch-pu: package gthumb/3:3.4.4.1-5

2018-10-30 Thread Herbert Parentes Fortes Neto
: "On Linux platforms, this is limited to a simple crash. This doesn't warrant a DSA,..." I already did an upload to SID closing it today. Attached you will find debdiff between the current version in Stretch and the package I did today. Regards, Herbert -- System Information: Debian Re

Bug#908629: RFS: biometric-authentication/0.9.55-1 [ITP]

2018-10-27 Thread Herbert Fortes
a symbols file: https://wiki.debian.org/UsingSymbolsFiles Regards, Herbert

Bug#908629: RFS: biometric-authentication/0.9.55-1 [ITP]

2018-10-27 Thread Herbert Fortes
entries in debian/copyright: Files: * Copyright: Tianjin etc Comment: author Doiing email License: Files: debian/* Copyright: 2018 you email License: Regards, Herbert > * Package name : biometric-authentication > Version : 0.9.55-1 > Upstream Author : jianglinxuan > * U

Bug#911867: RFS: frr/6.0.1-1 [ITP]

2018-10-27 Thread Herbert Fortes
Hi, On 10/25/18 3:17 PM, David Lamparter wrote: Package: sponsorship-requests Severity: wishlist Dear mentors, I am looking for a sponsor for my package "frr" * Package name: frr Version : 6.0.1-1 Upstream Author : FRRouting-dev * URL :

  1   2   3   4   5   6   7   >