[Touch-packages] [Bug 2004092] Re: casper fails to add any users because GID 999 is already taken

2023-01-28 Thread Steve Langasek
> systemd-journald now uses GID 999

Ummm where is this coming from?  Debian Policy states:

9.2.2. UID and GID classes
--
[...]

100-999:
   Dynamically allocated system users and groups. Packages which need
   a user or group, but can have this user or group allocated
   dynamically and differently on each system, should use "adduser
   --system" to create the group and/or user. "adduser" will check for
   the existence of the user or group, and if necessary choose an
   unused id based on the ranges specified in "adduser.conf".

I see no addgroup calls in the systemd maintainer scripts.  And in a
lunar container created before systemd 252 was uploaded, I see systemd-
journald created as group 101.  This appears to be happening via
/usr/lib/sysusers.d/systemd-journal.conf.

I think it is a bug in systemd to be bypassing the process specified in
Debian Policy.

> Rather than going through the painstaking task of updating systemd
> to use a *different* user, let's just update casper to use 1000,
> which is the first dynamically-allocated user account per Debian
> Policy[1].

This is the GID expected to be used for the first user created on the
target system.  It's not clear to me that changing the casper user to
use this uid won't badly confuse the installer when it comes time to
create the actual user account, or at least cause gid 1000 to be
skipped.

** Also affects: systemd (Ubuntu)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to systemd in Ubuntu.
https://bugs.launchpad.net/bugs/2004092

Title:
  casper fails to add any users because GID 999 is already taken

Status in casper package in Ubuntu:
  Fix Committed
Status in systemd package in Ubuntu:
  New

Bug description:
  This bug is due to the latest systemd upload in Ubuntu. systemd-
  journald now uses GID 999, when casper explicitly sets the live user
  to that UID and GID.

  Rather than going through the painstaking task of updating systemd to
  use a *different* user, let's just update casper to use 1000, which is
  the first dynamically-allocated user account per Debian Policy[1].

  [1] https://www.debian.org/doc/debian-policy/ch-opersys.html#uid-and-
  gid-classes

  [ Original Report ]

  Normally, when one first boots a live ISO, a desktop automatically
  appears, asking users if they want to try or install Ubuntu (or, in
  the case of Lubuntu, they are simply dropped into a working desktop
  with an installation desktop icon available). As of the Lubuntu ISO on
  January 27, 2023, this has stopped occuring. Plymouth shows the
  initial boot animation, but the user is then dropped to a solid black
  screen. No user input is accepted. Attempting to switch to a TTY and
  sign in fails with the default "lubuntu" username and a blank password
  (the error "Login incorrect" is displayed).

  On Ubuntu Desktop, the behavior is even stranger. Rather than being
  shown a "Try or Install Ubuntu" screen, an initial system setup wizard
  appears that takes the user through the process of creating a user
  account. On a live ISO. Only after this wizard is finished does the
  "Try or Install Ubuntu" screen appear. Attempting to log into a TTY
  using the default "ubuntu" username and a blank password fails the
  same way as Lubuntu does, if done before the wizard is finished.
  However, one can log into a TTY if they finish the wizard and then
  attempt to log into the TTY using the credentials provided during user
  account setup.

  This issue affects at least the Lubuntu ISOs as of January 27, 2023,
  and the Ubuntu Desktop ISO at least as of January 28, 2023 (it is
  assumed that the 27th ISO for Ubuntu Desktop is also broken). The ISO
  from the 26th is most likely unaffected as there is successful testing
  information for Lubuntu on the 26th, so something likely happened
  between the 26th and the 27th to cause this breakage.

  Steps to reproduce:

  1. Download the latest Lunar daily ISO of Ubuntu Desktop or Lubuntu.
  2. Boot the ISO (hardware is irrelevant - this appears to occur on both 
physical and virtual hardware).

  For Lubuntu:

  3. Wait until you are dropped to a black, blank screen.
  4. Wait a while, then attempt to switch to a TTY and attempt to log in using 
"lubuntu" as the username and a blank password. The login attempt will be 
denied.

  For Ubuntu Desktop:

  3. Wait until you are provided with an initial system setup wizard.
  4. Switch to a TTY and attempt to log in using "ubuntu" as the username and a 
blank password. The login attempt will be denied.
  5. Switch back to the system setup wizard, and complete it.
  6. After completing the wizard, switch to a TTY again and attempt to log in 
using the credentials provided to the wizard. The login attempt will be 
successful.

To manage notifications about this bug go to:

[Touch-packages] [Bug 1995236] Re: Xsessions has_option code error with fix

2023-01-28 Thread Launchpad Bug Tracker
[Expired for xorg (Ubuntu) because there has been no activity for 60
days.]

** Changed in: xorg (Ubuntu)
   Status: Incomplete => Expired

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1995236

Title:
  Xsessions has_option code error with fix

Status in xorg package in Ubuntu:
  Expired

Bug description:
  Jammy Jellyfish 22.04.1 LTS and others. There have been numerous bug
  reports and failed fixes for this over several years and releases.

  There are a couple of problems in /etc/X11/Xsessions where it fails to
  handle options, causing bogus error messages and, doubtless, many
  errors.

  The first bug is that the entire options file, including comments, is
  read into a variable.

  Where the variable "OPTIONS" is assigned;

  Replacing "cat" with "grep" strips out comments and blank lines;

  $ diff Xsession Xsession.orig 
  65c65
  < grep -v "^\s*\#\|^\s*$" "$OPTIONFILE"
  ---
  > cat "$OPTIONFILE"

  The second problem is that checking for a non-existent directory
  inside a command substitution does not work.  It just appends garbage
  onto the output string.

  That is probably a bug in BASH, but I defer to your opinion there.

  The immediate work around is to create an empty directory so that the
  test does not fail.  Better still, force the creation of the directory
  and remove the test.

  
  eg. change this;

  OPTIONS="$(
if [ -r "$OPTIONFILE" ]; then
  cat "$OPTIONFILE"
fi
if [ -d /etc/X11/Xsession.options.d ]; then
  run-parts --list --regex '\.conf$' /etc/X11/Xsession.options.d | xargs -d 
'\n' cat
fi
  )"

  to this;

  OPTIONSDIR=/etc/X11/Xsession.options.d
  mkdir --parents ${OPTIONSDIR}
  OPTIONS="$(
if [ -r "$OPTIONFILE" ]; then
  grep -v "^\s*\#\|^\s*$" "$OPTIONFILE"
fi
run-parts --list --regex '\.conf$' /etc/X11/Xsession.options.d | xargs -d 
'\n' cat
  )"

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: xorg 1:7.7+23ubuntu2
  ProcVersionSignature: Ubuntu 5.15.0-52.58-generic 5.15.60
  Uname: Linux 5.15.0-52-generic x86_64
  .tmp.unity_support_test.0:
   
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CasperMD5CheckResult: pass
  CompositorRunning: None
  CurrentDesktop: XFCE
  Date: Mon Oct 31 16:33:14 2022
  DistUpgraded: Fresh install
  DistroCodename: jammy
  DistroVariant: ubuntu
  DkmsStatus:
   virtualbox/6.1.38, 5.15.0-362206031516-generic, x86_64: installed
   virtualbox/6.1.38, 5.15.0-52-generic, x86_64: installed
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] Raven Ridge [Radeon Vega Series / 
Radeon Vega Mobile Series] [1002:15dd] (rev c8) (prog-if 00 [VGA controller])
 Subsystem: Advanced Micro Devices, Inc. [AMD/ATI] Raven Ridge [Radeon Vega 
Series / Radeon Vega Mobile Series] [1002:15dd]
  InstallationDate: Installed on 2022-10-20 (11 days ago)
  InstallationMedia: Kubuntu 22.04.1 LTS "Jammy Jellyfish" - Release amd64 
(20220809.1)
  MachineType: Micro-Star International Co., Ltd. MS-7B89
  ProcKernelCmdLine: ro root=PARTUUID=1c70e394-574c-46cc-a65e-a402f0e077d4 
fbcon=rotate:2 initrd=\initrd.img
  SourcePackage: xorg
  Symptom: display
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 02/01/2021
  dmi.bios.release: 5.17
  dmi.bios.vendor: American Megatrends International, LLC.
  dmi.bios.version: 2.C0
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: B450M MORTAR MAX (MS-7B89)
  dmi.board.vendor: Micro-Star International Co., Ltd.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: To be filled by O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: Micro-Star International Co., Ltd.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInternational,LLC.:bvr2.C0:bd02/01/2021:br5.17:svnMicro-StarInternationalCo.,Ltd.:pnMS-7B89:pvr1.0:rvnMicro-StarInternationalCo.,Ltd.:rnB450MMORTARMAX(MS-7B89):rvr1.0:cvnMicro-StarInternationalCo.,Ltd.:ct3:cvr1.0:skuTobefilledbyO.E.M.:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: MS-7B89
  dmi.product.sku: To be filled by O.E.M.
  dmi.product.version: 1.0
  dmi.sys.vendor: Micro-Star International Co., Ltd.
  version.compiz: compiz 1:0.9.14.1+22.04.20220820-0ubuntu1
  version.libdrm2: libdrm2 2.4.110-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 22.0.5-0ubuntu0.1
  version.libgl1-mesa-glx: libgl1-mesa-glx 22.0.5-0ubuntu0.1
  version.xserver-xorg-core: xserver-xorg-core 2:21.1.3-2ubuntu2.2
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:19.1.0-2ubuntu1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20210115-1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.17-2build1

To manage notifications about this bug go 

[Touch-packages] [Bug 1958084] Re: Please apply the upstream commit to drop Bitstream Vera fonts

2023-01-28 Thread Gunnar Hjalmarsson
Fixed also in Ubuntu.

** Changed in: fontconfig (Ubuntu)
   Status: New => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to fontconfig in Ubuntu.
https://bugs.launchpad.net/bugs/1958084

Title:
  Please apply the upstream commit to drop Bitstream Vera fonts

Status in fontconfig package in Ubuntu:
  Fix Released
Status in fontconfig package in Debian:
  Fix Released

Bug description:
  Upstream dropped Bitstream Vera fonts, please apply that fix in the
  Ubuntu package.

  
https://gitlab.freedesktop.org/fontconfig/fontconfig/-/commit/fcb042028126d79ea5a5fa015b2b034b98656e73

  Rationale:

  DejaVu font extends the Bitstream Vera font, and is already installed
  by default. Besides, the Bitstream Vera font is very obsolete, looks
  worse than DejaVu and sometimes as a negative side effect it takes
  over as a default font when installed (without DejaVu).

  After applying the upstream fix, this Ubuntu patch becomes obsolete 
(03_prefer_dejavu.patch):
  
https://git.launchpad.net/ubuntu/+source/fontconfig/tree/debian/patches/03_prefer_dejavu.patch

  You may also think about updating the whole package to an up-to-date
  snapshot, since the last Debian/Ubuntu version update was in 2018.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/fontconfig/+bug/1958084/+subscriptions


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


Re: [Touch-packages] [Bug 1983794] Please test proposed package

2023-01-28 Thread Lindsay
On Fri, 2023-01-27 at 17:06 +, Timo Aaltonen wrote:
> Please help us by testing this new package.

On first look, it does the Right Things in Evolution here with regard
to autosave files. Don't know about the system sounds since I don't pay
attention to these.

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to libcanberra in Ubuntu.
https://bugs.launchpad.net/bugs/1983794

Title:
  Evolution not deleting autosave files

Status in Evolution:
  Fix Released
Status in evolution package in Ubuntu:
  Invalid
Status in libcanberra package in Ubuntu:
  Fix Released
Status in libcanberra source package in Jammy:
  Fix Committed
Status in evolution source package in Kinetic:
  New
Status in libcanberra source package in Kinetic:
  Fix Committed

Bug description:
  [ Impact ]

  Autosave files are not removed from evolution local state directories
  (and windows leaked)

  
  [ Test case ]

  1. Open evolution, and start to compose a new email
  2. Write enough text and wait few minutes so that this command returns a file
 ls -l ~/.local/share/evolution/.evolution-composer.autosave-*
  3. Close the email composer window, hitting "Do not save"
  4. ls -l ~/.local/share/evolution/.evolution-composer.autosave-* should list 
no files
  5. Opening and closing again evolution should not ask to restore the previous 
email

  
  [ Regression potential ]

  No sounds could be performed during some UI actions

  ---

  Running Ubuntu MATE, Ubuntu 22.04.1 LTS. Evolution v3.44.1-0ubuntu1
  was installed with the distribution on a new system and received
  settings imported from an earlier version on another computer.

  When composing an email, if the process takes long enough an autosave
  file is created as ~/.local/share/evolution/.evolution-
  composer.autosave-xx ("xx" is a random 6 character string).
  When the email is successfully sent, the autosave file SHOULD be
  deleted. It's not. When evolution is shut down and restarted I'm asked
  if I want to recover an unfinished email. Answering No to this will
  delete the autosave file, but otherwise it persists and the recovery
  query recurs the next time I open evolution.

  Other people are having the same issue, see
  https://gitlab.gnome.org/GNOME/evolution/-/issues/1972. The Gnome
  people aren't dealing with it, perhaps considering it a distro-
  specific bug.

  On a system used by many people this is a potential security issue.

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution/+bug/1983794/+subscriptions


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 2004080] [NEW] package ubuntu-minimal 1.481 failed to install/upgrade: problemas de dependência - deixando desconfigurado

2023-01-28 Thread Layon Oliveira
Public bug reported:

I was installing ubuntu 22.04 and on the final step, I've pressed the
ctrl + C button in order to copy one information. Unfortunately, the
update process stoped, and I got an error saying I have something to do
about dpkg or something.

ProblemType: Package
DistroRelease: Ubuntu 22.04
Package: ubuntu-minimal 1.481
ProcVersionSignature: Ubuntu 5.14.0-1056.63-oem 5.14.21
Uname: Linux 5.14.0-1056-oem x86_64
ApportVersion: 2.20.11-0ubuntu82.3
Architecture: amd64
CasperMD5CheckResult: unknown
Date: Sat Jan 28 14:43:25 2023
DistributionChannelDescriptor:
 # This is the distribution channel descriptor for the OEM CDs
 # For more information see http://wiki.ubuntu.com/DistributionChannelDescriptor
 canonical-oem-somerville-focal-amd64-20200502-85
ErrorMessage: problemas de dependência - deixando desconfigurado
InstallationDate: Installed on 2023-01-25 (3 days ago)
InstallationMedia: Ubuntu 20.04 "Focal" - Build amd64 LIVE Binary 20200502-05:58
Python3Details: /usr/bin/python3.10, Python 3.10.6, python3-minimal, 
3.10.6-1~22.04
PythonDetails: N/A
RebootRequiredPkgs: Error: path contained symlinks.
RelatedPackageVersions:
 dpkg 1.21.1ubuntu2.1
 apt  2.4.8
SourcePackage: ubuntu-meta
Title: package ubuntu-minimal 1.481 failed to install/upgrade: problemas de 
dependência - deixando desconfigurado
UpgradeStatus: Upgraded to jammy on 2023-01-28 (0 days ago)

** Affects: ubuntu-meta (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package jammy

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to ubuntu-meta in Ubuntu.
https://bugs.launchpad.net/bugs/2004080

Title:
  package ubuntu-minimal 1.481 failed to install/upgrade: problemas de
  dependência - deixando desconfigurado

Status in ubuntu-meta package in Ubuntu:
  New

Bug description:
  I was installing ubuntu 22.04 and on the final step, I've pressed the
  ctrl + C button in order to copy one information. Unfortunately, the
  update process stoped, and I got an error saying I have something to
  do about dpkg or something.

  ProblemType: Package
  DistroRelease: Ubuntu 22.04
  Package: ubuntu-minimal 1.481
  ProcVersionSignature: Ubuntu 5.14.0-1056.63-oem 5.14.21
  Uname: Linux 5.14.0-1056-oem x86_64
  ApportVersion: 2.20.11-0ubuntu82.3
  Architecture: amd64
  CasperMD5CheckResult: unknown
  Date: Sat Jan 28 14:43:25 2023
  DistributionChannelDescriptor:
   # This is the distribution channel descriptor for the OEM CDs
   # For more information see 
http://wiki.ubuntu.com/DistributionChannelDescriptor
   canonical-oem-somerville-focal-amd64-20200502-85
  ErrorMessage: problemas de dependência - deixando desconfigurado
  InstallationDate: Installed on 2023-01-25 (3 days ago)
  InstallationMedia: Ubuntu 20.04 "Focal" - Build amd64 LIVE Binary 
20200502-05:58
  Python3Details: /usr/bin/python3.10, Python 3.10.6, python3-minimal, 
3.10.6-1~22.04
  PythonDetails: N/A
  RebootRequiredPkgs: Error: path contained symlinks.
  RelatedPackageVersions:
   dpkg 1.21.1ubuntu2.1
   apt  2.4.8
  SourcePackage: ubuntu-meta
  Title: package ubuntu-minimal 1.481 failed to install/upgrade: problemas de 
dependência - deixando desconfigurado
  UpgradeStatus: Upgraded to jammy on 2023-01-28 (0 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-meta/+bug/2004080/+subscriptions


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1983794] Re: Evolution not deleting autosave files

2023-01-28 Thread miguelquiros
I am using Ubuntu 22.04.1 LTS

Best wishes.

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to libcanberra in Ubuntu.
https://bugs.launchpad.net/bugs/1983794

Title:
  Evolution not deleting autosave files

Status in Evolution:
  Fix Released
Status in evolution package in Ubuntu:
  Invalid
Status in libcanberra package in Ubuntu:
  Fix Released
Status in libcanberra source package in Jammy:
  Fix Committed
Status in evolution source package in Kinetic:
  New
Status in libcanberra source package in Kinetic:
  Fix Committed

Bug description:
  [ Impact ]

  Autosave files are not removed from evolution local state directories
  (and windows leaked)

  
  [ Test case ]

  1. Open evolution, and start to compose a new email
  2. Write enough text and wait few minutes so that this command returns a file
 ls -l ~/.local/share/evolution/.evolution-composer.autosave-*
  3. Close the email composer window, hitting "Do not save"
  4. ls -l ~/.local/share/evolution/.evolution-composer.autosave-* should list 
no files
  5. Opening and closing again evolution should not ask to restore the previous 
email

  
  [ Regression potential ]

  No sounds could be performed during some UI actions

  ---

  Running Ubuntu MATE, Ubuntu 22.04.1 LTS. Evolution v3.44.1-0ubuntu1
  was installed with the distribution on a new system and received
  settings imported from an earlier version on another computer.

  When composing an email, if the process takes long enough an autosave
  file is created as ~/.local/share/evolution/.evolution-
  composer.autosave-xx ("xx" is a random 6 character string).
  When the email is successfully sent, the autosave file SHOULD be
  deleted. It's not. When evolution is shut down and restarted I'm asked
  if I want to recover an unfinished email. Answering No to this will
  delete the autosave file, but otherwise it persists and the recovery
  query recurs the next time I open evolution.

  Other people are having the same issue, see
  https://gitlab.gnome.org/GNOME/evolution/-/issues/1972. The Gnome
  people aren't dealing with it, perhaps considering it a distro-
  specific bug.

  On a system used by many people this is a potential security issue.

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution/+bug/1983794/+subscriptions


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1962134] Re: Resolve "GStreamer-CRITICAL **: 13:33:23.770: gst_buffer_resize_range: assertion 'bufmax >= bufoffs + offset + size' failed" warning on gstreamer version 1.16 on ubu

2023-01-28 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: gstreamer1.0 (Ubuntu Focal)
   Status: New => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to gstreamer1.0 in Ubuntu.
https://bugs.launchpad.net/bugs/1962134

Title:
  Resolve "GStreamer-CRITICAL **: 13:33:23.770: gst_buffer_resize_range:
  assertion 'bufmax >= bufoffs + offset + size' failed" warning on
  gstreamer version 1.16 on ubuntu-20.04

Status in gstreamer1.0 package in Ubuntu:
  Fix Released
Status in gstreamer1.0 source package in Bionic:
  Confirmed
Status in gstreamer1.0 source package in Focal:
  Confirmed

Bug description:
  Following gstreamer critical warning observed on gstreamer version 1.16 on 
ubuntu-20.04 with nvidia specific gst-v4l2 decoder pipeline:
  "GStreamer-CRITICAL **: 13:33:23.770: gst_buffer_resize_range: assertion 
'bufmax >= bufoffs + offset + size' failed"

  It seems fix for the issue is already incorporated on gstreamer version 1.18 
with below:
  
https://gitlab.freedesktop.org/gstreamer/gstreamer/-/commit/a1b41b2b2493069365a8274c6a544e6799a5a8df

  We need to backport above fix on top of gst-1.16 on ubuntu-20.04 in
  order to have out-of-box fix available with default gstreamer-1.0
  version 1.16 on ubuntu-20.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gstreamer1.0/+bug/1962134/+subscriptions


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1962134] Re: Resolve "GStreamer-CRITICAL **: 13:33:23.770: gst_buffer_resize_range: assertion 'bufmax >= bufoffs + offset + size' failed" warning on gstreamer version 1.16 on ubu

2023-01-28 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: gstreamer1.0 (Ubuntu Bionic)
   Status: New => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to gstreamer1.0 in Ubuntu.
https://bugs.launchpad.net/bugs/1962134

Title:
  Resolve "GStreamer-CRITICAL **: 13:33:23.770: gst_buffer_resize_range:
  assertion 'bufmax >= bufoffs + offset + size' failed" warning on
  gstreamer version 1.16 on ubuntu-20.04

Status in gstreamer1.0 package in Ubuntu:
  Fix Released
Status in gstreamer1.0 source package in Bionic:
  Confirmed
Status in gstreamer1.0 source package in Focal:
  Confirmed

Bug description:
  Following gstreamer critical warning observed on gstreamer version 1.16 on 
ubuntu-20.04 with nvidia specific gst-v4l2 decoder pipeline:
  "GStreamer-CRITICAL **: 13:33:23.770: gst_buffer_resize_range: assertion 
'bufmax >= bufoffs + offset + size' failed"

  It seems fix for the issue is already incorporated on gstreamer version 1.18 
with below:
  
https://gitlab.freedesktop.org/gstreamer/gstreamer/-/commit/a1b41b2b2493069365a8274c6a544e6799a5a8df

  We need to backport above fix on top of gst-1.16 on ubuntu-20.04 in
  order to have out-of-box fix available with default gstreamer-1.0
  version 1.16 on ubuntu-20.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gstreamer1.0/+bug/1962134/+subscriptions


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1983794] Re: Evolution not deleting autosave files

2023-01-28 Thread Jeremy Bicha
You shouldn't build the package from source; it is already built in the
proposed updates repository.

miguelquiros, please specify what version of Ubuntu you are using. There
are proposed packages for both Ubuntu 22.04 LTS and Ubuntu 22.10
available now to fix this bug.

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to libcanberra in Ubuntu.
https://bugs.launchpad.net/bugs/1983794

Title:
  Evolution not deleting autosave files

Status in Evolution:
  Fix Released
Status in evolution package in Ubuntu:
  Invalid
Status in libcanberra package in Ubuntu:
  Fix Released
Status in libcanberra source package in Jammy:
  Fix Committed
Status in evolution source package in Kinetic:
  New
Status in libcanberra source package in Kinetic:
  Fix Committed

Bug description:
  [ Impact ]

  Autosave files are not removed from evolution local state directories
  (and windows leaked)

  
  [ Test case ]

  1. Open evolution, and start to compose a new email
  2. Write enough text and wait few minutes so that this command returns a file
 ls -l ~/.local/share/evolution/.evolution-composer.autosave-*
  3. Close the email composer window, hitting "Do not save"
  4. ls -l ~/.local/share/evolution/.evolution-composer.autosave-* should list 
no files
  5. Opening and closing again evolution should not ask to restore the previous 
email

  
  [ Regression potential ]

  No sounds could be performed during some UI actions

  ---

  Running Ubuntu MATE, Ubuntu 22.04.1 LTS. Evolution v3.44.1-0ubuntu1
  was installed with the distribution on a new system and received
  settings imported from an earlier version on another computer.

  When composing an email, if the process takes long enough an autosave
  file is created as ~/.local/share/evolution/.evolution-
  composer.autosave-xx ("xx" is a random 6 character string).
  When the email is successfully sent, the autosave file SHOULD be
  deleted. It's not. When evolution is shut down and restarted I'm asked
  if I want to recover an unfinished email. Answering No to this will
  delete the autosave file, but otherwise it persists and the recovery
  query recurs the next time I open evolution.

  Other people are having the same issue, see
  https://gitlab.gnome.org/GNOME/evolution/-/issues/1972. The Gnome
  people aren't dealing with it, perhaps considering it a distro-
  specific bug.

  On a system used by many people this is a potential security issue.

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution/+bug/1983794/+subscriptions


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1983794] Re: Evolution not deleting autosave files

2023-01-28 Thread miguelquiros
Updated packages from proposed repository.

In a quick first test, the bug has not shown up. If it does not appear
next days, we may consider the issue as solved.

Thanks.

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to libcanberra in Ubuntu.
https://bugs.launchpad.net/bugs/1983794

Title:
  Evolution not deleting autosave files

Status in Evolution:
  Fix Released
Status in evolution package in Ubuntu:
  Invalid
Status in libcanberra package in Ubuntu:
  Fix Released
Status in libcanberra source package in Jammy:
  Fix Committed
Status in evolution source package in Kinetic:
  New
Status in libcanberra source package in Kinetic:
  Fix Committed

Bug description:
  [ Impact ]

  Autosave files are not removed from evolution local state directories
  (and windows leaked)

  
  [ Test case ]

  1. Open evolution, and start to compose a new email
  2. Write enough text and wait few minutes so that this command returns a file
 ls -l ~/.local/share/evolution/.evolution-composer.autosave-*
  3. Close the email composer window, hitting "Do not save"
  4. ls -l ~/.local/share/evolution/.evolution-composer.autosave-* should list 
no files
  5. Opening and closing again evolution should not ask to restore the previous 
email

  
  [ Regression potential ]

  No sounds could be performed during some UI actions

  ---

  Running Ubuntu MATE, Ubuntu 22.04.1 LTS. Evolution v3.44.1-0ubuntu1
  was installed with the distribution on a new system and received
  settings imported from an earlier version on another computer.

  When composing an email, if the process takes long enough an autosave
  file is created as ~/.local/share/evolution/.evolution-
  composer.autosave-xx ("xx" is a random 6 character string).
  When the email is successfully sent, the autosave file SHOULD be
  deleted. It's not. When evolution is shut down and restarted I'm asked
  if I want to recover an unfinished email. Answering No to this will
  delete the autosave file, but otherwise it persists and the recovery
  query recurs the next time I open evolution.

  Other people are having the same issue, see
  https://gitlab.gnome.org/GNOME/evolution/-/issues/1972. The Gnome
  people aren't dealing with it, perhaps considering it a distro-
  specific bug.

  On a system used by many people this is a potential security issue.

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution/+bug/1983794/+subscriptions


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp