[Bug 1901609] Re: signond causes qprocess crash
Tested 8.59+17.10.20170606-0ubuntu2.20.10.1 on groovy and the test scenario outlined in the description is working now. The auth dialog no longer crashes singond. ** Tags removed: verification-needed verification-needed-groovy ** Tags added: verification-done verification-done-groovy -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1901609 Title: signond causes qprocess crash To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/signon/+bug/1901609/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1901609] Re: signond causes qprocess crash
Also uploaded to groovy and focal as 8.59+17.10.20170606-0ubuntu2.20.10.1 and 8.59+17.10.20170606-0ubuntu2.20.04.1 respectively ** Changed in: signon (Ubuntu Focal) Status: Confirmed => In Progress ** Changed in: signon (Ubuntu Groovy) Status: Confirmed => In Progress -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1901609 Title: signond causes qprocess crash To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/signon/+bug/1901609/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1901609] Re: signond causes qprocess crash
** Description changed: - I'm reporting this bug upstream from where I found it, since I've - learned that the signond package in KDE Neon is sourced from Ubuntu - focal. + [Impact] + + Without the patch users are unable to add google accounts because signond crashes. + This prevents users from using KDE's online accounts feature for google. + The fix for this is to drop the no-rtti compile flag as qprocess relies on type info. This has no real downside for the user as it simply brings in type info. + + [Test Case] + + - in a plasma session + - install kio-gdrive + - run `systemsettings5 kcm_kaccounts` + - add a new account + - click on google + - wait for login window to appear + - signond shouldn't be crashing + + [Where problems could occur] + + Cannot think of any. It simply adds type info to the objects. Also + upstream has rtti disabled for months and I'm not aware of any problems. + + [Other Info] + + This is a fairly grave issue as far as user experience is concerned. + + + + + + I'm reporting this bug upstream from where I found it, since I've learned that the signond package in KDE Neon is sourced from Ubuntu focal. This was found in signon (signond_8.59+17.10.20170606-0ubuntu2_amd64) from Focal Fossa Steps to reproduce: 1. Install KDE Plasma and qt 5.15.0 on Ubuntu focal base (IE: KDE Neon) 2. Install the kaccounts integration and kio-gdrive packages. 3. Open System settings and navigate to "Online Accounts" 4. Press "+ Add New Account" 5. Select "Google" Observed behaviour: - Window that would ask for authentication fails to load, and Online Accounts goes back to overview - system logs show a segfault in libqt5core.so which can be traced to a failure in qporcess, casued by signond (see links for further details) - Expected behaviour: + Expected behaviour: - New window opens with a webview where Google authentication credentials can be posted. - When qprocess runs it does not crash. - Further reference information at the following links: 1. Bug in KDE Neon: https://bugs.kde.org/show_bug.cgi?id=426034 3. Relevant MR (Since merged) in signond: https://gitlab.com/accounts- sso/signond/-/merge_requests/27 ** Also affects: signon (Ubuntu Focal) Importance: Undecided Status: New ** Also affects: signon (Ubuntu Hirsute) Importance: Undecided Status: New ** Also affects: signon (Ubuntu Groovy) Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1901609 Title: signond causes qprocess crash To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/signon/+bug/1901609/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 340106]
Git commit f40191a147c9643717fda1cf9d1f42c526550893 by Harald Sitter. Committed on 06/04/2020 at 09:27. Pushed by sitter into branch 'master'. smb: add hack to support spaces in workgroup names Summary: workgroup names are as best I can tell always still netbios names which means they can contain a bunch of characters ordinarily not found in valid host names. e.g. spaces this causes trouble with the IANA SMB URI draft, as used by libsmbc, since the workgroup would be the host field of the RI when browsing a workgroup (i.e. filtering hosts that are member of a given workgroup) because QUrl does not allow invalid hostnames in the host field. to bypass this problem we now put the workgroup name into the query of the url as `kio-workgroup`, should it cause trouble in the host field. SMBUrl takes this query into account when constructing the url for smbc. since the latter has uniquely exciting potential for breakage this entire dance is only done when absolutely necessary and otherwise we continue with all the same code and behavior as without this commit. on a side note: the awkward name flexibility seems to not extend to computer names anymore (supposedly because of LLMNR) so this entire use case is already very niche as we (and libsmbclient) currently only support workgroup browsing for NT1 networks, and NT1 is by default not supported on windows10 or samba. FIXED-IN: 20.04 Test Plan: builds, test passes, can browse workgroup with space in name Reviewers: ngraham Subscribers: kde-frameworks-devel, kfm-devel, thiago Tags: #dolphin, #frameworks Differential Revision: https://phabricator.kde.org/D27804 M +35 -0smb/autotests/smburltest.cpp M +11 -1smb/kio_smb_browse.cpp M +57 -4smb/smburl.cpp https://commits.kde.org/kio- extras/f40191a147c9643717fda1cf9d1f42c526550893 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/340106 Title: Dolphin & Konqueror do not support browsing workgroups with spaces in their name To manage notifications about this bug go to: https://bugs.launchpad.net/kde-baseapps/+bug/340106/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 340106]
https://phabricator.kde.org/D27804 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/340106 Title: Dolphin & Konqueror do not support browsing workgroups with spaces in their name To manage notifications about this bug go to: https://bugs.launchpad.net/kde-baseapps/+bug/340106/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 340106]
Thanks. With that in mind we cannot really support spaces while also following the smb URI format [1]. I suppose we'll just have to deviate a bit iff the workgroup name contains a space by using a variant of the notation that stuffs the workgroup into the userinfo `smb://work group;@/` and then translate that back to an smb URI for libsmbclient again. Means the urls wont be portable but at least navigation within our tech works. [1] https://www.iana.org/assignments/uri-schemes/prov/smb -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/340106 Title: Dolphin & Konqueror do not support browsing workgroups with spaces in their name To manage notifications about this bug go to: https://bugs.launchpad.net/kde-baseapps/+bug/340106/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 340106]
CCing David Faure for some input This is either a bug in QUrl or not a bug at all. We do ``` QUrl u("smb://"); u.setHost(dirpName); ``` to which QUrl says > Invalid hostname (contains invalid characters); source was \"FOO BAR\"; > scheme = \"smb\", host = \"\" https://tools.ietf.org/html/rfc3986#section-3.2 defines host as > host = IP-literal / IPv4address / reg-name` of which the only relevant group for the bug is reg-name: > reg-name= *( unreserved / pct-encoded / sub-delims ) of which no group would allow for spaces except for pct-encoded, assuming the space is percent-encoded of course. Which would make this a QUrl bug if the RFC didn't also explicitly say: > URI producing > applications must not use percent-encoding in host unless it is used > to represent a UTF-8 character sequence. I **think** that is meant to say that one must not percent-encode if the character is plain ASCII, so by extension a space cannot be part of reg- name at all. OTOH I ran smb://FOO%20BAR/ through a bunch of other rfc3986/7 implementation and they all found it to be perfectly valid. So, I am really not sure. Iff spaces cannot be expressed, then spaces in workgroup and domains are probably not supportable as it'd impair URI portability. Also QUrl would then be behaving correctly in declaring the URI invalid, and we use QUrl all over the place, so that'd be a bit of a problem. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/340106 Title: Dolphin & Konqueror do not support browsing workgroups with spaces in their name To manage notifications about this bug go to: https://bugs.launchpad.net/kde-baseapps/+bug/340106/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1834480] [NEW] translations in not so ideal language-pack
Public bug reported: currently translations go into language-pack-gnome-$lang-base. this isn't particularly ideal since pwquality is also used by kde plasma's user manager which then also drags in all unrelate gnome software translations. pwquality is desktop independent and it'd be really grand if its translations could be moved to the desktop independent language- packs. ** Affects: libpwquality (Ubuntu) Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1834480 Title: translations in not so ideal language-pack To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/libpwquality/+bug/1834480/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1783283] Re: setvtrgb.service incorrectly ordered [with patchy]
Was there a question in there? I did also see this on installed kubuntu systems, it's just far harder to reproduce there because of the racy nature of the issue. In fact, the only reason I know about the issue is because the colors are just so far off that they tripped up our openqa tests and flaked every so often. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1783283 Title: setvtrgb.service incorrectly ordered [with patchy] To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/console-setup/+bug/1783283/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1777994] Re: the header xcb/xinput.h is missing
uploaded bionic SRU libxcb_1.13-1.1 by Jonathan Riddell ** Description changed: - I suspect this means there should be another package, libxcb-xinput-dev - perhaps? + [Impact] + Allow Qt 5.12 to be compiled with full input support. This allows applications to be built using complex input devices such as drawing pads. This is used in e.g Krita which KDE builds into a Snap package for distribution. Currently Krita does not work with pen input devices with pressure sensitivity. + + [Test Case] + Install Krita with Qt 5.12 from current Snap and note how pressure sensitivity does not work. + + [Regression Potential] + None that I can see, it's just packaging a few new header files. + + + + + I suspect this means there should be another package, libxcb-xinput-dev perhaps? I already did sudo apt install "libxcb*dev" to get all related dev packages, but none of them provide xcb/xinput.h. The result is that when building Qt from source, it's necessary to use a copy of this file which Qt provides (qtbase/src/3rdparty/xcb/include/xcb/xinput.h), because it's missing from the system. So if you don't give the option -qt-xcb to configure, then Qt will be built without multi-touch support. https://bugreports.qt.io/browse/QTBUG-69045 ProblemType: Bug DistroRelease: Ubuntu 18.04 Package: libxcb1-dev 1.13-1 ProcVersionSignature: Ubuntu 4.15.0-23.25-generic 4.15.18 Uname: Linux 4.15.0-23-generic x86_64 NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair ApportVersion: 2.20.9-0ubuntu7.2 Architecture: amd64 CompizPlugins: No value set for `/apps/compiz-1/general/screen0/options/active_plugins' CompositorRunning: None CurrentDesktop: ubuntu:GNOME Date: Thu Jun 21 08:32:12 2018 DistUpgraded: Fresh install DistroCodename: bionic DistroVariant: ubuntu GraphicsCard: - Intel Corporation UHD Graphics 620 [8086:5917] (rev 07) (prog-if 00 [VGA controller]) -Subsystem: Lenovo UHD Graphics 620 [17aa:3802] + Intel Corporation UHD Graphics 620 [8086:5917] (rev 07) (prog-if 00 [VGA controller]) + Subsystem: Lenovo UHD Graphics 620 [17aa:3802] Lsusb: - Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub - Bus 001 Device 004: ID 0cf3:e300 Atheros Communications, Inc. - Bus 001 Device 003: ID 06cb:0081 Synaptics, Inc. - Bus 001 Device 002: ID 04f2:b5da Chicony Electronics Co., Ltd - Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub + Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub + Bus 001 Device 004: ID 0cf3:e300 Atheros Communications, Inc. + Bus 001 Device 003: ID 06cb:0081 Synaptics, Inc. + Bus 001 Device 002: ID 04f2:b5da Chicony Electronics Co., Ltd + Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: LENOVO 80Y7 ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.15.0-23-generic root=ZFS=rpool/ROOT/ubuntu ro SourcePackage: libxcb UpgradeStatus: No upgrade log present (probably fresh install) dmi.bios.date: 02/22/2018 dmi.bios.vendor: LENOVO dmi.bios.version: 5NCN38WW dmi.board.asset.tag: NO Asset Tag dmi.board.name: LNVNB161216 dmi.board.vendor: LENOVO dmi.board.version: SDK0J40709 WIN dmi.chassis.asset.tag: NO Asset Tag dmi.chassis.type: 31 dmi.chassis.vendor: LENOVO dmi.chassis.version: Lenovo YOGA 920-13IKB dmi.modalias: dmi:bvnLENOVO:bvr5NCN38WW:bd02/22/2018:svnLENOVO:pn80Y7:pvrLenovoYOGA920-13IKB:rvnLENOVO:rnLNVNB161216:rvrSDK0J40709WIN:cvnLENOVO:ct31:cvrLenovoYOGA920-13IKB: dmi.product.family: YOGA 920-13IKB dmi.product.name: 80Y7 dmi.product.version: Lenovo YOGA 920-13IKB dmi.sys.vendor: LENOVO version.compiz: compiz N/A version.libdrm2: libdrm2 2.4.91-2 version.libgl1-mesa-dri: libgl1-mesa-dri 18.0.0~rc5-1ubuntu1 version.libgl1-mesa-glx: libgl1-mesa-glx 18.0.0~rc5-1ubuntu1 version.xserver-xorg-core: xserver-xorg-core 2:1.19.6-1ubuntu4 version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.10.5-1ubuntu1 version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:18.0.1-1 version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.99.917+git20171229-1 version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.15-2 ** Changed in: libxcb (Ubuntu Bionic) Status: Won't Fix => In Progress -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1777994 Title: the header xcb/xinput.h is missing To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/libxcb/+bug/1777994/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1815100] Re: qemu-user-static needs to binfmt with --fix-binary
Thanks, I've updated the description accordingly. ** Description changed: + [Impact] + + qemu static binaries disadvantageously get their binfmt rule created + without the fix-binary flag. This breaks cross-architecture dockers, + flatpak-builder, chroots and generally most use cases that entail kernel + namespaces or chroots. By default the binfmt module will only open the + interpreter file (e.g. qemu-arm-static for armhf binaries) when the + kernel actually encounters a file for which the interpreter is needed. + This is generally fine, except when the root at the time the file is + encountered is no longer the root of the system (IOW: if / is in fact + /foo on the system then the interpreter will effectively be looked for + in /foo/usr/bin/qemu-arm-static, where it of course does not exist). + This is generally fine for regular interpreters such as python, which + you want to install inside the namespace/chroot if you want to interpret + a python file. Since in qemu's case the interpreter is actually a static + emulator it really must come from the host system and not the + namespace/chroot. No root file system ever comes with an emulator on + board, much less one suitable for the host system. + + As this effectively breaks qemu-based container-use the missing flag + really should get rectified. For example you can't easily cross compile + for arm inside a chroot. Primary example of this is flatpak-builder + which is used to build flatpak bundles. It has cross compilation + capabilities expecting a suitable binfmt setup which will fail with + obscure execvp errors (on account of not being able to open the + interpreter/qemu binary inside the chroot). https://docs.plasma- + mobile.org/AppDevelopment.html#creating-a-flatpak-for-the-phone + + The fix-binary flag of binfmt is meant to specifically deal with this. + The interpreter file (e.g. qemu-arm-static) is loaded when its binfmt + rule is installed instead of when a file that requires it is + encountered. When the kernel then encounters a file which requires that + interpreter it simply execs the already open file descriptor instead of + opening a new one (IOW: the kernel already has the correct file + descriptor open, so possibly divergent roots no longer play into finding + the interpreter thus allowing namespaces/containers/chroots of a foreign + architecture to be run like native ones). + + [Test Case] + + Do note that once successfully loaded, the interpreter likely won't need + opening again. So, testing generally should be done after a cold-boot to + ensure binfmt hasn't already loaded the interpreter. + + $ sudo apt install docker.io qemu-user-static + $ sudo docker run --rm -it armhf/ubuntu /bin/sh + + Without fix-binary this gives an error "exec user process caused 'no such file or directory" (this is referring to the interpreter not being found). + With fix-binary this correctly opens a prompt. + + [Regression Potential] + + Since the file descriptor is always held open I guess memory consumption goes up by a couple bytes. There isn't any opportunity of regression with fix-binary as it simply changes the interpreter file opening from lazy to instant. + There is potential for the actual SRU patch going wrong, which would manifest in the binfmt rules not getting set up correctly (this would be shown by the aforementioned test case though; breaking the rule setup would result in no improvement to the docker run command). + + [Other Info] + I also should point out that the exec() still happens inside the namespace/confinement, so while this essentially loads a file from the host it does not impair security as any confinement restrictions will apply to executable all the same, it is merely the binary data blob that comes from the host. + + - + qemu-user-static in 18.04 invokes update-binfmts without --fix-binary which can break the binfmt emulation when namespaces or chroots are involved. Specifically this defuncts cross compiling when relying on binfmt. Newer versions already set --fix-binary for the static package. It'd be really grand if this was actually SRU'd though. Currently 18.04's binfmt for arm can inobviously fail with obscure errors. Notable example is bubblewrap and flatpak, which will squarely hit this problem 100% of the time. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1815100 Title: qemu-user-static needs to binfmt with --fix-binary To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/qemu/+bug/1815100/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1815100] [NEW] qemu-user-static needs to binfmt with --fix-binary
Public bug reported: qemu-user-static in 18.04 invokes update-binfmts without --fix-binary which can break the binfmt emulation when namespaces or chroots are involved. Specifically this defuncts cross compiling when relying on binfmt. Newer versions already set --fix-binary for the static package. It'd be really grand if this was actually SRU'd though. Currently 18.04's binfmt for arm can inobviously fail with obscure errors. Notable example is bubblewrap and flatpak, which will squarely hit this problem 100% of the time. ** Affects: qemu (Ubuntu) Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1815100 Title: qemu-user-static needs to binfmt with --fix-binary To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/qemu/+bug/1815100/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1767454]
Git commit 55eb68ff63646050311f8b689752ad500246c916 by Harald Sitter. Committed on 07/12/2018 at 12:55. Pushed by sitter into branch 'master'. fallback to dnssd service discovery if smb listDir failed on root Summary: This elevates a problem with newer SMB protocol versions and smbclient not supporting discovery/browsing. when not using older (as in: ancient) protocol versions discovery doesn't work and smb:/ gives no results. By falling back to DNSSD based discovery we can ensure discovery of DNSSD remotes (namely linux and osx) is always working. Windows unfortunately does not support DNSSD and as such will not benefit from this mode of discovery and continue to be unlisted when using a protocol version without browsing support. CHANGELOG: When SMB Discovery is not working (protocol > SMB1) host discovery will now fall back to DNS-SD/Avahi/Bonjour. Related: bug 390551 Test Plan: smb.conf: ``` [global] client min protocol = SMB2 ``` Lists devices Reviewers: #frameworks, #dolphin, broulik Reviewed By: broulik Subscribers: acrouthamel, alexde, bcooksley, ngraham, kde-frameworks- devel, kfm-devel Tags: #dolphin, #frameworks Differential Revision: https://phabricator.kde.org/D16299 M +6-0CMakeLists.txt M +3-0config-runtime.h.cmake M +16 -3smb/CMakeLists.txt M +1-0smb/kio_smb.h M +126 -3smb/kio_smb_browse.cpp https://commits.kde.org/kio- extras/55eb68ff63646050311f8b689752ad500246c916 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1767454 Title: "Other Locations" does not automatically find Samba servers in Ubuntu 18.04 To manage notifications about this bug go to: https://bugs.launchpad.net/dolphin/+bug/1767454/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1800135] Re: libssh-dev is missing cmake find module
Are you sure this is still incorrect in cosmic? It seems to me this is only broken in bionic. Cosmic build log has libssh-dev_0.8.1-1_amd64.deb new debian package, version 2.0. size 217956 bytes: control archive=1172 bytes. 918 bytes,21 lines control 845 bytes,12 lines md5sums Package: libssh-dev Source: libssh Version: 0.8.1-1 Architecture: amd64 Maintainer: Ubuntu Developers Original-Maintainer: Laurent Bigonville Installed-Size: 1064 Depends: libssh-4 (= 0.8.1-1), libssl-dev, zlib1g-dev Suggests: libssh-doc Conflicts: libssh-gcrypt-dev Section: libdevel Priority: optional Homepage: https://www.libssh.org/ Description: tiny C SSH library. Development files (OpenSSL flavor) The ssh library was designed to be used by programmers needing a working SSH implementation by the mean of a library. The complete control of the client is made by the programmer. With libssh, you can remotely execute programs, transfer files, use a secure and transparent tunnel for your remote programs. With its SFTP implementation, you can play with remote files easily. . This package contains development files to build the OpenSSL flavor. drwxr-xr-x root/root 0 2018-08-14 07:43 ./ drwxr-xr-x root/root 0 2018-08-14 07:43 ./usr/ drwxr-xr-x root/root 0 2018-08-14 07:43 ./usr/include/ drwxr-xr-x root/root 0 2018-08-14 07:43 ./usr/include/libssh/ -rw-r--r-- root/root 37596 2018-08-09 09:18 ./usr/include/libssh/callbacks.h -rw-r--r-- root/root 6867 2016-03-03 19:05 ./usr/include/libssh/legacy.h -rw-r--r-- root/root 29642 2018-08-13 20:21 ./usr/include/libssh/libssh.h -rw-r--r-- root/root 20102 2018-08-10 11:23 ./usr/include/libssh/libsshpp.hpp -rw-r--r-- root/root 12393 2018-08-09 09:18 ./usr/include/libssh/server.h -rw-r--r-- root/root 31787 2018-08-10 09:06 ./usr/include/libssh/sftp.h -rw-r--r-- root/root 2735 2018-08-10 11:23 ./usr/include/libssh/ssh2.h drwxr-xr-x root/root 0 2018-08-14 07:43 ./usr/lib/ drwxr-xr-x root/root 0 2018-08-14 07:43 ./usr/lib/x86_64-linux-gnu/ drwxr-xr-x root/root 0 2018-08-14 07:43 ./usr/lib/x86_64-linux-gnu/cmake/ drwxr-xr-x root/root 0 2018-08-14 07:43 ./usr/lib/x86_64-linux-gnu/cmake/libssh/ -rw-r--r-- root/root 377 2018-08-14 07:43 ./usr/lib/x86_64-linux-gnu/cmake/libssh/libssh-config-version.cmake -rw-r--r-- root/root 493 2018-08-14 07:43 ./usr/lib/x86_64-linux-gnu/cmake/libssh/libssh-config.cmake -rw-r--r-- root/root906476 2018-08-14 07:43 ./usr/lib/x86_64-linux-gnu/libssh.a lrwxrwxrwx root/root 0 2018-08-14 07:43 ./usr/lib/x86_64-linux-gnu/libssh.so -> libssh.so.4 drwxr-xr-x root/root 0 2018-08-14 07:43 ./usr/lib/x86_64-linux-gnu/pkgconfig/ -rw-r--r-- root/root 121 2018-08-14 07:43 ./usr/lib/x86_64-linux-gnu/pkgconfig/libssh.pc drwxr-xr-x root/root 0 2018-08-14 07:43 ./usr/share/ drwxr-xr-x root/root 0 2018-08-14 07:43 ./usr/share/doc/ drwxr-xr-x root/root 0 2018-08-14 07:43 ./usr/share/doc/libssh-dev/ lrwxrwxrwx root/root 0 2018-08-14 07:43 ./usr/share/doc/libssh-dev/changelog.Debian.gz -> ../libssh-4/changelog.Debian.gz -rw-r--r-- root/root 13682 2018-08-14 07:43 ./usr/share/doc/libssh-dev/copyright -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1800135 Title: libssh-dev is missing cmake find module To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/libssh/+bug/1800135/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1783283] [NEW] setvtrgb.service incorrectly ordered [with patchy]
Public bug reported: setvtrgb is not correctly ordered when used with plymouth. It has an After=plymouth-quit-wait.service, but that may not be applicable when plymouth-quit.service is queued instead. This ultimately results in semi-random setvtrgb results as calling setvtrgb too soon will do nothing if the VTs aren't up/still getting fiddled with with by plymouth. So, depending on the unit tree the VT may have the correct custom color, or the default kernel color. Since this is entirely dependent on the units being started, and their effective order, this is super hard to reproduce reliably. The most reliable way I have is an ISO which has Calamares instead of Ubiquity and SDDM instead of GDM, which 100% of the time ends up having a unit order where setvtrgb is called way too soon (even before getty.target, although I am not sure that matters as far as the VT colors are concerned). The solution seems excitingly simple though. Adding an After=plymouth- quit.service rule correctly orders the unit at least in my test case. Since After is only an order hint this should be entirely regression free. ** Affects: console-setup (Ubuntu) Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1783283 Title: setvtrgb.service incorrectly ordered [with patchy] To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/console-setup/+bug/1783283/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1783283] Re: setvtrgb.service incorrectly ordered [with patchy]
** Patch added: "setvtrgb.patch" https://bugs.launchpad.net/ubuntu/+source/console-setup/+bug/1783283/+attachment/5167040/+files/setvtrgb.patch -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1783283 Title: setvtrgb.service incorrectly ordered [with patchy] To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/console-setup/+bug/1783283/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1760598] Re: I/O Error after clicking "reboot now" - Ubuntu font missing from casper shutdown
As explained in Bug #1761478 that would still leave timing issues. With --ping not blocking anymore casper-stop can shoot right past the prompt code on account of --ping coming back !0 (if plymouth isn't quick enough to start anyway). Meaning the user doesn't get told to remove the installation medium. e.g. this is what I get in a VM now http://people.ubuntu.com/~apachelogger/screencasts/vokoscreen-2018-04-06_13-40-13.mkv -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1760598 Title: I/O Error after clicking "reboot now" - Ubuntu font missing from casper shutdown To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu-mate/+bug/1760598/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1705345] Re: Installing packages hangs on plymouth --ping
Pretty sure the change caused bug #1761478 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1705345 Title: Installing packages hangs on plymouth --ping To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/plymouth/+bug/1705345/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1761478] [NEW] 0.9.3-1ubuntu4 broke livecd reboot plymouth in qemu
Public bug reported: 0.9.3-1ubuntu4 removed the implicit wait on the daemon. this seems to have broken iso reboots in qemu with uefi (no secureboot) and qxl vga. - start ubuntu-desktop iso - install - restart system - plymouth never comes up instead you get lovely IO errors if you boot console=ttyS0 (and have a console attached obviously) you'll further more see that the "remove medium and press enter" message is actually printed there. my assumption is that casper-stop in some capacity actually relied on plymouth --ping delaying the stop until plymouthd actually responds. since that is no longer the case things implode. in general it seems to me that the change in ubuntu4 is super invasive in outright changing implicit upstream behaviour which any number of things might rely on. ** Affects: plymouth (Ubuntu) Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1761478 Title: 0.9.3-1ubuntu4 broke livecd reboot plymouth in qemu To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/plymouth/+bug/1761478/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1761478] Re: 0.9.3-1ubuntu4 broke livecd reboot plymouth in qemu
** Attachment added: "screenshot" https://bugs.launchpad.net/ubuntu/+source/plymouth/+bug/1761478/+attachment/5102641/+files/Screenshot_user2_2018-04-05_13%3A02%3A50.png -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1761478 Title: 0.9.3-1ubuntu4 broke livecd reboot plymouth in qemu To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/plymouth/+bug/1761478/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1749688] Re: 16.04 HWE -> 18.04 = xorg held back (+ partial breakage because of it)
A problem in of itself, but likely unrelated to the held upgrade. From a look at the code of the script it would only edit the xorg.conf to disable proprietary drivers. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1749688 Title: 16.04 HWE -> 18.04 = xorg held back (+ partial breakage because of it) To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/1749688/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1749688] Re: 16.04 HWE -> 18.04 = xorg held back (+ partial breakage because of it)
** Attachment added: "additonal apt logs showing post-upgrade xorg upgrade" https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/1749688/+attachment/5055690/+files/apt.tar.xz -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1749688 Title: 16.04 HWE -> 18.04 = xorg held back (+ partial breakage because of it) To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/1749688/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1749688] [NEW] 16.04 HWE -> 18.04 = xorg held back (+ partial breakage because of it)
Public bug reported: When upgrading from a 16.04 installation which had HWE (later point releases) xorg is getting held back as apt is having trouble resolving the path from xserver-xorg-core-hwe-16.04 to xserver-xorg-core. In at least one instance I've seen a system from a user POV completely break because of that as it failed to get any keyboard input. Forcing xorg to get properly installed fixes any and all issues as expected. - devel upgrade from xenial to bionic - restart - xorg not upgraded - try to get a hold of tty or repair mode - sudo apt install dist-upgrade && sudo apt install xorg - restart - working system I am going to attach logs for an ubuntu-desktop system, but I've also seen this with kubuntu-desktop and the derived neon-desktop. It's a bit unclear to me why apt is having trouble with the resolution, it does seem like a fairly serious problem though. ** Affects: ubuntu-release-upgrader (Ubuntu) Importance: Undecided Status: New ** Attachment added: "upgrader logs" https://bugs.launchpad.net/bugs/1749688/+attachment/5055689/+files/dist-upgrade.tar.xz -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1749688 Title: 16.04 HWE -> 18.04 = xorg held back (+ partial breakage because of it) To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/1749688/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1716363] [NEW] snapcraft assign special meaning to version:git
Public bug reported: A snapcraft.yaml with `version: git` has special meaning to snapcraft, supposedly that the version should be picked from the git ref of the repo clone where the snapcraft.yaml lives. This results in failed snapcrafting when the directory is in fact not a git clone at all Determining the version from the project repo (version: git). fatal: Not a git repository (or any of the parent directories): .git This behavior entirely undocumented outside the crappy error after building. ** Affects: snapcraft (Ubuntu) Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1716363 Title: snapcraft assign special meaning to version:git To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/snapcraft/+bug/1716363/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1714941] [NEW] mounts should hint ignore
Public bug reported: $ qdbus --system org.freedesktop.UDisks2 /org/freedesktop/UDisks2/block_devices/loop9 org.freedesktop.UDisks2.Block.HintIgnore false Currently, the loopback mounts of the snaps are not properly marked as ignore for udisks2 which results in them being listed in various UIs listing volumes from udisks. One would expect them to have the HintIgnore property set to true [1] which is set via the UDISKS_IGNORE property in udev [2], supposedly snapd should come with it is own udev rule to set that property. [1] http://storaged.org/doc/udisks2-api/latest/gdbus-org.freedesktop.UDisks2.Block.html#gdbus-property-org-freedesktop-UDisks2-Block.HintIgnore [2] http://storaged.org/doc/udisks2-api/latest/udisks.8.html ** Affects: snapcraft (Ubuntu) Importance: Undecided Status: Confirmed -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1714941 Title: mounts should hint ignore To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/snapcraft/+bug/1714941/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1628056] [NEW] content sharing getting in the way of snap removal
Public bug reported: snapd: Installed: 2.15.2ubuntu1 Candidate: 2.15.2ubuntu1 fully up to date xenial Supposedly to do with content sharing: When installing a snap that employs content sharing it at some point will fail to remove old versions. The only way to recover from this is to purge snapd and start from scratch. example: I have `kde-frameworks.snap` which provides a content slot. This slot is used by `kcalc.snap`. Once x4 of kcalc is meant to be installed (4th time one runs install with a changed verion) it would automatically remove x1, it fails to remove however. $ sudo snap install --force-dangerous --devmode kcalc_0_amd64.snap [sudo] password for me: 2016-09-27T13:26:38+02:00 INFO Waiting for snap-kcalc-x1.mount to stop. 2016-09-27T13:26:39+02:00 ERROR cannot remove snap file "kcalc", will retry in 3 mins: snap-kcalc-x1.mount failed to stop: timeout 2016-09-27T13:29:39+02:00 ERROR cannot remove snap file "kcalc", will retry in 3 mins: umount: /snap/kcalc/x1: not mounted [-] Remove snap "kcalc" (x1) from the system mount output after aborting this: /var/lib/snapd/snaps/ubuntu-core_423.snap on /snap/ubuntu-core/423 type squashfs (ro,relatime) /var/lib/snapd/snaps/kde-frameworks-5_x1.snap on /snap/kde-frameworks-5/x1 type squashfs (ro,relatime) /var/lib/snapd/snaps/kcalc_x2.snap on /snap/kcalc/x2 type squashfs (ro,relatime) /var/lib/snapd/snaps/kcalc_x3.snap on /snap/kcalc/x3 type squashfs (ro,relatime) /var/lib/snapd/snaps/kde-frameworks-5_x2.snap on /snap/kde-frameworks-5/x2 type squashfs (ro,relatime) /var/lib/snapd/snaps/kde-frameworks-5_x3.snap on /snap/kde-frameworks-5/x3 type squashfs (ro,relatime) /var/lib/snapd/snaps/kcalc_x4.snap on /snap/kcalc/x4 type squashfs (ro,relatime) mount output before: /var/lib/snapd/snaps/ubuntu-core_423.snap on /snap/ubuntu-core/423 type squashfs (ro,relatime) /var/lib/snapd/snaps/kde-frameworks-5_x1.snap on /snap/kde-frameworks-5/x1 type squashfs (ro,relatime) /var/lib/snapd/snaps/kcalc_x1.snap on /snap/kcalc/x1 type squashfs (ro,relatime) /var/lib/snapd/snaps/kcalc_x2.snap on /snap/kcalc/x2 type squashfs (ro,relatime) /var/lib/snapd/snaps/kcalc_x3.snap on /snap/kcalc/x3 type squashfs (ro,relatime) /var/lib/snapd/snaps/kde-frameworks-5_x2.snap on /snap/kde-frameworks-5/x2 type squashfs (ro,relatime) /var/lib/snapd/snaps/kde-frameworks-5_x3.snap on /snap/kde-frameworks-5/x3 type squashfs (ro,relatime) ** Affects: snapd (Ubuntu) Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1628056 Title: content sharing getting in the way of snap removal To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/snapd/+bug/1628056/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1434516] Re: KDE Applications Use Oxygen Widget style eventhough Breeze is selected (Plasma 5)
If the package appmenu-qt5 is installed, Plasma is broken. This is due to appmenu-qt5 installing a /etc/profile.d/appmenu-qt5.sh which sets the QT_QPA_PLATFORMTHEME env variable. By having that loaded into the session the qpt plugin provided by plasma-integration won't be loaded. ** Also affects: appmenu-qt5 (Ubuntu) Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1434516 Title: KDE Applications Use Oxygen Widget style eventhough Breeze is selected (Plasma 5) To manage notifications about this bug go to: https://bugs.launchpad.net/appmenu-qt5/+bug/1434516/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1579834] Re: update-apt-xapian-index-dbus fails because of wrong import
Also confirmed working with 0.47ubuntu8.3 - sudo rm -rf /var/lib/apt-xapian-index/ - sudo /usr/share/apt-xapian-index/update-apt-xapian-index-dbus - qdbus --system org.debian.AptXapianIndex / org.debian.AptXapianIndex.update_async true true correctly generates xapian index without dbus helper falling over dead. ** Tags removed: verification-needed ** Tags added: verification-done -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1579834 Title: update-apt-xapian-index-dbus fails because of wrong import To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/apt-xapian-index/+bug/1579834/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1579834] Re: update-apt-xapian-index-dbus fails because of wrong import
8.2 doesn't actually apply the relevant change properly as it simply changes string to line. I uploaded 8.3 properly applying the change now. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1579834 Title: update-apt-xapian-index-dbus fails because of wrong import To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/apt-xapian-index/+bug/1579834/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1612669] Re: wrong PPA series used if system name not Ubuntu
Works as expected. 16:56:54 /etc/apt/sources.list.d $ sudo add-apt-repository ppa:alexlarsson/flatpak Linux application sandboxing and distribution framework (formerly xdg-app) More info: https://launchpad.net/~alexlarsson/+archive/ubuntu/flatpak Press [ENTER] to continue or ctrl-c to cancel adding it gpg: keyring `/tmp/tmpcsb45r2b/secring.gpg' created gpg: keyring `/tmp/tmpcsb45r2b/pubring.gpg' created gpg: requesting key FA577F07 from hkp server keyserver.ubuntu.com gpg: /tmp/tmpcsb45r2b/trustdb.gpg: trustdb created gpg: key FA577F07: public key "Launchpad PPA for Alexander Larsson" imported gpg: Total number processed: 1 gpg: imported: 1 (RSA: 1) OK 16:56:58 /etc/apt/sources.list.d $ cat alexlarsson-ubuntu-flatpak-xenial.list deb http://ppa.launchpad.net/alexlarsson/flatpak/ubuntu xenial main # deb-src http://ppa.launchpad.net/alexlarsson/flatpak/ubuntu xenial main 16:57:21 /etc/apt/sources.list.d $ sudo add-apt-repository -r ppa:alexlarsson/flatpak Linux application sandboxing and distribution framework (formerly xdg-app) More info: https://launchpad.net/~alexlarsson/+archive/ubuntu/flatpak Press [ENTER] to continue or ctrl-c to cancel removing it 16:57:26 /etc/apt/sources.list.d $ file alexlarsson-ubuntu-flatpak-xenial.list alexlarsson-ubuntu-flatpak-xenial.list: empty ** Tags removed: verification-needed ** Tags added: verification-done -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1612669 Title: wrong PPA series used if system name not Ubuntu To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/software-properties/+bug/1612669/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1612669] Re: wrong PPA series used if system name not Ubuntu
Uploading software-properties_0.96.20.4_source.changes: done. Successfully uploaded packages. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1612669 Title: wrong PPA series used if system name not Ubuntu To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/software-properties/+bug/1612669/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1612669] [NEW] wrong PPA series used if system name not Ubuntu
Public bug reported: If the DISTRIB_ID in /etc/lsb-release is not 'ubuntu' add-apt- repositories will use the latest series of the PPA even if the DISTRIB_CODENAME would match with what is available in the PPA. # Test Case - change lsb-release to say DISTRIB_ID=yolo - copy /usr/share/python-apt/templates/Ubuntu.info to /usr/share/python-apt/templates/yolo.info - sudo add-apt-repository ppa:graphics-drivers/ppa - should add xenial to sources.list.d # Regression potential The current behavior of using the latest series is last ditch effort at come up with anything valid. The proposed change simply extends the acceptable deviation from 100 match. # Other info Change has been used in production in KDE neon for months now. No side effects observed. ** Affects: software-properties (Ubuntu) Importance: Undecided Status: Fix Released ** Affects: software-properties (Ubuntu Xenial) Importance: Undecided Status: In Progress ** Affects: software-properties (Ubuntu Yakkety) Importance: Undecided Status: Fix Released ** Also affects: software-properties (Ubuntu Yakkety) Importance: Undecided Status: In Progress ** Also affects: software-properties (Ubuntu Xenial) Importance: Undecided Status: New ** Changed in: software-properties (Ubuntu Xenial) Status: New => In Progress ** Changed in: software-properties (Ubuntu Yakkety) Status: In Progress => Fix Released -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1612669 Title: wrong PPA series used if system name not Ubuntu To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/software-properties/+bug/1612669/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1612669] Re: wrong PPA series used if system name not Ubuntu
fixed in yakkety as per https://launchpad.net/ubuntu/+source/software- properties/0.96.24.2 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1612669 Title: wrong PPA series used if system name not Ubuntu To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/software-properties/+bug/1612669/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1504626]
Git commit f1e6b9d168281196010c44af2eae4587c1d2d088 by Harald Sitter. Committed on 21/10/2015 at 05:38. Pushed by sitter into branch 'master'. initialize socket size with correct value to quote man 2 accept: > The addrlen argument is a value-result argument: the caller must > initialize it to contain the size (in bytes) of the structure pointed > to by addr; on return it will contain the actual size of the peer > address. If addrlen is not correct we may get EINVAL on trying to connect to the environment socket which in turn results in a broken environment of the daemon when started through pam as it will inherit the DM environment. This doesn't have to happen, it does however reproducibly with nvidia-352 on Kubuntu 15.10. Why or how nvidia plays into this is not entirely clear, best bet is that it simply is a coincidence where nvidia would have something allocated in the memory beforehand and since the addrlen stack variable was not explicitly initialized to anything it would could potentially be negative (EINVAL condition) or wrong such that it meets an internal error check within accept(). CHANGELOG: Fixed KWallet configuration file warnings on login FIXED-IN: 5.16 REVIEW: 125717 M +1-1src/runtime/kwalletd/main.cpp http://commits.kde.org/kwallet- framework/f1e6b9d168281196010c44af2eae4587c1d2d088 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1504626 Title: kwalletd error on login "Configuration file //.config/kwalletd5rc not writable To manage notifications about this bug go to: https://bugs.launchpad.net/kde-runtime/+bug/1504626/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1507886] Re: DistUpgradeFetcherKDE crashes on method _warning
Verified fixed with proposed. Upgrader doesn't crash but correctly displays an error. ** Description changed: # Impact DistUpgradeFetcherKDE.py calls self._warning() but in fact _warning is not an instance method of the fetcher but rather a global helper. This causes early unhandled exceptions to entirely defunc the fetcher rendering upgrades with the KDE UI impossible. NB: this only happens iff there was a problem getting the release notes to begin with. This was fixed in https://launchpad.net/ubuntu/+source/ubuntu-release- upgrader/1:15.10.4 and needs to be SRU'd into vivid as it also suffers from the problem. # Test Case + - setup a apt-cacher-ng as proxy + > $ cat /etc/apt/apt.conf.d/apt-cacher + > Acquire::http { Proxy "http://localhost:3142";; }; - run `kdesudo -- do-release-upgrade -m desktop -f DistUpgradeViewKDE` - should come up with installer # Regression Potential Can't break anymore than getting another undefined method exception as we do now. # Other Info In testing I didn't actually get the fetcher UI itself to display, so I expect there is more wrong. It would however be a good start to not have it crash. ** Tags removed: verification-needed ** Tags added: verification-done -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1507886 Title: DistUpgradeFetcherKDE crashes on method _warning To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/1507886/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1507886] Re: DistUpgradeFetcherKDE crashes on method _warning
** Changed in: ubuntu-release-upgrader (Ubuntu Vivid) Importance: Critical => Medium -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1507886 Title: DistUpgradeFetcherKDE crashes on method _warning To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/1507886/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1507953] [NEW] cacher mangles release notes queries when set as proxy
Public bug reported: When apt-cacher-ng is set as global apt proxy > $ cat /etc/apt/apt.conf.d/apt-cacher > Acquire::http { Proxy "http://localhost:3142";; }; the ubuntu-release-upgrader tool will use the proxy setting to access the release notes [1] on archive.ubuntu.com. These will be answered by apt-cacher-ng with 403 denied making the release notes unavailable for no apparent reason. [1] http://archive.ubuntu.com/ubuntu/dists/vivid-updates/main/dist- upgrader-all/current/ReleaseAnnouncement.html ProblemType: Bug DistroRelease: Ubuntu 15.10 Package: apt-cacher-ng 0.8.5-1 ProcVersionSignature: Ubuntu 4.2.0-16.19-generic 4.2.3 Uname: Linux 4.2.0-16-generic x86_64 NonfreeKernelModules: nvidia ApportVersion: 2.19.1-0ubuntu3 Architecture: amd64 CurrentDesktop: KDE Date: Tue Oct 20 11:19:31 2015 InstallationDate: Installed on 2013-10-29 (720 days ago) InstallationMedia: Kubuntu 13.10 "Saucy Salamander" - Release amd64 (20131016.1) SourcePackage: apt-cacher-ng UpgradeStatus: Upgraded to wily on 2015-10-19 (0 days ago) modified.conffile..etc.apt.cacher.ng.security.conf: [inaccessible: [Errno 13] Permission denied: '/etc/apt-cacher-ng/security.conf'] ** Affects: apt-cacher-ng (Ubuntu) Importance: Undecided Status: New ** Tags: amd64 apport-bug wily -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1507953 Title: cacher mangles release notes queries when set as proxy To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/apt-cacher-ng/+bug/1507953/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1507886] Re: DistUpgradeFetcherKDE crashes on method _warning
** Description changed: # Impact - DistUpgradeFetcherKDE.py calls self._warning() but in fact _warning is not an instance method of the fetcher but rather a global helper. This causes early unhandled exceptions entirely defuncing the fetcher rendering upgrades with the KDE UI impossible. + DistUpgradeFetcherKDE.py calls self._warning() but in fact _warning is not an instance method of the fetcher but rather a global helper. This causes early unhandled exceptions to entirely defunc the fetcher rendering upgrades with the KDE UI impossible. NB: this only happens iff there was a problem getting the release notes to begin with. This was fixed in https://launchpad.net/ubuntu/+source/ubuntu-release- upgrader/1:15.10.4 and needs to be SRU'd into vivid as it also suffers from the problem. # Test Case - run `kdesudo -- do-release-upgrade -m desktop -f DistUpgradeViewKDE` - should come up with installer # Regression Potential - None. Fetcher currently crashes 10/10 times + Can't break anymore than getting another undefined method exception as we do now. # Other Info In testing I didn't actually get the fetcher UI itself to display, so I expect there is more wrong. It would however be a good start to not have it crash. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1507886 Title: DistUpgradeFetcherKDE crashes on method _warning To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/1507886/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1507887] Re: DistUpgradeFetcherKDE always errors on 403 releasenotes
This happens with apt-cacher set up as proxy making the requets go through the cacher and breaking the request ** No longer affects: ubuntu-release-upgrader (Ubuntu Vivid) ** Changed in: ubuntu-release-upgrader (Ubuntu) Status: Triaged => Invalid -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1507887 Title: DistUpgradeFetcherKDE always errors on 403 releasenotes To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/1507887/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1507887] [NEW] DistUpgradeFetcherKDE always errors on 403 releasenotes
Public bug reported: # Impact DistUpgradeFetcherKDE uses the HTML URI for release notes to get the html version and render it in a qtextview. The fetching however is handled through urllib and apparently there is server-side settings in place preventing the html to be fetched via urllib resulting in 403 errors no matter what. The errors in turn result in critical errors from which the present fetcher code doesn't let you proceed to the upgrade itself rendering upgrades impossible. # Test Case - `kdesudo -- do-release-upgrade -m desktop -f DistUpgradeViewKDE` - Upgrade nodes should be displayed without error # Regression Potential This technically degrades visual behavior of the fetcher, practically it doesn't since it appears to me that the HTML URI didn't work with live servers due to them apparently having always thrown 403s # Other Info Ideally IMO the server side restriction ought to be removed. History suggests this wouldn't get done quicker than this behavior change though. ** Affects: ubuntu-release-upgrader (Ubuntu) Importance: Critical Status: Triaged ** Affects: ubuntu-release-upgrader (Ubuntu Vivid) Importance: Critical Status: Triaged ** Also affects: ubuntu-release-upgrader (Ubuntu Vivid) Importance: Undecided Status: New ** Changed in: ubuntu-release-upgrader (Ubuntu Vivid) Status: New => Triaged ** Changed in: ubuntu-release-upgrader (Ubuntu Vivid) Importance: Undecided => Critical -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1507887 Title: DistUpgradeFetcherKDE always errors on 403 releasenotes To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/1507887/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1507885] [NEW] DistUpgradeFetcherKDE crashes on method _warning
Public bug reported: # Impact DistUpgradeFetcherKDE.py calls self._warning() but in fact _warning is not an instance method of the fetcher but rather a global helper. This causes early unhandled exceptions entirely defuncing the fetcher rendering upgrades with the KDE UI impossible. This was fixed in https://launchpad.net/ubuntu/+source/ubuntu-release- upgrader/1:15.10.4 and needs to be SRU'd into vivid as it also suffers from the problem. # Test Case - run `kdesudo -- do-release-upgrade -m desktop -f DistUpgradeViewKDE` - should come up with installer # Regression Potential None. Fetcher currently crashes 10/10 times # Other Info In testing I didn't actually get the fetcher UI itself to display, so I expect there is more wrong. It would however be a good start to not have it crash. ** Affects: ubuntu-release-upgrader (Ubuntu) Importance: Critical Status: Triaged -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1507885 Title: DistUpgradeFetcherKDE crashes on method _warning To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/1507885/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1507886] [NEW] DistUpgradeFetcherKDE crashes on method _warning
Public bug reported: # Impact DistUpgradeFetcherKDE.py calls self._warning() but in fact _warning is not an instance method of the fetcher but rather a global helper. This causes early unhandled exceptions entirely defuncing the fetcher rendering upgrades with the KDE UI impossible. This was fixed in https://launchpad.net/ubuntu/+source/ubuntu-release- upgrader/1:15.10.4 and needs to be SRU'd into vivid as it also suffers from the problem. # Test Case - run `kdesudo -- do-release-upgrade -m desktop -f DistUpgradeViewKDE` - should come up with installer # Regression Potential None. Fetcher currently crashes 10/10 times # Other Info In testing I didn't actually get the fetcher UI itself to display, so I expect there is more wrong. It would however be a good start to not have it crash. ** Affects: ubuntu-release-upgrader (Ubuntu) Importance: Critical Status: Fix Released ** Affects: ubuntu-release-upgrader (Ubuntu Vivid) Importance: Critical Status: Triaged ** Also affects: ubuntu-release-upgrader (Ubuntu Vivid) Importance: Undecided Status: New ** Changed in: ubuntu-release-upgrader (Ubuntu) Status: Triaged => Fix Released ** Changed in: ubuntu-release-upgrader (Ubuntu Vivid) Status: New => Triaged ** Changed in: ubuntu-release-upgrader (Ubuntu Vivid) Importance: Undecided => Critical -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1507886 Title: DistUpgradeFetcherKDE crashes on method _warning To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/1507886/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1504526] Re: Could not start process Cannot talk to klauncher: "The name org.kde.klauncher5 was not provided by any .service files"
https://launchpad.net/ubuntu/+source/kio/5.15.0-0ubuntu2 ** Package changed: kdenlive (Ubuntu) => kio (Ubuntu) ** Changed in: kio (Ubuntu) Status: Confirmed => Fix Released -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1504526 Title: Could not start process Cannot talk to klauncher: "The name org.kde.klauncher5 was not provided by any .service files" To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/kio/+bug/1504526/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1490464] [NEW] remove plasma-widget-quickaccess SRC & BIN
Public bug reported: Please remove plasma-widget-quickaccess source and binaries from wily archive. It is unmaintained upstream and has not been ported to plasma5 making this package entirely non-functional as it would only work with plasma4 which we do not have in the archive anymore. No rdeps. ** Affects: plasma-widget-quickaccess (Ubuntu) Importance: Undecided Status: Confirmed ** Description changed: Please remove plasma-widget-quickaccess source and binaries from wily archive. It is unmaintained upstream and has not been ported to plasma5 making this package entirely non-functional as it would only work with plasma4 which we do not have in the archive anymore. + + No rdeps. -- You received this bug notification because you are a member of Kubuntu Bugs, which is subscribed to plasma-widget-quickaccess in Ubuntu. https://bugs.launchpad.net/bugs/1490464 Title: remove plasma-widget-quickaccess SRC & BIN To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/plasma-widget-quickaccess/+bug/1490464/+subscriptions -- kubuntu-bugs mailing list kubuntu-b...@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs
[Bug 1489733] [NEW] Remove plasmate SRC & BIN from wily
Public bug reported: Please remove plasmate sources and binaries from wily. It is legacy software that doesn't do anything since it is for plasma4 which we don't have anymore. It also is replaced by the plasma-sdk source. ** Affects: plasmate (Ubuntu) Importance: Undecided Status: Confirmed -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1489733 Title: Remove plasmate SRC & BIN from wily To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/plasmate/+bug/1489733/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1489714] [NEW] Please remove akoandi-googledata SRC & BIN
Public bug reported: Please remove akonadi-googledata source and binaries from the archive. It is using legacy kde4 akonadi. Holding up the transition to new akonadi. Also it is altogether useless as it was merged into kdepim- runtime. ** Affects: akonadi-googledata (Ubuntu) Importance: Undecided Status: Confirmed -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1489714 Title: Please remove akoandi-googledata SRC & BIN To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/akonadi-googledata/+bug/1489714/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1489714] Re: Please remove akoandi-googledata SRC & BIN
FTR new akonadi: https://launchpad.net/ubuntu/+source/akonadi/4:15.08.0-0ubuntu1 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1489714 Title: Please remove akoandi-googledata SRC & BIN To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/akonadi-googledata/+bug/1489714/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1489411] Re: FFe libindi 1.0 sync from debian unstable
Uploading kstars_15.08.0-0ubuntu2.dsc: done. Uploading indi-sbig_1.0-0ubuntu8.dsc: done. Uploading indi-apogee_1.0-0ubuntu10.dsc: done. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1489411 Title: FFe libindi 1.0 sync from debian unstable To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/libindi/+bug/1489411/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1489411] Re: FFe libindi 1.0 sync from debian unstable
This bug was fixed in the package libindi - 1.0.0-2 --- libindi (1.0.0-2) unstable; urgency=medium * Update symbols from 1.0.0-1 buildlogs * Update symbols files. (Closes: #795143) -- Maximiliano Curia Tue, 11 Aug 2015 08:24:15 +0200 libindi (1.0.0-1) unstable; urgency=medium [ Maximiliano Curia ] * New upstream release (0.9.9). * New upstream release (1.0.0). * Follow upstream soversion bump. (Closes: #791746) * Update copyright information. * Update symbols with kfreebsd builds. * Update patch for freebsd_support for usb support. * Remove patch: no-sys-io.patch * Remove patch: abi.diff * Update symbols files. * Bump Standards-Version to 3.9.6, no changes needed. [ Adrien Grellier ] * depends on libcfitsio-dev instead of libcfitsio3-dev (Closes: #761723) -- Maximiliano Curia Sat, 08 Aug 2015 12:25:22 +0200 libindi (0.9.8.1-5.1) unstable; urgency=medium * Change B-D to libjpeg-dev to finish the transition to libjpeg-turbo -- Ondřej Surý Mon, 29 Sep 2014 15:42:14 +0200 libindi (0.9.8.1-5) unstable; urgency=medium * Update symbols with the buildds logs and kfreebsd porter box log. * New patch: freebsd_support * Update build dependencies. -- Maximiliano Curia Sat, 30 Aug 2014 04:48:12 +0200 libindi (0.9.8.1-4) unstable; urgency=medium * Remove libusb-dev build dependency. (Closes: #754746) * Update symbols with the buildds logs. (Closes: #754747) * New patch: no-sys-io.patch. (Closes: #668134) -- Maximiliano Curia Fri, 18 Jul 2014 11:01:29 +0200 libindi (0.9.8.1-3) unstable; urgency=medium * Improve dependencies, libindialignmentdriver0 is the only library that does a dlopen of the plugins. (Closes: #747855) * Update symbols files. (Closes: #749962) -- Maximiliano Curia Sat, 12 Jul 2014 14:30:00 +0200 libindi (0.9.8.1-2) unstable; urgency=medium * Update symbols from 0.9.8.1-1 buildlogs. * Add dh sequence pkgkde_symbolshelper. * Release to unstable. -- Maximiliano Curia Wed, 07 May 2014 14:16:04 +0200 libindi (0.9.8.1-1) experimental; urgency=medium * Update watch file. * New upstream release. * Remove patch: libdir.diff, applied by upstream. * Remove patch: setINDIproperty_mayhem_fix.diff, applied by upstream. * Remove patch: getINDIproperty_mayhem_fix.diff, applied by upstream. * Refresh patches. * Update build dependencies. * Bump libindidriver soversion. * Update symbols. * New lib package libindialignmentdriver0. * Install binary plugins in an arch-dependant dir. -- Maximiliano Curia Tue, 01 Apr 2014 17:57:49 +0200 ** Changed in: libindi (Ubuntu) Status: Confirmed => Fix Released -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1489411 Title: FFe libindi 1.0 sync from debian unstable To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/libindi/+bug/1489411/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1489411] [NEW] FFe libindi 1.0 sync from debian unstable
Public bug reported: The recently landed kstars 15.08 needs libindi 1.0 for telescope control. Fortunately there's only two other rdeps and they build just fine against libindi 1.0. Additionally libindi is already in debian unstable and can be synced from there discarding all our changes as the only difference with us were in patches and soversion. Regression impact should be really small from this. Test transition in https://launchpad.net/~apachelogger/+archive/ubuntu/stage/+packages ** Affects: libindi (Ubuntu) Importance: Undecided Status: Confirmed ** Description changed: The recently landed kstars 15.08 needs libindi 1.0 for telescope control. Fortunately there's only two other rdeps and they build just fine against libindi 1.0. Additionally libindi is already in debian unstable and can be synced from there discarding all our changes as the only difference with us were in patches and soversion. Regression impact should be really small from this. + + Test transition in + https://launchpad.net/~apachelogger/+archive/ubuntu/stage/+packages -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1489411 Title: FFe libindi 1.0 sync from debian unstable To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/libindi/+bug/1489411/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1489392] [NEW] FFE libkolab 1.0
Public bug reported: The recently landed kdepim-runtime and kdepim 15.08 require libkolab 1.0 to build the kolab tech. Unless we transition to a new libkolab we'll have feature regressions in the kdepim stack due to this. Fortunately kdepim* are the only rdeps of libkolab so transitioning is straight-forward. I therefore request a feature freeze exception. ** Affects: libkolab (Ubuntu) Importance: Undecided Status: New ** Summary changed: - FFE libkolab + FFE libkolab 1.0 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1489392 Title: FFE libkolab 1.0 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/libkolab/+bug/1489392/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1483550] Re: package pam-kwallet4 (not installed) failed to install/upgrade: försöker skriva över "/lib/x86_64-linux-gnu/security/pam_kwallet.so" som också finns i paketet pam-kwallet 0.0~git2014
https://launchpad.net/ubuntu/+source/kwallet-pam/4:5.3.95-0ubuntu2 ** Changed in: kwallet-pam (Ubuntu) Status: New => Fix Released -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1483550 Title: package pam-kwallet4 (not installed) failed to install/upgrade: försöker skriva över "/lib/x86_64-linux-gnu/security/pam_kwallet.so" som också finns i paketet pam-kwallet 0.0~git20140429-0ubuntu2 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/kwallet-pam/+bug/1483550/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1450137] Re: Qt5 applications crash when switching screens
Tried it, doesn't fix plasmashell exploding (not in the particular test case presented anyway). A bit of research suggests that this type of issue has multiple causes and is in fact only fixed by a combination of multiple commits (see the code review tabs on the bug reports below). The last bug in particular seems to carry the majority of relevant patches. https://bugreports.qt.io/browse/QTBUG-32973 https://bugreports.qt.io/browse/QTBUG-32681 https://bugreports.qt.io/browse/QTBUG-42985 I am not sure how to proceed on this. The additional patches seem to only affect qxcb such that they could only regress !phone apps (e.g. kubuntu-desktop). They are however numerous making this more work and more likely to cause regressions in other parts. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1450137 Title: Qt5 applications crash when switching screens To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/qtdeclarative-opensource-src/+bug/1450137/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1450137] Re: Qt5 applications crash when switching screens
** Description changed: + # Impact + When switching screens (e. g. when putting the laptop onto the docking station the notebook screen is turned off and the external one is turned on) Qt5 applications (including plasmashell) quite often crash. + + # Test Case + * Have two screens. One plugged-in one not + * Run plasma 5 + * Plug-in second screen and wait 10 seconds + * Unplug and wait 10 seconds + * Plug-in and wait 10 seconds + * Unplug and wait 10 seconds + * ... + + # Regression Potential + Worst case scenario an application using qquickscreen would slow down because of erroneous screen change singals being emitted too often per second. This would however only reveal a lower level issue in the foundations that ultimately needs to be fixed anyway. + + # Other Info + The upstream code review [1] explains the issue and solution pretty well. + + https://codereview.qt-project.org/#/c/00/ + + + - original report --- + When switching screens (e. g. when putting the laptop onto the docking station the notebook screen is turned off and the external one is turned on) Qt5 applications (including plasmashell) quite often crash. This makes my laptop unusable, since I do that very frequently. The problem has already been described here: https://bugs.kde.org/show_bug.cgi?id=341497 Apparently it is fixed in Qt 5.5 I am running Kubuntu 15.04 64bit and libqt5gui5 5.4.1+dfsg-2ubuntu4. ** Also affects: qtdeclarative-opensource-src (Ubuntu Wily) Importance: Medium Assignee: Timo Jyrinki (timo-jyrinki) Status: Confirmed -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1450137 Title: Qt5 applications crash when switching screens To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/qtdeclarative-opensource-src/+bug/1450137/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1450137] Re: Qt5 applications crash when switching screens
** No longer affects: plasma-workspace (Ubuntu) ** No longer affects: kwin (Ubuntu) ** Package changed: qtbase-opensource-src (Ubuntu) => qtdeclarative- opensource-src (Ubuntu) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1450137 Title: Qt5 applications crash when switching screens To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/qtdeclarative-opensource-src/+bug/1450137/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1451800] Re: Wish: Please provide an easy downgrade path to LTS
Impossible. There is absolutely zero technology backing for downgrades anywhere in the stack. ** Changed in: kubuntu-meta (Ubuntu) Status: New => Invalid -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1451800 Title: Wish: Please provide an easy downgrade path to LTS To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/kubuntu-meta/+bug/1451800/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1448929] Re: fix apt states
works as expected. ** Tags removed: verification-needed ** Tags added: verification-done -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1448929 Title: fix apt states To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/libqapt/+bug/1448929/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1422469] Re: Dolphin won't keep the folder shortcuts on Kubuntu 15.04 with Plasma 5.
[ubuntu/vivid-proposed] kdenlive 0.9.10-2ubuntu1.1 (Waiting for approval) I checked both codesearch.debian as well as lxr.kde to see if there are any other applications that directly access bookmarks.xml and there is nothing that would be negatively impacted by this SRU. ** Description changed: # Impact KDE software loses 'places' bookmarks when using KDE frameworks 5 and KDELibs4 software at the same time. In particular the default file manager Dolphin will have one of its by-default-visible features rendered useless by this and actively lose data the user created. ## Affects - kde4libs: which has a sync code that attempts to sync the XDG places file with the legacy KDE file. - kio (kf5): as it has the same syncing code as kde4libs. - kde-baseapps (specifically dolphin): as it is using the legacy KDE file while the rest of a plasma5 desktop would use the XDG places file. - kdenlive: has hardcoded file lookup for the old file to automatically inject its projects folder into the places list (not terribly important feature and actually has provisioning for the file not being found). # Test Case 1. Open Dolphin. 2. Select the folder you want in the Places shortcut on the left panel. 3. Drag and Drop the folder on the left panel in the "Places" section. 4. Restart the system. + + ## Kdenlive + Kdenlive has a bit of a different use case it injects itself into the list of places + - create new user + - start kdenlive and go through wizard + - file -> open + - places sidebar should contain an entry for kdenlive projects. # Regression Potential Somewhat potentially high unfortunately. The way this had to be resolved was by removing a piece of compatibility tech from kdelibs(4) that would attempt to sync the XDG places bookmarks with the kdelibs<=4 preferred kde-specific places file and instead always use the XDG file. This effectively means that the old places file will not get updated anymore. Applications that had its path hardcoded would use the wrong file and no longer show the same places list as the rest of the system. It is hard to assess whether we have any such application in the archive, but it is a risk worth taking considering we currently lose user data in one of the most obvious places. # Other Info ## Upstream references http://quickgit.kde.org/?p=kdelibs.git&a=commit&h=5c0a31a2f2a46aa44b8c34baae67b6951b2abcaf http://quickgit.kde.org/?p=kde-baseapps.git&a=commit&h=270d2affaafcc9e87ba14f82bfe579e22607e2d2 http://quickgit.kde.org/?p=kio.git&a=commit&h=e919daeb5b144b146dbf459fadb116729b866d21 ## Upstream Bug https://bugs.kde.org/show_bug.cgi?id=345174 original report Steps to reproduce: 1. Open Dolphin. 2. Select the folder you want in the Places shortcut on the left panel. 3. Drag and Drop the folder on the left panel in the "Places" section. 4. Restart the system. What Happens: Dolphin is set back to default places. What is expected: Dolphin displays the customize places shortcuts. I tried askubuntu, but they deleted my question as off-topic because Kubuntu 15.04 Vivid Vervet with Plasma 5 haven't been released. Aditional info is that this is not an upgrade, but a fresh install. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1422469 Title: Dolphin won't keep the folder shortcuts on Kubuntu 15.04 with Plasma 5. To manage notifications about this bug go to: https://bugs.launchpad.net/hundredpapercuts/+bug/1422469/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1422469] Re: Dolphin won't keep the folder shortcuts on Kubuntu 15.04 with Plasma 5.
** Bug watch added: KDE Bug Tracking System #347160 https://bugs.kde.org/show_bug.cgi?id=347160 ** Also affects: kdenlive via https://bugs.kde.org/show_bug.cgi?id=347160 Importance: Unknown Status: Unknown -- You received this bug notification because you are a member of Kubuntu Bugs, which is subscribed to kde4libs in Ubuntu. https://bugs.launchpad.net/bugs/1422469 Title: Dolphin won't keep the folder shortcuts on Kubuntu 15.04 with Plasma 5. To manage notifications about this bug go to: https://bugs.launchpad.net/hundredpapercuts/+bug/1422469/+subscriptions -- kubuntu-bugs mailing list kubuntu-b...@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs
[Bug 1422469] Re: Dolphin won't keep the folder shortcuts on Kubuntu 15.04 with Plasma 5.
** Also affects: kdenlive (Ubuntu) Importance: Undecided Status: New ** Description changed: # Impact KDE software loses 'places' bookmarks when using KDE frameworks 5 and KDELibs4 software at the same time. In particular the default file manager Dolphin will have one of its by-default-visible features rendered useless by this and actively lose data the user created. - This affects kde4libs which has a sync code that attempts to sync the - XDG places file with the legacy KDE file. - - This also affects kio (kf5) as it has the same syncing code as kde4libs. - - This also affects kde-baseapps (specifically dolphin) as it is using the - legacy KDE file while the rest of a plasma5 desktop would use the XDG - places file. + ## Affects + - kde4libs: which has a sync code that attempts to sync the XDG places file with the legacy KDE file. + - kio (kf5): as it has the same syncing code as kde4libs. + - kde-baseapps (specifically dolphin): as it is using the legacy KDE file while the rest of a plasma5 desktop would use the XDG places file. + - kdenlive: has hardcoded file lookup for the old file to automatically inject its projects folder into the places list (not terribly important feature and actually has provisioning for the file not being found). # Test Case 1. Open Dolphin. 2. Select the folder you want in the Places shortcut on the left panel. 3. Drag and Drop the folder on the left panel in the "Places" section. 4. Restart the system. # Regression Potential Somewhat potentially high unfortunately. The way this had to be resolved was by removing a piece of compatibility tech from kdelibs(4) that would attempt to sync the XDG places bookmarks with the kdelibs<=4 preferred kde-specific places file and instead always use the XDG file. This effectively means that the old places file will not get updated anymore. Applications that had its path hardcoded would use the wrong file and no longer show the same places list as the rest of the system. It is hard to assess whether we have any such application in the archive, but it is a risk worth taking considering we currently lose user data in one of the most obvious places. # Other Info ## Upstream references http://quickgit.kde.org/?p=kdelibs.git&a=commit&h=5c0a31a2f2a46aa44b8c34baae67b6951b2abcaf http://quickgit.kde.org/?p=kde-baseapps.git&a=commit&h=270d2affaafcc9e87ba14f82bfe579e22607e2d2 http://quickgit.kde.org/?p=kio.git&a=commit&h=e919daeb5b144b146dbf459fadb116729b866d21 ## Upstream Bug https://bugs.kde.org/show_bug.cgi?id=345174 original report Steps to reproduce: 1. Open Dolphin. 2. Select the folder you want in the Places shortcut on the left panel. 3. Drag and Drop the folder on the left panel in the "Places" section. 4. Restart the system. What Happens: Dolphin is set back to default places. What is expected: Dolphin displays the customize places shortcuts. I tried askubuntu, but they deleted my question as off-topic because Kubuntu 15.04 Vivid Vervet with Plasma 5 haven't been released. Aditional info is that this is not an upgrade, but a fresh install. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1422469 Title: Dolphin won't keep the folder shortcuts on Kubuntu 15.04 with Plasma 5. To manage notifications about this bug go to: https://bugs.launchpad.net/hundredpapercuts/+bug/1422469/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1422469] Re: Dolphin won't keep the folder shortcuts on Kubuntu 15.04 with Plasma 5.
[ubuntu/vivid-proposed] kde4libs 4:4.14.6-4~ubuntu3.1 (Waiting for approval) [ubuntu/vivid-proposed] kio 5.9.0-0ubuntu1.1 (Waiting for approval) [ubuntu/vivid-proposed] kde-baseapps 4:14.12.3-0ubuntu3.1 (Waiting for approval) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1422469 Title: Dolphin won't keep the folder shortcuts on Kubuntu 15.04 with Plasma 5. To manage notifications about this bug go to: https://bugs.launchpad.net/hundredpapercuts/+bug/1422469/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1422469] Re: Dolphin won't keep the folder shortcuts on Kubuntu 15.04 with Plasma 5.
** Description changed: + # Impact + KDE software loses 'places' bookmarks when using KDE frameworks 5 and KDELibs4 software at the same time. In particular the default file manager Dolphin will have one of its by-default-visible features rendered useless by this and actively lose data the user created. + + This affects kde4libs which has a sync code that attempts to sync the + XDG places file with the legacy KDE file. + + This also affects kio (kf5) as it has the same syncing code as kde4libs. + + This also affects kde-baseapps (specifically dolphin) as it is using the + legacy KDE file while the rest of a plasma5 desktop would use the XDG + places file. + + # Test Case + 1. Open Dolphin. + 2. Select the folder you want in the Places shortcut on the left panel. + 3. Drag and Drop the folder on the left panel in the "Places" section. + 4. Restart the system. + + # Regression Potential + Somewhat potentially high unfortunately. The way this had to be resolved was by removing a piece of compatibility tech from kdelibs(4) that would attempt to sync the XDG places bookmarks with the kdelibs<=4 preferred kde-specific places file and instead always use the XDG file. This effectively means that the old places file will not get updated anymore. Applications that had its path hardcoded would use the wrong file and no longer show the same places list as the rest of the system. It is hard to assess whether we have any such application in the archive, but it is a risk worth taking considering we currently lose user data in one of the most obvious places. + + # Other Info + + ## Upstream references + http://quickgit.kde.org/?p=kdelibs.git&a=commit&h=5c0a31a2f2a46aa44b8c34baae67b6951b2abcaf + http://quickgit.kde.org/?p=kde-baseapps.git&a=commit&h=270d2affaafcc9e87ba14f82bfe579e22607e2d2 + http://quickgit.kde.org/?p=kio.git&a=commit&h=e919daeb5b144b146dbf459fadb116729b866d21 + + ## Upstream Bug + https://bugs.kde.org/show_bug.cgi?id=345174 + + original report + Steps to reproduce: 1. Open Dolphin. 2. Select the folder you want in the Places shortcut on the left panel. 3. Drag and Drop the folder on the left panel in the "Places" section. 4. Restart the system. What Happens: Dolphin is set back to default places. What is expected: Dolphin displays the customize places shortcuts. I tried askubuntu, but they deleted my question as off-topic because Kubuntu 15.04 Vivid Vervet with Plasma 5 haven't been released. Aditional info is that this is not an upgrade, but a fresh install. ** No longer affects: kdelibs (Ubuntu) ** Also affects: kio (Ubuntu) Importance: Undecided Status: New ** Also affects: kde4libs (Ubuntu) Importance: Undecided Status: New ** No longer affects: kdelibs (Ubuntu Vivid) ** No longer affects: kdelibs (Ubuntu W-series) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1422469 Title: Dolphin won't keep the folder shortcuts on Kubuntu 15.04 with Plasma 5. To manage notifications about this bug go to: https://bugs.launchpad.net/hundredpapercuts/+bug/1422469/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1422469] Re: Dolphin won't keep the folder shortcuts on Kubuntu 15.04 with Plasma 5.
** No longer affects: kubuntu-meta (Ubuntu) ** Also affects: kdelibs (Ubuntu) Importance: Undecided Status: New ** Also affects: kde-baseapps (Ubuntu) Importance: Undecided Status: New ** Also affects: kdelibs (Ubuntu W-series) Importance: Undecided Status: New ** Also affects: kde-baseapps (Ubuntu W-series) Importance: Undecided Status: New ** Also affects: kdelibs (Ubuntu Vivid) Importance: Undecided Status: New ** Also affects: kde-baseapps (Ubuntu Vivid) Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1422469 Title: Dolphin won't keep the folder shortcuts on Kubuntu 15.04 with Plasma 5. To manage notifications about this bug go to: https://bugs.launchpad.net/hundredpapercuts/+bug/1422469/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1434226] Re: infinite recursion makes kded5 use excessive memory
I feel like this change needs a unit test -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1434226 Title: infinite recursion makes kded5 use excessive memory To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/kubuntu-notification-helper/+bug/1434226/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1436328] [NEW] FFe apport-kde qt5 port
Public bug reported: https://code.launchpad.net/~kubuntu-packagers/apport/qt5/+merge/254082 integrating the qt5 port would allow kubuntu to attempt dropping python- kde4 from the ISO reducing the oversizing quite a bit test by Jonathan Riddell and me and works very well. functionally nothing changed as far as the UI is concerned and under the hood all the happened was an almost straight qt4->qt5 port along with replacing now obsolete kde dependencies with their qt5 counterpart ** Affects: apport (Ubuntu) Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1436328 Title: FFe apport-kde qt5 port To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/apport/+bug/1436328/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1427225] [NEW] [FFe] qtwayland from debian NEW
Public bug reported: qtwayland is a Qt wrapper around wayland. It allows Qt applications to run in wayland sessions (weston etc.). It did not get in before our feature freeze because it wasn't in debian due to their freeze. We'd like to add it to Ubuntu to enable testing Qt applications in wayland environments. This is in particularly valuable as Plasma/KWin based wayland sessions are supposed to become testable some time in the not too distant future and being able to run any non-X11 bound Qt application is a great advantage there. ** Affects: ubuntu Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1427225 Title: [FFe] qtwayland from debian NEW To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+bug/1427225/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1415291] Re: KRecursiveFilterProxyModel: The model was not working properly
** Description changed: + [Impact] + KRecursiveFilterProxyModel fails to display items in various treemodel scenarios. More technical details to be found at https://git.reviewboard.kde.org/r/120119/ + + [Test Case] + * use every filter in KMail. Items should not be missing + * create Kate projects and filter them in the projectview. + + [Regression Potential] + Unlikely approved upstream, unit tested, adopted in Fedora already. Regressions would likely appear as filtering things that shouldn't be filtered in: kate, kmail, (akonadi?) imap subscription, knotes' config dialog, various akonadi GUIs. + + [Other Info] + N/A + + + Hi, This patch should be included as it fixes a critical bug in kdelibs which renders Kontact unable to show user data. The data is actually there, but not visible or accessible to the user, and therefore is often perceived as a data loss issue. The patch itself is small (-11/+5 lines), contained entirely in private code in the affected library, and comes with a unit test to ensure quality. There is a approved upstream review request to include: - https://git.reviewboard.kde.org/r/120119/ + https://git.reviewboard.kde.org/r/120119/ The bug it fixes continues to affect users. - So despite waiting for upstream response, it is already being packaged in Fedora packages as well as being shipped to large institutional users (at least one of which uses a Debian OS as the desktop client) by downstream + So despite waiting for upstream response, it is already being packaged in Fedora packages as well as being shipped to large institutional users (at least one of which uses a Debian OS as the desktop client) by downstream companies such as Kolab Systems. At debian it got into jessie http://bugs.debian.org/775114 By including this well-tested and already deployed patch, Ubuntu can ensure that users relying on Kontact working well (among other KDE applications which use this same functionality) will not need to go elsewhere (e.g. another downstream) for a patched version of the kdelibs package. Regads, sandro ** Changed in: kde4libs (Ubuntu) Importance: Undecided => Low ** Also affects: kde4libs (Ubuntu Trusty) Importance: Undecided Status: New ** Also affects: kde4libs (Ubuntu Vivid) Importance: Low Status: New ** Also affects: kde4libs (Ubuntu Utopic) Importance: Undecided Status: New ** Changed in: kde4libs (Ubuntu Utopic) Importance: Undecided => Low ** Changed in: kde4libs (Ubuntu Trusty) Importance: Undecided => Low -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1415291 Title: KRecursiveFilterProxyModel: The model was not working properly To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/kde4libs/+bug/1415291/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1377711]
Git commit ca47d57cd44f40bfe774ab2c15b442467cbca8b1 by Harald Sitter. Committed on 28/12/2014 at 19:12. Pushed by sitter into branch 'master'. run typeName string through QString as utf8 not latin1 it contains the localized name, not the latin1 base M +1-1src/dependencyinfo.cpp http://commits.kde.org/libqapt/ca47d57cd44f40bfe774ab2c15b442467cbca8b1 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1377711 Title: Muon displays garbled characters when zh_TW locale is used. To manage notifications about this bug go to: https://bugs.launchpad.net/muon/+bug/1377711/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1377711]
Please also get a screenshot of that same window in english. I am reasonable certain these are string that come out of apt-pkg, so unless we run it through a latinstring somewhere it's probably a bug outside our reach. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1377711 Title: Muon displays garbled characters when zh_TW locale is used. To manage notifications about this bug go to: https://bugs.launchpad.net/muon/+bug/1377711/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1205523]
Git commit 06daa82d426009f283b2cd4f15ed6bcef66a22b0 by Harald Sitter. Committed on 28/12/2014 at 19:16. Pushed by sitter into branch 'master'. do not discard the exitcode when installing a deb through dpkg exitstatus only has baring when dpkg segfaults etc, exitcode is the real deal when dpkg exits in a controlled manner but with error raising errors on exitcode!=0 is a requirement for allowing deb-installer to give consistent UI feedback M +1-3src/worker/aptworker.cpp http://commits.kde.org/libqapt/06daa82d426009f283b2cd4f15ed6bcef66a22b0 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1205523 Title: qapt-deb-installer fails to detect and report some installation errors To manage notifications about this bug go to: https://bugs.launchpad.net/qapt/+bug/1205523/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1205523]
Are you sure dpkg's behavior makes sense here? if I install a package that is arch:i386 on arch:amd64, arch:all really shouldn't mean arch:amd64. granted it's a bit of a corner case to begin with but it sounds somewhat weird. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1205523 Title: qapt-deb-installer fails to detect and report some installation errors To manage notifications about this bug go to: https://bugs.launchpad.net/qapt/+bug/1205523/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1395661] Re: Qt Webkit fails to build against Qt 5.4.0 on amd64 and powerpc
patch attached selectively disabling pch on amd64 and powerpc ** Patch added: "disablepch.patch" https://bugs.launchpad.net/ubuntu/+source/qtwebkit-opensource-src/+bug/1395661/+attachment/4282005/+files/disablepch.patch -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1395661 Title: Qt Webkit fails to build against Qt 5.4.0 on amd64 and powerpc To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/qtwebkit-opensource-src/+bug/1395661/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1351699] Re: Additional Drivers / Driver Manager shows no drivers for NVidia GTX 750ti - Missing modalias in nvidia-331.
** No longer affects: kubuntu-driver-manager (Ubuntu) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1351699 Title: Additional Drivers / Driver Manager shows no drivers for NVidia GTX 750ti - Missing modalias in nvidia-331. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-331/+bug/1351699/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1387705] Re: themes missing c32 links for utopic
Fix confirmed. ** Tags added: verification-done -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1387705 Title: themes missing c32 links for utopic To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/syslinux-themes-ubuntu/+bug/1387705/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1387709] Re: utopic+ syslinux defunct because of missing assets
Fix confirmed. ** Tags removed: verification-needed ** Tags added: verification-done -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1387709 Title: utopic+ syslinux defunct because of missing assets To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/live-build/+bug/1387709/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1387709] Re: utopic+ syslinux defunct because of missing assets
** Also affects: live-build (Ubuntu Vivid) Importance: Low Assignee: Harald Sitter (apachelogger) Status: Triaged ** Also affects: live-build (Ubuntu Utopic) Importance: Undecided Status: New ** Changed in: live-build (Ubuntu Utopic) Status: New => Triaged ** Changed in: live-build (Ubuntu Utopic) Importance: Undecided => Low ** Changed in: live-build (Ubuntu Utopic) Assignee: (unassigned) => Harald Sitter (apachelogger) ** Description changed: [Impact] Utopic's new gfxboot lost the ability to load data from outside the bootlogo archive, intead requiring all data to be in the archive itself. live-build needs to pack relevant data into the archive to get a working boot screen again. ubuntu-cdimage's workaround for this should be carried over, meaning live-build would simply generate the bootlogo archive as final step in lb_binary_syslinux. + There is also bug #1387705 which provides an obstacle to testing a + possible fix. + [Test Case] * sudo ubuntu-defaults-image --release utopic --package ubuntu-desktop --flavor ubuntu --components main,restricted,universe,multiverse * boot created iso [Regression Potential] - None comes to mind. Potentially live-build ISOs grow a bit in size + None comes to mind. Potentially live-build ISOs grow a bit in size since data would be duplicated ( [Other Info] - + n/a -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1387709 Title: utopic+ syslinux defunct because of missing assets To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/live-build/+bug/1387709/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1387705] Re: themes missing c32 links for utopic
** Also affects: syslinux-themes-ubuntu (Ubuntu Vivid) Importance: Low Assignee: Harald Sitter (apachelogger) Status: Triaged ** Also affects: syslinux-themes-ubuntu (Ubuntu Utopic) Importance: Undecided Status: New ** Changed in: syslinux-themes-ubuntu (Ubuntu Utopic) Status: New => Triaged ** Changed in: syslinux-themes-ubuntu (Ubuntu Utopic) Importance: Undecided => Low ** Changed in: syslinux-themes-ubuntu (Ubuntu Utopic) Assignee: (unassigned) => Harald Sitter (apachelogger) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1387705 Title: themes missing c32 links for utopic To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/syslinux-themes-ubuntu/+bug/1387705/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1387709] [NEW] utopic+ syslinux defunct because of missing assets
Public bug reported: [Impact] Utopic's new gfxboot lost the ability to load data from outside the bootlogo archive, intead requiring all data to be in the archive itself. live-build needs to pack relevant data into the archive to get a working boot screen again. ubuntu-cdimage's workaround for this should be carried over, meaning live-build would simply generate the bootlogo archive as final step in lb_binary_syslinux. [Test Case] * sudo ubuntu-defaults-image --release utopic --package ubuntu-desktop --flavor ubuntu --components main,restricted,universe,multiverse * boot created iso [Regression Potential] None comes to mind. Potentially live-build ISOs grow a bit in size since data would be duplicated ( [Other Info] n/a ** Affects: live-build (Ubuntu) Importance: Low Assignee: Harald Sitter (apachelogger) Status: Triaged -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1387709 Title: utopic+ syslinux defunct because of missing assets To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/live-build/+bug/1387709/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1387705] [NEW] themes missing c32 links for utopic
Public bug reported: [Impact] In utopic more c32 files need linking to ensure live-build can come up with a working syslinux installation. Without the additional links live- build and thus ubuntu-defaults-image will create ISOs with a disfunct syslinux erroring out when trying to load the c32s in question. This does not affect ubuntu-cdimage as that one copies specific c32s manually. The fix for this problem is to link all c32s ubuntu-cdimage copies. [Test Case] * sudo ubuntu-defaults-image --release utopic --package ubuntu-desktop --flavor ubuntu --components main,restricted,universe,multiverse * boot created iso [Regression Potential] * None that comes to mind [Other Info] n/a ** Affects: syslinux-themes-ubuntu (Ubuntu) Importance: Low Assignee: Harald Sitter (apachelogger) Status: Triaged ** Changed in: syslinux-themes-ubuntu (Ubuntu) Assignee: (unassigned) => Harald Sitter (apachelogger) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1387705 Title: themes missing c32 links for utopic To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/syslinux-themes-ubuntu/+bug/1387705/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1157742] Re: [needs-packaging] sddm
Sorta kinda resolved, landed in kubuntu-next ppa. To be landed in official archive along Plasma 5 ** Changed in: ubuntu Status: In Progress => Fix Released -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1157742 Title: [needs-packaging] sddm To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+bug/1157742/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1309955] Re: kwalletd appears in the system monitor as "zombie"
Seems very appropriate for halloween. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1309955 Title: kwalletd appears in the system monitor as "zombie" To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/kwalletmanager/+bug/1309955/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1375088] Re: kubuntu-devel-release-upgrade crashes with TypeError
Uploaded fix to utopic. ** Changed in: ubuntu-release-upgrader (Ubuntu) Status: Confirmed => Fix Committed -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1375088 Title: kubuntu-devel-release-upgrade crashes with TypeError To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/1375088/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1375088] Re: kubuntu-devel-release-upgrade crashes with TypeError
** Changed in: ubuntu-release-upgrader (Ubuntu) Importance: Undecided => High ** Changed in: ubuntu-release-upgrader (Ubuntu) Milestone: None => ubuntu-14.10 ** Changed in: ubuntu-release-upgrader (Ubuntu) Assignee: (unassigned) => Harald Sitter (apachelogger) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1375088 Title: kubuntu-devel-release-upgrade crashes with TypeError To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/1375088/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1381898] [NEW] wrap-and-sort eats package stanzas
Public bug reported: When two package stanzas in debian/control are divided by a whitespace- line rather than an empty line i.e. "\n \n" instead of "\n\n" wrap-and-sort fails to parse the control file and instead swallows one of the packages. It should: a) not fail to parse that to begin with, since dpkg itself accepts this just fine b) not remove duplicated fields in a stanza but error out refusing to do the sort at all b-1) alternatively the tool should be renamed to wrap-and-sort-and-cleanup Also see https://lists.ubuntu.com/archives/kubuntu- devel/2014-September/008753.html ProblemType: Bug DistroRelease: Ubuntu 14.10 Package: devscripts 2.14.6 [modified: usr/bin/wrap-and-sort] ProcVersionSignature: Ubuntu 3.16.0-22.29-generic 3.16.4 Uname: Linux 3.16.0-22-generic x86_64 NonfreeKernelModules: nvidia ApportVersion: 2.14.7-0ubuntu6 Architecture: amd64 CurrentDesktop: KDE Date: Thu Oct 16 08:29:01 2014 InstallationDate: Installed on 2013-10-29 (351 days ago) InstallationMedia: Kubuntu 13.10 "Saucy Salamander" - Release amd64 (20131016.1) SourcePackage: devscripts UpgradeStatus: No upgrade log present (probably fresh install) ** Affects: devscripts (Ubuntu) Importance: Undecided Status: Confirmed ** Tags: amd64 apport-bug utopic -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1381898 Title: wrap-and-sort eats package stanzas To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/devscripts/+bug/1381898/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1378789] Re: [SRU] Set the default IO scheduler to CFQ in Kubuntu Trusty
FTR, I am with Riddell, waiting until after relase seems overly cautious. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1378789 Title: [SRU] Set the default IO scheduler to CFQ in Kubuntu Trusty To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/kubuntu-settings/+bug/1378789/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1378789] Re: [SRU] Set the default IO scheduler to CFQ in Kubuntu Trusty
system administrators can choose a different scheduler if they so wish. cfq is the kernel default hence probably better tested by everyone in the world than deadline. also since a quick web search suggests that deadline only offers better performance in database/server scenarios I doubt what is set in kubuntu- settings will have any reasonable impact on anything other than baloo. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1378789 Title: [SRU] Set the default IO scheduler to CFQ in Kubuntu Trusty To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/kubuntu-settings/+bug/1378789/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1378789] Re: [SRU] Set the default IO scheduler to CFQ in Kubuntu Trusty
(wearing both my kubuntu and kde dev hat) Super important bug. It can make IO come to a crawl making desktop systems unusable on rationale media, which in turn makes users unhappy, users complain to upstream, user complain to us, users complain to users. This is not good. It makes people waste time on a perfectly solvable issue, it annoys both upstream and kubuntu developers. All in all this gives a bad impression and must absolutely be resolved, in particular since 14.04 is a LTS release. Having people's systems come to a crawl every once in a while until the next LTS comes out is absolutely not acceptable. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1378789 Title: [SRU] Set the default IO scheduler to CFQ in Kubuntu Trusty To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/kubuntu-settings/+bug/1378789/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1371043] [NEW] gdb --batch broken since 7.8
Public bug reported: GDB 7.8 has a broken --batch functionality. In batch mode gdb is not able to fetch a proper backtrace and instead prints two garbled frames that have nothing to do with the actual process (always two apparently). It works perfectly fine when one runs gdb without batch and runs the exactly same commands. This breaks all KDE software backtracing/crash bug reporting! # How to reproduce echo "thread apply all bt" > /tmp/instr gdb --batch -x /tmp/instr -p `pidof kate` /usr/bin/kate | | v Thread 1 (process 23159): #0 0x7ff7ffafb39d in ?? () #1 0x in ?? () ** Affects: gdb (Ubuntu) Importance: High Status: New ** Tags: kubuntu -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1371043 Title: gdb --batch broken since 7.8 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gdb/+bug/1371043/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1370170] Re: knetworkmanager is starting with --no-hosts
** Package changed: knetworkmanager (Ubuntu) => network-manager (Ubuntu) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1370170 Title: knetworkmanager is starting with --no-hosts To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/1370170/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1369220] Re: lightdm: PAM adding faulty module: pam_kwallet.so
You'd get the same message if gnome-keyring wasn't installed. From what I understand this is really more of a PAM thing really, as PAM decides to be verbose when optional modules are not found (which IMHO makes a lot of sense). ** Package changed: pam-kwallet (Ubuntu) => pam (Ubuntu) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1369220 Title: lightdm: PAM adding faulty module: pam_kwallet.so To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pam/+bug/1369220/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1367618] Re: Muon accesses api.opendesktop.org without informing the user
Not a bug. It access opendesktop to update plasma widgets and whatnot. ** Changed in: muon (Ubuntu) Status: New => Invalid -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1367618 Title: Muon accesses api.opendesktop.org without informing the user To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/muon/+bug/1367618/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1362752] Re: no SDDM autologin even if ubiquity box is set
it appears to me that the patch needs to be made against the ubuntu user-setup bzr branch as ubiquity itself only pulls it into the tarball apparently -- You received this bug notification because you are a member of Kubuntu Bugs, which is subscribed to Kubuntu PPA. https://bugs.launchpad.net/bugs/1362752 Title: no SDDM autologin even if ubiquity box is set To manage notifications about this bug go to: https://bugs.launchpad.net/kubuntu-ppa/+bug/1362752/+subscriptions -- kubuntu-bugs mailing list kubuntu-b...@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs
[Bug 1362752] Re: no SDDM autologin even if ubiquity box is set
Shouldn't set uid, shouldn't set session -- You received this bug notification because you are a member of Kubuntu Bugs, which is subscribed to Kubuntu PPA. https://bugs.launchpad.net/bugs/1362752 Title: no SDDM autologin even if ubiquity box is set To manage notifications about this bug go to: https://bugs.launchpad.net/kubuntu-ppa/+bug/1362752/+subscriptions -- kubuntu-bugs mailing list kubuntu-b...@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs
[Bug 1296711]
Please check that the test case here: https://bugs.launchpad.net/ubuntu/+source/libqapt/+bug/1358291/comments/2 is what you experience and whether the test case actually succeeds with the patched version. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1296711 Title: Muon refuses to uninstall/purge packages. Synaptic can remove them just fine. To manage notifications about this bug go to: https://bugs.launchpad.net/muon/+bug/1296711/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1296711]
Does it always fail for bluez-alsa? (i.e. would it fail if you try to remove it right after starting muon?) If not please file a new bug because what you are seeing is the cache getting confused. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1296711 Title: Muon refuses to uninstall/purge packages. Synaptic can remove them just fine. To manage notifications about this bug go to: https://bugs.launchpad.net/muon/+bug/1296711/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1363629] Re: Sync grantlee 0.4.0-2 (main) from Debian unstable (main)
This bug was fixed in the package grantlee - 0.4.0-2 --- grantlee (0.4.0-2) unstable; urgency=medium * Upload to unstable. -- Maximiliano Curia Mon, 21 Jul 2014 09:53:27 +0200 grantlee (0.4.0-1) experimental; urgency=low * New upstream release: - the provided jQuery (for an example) has been updated and it is provided in uncompressed form (Closes: #710215) * Bump the cmake build dependency to 2.8.9. * Update the patches: - variantIsTrue-float-fix.diff: remove applied parts - testinternationalization-qreal.diff: remove, applied upstream * Update .install files. * Bump Standards-Version to 3.9.5, no changes required. * Convert copyright to copyright-format v1.0, and update it. * Bump default priority of all packages (except grantlee-dbg) to optional. -- Pino Toscano Sun, 08 Dec 2013 11:19:44 +0100 ** Changed in: grantlee (Ubuntu) Status: New => Fix Released -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1363629 Title: Sync grantlee 0.4.0-2 (main) from Debian unstable (main) To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/grantlee/+bug/1363629/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1353901] Re: Please update plasma-nm to 0.9.3.4
** Changed in: plasma-nm (Ubuntu) Status: New => Invalid -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1353901 Title: Please update plasma-nm to 0.9.3.4 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/plasma-nm/+bug/1353901/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1353898] Re: Please update plasma-nm to 0.9.3.4a
** Changed in: plasma-nm (Ubuntu) Status: New => Invalid -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1353898 Title: Please update plasma-nm to 0.9.3.4a To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/plasma-nm/+bug/1353898/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1346234] Re: Allow running updates without authentication
Ah, I must have misunderstood your reuqest then. Sorry for that. Generally speaking an update entails *removing* one version of a package and *installing* a newer version of the same package. There is nothing that functionally sets apart an update from any other package installation or removal, which is why they all eventually get piped through the same dbus call. Technically of course one could sort of differentiate between install/remove and update on a very high level, but to a very limited extent which simply put is: you don't authenticate for as long as a the whole batch of available updates can be cleanly updated. As soon as an update requires any sort of interaction you need to authenticate to do anything. So this is pretty much not useful unless you can garuntee that updates never require the removal or installation of a new package which we cannot. Also, with regards to security we do not ever update automatically in background unless the system was configured to do so and making this configuration in turn again requires an admin user to authenticate by password. So, I fear while it might be technically possible the cost-to-benefit ratio is not terrible good for such a feature. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1346234 Title: Allow running updates without authentication To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/libqapt/+bug/1346234/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1346234] Re: Allow running updates without authentication
This needed to be dicussed on ubuntu-devel-discuss and changed for all package managers (and sudo whitelist them respectively) to retain similar behavior on all versions of Ubuntu. I am reasonable certain the idea will get dismissed though. An update action is pretty much the same as install/remove, so what you are suggesting is to allow all admin users to install/remove stuff without first verifying whether the person in front of the computer is actually the person who owns the account. Personally I find that extremely questionable from a security and system integrity perspective. -- You received this bug notification because you are a member of Kubuntu Bugs, which is subscribed to libqapt in Ubuntu. https://bugs.launchpad.net/bugs/1346234 Title: Allow running updates without authentication To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/libqapt/+bug/1346234/+subscriptions -- kubuntu-bugs mailing list kubuntu-b...@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs