Launchpad.net

Code in branches

Recently imported branches

Name Status Registered Project Last Modified Last Commit
lp:libsigsegv Development 2011-10-11 03:56:43 UTC libsigsegv 2023-06-09 08:56:50 UTC
620. Fix typos in comments. Reported by J...

Author: Bruno Haible
Revision Date: 2023-06-09 08:56:50 UTC

Fix typos in comments.

Reported by Josh Soref <jsoref@gmail.com> in
<https://lists.gnu.org/r/bug-gnulib/2023-06/msg00057.html>.

* src/sigsegv.h.in: Fix a typo.
* src/stackvma-cygwin.c: Likewise.
* src/stackvma-freebsd.c: Likewise.
* src/stackvma-netbsd.c: Likewise.
* src/stackvma-rofile.c: Likewise.
* tests/test-catch-segv1.c: Likewise.
* tests/test-catch-segv2.c: Likewise.
* tests/test-catch-stackoverflow2.c: Likewise.
* tests/test-segv-dispatcher1.c: Likewise.

lp:josm Mature 2010-03-24 09:56:32 UTC josm 2023-06-08 19:33:33 UTC
18416. Fix #22990: Synchronize ivy.xml with ...

Author: taylor.smock
Revision Date: 2023-06-08 19:33:33 UTC

Fix #22990: Synchronize ivy.xml with the actual resolved artifact

jakarta.json 2.1.1 was compiled for Java 8, except the package-info files. As
such, even though the specification page indicates that it is Java 11 only, it
does, in fact, work with Java 8.

parsson 1.1.1 requires jakarta.json 2.1.1, and overrode the version pinned in
ivy, which led to compile-time issues for the Debian Project package.

lp:~lttng/babeltrace/trunk Development 2011-05-21 03:02:22 UTC babeltrace 2023-06-08 19:13:01 UTC
4400. python: make all _get_ref/_put_ref pr...

Author: Simon Marchi
Revision Date: 2023-06-08 19:13:01 UTC

python: make all _get_ref/_put_ref proper static methods

The pyright static type checker doesn't like for these methods in
_SharedObject:

    @staticmethod
    def _get_ref(ptr):
        raise NotImplementedError

    @staticmethod
    def _put_ref(ptr):
        raise NotImplementedError

... to be overriden by assignment like this:

    _get_ref = staticmethod(native_bt.field_class_get_ref)
    _put_ref = staticmethod(native_bt.field_class_put_ref)

The warnings it gives are:

    /home/smarchi/src/babeltrace/src/bindings/python/bt2/bt2/field_class.py

      /home/smarchi/src/babeltrace/src/bindings/python/bt2/bt2/field_class.py:48:16 - error: Expression of type "staticmethod[(field_class: Unknown), Unknown]" cannot be assigned to declared type "(ptr: Unknown) -> Unknown"
        Type "staticmethod[(field_class: Unknown), Unknown]" cannot be assigned to type "(ptr: Unknown) -> Unknown"
          Parameter name mismatch: "ptr" versus "field_class" (reportGeneralTypeIssues)

      /home/smarchi/src/babeltrace/src/bindings/python/bt2/bt2/field_class.py:49:16 - error: Expression of type "staticmethod[(field_class: Unknown), Unknown]" cannot be assigned to declared type "(ptr: Unknown) -> Unknown"
        Type "staticmethod[(field_class: Unknown), Unknown]" cannot be assigned to type "(ptr: Unknown) -> Unknown"
          Parameter name mismatch: "ptr" versus "field_class" (reportGeneralTypeIssues)

So, it's just the parameter name that it doesn't like. The obvious
solution would be to rename the `ptr` parameters of
_SharedObject._{get,put}_ref to `field_class`, in _SharedObject, to
match the names in native_bt.py. However, I don't want us to be tied to
the names in native_bt.py (which originally come from the C header
files), as in Python we often want to use `ptr` in the name to
differentiate the SWIG wrapper around the pointer and the higher-level.
Another solution might be to use SWIG code to rename function parameters
in the SWIG-generated code, but I'm not so well-versed in SWIG, I
couldn't find how to do that.

So, I propose to just use the standard syntax for methods instead, the
type checker seems to be happy with that.

Change-Id: Ife5ad007aea4fb315d3ff4f8da67c48f4bf3e96d
Signed-off-by: Simon Marchi <simon.marchi@efficios.com>
Reviewed-on: https://review.lttng.org/c/babeltrace/+/10240
Reviewed-by: Philippe Proulx <eeppeliteloop@gmail.com>

lp:gnu-gsrc Development 2012-04-07 15:42:33 UTC gnu-gsrc 2023-06-08 18:40:30 UTC
9319. update jitter to 0.9.294

Author: Carl
Revision Date: 2023-06-08 18:40:30 UTC

update jitter to 0.9.294

lp:gsrc Development 2011-10-19 19:28:13 UTC gsrc 2023-06-08 18:40:30 UTC
9319. update jitter to 0.9.294

Author: Carl
Revision Date: 2023-06-08 18:40:30 UTC

update jitter to 0.9.294

lp:~titusx/nginx/mainline Mature 2014-05-03 11:02:31 UTC nginx 2023-06-08 12:56:46 UTC
7171. HTTP/2: removed server push (ticket #...

Author: Sergey Kandaurov
Revision Date: 2023-06-08 12:56:46 UTC

HTTP/2: removed server push (ticket #2432).

Although it has better implementation status than HTTP/3 server push,
it remains of limited use, with adoption numbers seen as negligible.
Per IETF 102 materials, server push was used only in 0.04% of sessions.
It was considered to be "difficult to use effectively" in RFC 9113.
Its use is further limited by badly matching to fetch/cache/connection
models in browsers, see related discussions linked from [1].

Server push was disabled in Chrome 106 [2].

The http2_push, http2_push_preload, and http2_max_concurrent_pushes
directives are made obsolete. In particular, this essentially reverts
7201:641306096f5b and 7207:3d2b0b02bd3d.

[1] https://jakearchibald.com/2017/h2-push-tougher-than-i-thought/
[2] https://chromestatus.com/feature/6302414934114304

lp:~scilab.team/scilab/6.1 Development 2023-01-06 13:25:32 UTC scilab 2023-06-08 12:35:23 UTC
33255. CI - fix default branch See https://...

Author: Cédric DELAMARRE
Revision Date: 2023-06-08 12:35:23 UTC

CI - fix default branch

See https://gitlab.com/scilab/scilab/-/merge_requests/441

lp:scilab Development 2010-08-01 16:13:05 UTC scilab 2023-06-08 12:35:23 UTC
33255. CI - fix default branch See https://...

Author: Cédric DELAMARRE
Revision Date: 2023-06-08 12:35:23 UTC

CI - fix default branch

See https://gitlab.com/scilab/scilab/-/merge_requests/441

lp:~neon/kompare/master Development 2013-02-11 17:07:56 UTC kompare 2023-06-08 11:27:47 UTC
1233. Move check after cmake include => QT_...

Author: Laurent Montel
Revision Date: 2023-06-08 11:27:47 UTC

Move check after cmake include => QT_MAJOR_VERSION is defined

lp:ipxe Development 2020-01-06 04:12:10 UTC ipxe 2023-06-08 11:24:07 UTC
6260. [efi] Veto the VMware UefiPxeBcDxe dr...

Author: Michael Brown
Revision Date: 2023-06-08 11:24:07 UTC

[efi] Veto the VMware UefiPxeBcDxe driver

The EDK2 UefiPxeBcDxe driver includes some remarkably convoluted and
unsafe logic in its driver binding protocol Start() and Stop() methods
in order to support a pair of nominally independent driver binding
protocols (one for IPv4, one for IPv6) sharing a single dynamically
allocated data structure. This PXEBC_PRIVATE_DATA structure is
installed as a dummy protocol on the NIC handle in order to allow both
IPv4 and IPv6 driver binding protocols to locate it as needed.

The error handling code path in the UefiPxeBcDxe driver's Start()
method may attempt to uninstall the dummy protocol but fail to do so.
This failure is ignored and the containing memory is subsequently
freed anyway. On the next invocation of the driver binding protocol,
it will find and use this already freed block of memory. At some
point another memory allocation will occur, the PXEBC_PRIVATE_DATA
structure will be corrupted, and some undefined behaviour will occur.

The UEFI firmware used in VMware ESX 8 includes some proprietary
changes which attempt to install copies of the EFI_LOAD_FILE_PROTOCOL
and EFI_PXE_BASE_CODE_PROTOCOL instances from the IPv4 child handle
onto the NIC handle (along with a VMware-specific protocol with GUID
5190120d-453b-4d48-958d-f0bab3bc2161 and a NULL instance pointer).
This will inevitably fail with iPXE, since the NIC handle already
includes an EFI_LOAD_FILE_PROTOCOL instance.

These VMware proprietary changes end up triggering the unsafe error
handling code path described above. The typical symptom is that an
attempt to exit from iPXE back to the UEFI firmware will crash the VM
with a General Protection fault from within the UefiPxeBcDxe driver:
this happens when the UefiPxeBcDxe driver's Stop() method attempts to
call through a function pointer in the (freed) PXEBC_PRIVATE_DATA
structure, but the function pointer has by then been overwritten by
UCS-2 character data from an unrelated memory allocation.

Work around this failure by adding the VMware UefiPxeBcDxe driver to
the driver veto list.

Signed-off-by: Michael Brown <mcb30@ipxe.org>

lp:openstack-venus Development 2021-03-19 00:50:28 UTC openstack-venus 2023-06-08 10:37:03 UTC
327. update migrate to alembic Change-Id:...

Author: jiasirui
Revision Date: 2023-06-08 10:37:03 UTC

update migrate to alembic

Change-Id: I4c3b3b6925efa86d8d425dae5074cd12c531d394

lp:busybox Development 2010-08-01 16:14:43 UTC busybox 2023-06-08 08:42:39 UTC
17640. awk: fix subst code to handle "start ...

Author: Vda-linux
Revision Date: 2023-06-08 08:42:39 UTC

awk: fix subst code to handle "start of word" pattern correctly (needs REG_STARTEND)

function old new delta
awk_sub 637 714 +77

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>

lp:~neon/kdesdk-thumbnailers/master Development 2013-02-11 17:06:41 UTC kdesdk-thumbnailers 2023-06-08 02:01:31 UTC
124. GIT_SILENT Sync po/docbooks with svn

Author: l10n daemon script
Revision Date: 2023-06-08 02:01:31 UTC

GIT_SILENT Sync po/docbooks with svn

lp:~neon/kmouth/master Development 2011-08-27 20:44:27 UTC kmouth 2023-06-08 01:46:27 UTC
782. GIT_SILENT Sync po/docbooks with svn

Author: l10n daemon script
Revision Date: 2023-06-08 01:46:27 UTC

GIT_SILENT Sync po/docbooks with svn

lp:~neon/kdegraphics-thumbnailers/master Development 2011-02-23 11:10:30 UTC kdegraphics-thumbnailers 2023-06-08 01:41:04 UTC
291. SVN_SILENT made messages (.desktop fi...

Author: l10n daemon script
Revision Date: 2023-06-08 01:41:04 UTC

SVN_SILENT made messages (.desktop file) - always resolve ours

In case of conflict in i18n, keep the version of the branch "ours"
To resolve a particular conflict, "git checkout --ours path/to/file.desktop"

lp:bluez Development 2011-01-12 23:03:03 UTC bluez 2023-06-07 23:52:54 UTC
22189. bap: Add broadcast source support Th...

Author: Silviu Florian Barbulescu
Revision Date: 2023-06-07 23:52:54 UTC

bap: Add broadcast source support

This updates BAP plugin with broadcast source support.

lp:~x2go/x2go/x2gokdrive_master Development 2019-07-15 14:25:40 UTC x2go 2023-06-07 19:39:15 UTC
255. release 0.0.0.1

Author: X2Go Release Manager
Revision Date: 2023-06-07 19:39:15 UTC

release 0.0.0.1

lp:pspp Development 2011-10-08 12:51:52 UTC pspp 2023-06-07 15:59:03 UTC
7033. Implement the SET SUMMARY command

Author: John Darrington
Revision Date: 2023-06-07 15:59:03 UTC

Implement the SET SUMMARY command

lp:telegnome Development 2009-05-27 07:38:38 UTC telegnome 2023-06-07 15:18:52 UTC
276. Update Russian translation

Author: Sergej A
Revision Date: 2023-06-07 15:18:52 UTC

Update Russian translation

lp:~lttng/lttng-modules/trunk Development 2011-05-12 07:10:09 UTC lttng-modules 2023-06-07 14:13:36 UTC
1867. Add ordered extents tracepoints to bt...

Author: Michael Jeanson
Revision Date: 2023-06-07 14:13:36 UTC

Add ordered extents tracepoints to btrfs probe

See upstream commit:

  commit 5bea2508811ec76105b01c90c1f1661024c257a9
  Author: Johannes Thumshirn <johannes.thumshirn@wdc.com>
  Date: Thu Jun 9 09:28:04 2022 -0700

    btrfs: add tracepoints for ordered extents

    When debugging a reference counting issue with ordered extents, I've found
    we're lacking a lot of tracepoint coverage in the ordered extent code.

    Close these gaps by adding tracepoints after every refcount_inc() in the
    ordered extent code.

Change-Id: I3af5bd593f4b7beb835f4c87442e7e1d407a2e3d
Signed-off-by: Michael Jeanson <mjeanson@efficios.com>
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>

lp:denemo Development 2010-07-31 16:14:29 UTC denemo 2023-06-07 13:10:53 UTC
9169. Fix returning to wrong editor after d...

Author: Richard Shann
Revision Date: 2023-06-07 13:10:53 UTC

Fix returning to wrong editor after deleting some movement directives

lp:libv4l bug Development 2010-07-13 15:12:42 UTC libv4l 2023-06-07 12:27:03 UTC
4974. cec-ctl: always log timestamp in show...

Author: Hans Verkuil
Revision Date: 2023-06-07 12:27:03 UTC

cec-ctl: always log timestamp in show_msg if not-OK

If either tx_status or rx_status is not OK, then log
the timestamp if --verbose was given. This helps to see
when e.g. a timeout waiting for a message happens.

Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>

lp:~openstreetmap/josm/josm_osm Mature 2010-01-28 17:05:14 UTC josm 2023-06-07 12:20:47 UTC
12543. See #14361 (dist): Support for image/...

Author: taylor.smock
Revision Date: 2023-06-07 12:20:47 UTC

See #14361 (dist): Support for image/webp

lp:~vcs-imports/putty/master Development 2016-10-02 20:55:32 UTC putty 2023-06-07 06:29:39 UTC
6724. Merge PSFTP multiple-connections fixe...

Author: Simon Tatham
Revision Date: 2023-06-07 06:29:39 UTC

Merge PSFTP multiple-connections fixes from 'pre-0.79'.

lp:~neon/libkcddb/master Development 2012-04-11 11:09:07 UTC libkcddb 2023-06-07 01:58:32 UTC
801. GIT_SILENT Sync po/docbooks with svn

Author: l10n daemon script
Revision Date: 2023-06-07 01:58:32 UTC

GIT_SILENT Sync po/docbooks with svn

lp:~neon/dragon/master Development 2012-04-11 11:17:03 UTC dragon 2023-06-07 01:57:26 UTC
1045. GIT_SILENT Sync po/docbooks with svn

Author: l10n daemon script
Revision Date: 2023-06-07 01:57:26 UTC

GIT_SILENT Sync po/docbooks with svn

lp:gnumeric Development 2011-05-23 11:42:23 UTC gnumeric 2023-06-06 23:28:11 UTC
24244. Donations: redirect to Doctors withou...

Author: Morten Welinder
Revision Date: 2023-06-06 23:28:11 UTC

Donations: redirect to Doctors without Borders

(We don't need donations. They do.)

lp:vcard-studio Development 2018-01-31 07:48:42 UTC vcard-studio 2023-06-06 22:17:48 UTC
147. * Modified: Improved new contact neme...

Author: chronos
Revision Date: 2023-06-06 22:17:48 UTC

* Modified: Improved new contact neme generation.
* Fixed: Width of not all contacts columns was remembered.

lp:deltahex Development 2016-11-30 19:47:35 UTC deltahex 2023-06-06 21:12:44 UTC
148. Bookmarks - 18

Author: hajdam
Revision Date: 2023-06-06 21:12:44 UTC

Bookmarks - 18

lp:~x2go/x2go/x2goserver_master Development 2011-04-18 10:20:09 UTC x2go 2023-06-06 18:04:15 UTC
1988. Continue development

Author: X2Go Release Manager
Revision Date: 2023-06-06 18:04:15 UTC

Continue development

lp:~x2go/x2go/x2goserver_build-main Mature 2012-01-09 22:43:43 UTC x2go 2023-06-06 15:04:03 UTC
1987. release 4.1.0.5

Author: X2Go Release Manager
Revision Date: 2023-06-06 15:04:03 UTC

release 4.1.0.5

lp:mplayer Development 2011-06-07 12:03:22 UTC mplayer 2023-06-06 14:06:10 UTC
38271. libvo: improve error handling for had...

Author: reimar
Revision Date: 2023-06-06 14:06:10 UTC

libvo: improve error handling for had -wid.

Avoids crashes if -wid specifies a window ID
that is not or no longer valid.

Improves behaviour reported in trac issue #2411.

lp:sosreport Development 2013-04-17 23:21:04 UTC sosreport 2023-06-06 13:16:19 UTC
4254. [cxl] Add a new Compute Express Link ...

Author: Steve Scargall
Revision Date: 2023-06-06 13:16:19 UTC

[cxl] Add a new Compute Express Link (CXL) plugin

Compute Express Link (CXL) is an industry-supported
Cache-Coherent Interconnect for Processors, Memory
Expansion, and Accelerators.

The CXL Consortium (https://www.computeexpresslink.org/)
is an open industry standard group formed to develop
technical specifications that facilitate breakthrough
performance for emerging usage models while supporting
an open ecosystem for data center accelerators and other
high-speed enhancements.

There are currently three specifications (v1.1, 2.0, and
v3.0) publicly available. CPUs are available from Intel
and AMD that support CXL v1.1. Hardware is emerging that
supports up to CXL v3.0.

This plugin uses open-source utilities from
https://github.com/pmem/ndctl that introduce new and updated
commands to support CXL devices in the Linux Kernel.

Signed-off-by: Steve Scargall <37674041+sscargal@users.noreply.github.com>

lp:~jd-team/jdownloader/appwork-utils Development 2010-12-23 22:10:20 UTC jdownloader 2023-06-06 13:11:01 UTC
3983. HTTPConnectionUtils: -updated parseDi...

Author: daniel
Revision Date: 2023-06-06 13:11:01 UTC

HTTPConnectionUtils:
-updated parseDispositionHeader, added support for RFC2231 encoded, with double quotes around the parameter value
ContentDispositionTest:
-updated tests
CrossSystem:
-added MAC_SONOMA enum

lp:~roguescholar/jdownloader/browser Development 2020-01-04 09:18:22 UTC jdownloader 2023-06-06 13:05:27 UTC
799. *General* - Browser: updated Cloudfla...

Author: psp
Revision Date: 2023-06-06 13:05:27 UTC

*General*
- Browser: updated Cloudflare detection RE forum 93680

*Plugins: Fixes/Changes/Maintenance*
- [MightyScriptAdLinkFly]: oiiio: moved into separate class as this one requires special handling RE forum 93656
- [XFS] StreamhideCom: added domain ahvshcom RE ticket NWJ-224-86660
TwitterComCrawler:
- Single tweet crawler: added CrawlMode setting (disabled by default [defaults are like before!]): For some items, the old API does not return all images RE forum 93233
- force crawl tweet-text if a tweet doesn't contain any media files

*Plugins: RIP*
- MightyScriptAdLinkFlyDefault: arabtvlink.com, medche.com, go-urls.tk, topklink.com, thoyva.ink, dizadown.com

lp:~neon/kde-dev-utils/master Development 2013-02-11 17:06:38 UTC kde-dev-utils 2023-06-06 01:56:36 UTC
614. GIT_SILENT Sync po/docbooks with svn

Author: l10n daemon script
Revision Date: 2023-06-06 01:56:36 UTC

GIT_SILENT Sync po/docbooks with svn

lp:~ubuntu-touch-coreapps-drivers/trojita/git-kde Development 2014-03-31 13:30:13 UTC trojita 2023-06-06 01:55:31 UTC
5069. GIT_SILENT Sync po/docbooks with svn

Author: l10n daemon script
Revision Date: 2023-06-06 01:55:31 UTC

GIT_SILENT Sync po/docbooks with svn

lp:upnp-router-control Development 2021-02-18 13:03:06 UTC upnp-router-control 2023-06-05 23:17:14 UTC
209. Check also WANPPPConnection if no def...

Author: Daniele Napolitano
Revision Date: 2023-06-05 23:17:14 UTC

Check also WANPPPConnection if no default connection device (closes LP#804791)

lp:evergreen/3.11 Development 2023-05-05 19:25:09 UTC evergreen 2023-06-05 21:56:50 UTC
26521. LP2011056 Color contrast for links in...

Author: Stephanie Leary
Revision Date: 2023-06-05 21:56:50 UTC

LP2011056 Color contrast for links in tooltips

Forces links in tooltips to inherit the parent text color.

Signed-off-by: Stephanie Leary <stephanie.leary@equinoxoli.org>
Signed-off-by: Galen Charlton <gmc@equinoxOLI.org>

lp:evergreen Development 2023-05-04 13:37:09 UTC evergreen 2023-06-05 21:56:25 UTC
26526. LP2011056 Color contrast for links in...

Author: Stephanie Leary
Revision Date: 2023-06-05 21:56:25 UTC

LP2011056 Color contrast for links in tooltips

Forces links in tooltips to inherit the parent text color.

Signed-off-by: Stephanie Leary <stephanie.leary@equinoxoli.org>
Signed-off-by: Galen Charlton <gmc@equinoxOLI.org>

lp:scribus Development 2011-01-07 00:27:20 UTC scribus 2023-06-05 21:37:40 UTC
19610. Code cleanup now possible thanks to p...

Author: jghali
Revision Date: 2023-06-05 21:37:40 UTC

Code cleanup now possible thanks to podofo >= 0.9.0 requirement

lp:~lttng/urcu/trunk Development 2011-05-11 09:12:55 UTC urcu 2023-06-05 19:44:54 UTC
1432. fix: aarch64: allow RHEL7 gcc 4.8.5-1...

Author: Michael Jeanson
Revision Date: 2023-06-05 19:44:54 UTC

fix: aarch64: allow RHEL7 gcc 4.8.5-11

The patch for GCC upstream bug 63293[1] was backported in RHEL7 gcc
4.8.5-11 package, allow building with this version.

[1] https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63293

Change-Id: Ib5d8ef3c292a691167c5c4834c1e0bfdfe5b56b3
Signed-off-by: Michael Jeanson <mjeanson@efficios.com>
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>

lp:balsa Development 2011-06-17 02:24:50 UTC balsa 2023-06-05 17:20:16 UTC
9164. Merge branch 'message-window-move-men...

Author: Albrecht Dreß
Revision Date: 2023-06-05 17:20:16 UTC

Merge branch 'message-window-move-menu' into 'master'

message-window: Use a submenu for moving

See merge request GNOME/balsa!75

lp:lazfuck Development 2016-12-17 22:33:46 UTC lazfuck 2023-06-05 16:57:23 UTC
141. * Fixed: Build on Windows.

Author: chronos
Revision Date: 2023-06-05 16:57:23 UTC

* Fixed: Build on Windows.

lp:reviewboard Development 2009-12-17 03:09:57 UTC reviewboard 2023-06-05 16:27:22 UTC
4988. Merge branch 'release-6.x'

Author: David Trowbridge
Revision Date: 2023-06-05 16:27:22 UTC

Merge branch 'release-6.x'

lp:~vcs-imports/ipfire/ipfire-2.x Development 2010-05-31 09:47:16 UTC ipfire 2023-06-05 14:52:01 UTC
11398. Core Update 175: Ship vpnmain.cgi Si...

Author: Peter Müller
Revision Date: 2023-06-05 14:52:01 UTC

Core Update 175: Ship vpnmain.cgi

Signed-off-by: Peter Müller <peter.mueller@ipfire.org>

lp:~indicator-network-developers/wpasupplicant/trunk Development 2010-06-04 12:08:44 UTC wpasupplicant 2023-06-05 08:18:39 UTC
18506. AP: Handle 6 GHz AP state machine wit...

Author: Pooventhiran G
Revision Date: 2023-06-05 08:18:39 UTC

AP: Handle 6 GHz AP state machine with NO_IR flags

AP cannot come up in channels that are marked as NO_IR. If AP moves to
HAPD_IFACE_DISABLED state, it will deinitialize the nl80211 driver
interface and sockets.

Hence, introduce a new state called HAPD_IFACE_NO_IR, for 6 GHz APs to
handle NO_IR scenarios, such as AFC, where the channels not allowed by
AFC will have HOSTAPD_CHAN_NO_IR flag set. In this state, AP is still
kept in a non-operational state (stopped) without deinitializing the
nl80211 driver interface. wiphy reg change event can then update the
channels and bring up the AP in a valid channel.

Signed-off-by: Pooventhiran G <quic_pooventh@quicinc.com>

lp:~firmware-testing-team/fwts/master Development 2013-03-21 17:18:24 UTC fwts 2023-06-05 08:01:32 UTC
5054. cppcheck: fix the cppcheck source lin...

Author: Ivan Hu
Revision Date: 2023-06-05 08:01:32 UTC

cppcheck: fix the cppcheck source link error

BugLink: https://bugs.launchpad.net/fwts/+bug/2020642

Got error messages below,

Checking for dependencies for cppcheck..
Getting cppcheck..
Cloning into '/tmp/cppcheck'...
fatal: unable to connect to github.com:
github.com[0: 20.27.177.113]: errno=Connection timed out

Signed-off-by: Ivan Hu <ivan.hu@canonical.com>

lp:~neon/kdesdk-kioslaves/master Development 2013-02-11 17:07:11 UTC kdesdk-kioslaves 2023-06-05 01:49:32 UTC
536. GIT_SILENT Sync po/docbooks with svn

Author: l10n daemon script
Revision Date: 2023-06-05 01:49:32 UTC

GIT_SILENT Sync po/docbooks with svn

lp:klibc Development 2012-02-17 00:37:14 UTC klibc 2023-06-04 23:28:00 UTC
2220. [klibc] ipconfig: Retry failed send a...

Author: Ben Hutchings
Revision Date: 2023-06-04 23:28:00 UTC

[klibc] ipconfig: Retry failed send after 1 second

Currently we check whether a device has link down before attempting to
send a packet, but the send can still fail with ENETDOWN - perhaps due
to racing with the kernel's linkwatch work. After such an error we'll
wait about 10 seconds before retrying.

Since the link check isn't reliable, remove it. Instead, wait only 1
second if we fail to send a packet.

Signed-off-by: Ben Hutchings <ben@decadent.org.uk>

lp:gawk Development 2011-06-12 17:29:33 UTC gawk 2023-06-04 18:14:13 UTC
1964. Merge branch 'gawk-5.2-stable'

Author: Arnold Robbins
Revision Date: 2023-06-04 18:14:13 UTC

Merge branch 'gawk-5.2-stable'

lp:nano Development 2016-08-09 11:46:44 UTC nano 2023-06-04 06:07:10 UTC
10185. docs: add a caveat in the FAQ about b...

Author: Benno Schulenberg
Revision Date: 2023-06-04 06:07:10 UTC

docs: add a caveat in the FAQ about bracketed pastes

lp:~kdevelop/kgraphviewer/master Development 2011-08-13 17:59:54 UTC kgraphviewer 2023-06-04 01:50:40 UTC
806. GIT_SILENT Sync po/docbooks with svn

Author: l10n daemon script
Revision Date: 2023-06-04 01:50:40 UTC

GIT_SILENT Sync po/docbooks with svn

lp:mksh Mature 2010-07-09 13:45:53 UTC mksh 2023-06-03 22:45:04 UTC
3457. reclaim() must invalidate anything us...

Author: tg
Revision Date: 2023-06-03 22:45:04 UTC

reclaim() must invalidate anything using ATEMP, here: retrace_info

crash submitted by fmunozs on IRC

we could do…
 if (retrace_info && retrace_info->xs.areap == &e->area)
… but AFAICS it’s safe to always invalidate it here

lp:evergreen/3.9 Development 2023-04-27 01:32:06 UTC evergreen 2023-06-03 20:40:54 UTC
25720. LP#2022366: quell a GitHub actions wa...

Author: Galen Charlton
Revision Date: 2023-06-03 20:40:54 UTC

LP#2022366: quell a GitHub actions warning

Because of a Node version bump, the actions/checkout@v2
action is now deprecated.

Signed-off-by: Galen Charlton <gmc@equinoxOLI.org>
Signed-off-by: Jane Sandberg <sandbergja@gmail.com>

lp:evergreen/3.10 Development 2023-05-03 15:20:23 UTC evergreen 2023-06-03 20:40:27 UTC
26370. LP#2022366: quell a GitHub actions wa...

Author: Galen Charlton
Revision Date: 2023-06-03 20:40:27 UTC

LP#2022366: quell a GitHub actions warning

Because of a Node version bump, the actions/checkout@v2
action is now deprecated.

Signed-off-by: Galen Charlton <gmc@equinoxOLI.org>
Signed-off-by: Jane Sandberg <sandbergja@gmail.com>

lp:varconf Development 2011-07-22 14:39:04 UTC varconf 2023-06-03 11:13:37 UTC
260. Build in parallel.

Author: Erik Ogenvik
Revision Date: 2023-06-03 11:13:37 UTC

Build in parallel.

lp:pmake Development 2005-12-31 23:53:02 UTC pmake 2023-06-03 09:09:17 UTC
4898. bsd.own.mk: rename GCC_NO_* to CC_WNO...

Author: lukem
Revision Date: 2023-06-03 09:09:17 UTC

bsd.own.mk: rename GCC_NO_* to CC_WNO_*

Rename compiler-warning-disable variables from
 GCC_NO_warning
to
 CC_WNO_warning
where warning is the full warning name as used by the compiler.

GCC_NO_IMPLICIT_FALLTHRU is CC_WNO_IMPLICIT_FALLTHROUGH

Using the convention CC_compilerflag, where compilerflag
is based on the full compiler flag name.

lp:gthumb Development 2011-05-23 11:45:01 UTC gthumb 2023-06-03 07:45:40 UTC
6540. Browser: do not use a null file source

Author: Paolo Bacchilega
Revision Date: 2023-06-03 07:45:40 UTC

Browser: do not use a null file source

lp:~meebey/smuxi/smuxi-head-mirror-master Experimental 2015-05-22 18:24:43 UTC smuxi 2023-06-03 00:22:33 UTC
603. Update from HEAD (master): 6d2c9fbb M...

Author: Mirco Bauer
Revision Date: 2023-06-03 00:22:33 UTC

Update from HEAD (master): 6d2c9fbb Merge branch 'gnome/master'

lp:~meebey/smuxi/smuxi-head-mirror-stable Experimental 2015-05-22 18:27:37 UTC smuxi 2023-06-03 00:02:09 UTC
539. Update from HEAD (stable): bc2882e5 M...

Author: Mirco Bauer
Revision Date: 2023-06-03 00:02:09 UTC

Update from HEAD (stable): bc2882e5 Merge branch 'stable' of git://git.qnetp.net/smuxi into stable

lp:~klaus-vormweg-deactivatedaccount/bluefish/trunk Development 2014-11-28 20:19:54 UTC bluefish 2023-06-02 15:44:45 UTC
7580. getting ready for the 2.2.14 release

Author: oli4
Revision Date: 2023-06-02 15:44:45 UTC

getting ready for the 2.2.14 release

lp:bts-lin Development 2009-07-29 18:42:15 UTC bts-lin 2023-06-02 04:49:51 UTC
693. test: dont write some remotes test su...

Author: Sandro Tosi
Revision Date: 2023-06-02 04:49:51 UTC

test: dont write some remotes test suites given there are no bugs currently registered for them

lp:~itachi-san/telegram-desktop/breakpad Development 2016-05-04 12:27:18 UTC telegram-desktop 2023-06-01 19:19:34 UTC
2137. Fix bug when ranges_data is index 0 i...

Author: Zequan Wu
Revision Date: 2023-06-01 19:19:34 UTC

Fix bug when ranges_data is index 0 in DW_AT_ranges.

Bug: chromium:1448979
Change-Id: Ib174ab1592d189e0f05e6baa6a96af2742d00eda
Reviewed-on: https://chromium-review.googlesource.com/c/breakpad/breakpad/+/4580929
Reviewed-by: Joshua Peraza <jperaza@chromium.org>

lp:bigdft Development 2022-09-06 14:34:55 UTC bigdft 2023-06-01 08:31:27 UTC
1962. important OMP correction in compression

Author: Luigi Genovese
Revision Date: 2023-06-01 08:31:27 UTC

important OMP correction in compression

lp:kmod Development 2012-07-04 04:33:58 UTC kmod 2023-05-31 05:36:43 UTC
1300. shared: avoid passing {NULL, 0} array...

Author: Dmitry Antipov
Revision Date: 2023-05-31 05:36:43 UTC

shared: avoid passing {NULL, 0} array to bsearch()

Fix the following warning reported by UBSan (as of gcc-13.1.1):

shared/hash.c:244:35: runtime error: null pointer passed as
argument 2, which is declared to never be null

Reviewed-by: Christophe Leroy <christophe.leroy@csgroup.eu>
Signed-off-by: Dmitry Antipov <dmantipov@yandex.ru>
[ reshuffle the code to use return-early style ]
Signed-off-by: Lucas De Marchi <lucas.de.marchi@gmail.com>

lp:~neon/libkomparediff2/master Development 2013-09-22 03:19:27 UTC libkomparediff2 2023-05-31 02:46:30 UTC
398. GIT_SILENT Sync po/docbooks with svn

Author: l10n daemon script
Revision Date: 2023-05-31 02:46:30 UTC

GIT_SILENT Sync po/docbooks with svn

lp:~neon/phonon/vlc Development 2011-01-31 07:59:55 UTC phonon 2023-05-31 02:16:52 UTC
715. GIT_SILENT Sync po/docbooks with svn

Author: l10n daemon script
Revision Date: 2023-05-31 02:16:52 UTC

GIT_SILENT Sync po/docbooks with svn

lp:gnote Development 2010-10-26 17:54:03 UTC gnote 2023-05-30 19:47:47 UTC
3709. Move bugzilla preferences to GtkColum...

Author: aurisc4
Revision Date: 2023-05-30 19:47:47 UTC

Move bugzilla preferences to GtkColumnView

lp:ddd Development 2011-10-10 21:41:48 UTC ddd 2023-05-30 15:26:55 UTC
6696. Fix build failure on macOS.

Author: eager
Revision Date: 2023-05-30 15:26:55 UTC

Fix build failure on macOS.

lp:c-evo Development 2017-01-12 22:53:03 UTC c-evo 2023-05-30 09:31:10 UTC
354. * Modified: Removed U prefix from uni...

Author: chronos
Revision Date: 2023-05-30 09:31:10 UTC

* Modified: Removed U prefix from unit names.

lp:libiconv Development 2010-07-31 16:53:50 UTC libiconv 2023-05-29 11:59:43 UTC
1262. GB18030: Help transitioning away from...

Author: Bruno Haible
Revision Date: 2023-05-29 11:59:43 UTC

GB18030: Help transitioning away from PUA code points.

* lib/gb18030ext.h (gb18030_2005_ext_wctomb): Remove function.
(gb18030ext_wctomb): Renamed from gb18030_2022_ext_wctomb.
* lib/gb18030uni.h (gb18030_2005_uni_wctomb): Map 6 Ext-B code points to
4-bytes sequences.
(gb18030_2022_uni_wctomb): Small refactoring.
* lib/gb18030_2005.h (gb18030_2005_pua2charset): Map 6 PUA code points
to 4-bytes sequences instead of 2-bytes sequences.
(gb18030_2005_wctomb): Update accordingly. Invoke gb18030ext_wctomb
instead of gb18030_2005_ext_wctomb.
* lib/gb18030_2022.h (gb18030_2022_wctomb): Invoke gb18030ext_wctomb
instead of gb18030_2022_ext_wctomb.
* tests/GB18030-2005.IRREVERSIBLE.TXT: Update the inverse mappings of 6
Ext-B code points and 6 PUA code points.
* NEWS: Mention it.

lp:econsysqtcam Development 2020-03-05 07:33:03 UTC econsysqtcam 2023-05-29 06:15:30 UTC
223. Added Changes

Author: Sushanth172
Revision Date: 2023-05-29 06:15:30 UTC

Added Changes

lp:~stk/stk/stk-assets Development 2016-04-03 01:50:47 UTC stk 2023-05-28 06:13:39 UTC
5760. Fix factory.music

Author: benaustk
Revision Date: 2023-05-28 06:13:39 UTC

Fix factory.music

lp:~x2go/x2go/x2gokdriveclient_master Development 2019-07-15 14:26:03 UTC x2go 2023-05-26 20:04:25 UTC
91. res/: add i18n directory and x2gokdri...

Author: Mihai Moldovan
Revision Date: 2023-05-26 20:04:25 UTC

res/: add i18n directory and x2gokdriveclient_de.ts translation file with the initial German translation.

lp:emms Development 2011-10-09 03:35:27 UTC emms 2023-05-25 20:38:35 UTC
1427. Update copyright years based on when ...

Author: Yoni Rabkin
Revision Date: 2023-05-25 20:38:35 UTC

Update copyright years based on when files were modified.

lp:rt/5.0 Development 2020-07-09 21:11:42 UTC rt 2023-05-25 17:24:33 UTC
8982. Merge branch '5.0/change-indexes-on-l...

Author: sunnavy
Revision Date: 2023-05-25 17:24:33 UTC

Merge branch '5.0/change-indexes-on-links-table' into 5.0-trunk

lp:blume Development 2021-08-27 16:01:04 UTC blume 2023-05-24 18:10:40 UTC
435. hack for multiple axes in eggshow

Author: John Gill
Revision Date: 2023-05-24 18:10:40 UTC

hack for multiple axes in eggshow

lp:libvterm Development 2022-10-13 20:39:40 UTC libvterm 2023-05-23 07:56:55 UTC
829. Bumped VERSION to 0.3.2

Author: Paul "LeoNerd" Evans
Revision Date: 2023-05-23 07:56:55 UTC

Bumped VERSION to 0.3.2

lp:make Development 2014-02-25 00:25:49 UTC make 2023-05-23 03:36:13 UTC
3073. [SV 64815] Recipe lines cannot contai...

Author: Paul Smith
Revision Date: 2023-05-23 03:36:13 UTC

[SV 64815] Recipe lines cannot contain conditional statements

* NEWS: Mention this change.
* src/read.c (eval): Check for ignoring for any line even if not
in a rule context.
* tests/scripts/features/conditionals: Write new tests.

lp:rt/4.4 Mature 2016-02-04 17:20:00 UTC rt 2023-05-22 13:38:18 UTC
8975. A client terminating a connection sho...

Author: Andrew Ruthven
Revision Date: 2023-05-22 13:38:18 UTC

A client terminating a connection shouldn't kill a FCGI process

When a client disconnects before processing is complete then a SIGPIPE
is sent to the FCGI process. Previously this would cause the process
to exit. Discussed on the forum here:

* https://forum.bestpractical.com/t/rt-4-4-fastcgi-processes-frequently-dying/34812
* https://forum.bestpractical.com/t/why-does-rts-fcgi-server-not-handle-sigpipe/35902

An extra note from bps: this doesn't always happen, which makes it
tricky to reproduce, but we did reproduce it and this commit fixes it.

Fixes: I#37297

lp:goffice Development 2012-03-25 10:20:28 UTC goffice 2023-05-22 00:47:08 UTC
4494. Ruy: more tweaks Use printf rules fo...

Author: Morten Welinder
Revision Date: 2023-05-22 00:47:08 UTC

Ruy: more tweaks

Use printf rules for exponents: two digits or more, always with sign.

lp:libunistring Development 2011-10-11 18:40:57 UTC libunistring 2023-05-21 20:21:16 UTC
344. Support creating shared libraries on ...

Author: Bruno Haible
Revision Date: 2023-05-21 20:21:16 UTC

Support creating shared libraries on Hurd/x86_64.

Patch from
<https://lists.gnu.org/archive/html/bug-hurd/2023-05/msg00086.html>.

* m4/libtool.m4 (_LT_ENABLE_LOCK): Treat Hurd/x86_64 like
Linux/x86_64.

lp:dasher Development 2010-10-16 18:27:27 UTC dasher 2023-05-21 12:43:39 UTC
3841. Update Russian translation

Author: Sergej A
Revision Date: 2023-05-21 12:43:39 UTC

Update Russian translation

lp:ufw Development 2018-01-14 18:59:11 UTC ufw 2023-05-18 13:05:56 UTC
1159. update ChangeLog for last commit

Author: Jamie Strandboge
Revision Date: 2023-05-18 13:05:56 UTC

update ChangeLog for last commit

lp:evergreen/3.8 Development 2023-03-24 20:55:30 UTC evergreen 2023-05-18 12:30:45 UTC
25416. Forward Port 3.8.4 upgrade script Si...

Author: Jason Boyer
Revision Date: 2023-05-18 12:30:45 UTC

Forward Port 3.8.4 upgrade script

Signed-off-by: Jason Boyer <JBoyer@equinoxOLI.org>

lp:apport Development 2022-04-15 01:43:27 UTC apport 2023-05-17 13:05:03 UTC
3916. refactor: Add ProblemReport._get_sort...

Author: BMaxV
Revision Date: 2023-05-17 13:05:03 UTC

refactor: Add ProblemReport._get_sorted_keys (#187)

lp:~beaky/wacs/trunk Development 2013-05-27 09:14:50 UTC wacs 2023-05-16 15:12:46 UTC
2025. Fixed date issues with MySQL/PostgreS...

Author: beaky
Revision Date: 2023-05-16 15:12:46 UTC

Fixed date issues with MySQL/PostgreSQL style dates in wacsdnllist.

lp:patchwork Development 2015-11-06 00:27:11 UTC patchwork 2023-05-15 12:00:27 UTC
1941. tests: Always enable REST API This m...

Author: Stephen Finucane
Revision Date: 2023-05-15 12:00:27 UTC

tests: Always enable REST API

This means django-rest-framework is now a hard requirement for unit
tests. That seems reasonable.

Signed-off-by: Stephen Finucane <stephen@that.guru>

lp:global Development 2011-10-03 01:37:20 UTC global 2023-05-12 22:29:30 UTC
2924. [Bug fixed] The --version didn't incl...

Author: shigio
Revision Date: 2023-05-12 22:29:30 UTC

[Bug fixed]
The --version didn't include 'GNU' in the package name.
Now it includs 'GNU'.

lp:gcstar/1.6 Development 2011-06-04 10:49:03 UTC gcstar 2023-05-10 21:16:44 UTC
2112. Support https for plugins

Author: tian
Revision Date: 2017-05-08 09:15:53 UTC

Support https for plugins

lp:miaz Development 2023-05-08 21:46:27 UTC miaz 2023-05-08 21:46:27 UTC
23. Merge pull request #27 from t00m/0.0....

Author: Tomás Vírseda
Revision Date: 2023-05-07 18:20:35 UTC

Merge pull request #27 from t00m/0.0.14

0.0.14

lp:~x2go/x2go/x2goplasmabindings_master Development 2011-06-11 19:14:30 UTC x2go 2023-05-08 21:34:53 UTC
134. plasmoidhoveredicon.{cpp,h}: use QFra...

Author: Mihai Moldovan
Revision Date: 2023-05-08 21:34:53 UTC

plasmoidhoveredicon.{cpp,h}: use QFrame in Plasma 5 mode, where Plasma::Frame is not available.

We try to recreate the previous look by using a StyledFrame with the
default lineWidth of one.

lp:coccinelle Development 2010-12-14 12:41:54 UTC coccinelle 2023-05-06 17:34:50 UTC
5513. macro decl for structure fields Add ...

Author: Julia Lawall
Revision Date: 2023-05-06 17:34:50 UTC

macro decl for structure fields

Add MacroDecl for SmPL structure fields, and add attributes for
MacroDecl for C.

Suggested-by: Kees Cook <keescook@chromium.org>

lp:evolution-mapi Development 2009-06-17 12:34:45 UTC evolution-mapi 2023-05-06 12:14:14 UTC
1899. Update Russian translation

Author: Sergej A
Revision Date: 2023-05-06 12:14:14 UTC

Update Russian translation

lp:mahimahi Development 2015-10-17 12:22:04 UTC mahimahi 2023-05-05 12:48:10 UTC
688. Update chunked_parser.hh

Author: Rob Figueiredo
Revision Date: 2023-05-05 12:48:10 UTC

Update chunked_parser.hh

lp:rt Development 2013-10-03 20:05:06 UTC rt 2023-05-04 14:52:19 UTC
8483. Merge branch '5.0-trunk'

Author: sunnavy
Revision Date: 2023-05-04 14:52:19 UTC

Merge branch '5.0-trunk'

lp:~registry/q4wine/packaging-trunk Mature 2013-03-24 23:43:36 UTC q4wine 2023-05-03 19:29:03 UTC
261. New upload to Launchpad.

Author: Tehnick
Revision Date: 2023-05-03 19:29:03 UTC

New upload to Launchpad.

lp:~ztefn/haguichi/git-master Development 2023-04-30 17:55:20 UTC haguichi 2023-04-30 17:55:20 UTC
519. Update AppData XML for upcoming release

Author: Stephen Brandt
Revision Date: 2023-04-30 17:22:57 UTC

Update AppData XML for upcoming release

lp:gmult Development 2017-08-30 16:12:37 UTC gmult 2023-04-29 13:07:55 UTC
117. Use a gtkbuilder .ui file for CharBox

Author: Michael Terry
Revision Date: 2023-04-29 13:07:55 UTC

Use a gtkbuilder .ui file for CharBox

1100 of 8642 results