Bug#878599:

2024-04-01 Thread Ville Skyttä
Thanks to people who have helped out with refining the patch. Anything I could do to help nudge this forward?

Bug#1006296:

2024-04-01 Thread Ville Skyttä
Patch and implementation is being discussed in https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=878599

bug#69724: [PATCH] dircolors: add more archive extensions

2024-03-11 Thread Ville Skyttä
* src/dircolors.hin: Add .apk (Alpine Linux/Android package); .drpm (delta rpm); .egg, .pyz, and .whl (Python related); and .udeb (form of .deb). --- src/dircolors.hin | 6 ++ 1 file changed, 6 insertions(+) diff --git a/src/dircolors.hin b/src/dircolors.hin index c85c037a5..58297e8bb 100644

Re: [PATCH] bash: add completions

2023-09-18 Thread Ville Skyttä
On Mon, 18 Sept 2023 at 16:06, Jean Delvare wrote: > Hi Ville, > > On Sun, 23 Jul 2023 10:01:34 +0300, Ville Skyttä wrote: > > On Sat, 22 Jul 2023 at 22:55, Ville Skyttä wrote: > > [...] > > > diff --git a/dmidecode.bash b/dmidecode.bash > &g

Re: [PATCH] bash: add completions

2023-09-18 Thread Ville Skyttä
On Mon, 18 Sept 2023 at 15:56, Jean Delvare wrote: > Hi Ville, > > On Sat, 22 Jul 2023 22:55:31 +0300, Ville Skyttä wrote: > > Offer only long options, but recognize short ones, too, per rationale at > > > https://github.com/scop/bash-completion/blob/4d0bffb791c34c96

Re: [PATCH] bash: add completions

2023-07-23 Thread Ville Skyttä
On Sat, 22 Jul 2023 at 22:55, Ville Skyttä wrote: [...] > diff --git a/dmidecode.bash b/dmidecode.bash [...] > + -s | --string) > + COMPREPLY=($(compgen -W ' > + bios-vendor > + bios-version [...] Instead of duplicati

[PATCH] bash: add completions

2023-07-22 Thread Ville Skyttä
Offer only long options, but recognize short ones, too, per rationale at https://github.com/scop/bash-completion/blob/4d0bffb791c34c96114aeb2e4f6726b80aa8698e/CONTRIBUTING.md?plain=1#L136-L153 Signed-off-by: Ville Skyttä --- Makefile| 14 ++-- biosdecode.bash | 40

bug#64027: [PATCH] dircolors: update list of backup file extensions

2023-06-12 Thread Ville Skyttä
* src/dircolors.hin: sort backup section by extension * src/dircolors.hin: treat .dpkg-new and .dpkg-tmp as backup files https://www.debian.org/doc/manuals/debian-handbook/sect.package-meta-information.en.html#sect.conffiles * src/dircolors.hin: treat .crdownload (Chromium based browsers' partial

[PATCH virt-what] Add support for UpCloud

2023-01-12 Thread Ville Skyttä
ud +fi diff --git a/virt-what.pod b/virt-what.pod index 4246986..2d0ef4d 100644 --- a/virt-what.pod +++ b/virt-what.pod @@ -270,6 +270,12 @@ This is a User-Mode Linux (UML) guest. Status: contributed by Laurent Léonard +=item B + +This is running on UpCloud. + +Status: contributed by Ville Skyttä + =item B Some sort of virtualization appears to be present, but we are not sure -- 2.25.1

[PATCH virt-what] Grammar fixes

2023-01-09 Thread Ville Skyttä
From 3a4007e8d815724f8c1e09df0ac9c810f6988d81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Wed, 28 Dec 2022 22:59:41 +0200 Subject: [PATCH] Grammar fixes --- virt-what.pod | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/virt-what.pod

[PATCH] Use `grep -E` or plain `grep` instead of `egrep`

2023-01-01 Thread Ville Skyttä
`egrep` has been deprecated in GNU grep since 2007, and since 3.8 it emits obsolescence warnings: https://git.savannah.gnu.org/cgit/grep.git/commit/?id=a9515624709865d480e3142fd959bccd1c9372d1 --- arch/arm/mach-socfpga/qts-filter-a10.sh | 16 arch/arm/mach-socfpga/qts-filter.sh

Bug#1015216: bash: [PATCH] perf(bashrc): avoid a command-not-found lookup stat

2022-07-17 Thread Ville Skyttä
Package: bash Version: 5.2~rc1-1 Severity: minor Dear Maintainer, `[ -x ... -o -x ... ]` does not short circuit, split to `[ -x ... ] || [ -x ... ]` to avoid a `stat` call when looking for command-not-found. -- System Information: Debian Release: bullseye/sid APT prefers focal-updates APT

Bug#1015215: bash: [PATCH] skip command_not_found_handle when completing

2022-07-17 Thread Ville Skyttä
Package: bash Version: 5.2~rc1-1 Severity: normal Dear Maintainer, It is not uncommon for completion functions to just try executing optional commands that might not be present. We do not want the regular command_not_found_handle behavior in those cases, as they are not the ones where a user

bug#54521: [PATCH] dircolors: colorize backup files with bright black

2022-03-22 Thread Ville Skyttä
Useful as it makes them stand out less than non-backup files. --- src/dircolors.hin | 19 +++ 1 file changed, 19 insertions(+) diff --git a/src/dircolors.hin b/src/dircolors.hin index 673835201..6dc5a2d74 100644 --- a/src/dircolors.hin +++ b/src/dircolors.hin @@ -211,5 +211,24 @@

[issue22295] Clarify available commands for package installation

2022-02-12 Thread Ville Skyttä
Change by Ville Skyttä : -- nosy: +scop nosy_count: 4.0 -> 5.0 pull_requests: +29462 pull_request: https://github.com/python/cpython/pull/24003 ___ Python tracker <https://bugs.python.org/issu

[PATCH] Use `grep -E/-F` instead of `egrep` and `fgrep`

2021-11-14 Thread Ville Skyttä
`egrep` and `fgrep` have been deprecated in GNU grep since 2007, and in current post 3.7 Git they have been made to emit obsolescence warnings: https://git.savannah.gnu.org/cgit/grep.git/commit/?id=a9515624709865d480e3142fd959bccd1c9372d1 --- README-hacking | 2 +-

Bug#999600: dselect: use `grep -E` instead of `egrep`

2021-11-13 Thread Ville Skyttä
Package: dpkg Version: 1.19.7ubuntu3 Severity: normal Dear Maintainer, `egrep` has been deprecated in GNU grep since 2007, and in current post 3.7 Git it has been made to emit obsolescence warnings: https://git.savannah.gnu.org/cgit/grep.git/commit/?id=a9515624709865d480e3142fd959bccd1c9372d1

Bug#999600: dselect: use `grep -E` instead of `egrep`

2021-11-13 Thread Ville Skyttä
Package: dpkg Version: 1.19.7ubuntu3 Severity: normal Dear Maintainer, `egrep` has been deprecated in GNU grep since 2007, and in current post 3.7 Git it has been made to emit obsolescence warnings: https://git.savannah.gnu.org/cgit/grep.git/commit/?id=a9515624709865d480e3142fd959bccd1c9372d1

Bug#698145: egrep and fgrep are obsolete now

2021-11-12 Thread Ville Skyttä
In current post 3.7 Git `egrep` and `fgrep` have been made to emit obsolescence warnings: https://git.savannah.gnu.org/cgit/grep.git/commit/?id=a9515624709865d480e3142fd959bccd1c9372d1 Perhaps bump the severity a bit if this cannot be quickly fixed?

Bug#998399: cron: Use mktemp instead of tempfile

2021-11-03 Thread Ville Skyttä
Package: cron Version: 3.0pl1-136ubuntu1 Severity: minor Dear Maintainer, tempfile(1) has been removed from debianutils >= 5.0. The attached patch changes to using the more portable mktemp(1) instead. >From fbb78b2e96817efbb7201606ae475d1c1f4fd46f Mon Sep 17 00:00:00 2001 From:

[Bug 1927770] [NEW] getconf --help doesn't mention -a

2021-05-07 Thread Ville Skyttä
Public bug reported: getconf's usage message fails to mention -a. It's only mentioned in the manual page. ** Affects: glibc (Ubuntu) Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu.

[Bug 1922228] [NEW] does not work at all, "new version of protocol release"

2021-04-01 Thread Ville Skyttä
Public bug reported: $ gplaycli --token -s something [ERROR] Cache file does not exists or is corrupted [ERROR] Unknown error: New version of protocol release. Update gplaycli and check https://github.com/matlink/gplaycli One grabbed with "pip install gplaycli" works. ProblemType: Bug

Bug#983604: bash: man page documents duplicate ~/.bashrc for ssh case

2021-02-27 Thread Ville Skyttä
Package: bash Version: 5.1-2+b1 Severity: minor X-Debbugs-Cc: ville.sky...@iki.fi Dear Maintainer, >From man-bashrc.diff: > determines it is being run in this fashion, it reads and executes > -commands from \fI~/.bashrc\fP, if that file exists and is readable. > +commands from \fI~/.bashrc\fP

[PATCH] docs: tlscerts: fix link to remote URI parameters

2021-02-15 Thread Ville Skyttä
Signed-off-by: Ville Skyttä --- docs/tlscerts.html.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tlscerts.html.in b/docs/tlscerts.html.in index 8a74311682..22fc054801 100644 --- a/docs/tlscerts.html.in +++ b/docs/tlscerts.html.in @@ -125,7 +125,7 @@ of the server

Bug#981054: openipmi: Missing dependency on kmod

2021-01-25 Thread Ville Skyttä
Package: openipmi Version: 2.0.29-0.1+b1 Severity: normal X-Debbugs-Cc: ville.sky...@iki.fi Dear Maintainer, /etc/init.d/openipmi invokes /sbin/lsmod, but nothing in the package's dependency chain pulls it in. I suppose adding dependency on kmod is in order. -- System Information: Debian

Bug#966586: ifupdown: grammar fixes

2020-07-30 Thread Ville Skyttä
Package: ifupdown Version: 0.8.17ubuntu1.1 Severity: minor Dear Maintainer, Merge request with some grammar fixes at https://salsa.debian.org/debian/ifupdown/-/merge_requests/3 -- System Information: Debian Release: buster/sid APT prefers bionic-updates APT policy: (990, 'bionic-updates'),

Setting/unsetting posix mode interferes with keybindings

2020-06-21 Thread Ville Skyttä
Configuration Information [Automatically generated, do not change]: Machine: x86_64 OS: linux-gnu Compiler: gcc Compilation CFLAGS: -DPROGRAM='bash' -DCONF_HOSTTYPE='x86_64' -DCONF_OSTYPE='linux-gnu' -DCONF_MACHTYPE='x86_64-pc-linux-gnu' -DCONF_VENDOR='pc' -DLOCALEDIR='/usr/share/locale'

[issue40589] Missing path-like versionchanged in shutil.rmtree

2020-05-10 Thread Ville Skyttä
Change by Ville Skyttä : -- keywords: +patch pull_requests: +19341 stage: -> patch review pull_request: https://github.com/python/cpython/pull/20032 ___ Python tracker <https://bugs.python.org/issu

[issue40589] Missing path-like versionchanged in shutil.rmtree

2020-05-10 Thread Ville Skyttä
New submission from Ville Skyttä : shutil.rmtree takes a path-like object starting from 3.6 (due to internal use of os.lstat which does that too). -- assignee: docs@python components: Documentation messages: 368613 nosy: docs@python, scop priority: normal severity: normal status: open

[issue39616] SSLContext.check_hostname description is inaccurate wrt match_hostname

2020-02-12 Thread Ville Skyttä
Change by Ville Skyttä : -- keywords: +patch pull_requests: +17857 stage: -> patch review pull_request: https://github.com/python/cpython/pull/18484 ___ Python tracker <https://bugs.python.org/issu

[issue39616] SSLContext.check_hostname description is inaccurate wrt match_hostname

2020-02-12 Thread Ville Skyttä
New submission from Ville Skyttä : Doc says "Whether to match the peer cert’s hostname with match_hostname() in SSLSocket.do_handshake()." but match_hostname() is no longer used to do that in the first place, OpenSSL is used for that. check_hostname affects the OpenSSL

[PATCH] Grammar fixes

2019-12-24 Thread Ville Skyttä
# HG changeset patch # User Ville Skyttä # Date 1577258677 -7200 # Wed Dec 25 09:24:37 2019 +0200 # Node ID f4b83914e4009fb9c528f0318287a76aa0c7326f # Parent e99e9b0a8c51d59c7ee665489949d8556565adff Grammar fixes. diff --git a/docs/xml/nginx/changes.xml b/docs/xml/nginx/changes.xml

Bug#878599: git: [PATCH] Ship git-credential-libsecret

2019-12-16 Thread Ville Skyttä
On Tue, 17 Dec 2019 at 03:23, Jonathan Nieder wrote: > That said, I'd still welcome a git-libsecret (or git-secretservice) > package, just like you're hinting. Patches welcome. Adjusted patch attached. It's untested and I'm not that familiar with building Debian packages, so approach with care.

[Dnsmasq-discuss] [PATCH] Support DHCP option 150 (TFTP server address, RFC 5859).

2019-12-05 Thread Ville Skyttä
--- src/dhcp-common.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/dhcp-common.c b/src/dhcp-common.c index 2a3c443..602873e 100644 --- a/src/dhcp-common.c +++ b/src/dhcp-common.c @@ -576,6 +576,7 @@ static const struct opttab_t { { "sip-server", 120, 0 }, {

[Dnsmasq-discuss] [PATCH] Spelling fixes.

2019-12-05 Thread Ville Skyttä
--- debian/systemd_howto | 2 +- man/dnsmasq.8| 4 ++-- src/cache.c | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/debian/systemd_howto b/debian/systemd_howto index 31908e5..3ab5244 100644 --- a/debian/systemd_howto +++ b/debian/systemd_howto @@ -32,7

[virt-tools-list] [virt-what PATCH 2/2] docker: Lookup from /proc/self/cgroup too

2019-11-30 Thread Ville Skyttä
Refs https://github.com/moby/moby/issues/18355 --- tests/docker/Makefile.am | 1 + tests/docker/proc/self/cgroup | 13 + virt-what.in | 3 ++- 3 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 tests/docker/proc/self/cgroup diff --git

[virt-tools-list] [virt-what PATCH] docker: Check for /.dockerenv too

2019-11-30 Thread Ville Skyttä
/.dockerinit may no longer exist. Ref https://github.com/moby/moby/issues/18355 --- tests/docker/.dockerenv | 0 tests/docker/Makefile.am | 1 + virt-what.in | 2 +- 3 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 tests/docker/.dockerenv diff --git

compgen -d odd symlink behavior

2019-04-21 Thread Ville Skyttä
Configuration Information [Automatically generated, do not change]: Machine: x86_64 OS: linux-gnu Compiler: gcc Compilation CFLAGS: -DPROGRAM='bash' -DCONF_HOSTTYPE='x86_64' -DCONF_OSTYPE='linux-gnu' -DCONF_MACHTYPE='x86_64-pc-linux-gnu' -DCONF_VENDOR='pc' -DLOCALEDIR='/usr/share/locale'

Re: [Rpm-maint] [rpm-software-management/rpm] License of python-rpm-generators (#471)

2019-04-20 Thread Ville Skyttä
LGPLv2.1(+) or GPLv2(+) is fine with me. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/rpm-software-management/rpm/issues/471#issuecomment-485118161___

[virt-tools-list] [PATCH 1/2] docker: Check for /.dockerenv too

2019-01-04 Thread Ville Skyttä
/.dockerinit may no longer exist. Ref https://github.com/moby/moby/issues/18355 --- Makefile.am | 1 + tests/docker/.dockerenv | 0 virt-what.in| 2 +- 3 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 tests/docker/.dockerenv diff --git a/Makefile.am

[virt-tools-list] [PATCH 2/2] docker: Lookup from /proc/self/cgroup too

2019-01-04 Thread Ville Skyttä
Refs https://github.com/moby/moby/issues/18355 --- Makefile.am | 1 + tests/docker/proc/self/cgroup | 13 + virt-what.in | 3 ++- 3 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 tests/docker/proc/self/cgroup diff --git

Bug#878678: [Reportbug-maint] Bug#878678: reportbug: [PATCH] Store SMTP password with libsecret if available

2019-01-01 Thread Ville Skyttä
control: tags +security Oh, that's highly unfortunate, plaintext passwords in config files are not good from security point of view. How about a slightly modified version that uses libsecret only if available _and_ explicitly configured to do so?

[issue35631] Improve typing docs wrt abstract/concrete collection types

2018-12-31 Thread Ville Skyttä
Ville Skyttä added the comment: (s/generic collection types/abstract collection types/ in the initial message) -- ___ Python tracker <https://bugs.python.org/issue35

[issue35631] Improve typing docs wrt abstract/concrete collection types

2018-12-31 Thread Ville Skyttä
Change by Ville Skyttä : -- keywords: +patch, patch pull_requests: +10774, 10775 stage: -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue35631] Improve typing docs wrt abstract/concrete collection types

2018-12-31 Thread Ville Skyttä
Change by Ville Skyttä : -- keywords: +patch, patch, patch pull_requests: +10774, 10775, 10776 stage: -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue35631] Improve typing docs wrt abstract/concrete collection types

2018-12-31 Thread Ville Skyttä
Change by Ville Skyttä : -- keywords: +patch pull_requests: +10774 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue35631> ___ ___ Py

[issue35631] Improve typing docs wrt abstract/concrete collection types

2018-12-31 Thread Ville Skyttä
New submission from Ville Skyttä : The typing docs for List includes a note to use generic collection types, but lists AbstractSet and Mapping which aren't generally replacements for a List. It would be better to remove those types from the List note and add corresponding ones to Dict and Set

[PATCH nftables] doc: Spelling and grammar fixes

2018-11-13 Thread Ville Skyttä
Signed-off-by: Ville Skyttä --- doc/data-types.txt | 2 +- doc/libnftables-json.adoc | 4 ++-- doc/libnftables.adoc| 2 +- doc/nft.txt | 6 +++--- doc/primary-expression.txt | 2 +- tests/json_echo/run-test.py | 2 +- 6 files changed, 9 insertions(+), 9

Re: [Rpm-maint] [rpm-software-management/rpm] License of find-lang.sh is ambiguous around modification (#595)

2018-11-09 Thread Ville Skyttä
- [x] @scop ok with relicensing under MIT -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/rpm-software-management/rpm/issues/595#issuecomment-437430364___

[issue34336] Don't promote possibility to omit Optional on optional/defaulted arguments

2018-08-05 Thread Ville Skyttä
Change by Ville Skyttä : -- keywords: +patch pull_requests: +8172 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue34336> ___ ___ Py

[issue34336] Don't promote possibility to omit Optional on optional/defaulted arguments

2018-08-05 Thread Ville Skyttä
New submission from Ville Skyttä : The documentation of typing.Optional seems to promote practices for not specifying Optional that are recommended against in PEP 484: https://www.python.org/dev/peps/pep-0484/#union-types -- end of chapter recommends against inferring Optional. https

[PATCH] Documentation: Spelling and grammar fixes

2018-06-22 Thread Ville Skyttä
Signed-off-by: Ville Skyttä --- Documentation/SubmittingPatches | 4 ++-- Documentation/config.txt | 2 +- Documentation/git-bisect-lk2009.txt | 2 +- Documentation/git-imap-send.txt | 4 ++-- Documentation/git-notes.txt

Re: [Qemu-devel] [PATCH] docs: Grammar and spelling fixes

2018-06-14 Thread Ville Skyttä
On Tue, Jun 12, 2018 at 3:11 PM, Eric Blake wrote: > On 06/12/2018 01:51 AM, Ville Skyttä wrote: >> >> Signed-off-by: Ville Skyttä >> Reviewed-by: Peter Maydell >> Reviewed-by: Eric Blake >> --- > > > It's helpful to use 'git send-email -v3' (or '

Re: [Qemu-devel] [PATCH] docs: Grammar and spelling fixes

2018-06-12 Thread Ville Skyttä
On Tue, Jun 12, 2018 at 1:00 AM, Eric Blake wrote: > On 06/11/2018 03:25 PM, Ville Skyttä wrote: >> >> Signed-off-by: Ville Skyttä >> --- > [...] > >> +++ b/docs/interop/qcow2.txt >> @@ -326,7 +326,7 @@ in the image file. >> It contains pointers to

[Qemu-devel] [PATCH] docs: Grammar and spelling fixes

2018-06-12 Thread Ville Skyttä
Signed-off-by: Ville Skyttä Reviewed-by: Peter Maydell Reviewed-by: Eric Blake --- docs/colo-proxy.txt | 2 +- docs/config/mach-virt-graphical.cfg | 2 +- docs/config/mach-virt-serial.cfg | 2 +- docs/config/q35-emulated.cfg | 2 +- docs/config/q35-virtio

[Qemu-devel] [PATCH] docs: Grammar and spelling fixes

2018-06-11 Thread Ville Skyttä
Signed-off-by: Ville Skyttä --- docs/colo-proxy.txt | 2 +- docs/config/mach-virt-graphical.cfg | 2 +- docs/config/mach-virt-serial.cfg | 2 +- docs/config/q35-emulated.cfg | 2 +- docs/config/q35-virtio-graphical.cfg | 2 +- docs/config/q35-virtio-serial.cfg

Re: [Qemu-devel] [PATCH] docs: Grammar and spelling fixes

2018-06-11 Thread Ville Skyttä
On Mon, Jun 11, 2018 at 6:23 PM, Peter Maydell wrote: > On 11 June 2018 at 15:25, Ville Skyttä wrote: >> Signed-off-by: Ville Skyttä > >> diff --git a/docs/specs/acpi_nvdimm.txt b/docs/specs/acpi_nvdimm.txt >> index 3f322e6f55..4da2d44534 100644 >> --- a/docs/specs

[Qemu-devel] [PATCH] docs: Grammar and spelling fixes

2018-06-11 Thread Ville Skyttä
Signed-off-by: Ville Skyttä --- docs/colo-proxy.txt | 2 +- docs/config/mach-virt-graphical.cfg | 2 +- docs/config/mach-virt-serial.cfg | 2 +- docs/config/q35-emulated.cfg | 2 +- docs/config/q35-virtio-graphical.cfg | 2 +- docs/config/q35-virtio-serial.cfg

[issue33585] re.sub calls repl function one time too many for catch-all regex

2018-05-20 Thread Ville Skyttä
Ville Skyttä <ville.sky...@iki.fi> added the comment: Oh, I see, sorry about the noise, then. (Only looked at the "Improved Modules" -> re section in the what's new, thus missed the doc.) -- ___ Python tracker <rep...@b

[issue33585] re.sub calls repl function one time too many for catch-all regex

2018-05-20 Thread Ville Skyttä
Ville Skyttä <ville.sky...@iki.fi> added the comment: Right, it's not limited to repl functions. Python 3.6.3: $ python -c 'import re;print(re.sub(".*", "X", "foo"))' X Python 3.7.0b4+: $ python -c 'import re;print(re.sub(".*", "X&q

[issue33585] re.sub calls repl function one time too many for catch-all regex

2018-05-20 Thread Ville Skyttä
Change by Ville Skyttä <ville.sky...@iki.fi>: -- components: +Regular Expressions nosy: +ezio.melotti, mrabarnett ___ Python tracker <rep...@bugs.python.org> <https://bugs.python

[issue33585] re.sub calls repl function one time too many for catch-all regex

2018-05-20 Thread Ville Skyttä
New submission from Ville Skyttä <ville.sky...@iki.fi>: (I'm fairly certain that the title doesn't describe the actual underlying issue all that well, however it is what I'm seeing so going with that for now.) Compared to Python 3.6, 3.7 appears to call the repl function for re.sub one

[libvirt] [PATCH] docs: Grammar and spelling fixes

2018-05-03 Thread Ville Skyttä
Signed-off-by: Ville Skyttä <ville.sky...@iki.fi> --- docs/aclpolkit.html.in| 2 +- docs/api.html.in | 2 +- docs/contribute.html.in | 2 +- docs/downloads.html.in| 2 +- docs/drvbhyve.html.in | 2 +- docs/drvesx.html.in | 2 +-

[libvirt] [PATCH] docs: Grammar and spelling fixes

2018-05-03 Thread Ville Skyttä
--- docs/aclpolkit.html.in| 2 +- docs/api.html.in | 2 +- docs/contribute.html.in | 2 +- docs/downloads.html.in| 2 +- docs/drvbhyve.html.in | 2 +- docs/drvesx.html.in | 2 +- docs/drvlxc.html.in | 2 +- docs/errors.html.in

Bug#895800: RFP: insomnia -- Intuitive REST API client

2018-04-16 Thread Ville Skyttä
Package: wnpp Severity: wishlist https://insomnia.rest/ https://github.com/getinsomnia/insomnia License: MIT

Bug#895800: RFP: insomnia -- Intuitive REST API client

2018-04-16 Thread Ville Skyttä
Package: wnpp Severity: wishlist https://insomnia.rest/ https://github.com/getinsomnia/insomnia License: MIT

[issue28393] Update encoding lookup docs wrt #27938

2018-04-04 Thread Ville Skyttä
Change by Ville Skyttä <ville.sky...@iki.fi>: -- pull_requests: +6085 ___ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue28393> ___ _

[issue27938] PyUnicode_AsEncodedString, PyUnicode_Decode: add fast-path for "us-ascii" encoding

2018-04-04 Thread Ville Skyttä
Change by Ville Skyttä <ville.sky...@iki.fi>: -- pull_requests: +6086 ___ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue27938> ___ _

Bug#894834: lintian: [PATCH] Spelling fixes

2018-04-04 Thread Ville Skyttä
Package: lintian Severity: minor Patch with spelling fixes against current git master is attached. >From 9d696a6a60db01b3c069a46a5c33a31e179a8100 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Wed, 4 Apr 2018 20:21:59 +0300 Subject: [PATCH] Spelling

Bug#894834: lintian: [PATCH] Spelling fixes

2018-04-04 Thread Ville Skyttä
Package: lintian Severity: minor Patch with spelling fixes against current git master is attached. >From 9d696a6a60db01b3c069a46a5c33a31e179a8100 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Wed, 4 Apr 2018 20:21:59 +0300 Subject: [PATCH] Spelling

Bug#848125: Fixed upstream

2018-03-19 Thread Ville Skyttä
This should be fixed upstream (post 2.8 release) as a side effect of: https://github.com/scop/bash-completion/commit/71ac42b98c0eba39819fb8478d6443032c6ef6f1

Bug#756887: Applied upstream

2018-03-17 Thread Ville Skyttä
Applied upstream, missed today's 2.8 release though: https://github.com/scop/bash-completion/commit/1404d3f995649e1f70ffbb8239acd585e8246df4

Bug#640217: Implemented upstream

2018-03-17 Thread Ville Skyttä
Implemented upstream now, missed today's 2.8 release though. https://github.com/scop/bash-completion/commit/c664b07ac98bf46c0ea416161cef0a0dbe11ab50

[PATCH] Spelling fixes

2018-02-07 Thread Ville Skyttä
Signed-off-by: Ville Skyttä <ville.sky...@iki.fi> --- INSTALL | 2 +- doc/nft.xml | 2 +- include/datatype.h | 2 +- src/exthdr.c

[PATCH] Python 3.6 invalid escape sequence deprecation fix

2018-01-25 Thread Ville Skyttä
https://docs.python.org/3/whatsnew/3.6.html#deprecated-python-behavior --- distro_tracker/vendor/kali/rules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/distro_tracker/vendor/kali/rules.py b/distro_tracker/vendor/kali/rules.py index 2486569..55d3a81 100644 ---

[PATCH] Extract branch info from Vcs-Git, ignore for now

2018-01-16 Thread Ville Skyttä
Closes: #886372 --- distro_tracker/core/tests/tests_utils.py | 13 + distro_tracker/core/utils/packages.py| 8 +++- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/distro_tracker/core/tests/tests_utils.py b/distro_tracker/core/tests/tests_utils.py index

[libvirt] [PATCH perl] block_stats: Fix rd_req and wr_req compat hash keys

2018-01-15 Thread Ville Skyttä
When virDomainBlockStatsFlags with NULL params fails, the returned read and write requests hash keys are said to be backwards compatible with the key names success case. However, they were rd_reqs and wr_reqs (in plural) as opposed to the success case's rd_req and wr_req. There is also a similar

[libvirt] [PATCH perl] Spelling fixes

2018-01-15 Thread Ville Skyttä
--- Changes | 4 ++-- HACKING | 4 ++-- lib/Sys/Virt.pm | 6 +++--- lib/Sys/Virt/Domain.pm | 14 +++--- lib/Sys/Virt/Interface.pm | 2 +- lib/Sys/Virt/NWFilter.pm| 2 +- lib/Sys/Virt/Network.pm | 4 ++--

Re: [PATCH] Exclude .tox, distro_tracker/vendor, and docs/conf.py from flake8

2017-12-19 Thread Ville Skyttä
On Tue, Dec 19, 2017 at 11:13 AM, Raphael Hertzog <hert...@debian.org> wrote: > On Mon, 18 Dec 2017, Ville Skyttä wrote: >> -exclude = >> .git,.ropeproject,__pycache__,distro_tracker/project/settings/local.py,*/migrations/*.py >> +exclude = >> .git,.ropeprojec

[PATCH] Exclude .tox, distro_tracker/vendor, and docs/conf.py from flake8

2017-12-18 Thread Ville Skyttä
--- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index b8da0bd..04e5e39 100644 --- a/tox.ini +++ b/tox.ini @@ -57,7 +57,7 @@ deps = [flake8] max-complexity = 12 max-line-length = 80 -exclude =

[PATCH] Fix functional_tests.tests unittest.mock import

2017-12-16 Thread Ville Skyttä
--- functional_tests/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functional_tests/tests.py b/functional_tests/tests.py index 2914ee4..08b6bcf 100644 --- a/functional_tests/tests.py +++ b/functional_tests/tests.py @@ -33,7 +33,7 @@ from selenium import webdriver

Bug#884559: lintian: Run png's through zopflipng

2017-12-16 Thread Ville Skyttä
Package: lintian Version: 2.5.55 Severity: minor Dear Maintainer, Running *.png through zopflipng would save a bit in file sizes, see attached patch. -- System Information: Debian Release: stretch/sid APT prefers artful-updates APT policy: (500, 'artful-updates'), (500, 'artful-security'),

Bug#884559: lintian: Run png's through zopflipng

2017-12-16 Thread Ville Skyttä
Package: lintian Version: 2.5.55 Severity: minor Dear Maintainer, Running *.png through zopflipng would save a bit in file sizes, see attached patch. -- System Information: Debian Release: stretch/sid APT prefers artful-updates APT policy: (500, 'artful-updates'), (500, 'artful-security'),

[issue28393] Update encoding lookup docs wrt #27938

2017-12-14 Thread Ville Skyttä
Ville Skyttä <ville.sky...@iki.fi> added the comment: I'm getting a 500 internatl server error trying to update https://bugs.python.org/review/28393/, so noting here that the latest review issue has been addressed in https://github.com/python/cpython/pul

[issue27938] PyUnicode_AsEncodedString, PyUnicode_Decode: add fast-path for "us-ascii" encoding

2017-12-14 Thread Ville Skyttä
Change by Ville Skyttä <ville.sky...@iki.fi>: -- pull_requests: +4763 ___ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue27938> ___ _

[issue28393] Update encoding lookup docs wrt #27938

2017-12-14 Thread Ville Skyttä
Change by Ville Skyttä <ville.sky...@iki.fi>: -- pull_requests: +4762 ___ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue28393> ___ _

Re: [PATCH] Use debianbts instead of SOAPpy

2017-11-07 Thread Ville Skyttä
On Wed, Nov 1, 2017 at 10:51 PM, Ville Skyttä <ville.sky...@iki.fi> wrote: > On Wed, Nov 1, 2017 at 12:52 PM, Raphael Hertzog <hert...@debian.org> wrote: >> On Tue, 31 Oct 2017, Ville Skyttä wrote: >>> This switches to using debianbts instead of SOAPpy. To be applied

Re: Packages looking for new maintainers

2017-11-05 Thread Ville Skyttä
The following packages have been orphaned now: - isrcsubmit - mbox2eml - modplugtools - portecle - python-flake8-import-order - vdr-epgfixer - vdr-ttxtsubs - zopfli ___ devel mailing list -- devel@lists.fedoraproject.org To unsubscribe send an email to

Re: [PATCH] Fix Standards-Version links

2017-11-02 Thread Ville Skyttä
On Thu, Nov 2, 2017 at 12:15 PM, Raphael Hertzog <hert...@debian.org> wrote: > > On Wed, 01 Nov 2017, Ville Skyttä wrote: > > --- > > a/distro_tracker/stdver_warnings/templates/stdver_warnings/standards-version-action-item.html > > +++ > > b/dist

[PATCH] Let logging format messages on demand

2017-11-01 Thread Ville Skyttä
--- distro_tracker/core/tasks.py | 7 +++ distro_tracker/vendor/debian/tracker_tasks.py | 15 +++ 2 files changed, 10 insertions(+), 12 deletions(-) diff --git a/distro_tracker/core/tasks.py b/distro_tracker/core/tasks.py index f8f283c..3995c80 100644 ---

Re: [PATCH] Use debianbts instead of SOAPpy

2017-11-01 Thread Ville Skyttä
On Wed, Nov 1, 2017 at 12:52 PM, Raphael Hertzog <hert...@debian.org> wrote: > On Tue, 31 Oct 2017, Ville Skyttä wrote: >> This switches to using debianbts instead of SOAPpy. To be applied over >> the LDAP->nm.d.o REST patch in https://bugs.debian.org/797223#10 > &

[PATCH] Support chromedriver installed in /usr/lib/chromium-browser

2017-11-01 Thread Ville Skyttä
Ubuntu ships it there. --- functional_tests/tests.py | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/functional_tests/tests.py b/functional_tests/tests.py index b165c93..1600f39 100644 --- a/functional_tests/tests.py +++ b/functional_tests/tests.py @@ -47,7 +47,10 @@ class

[PATCH] Fix Standards-Version links

2017-11-01 Thread Ville Skyttä
--- .../templates/stdver_warnings/standards-version-action-item.html| 6 ++ distro_tracker/stdver_warnings/tracker_tasks.py | 2 ++ 2 files changed, 4 insertions(+), 4 deletions(-) diff --git

[PATCH] Use debianbts instead of SOAPpy

2017-10-31 Thread Ville Skyttä
This switches to using debianbts instead of SOAPpy. To be applied over the LDAP->nm.d.o REST patch in https://bugs.debian.org/797223#10

[PATCH] Use debianbts instead of SOAPpy

2017-10-31 Thread Ville Skyttä
--- TODO | 3 --- debian/control| 4 ++-- distro_tracker/vendor/debian/tracker_tasks.py | 30 ++- docs/setup/setup.rst | 4 ++-- 4 files changed, 15 insertions(+), 26

Bug#797223:

2017-10-30 Thread Ville Skyttä
Implementation attached, tox tested only. From d107eb7d1985b01dcf415ae9eb391dccc4d511c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Mon, 30 Oct 2017 23:01:30 +0200 Subject: [PATCH] Use nm.d.o REST API instead of LDAP --- TODO

Bug#797223:

2017-10-30 Thread Ville Skyttä
Implementation attached, tox tested only. From d107eb7d1985b01dcf415ae9eb391dccc4d511c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Mon, 30 Oct 2017 23:01:30 +0200 Subject: [PATCH] Use nm.d.o REST API instead of LDAP --- TODO

Bug#851296:

2017-10-30 Thread Ville Skyttä
Hm, not a good idea to use git send-email to send to the BTS it seems. Here are the same patches as attachments. From 0c43317f342e2aa43207605f17e583da866e7b24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Mon, 30 Oct 2017 21:43:27 +0200 Subject: [PATCH

Bug#851296:

2017-10-30 Thread Ville Skyttä
Hm, not a good idea to use git send-email to send to the BTS it seems. Here are the same patches as attachments. From 0c43317f342e2aa43207605f17e583da866e7b24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Mon, 30 Oct 2017 21:43:27 +0200 Subject: [PATCH

Bug#851296: [PATCH 2/3] Missing URL encoding fixes

2017-10-30 Thread Ville Skyttä
--- .../accounts/templates/accounts/subscriptions.html | 6 +++--- .../accounts/templates/accounts/user-widget.html | 2 +- .../core/templates/core/edit-team-membership.html| 6 +++--- distro_tracker/core/templates/core/news_list.html| 2 +-

  1   2   3   4   5   6   7   8   9   10   >