[Group.of.nepali.translators] [Bug 2038336] Re: xenial/linux-oracle: 4.15.0-1125.136~16.04.1 -proposed tracker

2023-10-11 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/boot-testing
   Status: In Progress => Fix Released

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  built:
from: de729927565eb0a9
route-entry: 2
  delta:
promote-to-proposed: [main, meta, signed, generate]
  flag:
boot-testing-requested: true
  issue: KSRU-10142
  kernel-stable-master-bug: 2038337
  packages:
generate: linux-generate-oracle
main: linux-oracle
meta: linux-meta-oracle
signed: linux-signed-oracle
- phase: Testing
- phase-changed: Thursday, 12. October 2023 03:26 UTC
+ phase: Holding before Promote to Proposed
+ phase-changed: Thursday, 12. October 2023 05:01 UTC
  reason:
-   boot-testing: Ongoing -s testing in progress
new-review: Stalled -s ready for review (built)
sru-review: Stalled -s ready for review (built)
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.15.0-1125.136~16.04.1
meta: 4.15.0.1125.106
signed: 4.15.0-1125.136~16.04.1
  ~~:
announce:
  swm-transition-crankable: 2023-10-11 08:32:30.561826
clamps:
  new-review: de729927565eb0a9
  self: 4.15.0-1125.136~16.04.1
  sru-review: de729927565eb0a9

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/2038336

Title:
  xenial/linux-oracle: 4.15.0-1125.136~16.04.1 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Invalid
Status in Kernel SRU Workflow boot-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow new-review series:
  Triaged
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-generate series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-signed series:
  Fix Released
Status in Kernel SRU Workflow promote-signing-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  Invalid
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  Invalid
Status in Kernel SRU Workflow sru-review series:
  Triaged
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-oracle source package in Xenial:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  -- swm properties --
  built:
from: de729927565eb0a9
route-entry: 2
  delta:
promote-to-proposed: [main, meta, signed, generate]
  flag:
boot-testing-requested: true
  issue: KSRU-10142
  kernel-stable-master-bug: 2038337
  packages:
generate: linux-generate-oracle
main: linux-oracle
meta: linux-meta-oracle
signed: linux-signed-oracle
  phase: Holding before Promote to Proposed
  phase-changed: Thursday, 12. October 2023 05:01 UTC
  reason:
new-review: Stalled -s ready for review (built)
sru-review: Stalled -s ready for review (built)
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.15.0-1125.136~16.04.1
meta: 4.15.0.1125.106
signed: 4.15.0-1125.136~16.04.1
  ~~:
announce:
  swm-transition-crankable: 2023-10-11 08:32:30.561826
clamps:
  new-review: de729927565eb0a9
  self: 4.15.0-1125.136~16.04.1
  sru-review: de729927565eb0a9

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/2038336/+subscriptions


___
Mailing list: https://launchpad.net/~group.of.nepali.translators
Post to : group.of.nepali.translators@lists.launchpad.net
Unsubscribe : https://launchpad.net/~group.of.nepali.translators
More help   : https://help.launchpad.net/ListHelp


[Group.of.nepali.translators] [Bug 2036467] Re: Resizing cloud-images occasionally fails due to superblock checksum mismatch in resize2fs

2023-10-11 Thread Matthew Ruffell
** Description changed:

  [Impact]
  
  This is a long running bug plaguing cloud-images, where on a rare
  occasion resize2fs would fail and the image would not resize to fit the
  entire disk.
  
  Online resizes would fail due to a superblock checksum mismatch, where
  the superblock in memory differs from what is currently on disk due to
  changes made to the image.
  
+ $ resize2fs /dev/nvme1n1p1
+ resize2fs 1.47.0 (5-Feb-2023)
+ resize2fs: Superblock checksum does not match superblock while trying to open 
/dev/nvme1n1p1
+ Couldn't find valid filesystem superblock.
+ 
  Changing the read of the superblock to Direct I/O solves the issue.
  
  [Testcase]
  
  Start an c5.large instance on AWS, and attach a 60gb gp3 volume for use
  as a scratch disk.
  
  Run the following script, courtesy of Krister Johansen and his team:
  
-#!/usr/bin/bash
-set -euxo pipefail
+    #!/usr/bin/bash
+    set -euxo pipefail
  
-while true
-do
-parted /dev/nvme1n1 mklabel gpt mkpart primary 2048s 2099200s
-sleep .5
-mkfs.ext4 /dev/nvme1n1p1
-mount -t ext4 /dev/nvme1n1p1 /mnt
-stress-ng --temp-path /mnt -D 4 &
-STRESS_PID=$!
-sleep 1
-growpart /dev/nvme1n1 1
-resize2fs /dev/nvme1n1p1
-kill $STRESS_PID
-wait $STRESS_PID
-umount /mnt
-wipefs -a /dev/nvme1n1p1
-wipefs -a /dev/nvme1n1
-done
+    while true
+    do
+    parted /dev/nvme1n1 mklabel gpt mkpart primary 2048s 2099200s
+    sleep .5
+    mkfs.ext4 /dev/nvme1n1p1
+    mount -t ext4 /dev/nvme1n1p1 /mnt
+    stress-ng --temp-path /mnt -D 4 &
+    STRESS_PID=$!
+    sleep 1
+    growpart /dev/nvme1n1 1
+    resize2fs /dev/nvme1n1p1
+    kill $STRESS_PID
+    wait $STRESS_PID
+    umount /mnt
+    wipefs -a /dev/nvme1n1p1
+    wipefs -a /dev/nvme1n1
+    done
  
  Test packages are available in the following ppa:
  
  https://launchpad.net/~mruffell/+archive/ubuntu/lp2036467-test
  
  If you install the test packages, the race no longer occurs.
  
  [Where problems could occur]
  
  We are changing how resize2fs reads the superblock from underlying
  disks.
  
  If a regression were to occur, resize2fs could fail to resize offline or
  online volumes. As all cloud-images are online resized during their
  initial boot, this could have a large impact to public and private
  clouds should a regression occur.
  
  [Other info]
  
- Upstream mailing list discussion: 
+ Upstream mailing list discussion:
  https://lore.kernel.org/linux-ext4/20230605225221.ga5...@templeofstupid.com/
  https://lore.kernel.org/linux-ext4/20230609042239.ga1436...@mit.edu/
  
  This was fixed in the below commit upstream:
  
  commit 43a498e938887956f393b5e45ea6ac79cc5f4b84
  Author: Theodore Ts'o 
  Date: Thu, 15 Jun 2023 00:17:01 -0400
  Subject: resize2fs: use Direct I/O when reading the superblock for
-  online resizes
+  online resizes
  Link: 
https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git/commit/?id=43a498e938887956f393b5e45ea6ac79cc5f4b84
  
  The commit has not been tagged to any release. All supported Ubuntu
  releases require this fix, and need to be published in standard non-ESM
  archives to be picked up in cloud images.

** Changed in: e2fsprogs (Ubuntu Bionic)
   Status: In Progress => Won't Fix

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/2036467

Title:
  Resizing cloud-images occasionally fails due to superblock checksum
  mismatch in resize2fs

Status in cloud-images:
  New
Status in e2fsprogs package in Ubuntu:
  In Progress
Status in e2fsprogs source package in Trusty:
  Won't Fix
Status in e2fsprogs source package in Xenial:
  Won't Fix
Status in e2fsprogs source package in Bionic:
  Won't Fix
Status in e2fsprogs source package in Focal:
  In Progress
Status in e2fsprogs source package in Jammy:
  In Progress
Status in e2fsprogs source package in Lunar:
  In Progress
Status in e2fsprogs source package in Mantic:
  In Progress

Bug description:
  [Impact]

  This is a long running bug plaguing cloud-images, where on a rare
  occasion resize2fs would fail and the image would not resize to fit
  the entire disk.

  Online resizes would fail due to a superblock checksum mismatch, where
  the superblock in memory differs from what is currently on disk due to
  changes made to the image.

  $ resize2fs /dev/nvme1n1p1
  resize2fs 1.47.0 (5-Feb-2023)
  resize2fs: Superblock checksum does not match superblock while trying to open 
/dev/nvme1n1p1
  Couldn't find valid filesystem superblock.

  Changing the read of the superblock to Direct I/O solves the issue.

  [Testcase]

  Start an c5.large instance on AWS, and attach a 

[Group.of.nepali.translators] [Bug 2038336] Re: xenial/linux-oracle: 4.15.0-1125.136~16.04.1 -proposed tracker

2023-10-11 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/boot-testing
   Status: New => Triaged

** Changed in: kernel-sru-workflow/new-review
   Status: Confirmed => Triaged

** Changed in: kernel-sru-workflow/prepare-package-signed
   Status: Fix Committed => Fix Released

** Changed in: kernel-sru-workflow/sru-review
   Status: Confirmed => Triaged

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  built:
from: de729927565eb0a9
route-entry: 2
  delta:
promote-to-proposed: [main, meta, signed, generate]
+ flag:
+   boot-testing-requested: true
  issue: KSRU-10142
  kernel-stable-master-bug: 2038337
  packages:
generate: linux-generate-oracle
main: linux-oracle
meta: linux-meta-oracle
signed: linux-signed-oracle
- phase: Packaging
- phase-changed: Wednesday, 11. October 2023 20:28 UTC
+ phase: Testing
+ phase-changed: Thursday, 12. October 2023 03:26 UTC
  reason:
-   :prepare-packages: Pending -- building in ppa (signed:P)
-   new-review: Pending -s ready for review
-   prepare-package-signed: Ongoing -- signed package not yet fully
- built
-   sru-review: Pending -s ready for review
+   boot-testing: Ongoing -s testing in progress
+   new-review: Stalled -s ready for review (built)
+   sru-review: Stalled -s ready for review (built)
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.15.0-1125.136~16.04.1
meta: 4.15.0.1125.106
signed: 4.15.0-1125.136~16.04.1
  ~~:
announce:
  swm-transition-crankable: 2023-10-11 08:32:30.561826
clamps:
  new-review: de729927565eb0a9
  self: 4.15.0-1125.136~16.04.1
  sru-review: de729927565eb0a9

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/2038336

Title:
  xenial/linux-oracle: 4.15.0-1125.136~16.04.1 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Invalid
Status in Kernel SRU Workflow boot-testing series:
  Triaged
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow new-review series:
  Triaged
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-generate series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-signed series:
  Fix Released
Status in Kernel SRU Workflow promote-signing-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  Invalid
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  Invalid
Status in Kernel SRU Workflow sru-review series:
  Triaged
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-oracle source package in Xenial:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  -- swm properties --
  built:
from: de729927565eb0a9
route-entry: 2
  delta:
promote-to-proposed: [main, meta, signed, generate]
  flag:
boot-testing-requested: true
  issue: KSRU-10142
  kernel-stable-master-bug: 2038337
  packages:
generate: linux-generate-oracle
main: linux-oracle
meta: linux-meta-oracle
signed: linux-signed-oracle
  phase: Testing
  phase-changed: Thursday, 12. October 2023 03:26 UTC
  reason:
boot-testing: Ongoing -s testing in progress
new-review: Stalled -s ready for review (built)
sru-review: Stalled -s ready for review (built)
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.15.0-1125.136~16.04.1
meta: 4.15.0.1125.106
signed: 4.15.0-1125.136~16.04.1
  ~~:
announce:
  swm-transition-crankable: 2023-10-11 08:32:30.561826
clamps:
  new-review: de729927565eb0a9
  self: 4.15.0-1125.136~16.04.1
  sru-review: de729927565eb0a9

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/2038336/+subscriptions


___
Mailing list: https://launchpad.net/~group.of.nepali.translators
Post to : group.of.nepali.translators@lists.launchpad.net
Unsubscribe : https://launchpad.net/~group.of.nepali.translators
More help   : https://help.launchpad.net/ListHelp


[Group.of.nepali.translators] [Bug 2038331] Re: xenial/linux-gcp: 4.15.0-1156.173~16.04.1 -proposed tracker

2023-10-11 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/promote-to-security
   Status: New => Invalid

** Changed in: kernel-sru-workflow/security-signoff
   Status: New => Invalid

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  built:
route-entry: 2
  issue: KSRU-10138
  kernel-stable-master-bug: 2038332
  packages:
generate: linux-generate-gcp
main: linux-gcp
meta: linux-meta-gcp
signed: linux-signed-gcp
- phase: Ready for Packaging
- phase-changed: Wednesday, 11. October 2023 14:57 UTC
+ phase: Packaging
+ phase-changed: Thursday, 12. October 2023 03:11 UTC
  reason:
-   :prepare-packages: Pending -b Debs ready to be cranked
-   prepare-package: Pending -- version not specified
+   :prepare-packages: 'Ongoing -b Being cranked by: hui.wang'
+   prepare-package: Pending -- tag not published and package not
+ uploaded
+   prepare-package-generate: Pending -- package not uploaded
+   prepare-package-meta: Pending -- tag not published and package not
+ uploaded
+   prepare-package-signed: Pending -- tag not published and package not
+ uploaded
+ synthetic:
+   :promote-to-as-proposed: Invalid
  variant: debs
  ~~:
announce:
  swm-transition-crankable: 2023-10-11 14:57:38.541195
+   clamps:
+ self: 4.15.0-1156.173~16.04.1

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/2038331

Title:
  xenial/linux-gcp: 4.15.0-1156.173~16.04.1 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Invalid
Status in Kernel SRU Workflow boot-testing series:
  New
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow new-review series:
  New
Status in Kernel SRU Workflow prepare-package series:
  In Progress
Status in Kernel SRU Workflow prepare-package-generate series:
  In Progress
Status in Kernel SRU Workflow prepare-package-meta series:
  In Progress
Status in Kernel SRU Workflow prepare-package-signed series:
  In Progress
Status in Kernel SRU Workflow promote-signing-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  Invalid
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  Invalid
Status in Kernel SRU Workflow sru-review series:
  New
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-gcp source package in Xenial:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  -- swm properties --
  built:
route-entry: 2
  issue: KSRU-10138
  kernel-stable-master-bug: 2038332
  packages:
generate: linux-generate-gcp
main: linux-gcp
meta: linux-meta-gcp
signed: linux-signed-gcp
  phase: Packaging
  phase-changed: Thursday, 12. October 2023 03:11 UTC
  reason:
:prepare-packages: 'Ongoing -b Being cranked by: hui.wang'
prepare-package: Pending -- tag not published and package not
  uploaded
prepare-package-generate: Pending -- package not uploaded
prepare-package-meta: Pending -- tag not published and package not
  uploaded
prepare-package-signed: Pending -- tag not published and package not
  uploaded
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  ~~:
announce:
  swm-transition-crankable: 2023-10-11 14:57:38.541195
clamps:
  self: 4.15.0-1156.173~16.04.1

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/2038331/+subscriptions


___
Mailing list: https://launchpad.net/~group.of.nepali.translators
Post to : group.of.nepali.translators@lists.launchpad.net
Unsubscribe : https://launchpad.net/~group.of.nepali.translators
More help   : https://help.launchpad.net/ListHelp


[Group.of.nepali.translators] [Bug 2038336] Re: xenial/linux-oracle: 4.15.0-1125.136~16.04.1 -proposed tracker

2023-10-11 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/prepare-package-generate
   Status: Fix Committed => Fix Released

** Changed in: kernel-sru-workflow/prepare-package-meta
   Status: Fix Committed => Fix Released

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  built:
from: de729927565eb0a9
route-entry: 2
  delta:
promote-to-proposed: [main, meta, signed, generate]
  issue: KSRU-10142
  kernel-stable-master-bug: 2038337
  packages:
generate: linux-generate-oracle
main: linux-oracle
meta: linux-meta-oracle
signed: linux-signed-oracle
  phase: Packaging
  phase-changed: Wednesday, 11. October 2023 20:28 UTC
  reason:
-   :prepare-packages: Pending -- building in ppa (generate:P signed:D
- meta:P)
+   :prepare-packages: Ongoing -- building in ppa (signed:B)
new-review: Pending -s ready for review
-   prepare-package-generate: Ongoing -- generate package not yet fully
- built
-   prepare-package-meta: Ongoing -- meta package not yet fully built
prepare-package-signed: Ongoing -- signed package not yet fully
  built
sru-review: Pending -s ready for review
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.15.0-1125.136~16.04.1
meta: 4.15.0.1125.106
signed: 4.15.0-1125.136~16.04.1
  ~~:
announce:
  swm-transition-crankable: 2023-10-11 08:32:30.561826
clamps:
  new-review: de729927565eb0a9
  self: 4.15.0-1125.136~16.04.1
  sru-review: de729927565eb0a9

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  built:
from: de729927565eb0a9
route-entry: 2
  delta:
promote-to-proposed: [main, meta, signed, generate]
  issue: KSRU-10142
  kernel-stable-master-bug: 2038337
  packages:
generate: linux-generate-oracle
main: linux-oracle
meta: linux-meta-oracle
signed: linux-signed-oracle
  phase: Packaging
  phase-changed: Wednesday, 11. October 2023 20:28 UTC
  reason:
-   :prepare-packages: Ongoing -- building in ppa (signed:B)
+   :prepare-packages: Pending -- building in ppa (signed:Q)
new-review: Pending -s ready for review
prepare-package-signed: Ongoing -- signed package not yet fully
  built
sru-review: Pending -s ready for review
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.15.0-1125.136~16.04.1
meta: 4.15.0.1125.106
signed: 4.15.0-1125.136~16.04.1
  ~~:
announce:
  swm-transition-crankable: 2023-10-11 08:32:30.561826
clamps:
  new-review: de729927565eb0a9
  self: 4.15.0-1125.136~16.04.1
  sru-review: de729927565eb0a9

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/2038336

Title:
  xenial/linux-oracle: 4.15.0-1125.136~16.04.1 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Invalid
Status in Kernel SRU Workflow boot-testing series:
  New
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow new-review series:
  Confirmed
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-generate series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-signed series:
  Fix Committed
Status in Kernel SRU Workflow promote-signing-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  Invalid
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  Invalid
Status in Kernel SRU Workflow sru-review series:
  Confirmed
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-oracle source package in Xenial:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  -- swm properties --
  built:
from: de729927565eb0a9
route-entry: 2
  delta:
promote-to-proposed: [main, meta, signed, generate]
  issue: KSRU-10142
  kernel-stable-master-bug: 2038337
  packages:

[Group.of.nepali.translators] [Bug 2038336] Re: xenial/linux-oracle: 4.15.0-1125.136~16.04.1 -proposed tracker

2023-10-11 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/prepare-package
   Status: Fix Committed => Fix Released

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  built:
from: de729927565eb0a9
route-entry: 2
  delta:
promote-to-proposed: [main, meta, signed, generate]
  issue: KSRU-10142
  kernel-stable-master-bug: 2038337
  packages:
generate: linux-generate-oracle
main: linux-oracle
meta: linux-meta-oracle
signed: linux-signed-oracle
  phase: Packaging
  phase-changed: Wednesday, 11. October 2023 20:28 UTC
  reason:
-   :prepare-packages: Pending -- building in ppa (main:P generate:D
- signed:D meta:D)
+   :prepare-packages: Ongoing -- building in ppa (generate:B signed:D
+ meta:B)
new-review: Pending -s ready for review
-   prepare-package: Ongoing -- main package not yet fully built
prepare-package-generate: Ongoing -- generate package not yet fully
  built
prepare-package-meta: Ongoing -- meta package not yet fully built
prepare-package-signed: Ongoing -- signed package not yet fully
  built
sru-review: Pending -s ready for review
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.15.0-1125.136~16.04.1
meta: 4.15.0.1125.106
signed: 4.15.0-1125.136~16.04.1
  ~~:
announce:
  swm-transition-crankable: 2023-10-11 08:32:30.561826
clamps:
  new-review: de729927565eb0a9
  self: 4.15.0-1125.136~16.04.1
  sru-review: de729927565eb0a9

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  built:
from: de729927565eb0a9
route-entry: 2
  delta:
promote-to-proposed: [main, meta, signed, generate]
  issue: KSRU-10142
  kernel-stable-master-bug: 2038337
  packages:
generate: linux-generate-oracle
main: linux-oracle
meta: linux-meta-oracle
signed: linux-signed-oracle
  phase: Packaging
  phase-changed: Wednesday, 11. October 2023 20:28 UTC
  reason:
-   :prepare-packages: Ongoing -- building in ppa (generate:B signed:D
- meta:B)
+   :prepare-packages: Pending -- building in ppa (generate:Q signed:D
+ meta:Q)
new-review: Pending -s ready for review
prepare-package-generate: Ongoing -- generate package not yet fully
  built
prepare-package-meta: Ongoing -- meta package not yet fully built
prepare-package-signed: Ongoing -- signed package not yet fully
  built
sru-review: Pending -s ready for review
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.15.0-1125.136~16.04.1
meta: 4.15.0.1125.106
signed: 4.15.0-1125.136~16.04.1
  ~~:
announce:
  swm-transition-crankable: 2023-10-11 08:32:30.561826
clamps:
  new-review: de729927565eb0a9
  self: 4.15.0-1125.136~16.04.1
  sru-review: de729927565eb0a9

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/2038336

Title:
  xenial/linux-oracle: 4.15.0-1125.136~16.04.1 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Invalid
Status in Kernel SRU Workflow boot-testing series:
  New
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow new-review series:
  Confirmed
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-generate series:
  Fix Committed
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Committed
Status in Kernel SRU Workflow prepare-package-signed series:
  Fix Committed
Status in Kernel SRU Workflow promote-signing-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  Invalid
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  Invalid
Status in Kernel SRU Workflow sru-review series:
  Confirmed
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-oracle source package in Xenial:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  -- swm properties --
  built:
 

[Group.of.nepali.translators] [Bug 2038355] Re: xenial/linux-aws: 4.4.0-1162.177 -proposed tracker

2023-10-11 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/regression-testing
   Status: Fix Released => Incomplete

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  built:
from: 2f9d73aba1e224f7
route-entry: 2
  delta:
promote-to-proposed: [main, meta]
  flag:
boot-testing-requested: true
bugs-spammed: true
proposed-announcement-sent: true
proposed-testing-requested: true
  issue: KSRU-10148
  kernel-stable-master-bug: 2038362
  packages:
main: linux-aws
meta: linux-meta-aws
- phase: Holding before Promote to Updates
- phase-changed: Wednesday, 11. October 2023 23:57 UTC
+ phase: Testing
+ phase-changed: Thursday, 12. October 2023 00:57 UTC
  reason:
-   promote-to-updates: Holding -- cycle not ready to release
+   regression-testing: Stalled -s testing FAILED
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.4.0-1162.177
meta: 4.4.0.1162.166
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 17:33:42.381577
clamps:
  new-review: 2f9d73aba1e224f7
  promote-to-proposed: 2f9d73aba1e224f7
  self: 4.4.0-1162.177
  sru-review: 2f9d73aba1e224f7

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/2038355

Title:
  xenial/linux-aws: 4.4.0-1162.177 -proposed tracker

Status in canonical-signing-jobs task00 series:
  Fix Released
Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Invalid
Status in Kernel SRU Workflow boot-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow new-review series:
  Fix Released
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow promote-to-proposed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-security series:
  Invalid
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  Incomplete
Status in Kernel SRU Workflow security-signoff series:
  Invalid
Status in Kernel SRU Workflow sru-review series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  Fix Released
Status in linux-aws source package in Xenial:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  -- swm properties --
  built:
from: 2f9d73aba1e224f7
route-entry: 2
  delta:
promote-to-proposed: [main, meta]
  flag:
boot-testing-requested: true
bugs-spammed: true
proposed-announcement-sent: true
proposed-testing-requested: true
  issue: KSRU-10148
  kernel-stable-master-bug: 2038362
  packages:
main: linux-aws
meta: linux-meta-aws
  phase: Testing
  phase-changed: Thursday, 12. October 2023 00:57 UTC
  reason:
regression-testing: Stalled -s testing FAILED
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.4.0-1162.177
meta: 4.4.0.1162.166
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 17:33:42.381577
clamps:
  new-review: 2f9d73aba1e224f7
  promote-to-proposed: 2f9d73aba1e224f7
  self: 4.4.0-1162.177
  sru-review: 2f9d73aba1e224f7

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-signing-jobs/task00/+bug/2038355/+subscriptions


___
Mailing list: https://launchpad.net/~group.of.nepali.translators
Post to : group.of.nepali.translators@lists.launchpad.net
Unsubscribe : https://launchpad.net/~group.of.nepali.translators
More help   : https://help.launchpad.net/ListHelp


[Group.of.nepali.translators] [Bug 2038355] Re: xenial/linux-aws: 4.4.0-1162.177 -proposed tracker

2023-10-11 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/regression-testing
   Status: Triaged => Fix Released

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  built:
from: 2f9d73aba1e224f7
route-entry: 2
  delta:
promote-to-proposed: [main, meta]
  flag:
boot-testing-requested: true
bugs-spammed: true
proposed-announcement-sent: true
proposed-testing-requested: true
  issue: KSRU-10148
  kernel-stable-master-bug: 2038362
  packages:
main: linux-aws
meta: linux-meta-aws
- phase: Testing
- phase-changed: Wednesday, 11. October 2023 23:32 UTC
+ phase: Holding before Promote to Updates
+ phase-changed: Wednesday, 11. October 2023 23:57 UTC
  reason:
-   regression-testing: Ongoing -s testing in progress
+   promote-to-updates: Holding -- cycle not ready to release
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.4.0-1162.177
meta: 4.4.0.1162.166
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 17:33:42.381577
clamps:
  new-review: 2f9d73aba1e224f7
  promote-to-proposed: 2f9d73aba1e224f7
  self: 4.4.0-1162.177
  sru-review: 2f9d73aba1e224f7

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/2038355

Title:
  xenial/linux-aws: 4.4.0-1162.177 -proposed tracker

Status in canonical-signing-jobs task00 series:
  Fix Released
Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Invalid
Status in Kernel SRU Workflow boot-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow new-review series:
  Fix Released
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow promote-to-proposed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-security series:
  Invalid
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  Fix Released
Status in Kernel SRU Workflow security-signoff series:
  Invalid
Status in Kernel SRU Workflow sru-review series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  Fix Released
Status in linux-aws source package in Xenial:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  -- swm properties --
  built:
from: 2f9d73aba1e224f7
route-entry: 2
  delta:
promote-to-proposed: [main, meta]
  flag:
boot-testing-requested: true
bugs-spammed: true
proposed-announcement-sent: true
proposed-testing-requested: true
  issue: KSRU-10148
  kernel-stable-master-bug: 2038362
  packages:
main: linux-aws
meta: linux-meta-aws
  phase: Holding before Promote to Updates
  phase-changed: Wednesday, 11. October 2023 23:57 UTC
  reason:
promote-to-updates: Holding -- cycle not ready to release
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.4.0-1162.177
meta: 4.4.0.1162.166
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 17:33:42.381577
clamps:
  new-review: 2f9d73aba1e224f7
  promote-to-proposed: 2f9d73aba1e224f7
  self: 4.4.0-1162.177
  sru-review: 2f9d73aba1e224f7

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-signing-jobs/task00/+bug/2038355/+subscriptions


___
Mailing list: https://launchpad.net/~group.of.nepali.translators
Post to : group.of.nepali.translators@lists.launchpad.net
Unsubscribe : https://launchpad.net/~group.of.nepali.translators
More help   : https://help.launchpad.net/ListHelp


[Group.of.nepali.translators] [Bug 2038355] Re: xenial/linux-aws: 4.4.0-1162.177 -proposed tracker

2023-10-11 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/promote-to-proposed
   Status: Fix Committed => Fix Released

** Changed in: kernel-sru-workflow/regression-testing
   Status: New => Triaged

** Changed in: kernel-sru-workflow/verification-testing
   Status: New => Fix Released

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  built:
from: 2f9d73aba1e224f7
route-entry: 2
  delta:
promote-to-proposed: [main, meta]
  flag:
boot-testing-requested: true
+   bugs-spammed: true
+   proposed-announcement-sent: true
+   proposed-testing-requested: true
  issue: KSRU-10148
  kernel-stable-master-bug: 2038362
  packages:
main: linux-aws
meta: linux-meta-aws
- phase: Promote to Proposed
- phase-changed: Wednesday, 11. October 2023 22:31 UTC
+ phase: Testing
+ phase-changed: Wednesday, 11. October 2023 23:32 UTC
  reason:
-   canonical-signing-jobs/task00: Ongoing -s signing request
- in-progress
-   promote-to-proposed: Pending -- packages copying to Proposed (main:P
- meta:P)
+   regression-testing: Ongoing -s testing in progress
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.4.0-1162.177
meta: 4.4.0.1162.166
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 17:33:42.381577
clamps:
  new-review: 2f9d73aba1e224f7
  promote-to-proposed: 2f9d73aba1e224f7
  self: 4.4.0-1162.177
  sru-review: 2f9d73aba1e224f7

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/2038355

Title:
  xenial/linux-aws: 4.4.0-1162.177 -proposed tracker

Status in canonical-signing-jobs task00 series:
  Fix Released
Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Invalid
Status in Kernel SRU Workflow boot-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow new-review series:
  Fix Released
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow promote-to-proposed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-security series:
  Invalid
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  Triaged
Status in Kernel SRU Workflow security-signoff series:
  Invalid
Status in Kernel SRU Workflow sru-review series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  Fix Released
Status in linux-aws source package in Xenial:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  -- swm properties --
  built:
from: 2f9d73aba1e224f7
route-entry: 2
  delta:
promote-to-proposed: [main, meta]
  flag:
boot-testing-requested: true
bugs-spammed: true
proposed-announcement-sent: true
proposed-testing-requested: true
  issue: KSRU-10148
  kernel-stable-master-bug: 2038362
  packages:
main: linux-aws
meta: linux-meta-aws
  phase: Testing
  phase-changed: Wednesday, 11. October 2023 23:32 UTC
  reason:
regression-testing: Ongoing -s testing in progress
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.4.0-1162.177
meta: 4.4.0.1162.166
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 17:33:42.381577
clamps:
  new-review: 2f9d73aba1e224f7
  promote-to-proposed: 2f9d73aba1e224f7
  self: 4.4.0-1162.177
  sru-review: 2f9d73aba1e224f7

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-signing-jobs/task00/+bug/2038355/+subscriptions


___
Mailing list: https://launchpad.net/~group.of.nepali.translators
Post to : group.of.nepali.translators@lists.launchpad.net
Unsubscribe : https://launchpad.net/~group.of.nepali.translators
More help   : https://help.launchpad.net/ListHelp


[Group.of.nepali.translators] [Bug 2038355] Re: xenial/linux-aws: 4.4.0-1162.177 -proposed tracker

2023-10-11 Thread Andy Whitcroft
** Changed in: canonical-signing-jobs/task00
   Status: In Progress => Fix Released

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/2038355

Title:
  xenial/linux-aws: 4.4.0-1162.177 -proposed tracker

Status in canonical-signing-jobs task00 series:
  Fix Released
Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Invalid
Status in Kernel SRU Workflow boot-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow new-review series:
  Fix Released
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow promote-to-proposed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-security series:
  Invalid
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  Triaged
Status in Kernel SRU Workflow security-signoff series:
  Invalid
Status in Kernel SRU Workflow sru-review series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  Fix Released
Status in linux-aws source package in Xenial:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  -- swm properties --
  built:
from: 2f9d73aba1e224f7
route-entry: 2
  delta:
promote-to-proposed: [main, meta]
  flag:
boot-testing-requested: true
bugs-spammed: true
proposed-announcement-sent: true
proposed-testing-requested: true
  issue: KSRU-10148
  kernel-stable-master-bug: 2038362
  packages:
main: linux-aws
meta: linux-meta-aws
  phase: Testing
  phase-changed: Wednesday, 11. October 2023 23:32 UTC
  reason:
regression-testing: Ongoing -s testing in progress
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.4.0-1162.177
meta: 4.4.0.1162.166
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 17:33:42.381577
clamps:
  new-review: 2f9d73aba1e224f7
  promote-to-proposed: 2f9d73aba1e224f7
  self: 4.4.0-1162.177
  sru-review: 2f9d73aba1e224f7

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-signing-jobs/task00/+bug/2038355/+subscriptions


___
Mailing list: https://launchpad.net/~group.of.nepali.translators
Post to : group.of.nepali.translators@lists.launchpad.net
Unsubscribe : https://launchpad.net/~group.of.nepali.translators
More help   : https://help.launchpad.net/ListHelp


[Group.of.nepali.translators] [Bug 2038355] Re: xenial/linux-aws: 4.4.0-1162.177 -proposed tracker

2023-10-11 Thread Andy Whitcroft
** Changed in: kernel-sru-workflow/sru-review
   Status: Triaged => In Progress

** Changed in: kernel-sru-workflow/sru-review
 Assignee: (unassigned) => Andy Whitcroft (apw)

** Changed in kernel-sru-workflow/sru-review
 Status explanation: unset => from:

** Changed in: kernel-sru-workflow/new-review
   Status: Triaged => In Progress

** Changed in: kernel-sru-workflow/new-review
 Assignee: (unassigned) => Andy Whitcroft (apw)

** Changed in kernel-sru-workflow/new-review
 Status explanation: unset => from:

** Changed in: canonical-signing-jobs/task00
   Importance: Undecided => Medium

** Changed in: canonical-signing-jobs/task00
 Assignee: (unassigned) => Andy Whitcroft (apw)

** Changed in canonical-signing-jobs/task00
 Importance explanation: unset => xenial:linux-aws

** Changed in canonical-signing-jobs/task00
 Status explanation: unset => # title kernel xenial:linux-aws
# route ppa:canonical-kernel-esm/ubuntu/ppa2 -> 
ppa:canonical-kernel-esm/ubuntu/proposed2
validate \
  --exclude xenial:linux-aws --publications \
~canonical-kernel-esm/+archive/ubuntu/ppa2/+sourcepub/15197550 \
~canonical-kernel-esm/+archive/ubuntu/ppa2/+sourcepub/15197551
copy \
  --from ppa:canonical-kernel-esm/ubuntu/ppa2 --from-suite xenial --sources \
linux-aws/4.4.0-1162.177 \
linux-meta-aws/4.4.0.1162.166 \
  --to ppa:canonical-kernel-esm/ubuntu/proposed2 --to-suite xenial

** Changed in: canonical-signing-jobs/task00
   Status: New => Triaged

** Changed in: kernel-sru-workflow/new-review
   Status: In Progress => Fix Released

** Changed in: kernel-sru-workflow/sru-review
   Status: In Progress => Fix Released

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/2038355

Title:
  xenial/linux-aws: 4.4.0-1162.177 -proposed tracker

Status in canonical-signing-jobs task00 series:
  In Progress
Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Invalid
Status in Kernel SRU Workflow boot-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow new-review series:
  Fix Released
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow promote-to-proposed series:
  In Progress
Status in Kernel SRU Workflow promote-to-security series:
  Invalid
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  Invalid
Status in Kernel SRU Workflow sru-review series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-aws source package in Xenial:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  -- swm properties --
  built:
from: 2f9d73aba1e224f7
route-entry: 2
  delta:
promote-to-proposed: [main, meta]
  flag:
boot-testing-requested: true
  issue: KSRU-10148
  kernel-stable-master-bug: 2038362
  packages:
main: linux-aws
meta: linux-meta-aws
  phase: Promote to Proposed
  phase-changed: Wednesday, 11. October 2023 22:31 UTC
  reason:
canonical-signing-jobs/task00: Pending -- Ready
promote-to-proposed: Stalled -- promotion in progress
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.4.0-1162.177
meta: 4.4.0.1162.166
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 17:33:42.381577
clamps:
  new-review: 2f9d73aba1e224f7
  promote-to-proposed: 2f9d73aba1e224f7
  self: 4.4.0-1162.177
  sru-review: 2f9d73aba1e224f7

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-signing-jobs/task00/+bug/2038355/+subscriptions


___
Mailing list: https://launchpad.net/~group.of.nepali.translators
Post to : group.of.nepali.translators@lists.launchpad.net
Unsubscribe : https://launchpad.net/~group.of.nepali.translators
More help   : https://help.launchpad.net/ListHelp


[Group.of.nepali.translators] [Bug 2038336] Re: xenial/linux-oracle: 4.15.0-1125.136~16.04.1 -proposed tracker

2023-10-11 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/promote-to-security
   Status: New => Invalid

** Changed in: kernel-sru-workflow/security-signoff
   Status: New => Invalid

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  built:
route-entry: 2
  issue: KSRU-10142
  kernel-stable-master-bug: 2038337
  packages:
generate: linux-generate-oracle
main: linux-oracle
meta: linux-meta-oracle
signed: linux-signed-oracle
- phase: Ready for Packaging
- phase-changed: Wednesday, 11. October 2023 08:32 UTC
+ phase: Packaging
+ phase-changed: Wednesday, 11. October 2023 20:28 UTC
  reason:
-   :prepare-packages: Pending -b Debs ready to be cranked
-   prepare-package: Pending -- version not specified
+   :prepare-packages: 'Ongoing -b Being cranked by: jsalisbury'
+   prepare-package: Pending -- tag not published and package not
+ uploaded
+   prepare-package-generate: Pending -- package not uploaded
+   prepare-package-meta: Pending -- tag not published and package not
+ uploaded
+   prepare-package-signed: Pending -- tag not published and package not
+ uploaded
+ synthetic:
+   :promote-to-as-proposed: Invalid
  variant: debs
  ~~:
announce:
  swm-transition-crankable: 2023-10-11 08:32:30.561826
+   clamps:
+ self: 4.15.0-1125.136~16.04.1

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/2038336

Title:
  xenial/linux-oracle: 4.15.0-1125.136~16.04.1 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Invalid
Status in Kernel SRU Workflow boot-testing series:
  New
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow new-review series:
  New
Status in Kernel SRU Workflow prepare-package series:
  In Progress
Status in Kernel SRU Workflow prepare-package-generate series:
  In Progress
Status in Kernel SRU Workflow prepare-package-meta series:
  In Progress
Status in Kernel SRU Workflow prepare-package-signed series:
  In Progress
Status in Kernel SRU Workflow promote-signing-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  Invalid
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  Invalid
Status in Kernel SRU Workflow sru-review series:
  New
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-oracle source package in Xenial:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  -- swm properties --
  built:
route-entry: 2
  issue: KSRU-10142
  kernel-stable-master-bug: 2038337
  packages:
generate: linux-generate-oracle
main: linux-oracle
meta: linux-meta-oracle
signed: linux-signed-oracle
  phase: Packaging
  phase-changed: Wednesday, 11. October 2023 20:28 UTC
  reason:
:prepare-packages: 'Ongoing -b Being cranked by: jsalisbury'
prepare-package: Pending -- tag not published and package not
  uploaded
prepare-package-generate: Pending -- package not uploaded
prepare-package-meta: Pending -- tag not published and package not
  uploaded
prepare-package-signed: Pending -- tag not published and package not
  uploaded
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  ~~:
announce:
  swm-transition-crankable: 2023-10-11 08:32:30.561826
clamps:
  self: 4.15.0-1125.136~16.04.1

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/2038336/+subscriptions


___
Mailing list: https://launchpad.net/~group.of.nepali.translators
Post to : group.of.nepali.translators@lists.launchpad.net
Unsubscribe : https://launchpad.net/~group.of.nepali.translators
More help   : https://help.launchpad.net/ListHelp


[Group.of.nepali.translators] [Bug 2038357] Re: xenial/linux-cascade: 4.4.0-1063.68 -proposed tracker

2023-10-11 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/new-review
   Status: Confirmed => Triaged

** Changed in: kernel-sru-workflow/prepare-package-signed
   Status: Fix Committed => Fix Released

** Changed in: kernel-sru-workflow/sru-review
   Status: Confirmed => Triaged

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
    https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  built:
from: ef8b65ce9693823e
route-entry: 1
  delta:
promote-to-proposed: [main, meta, signed]
  issue: KSRU-10149
  kernel-stable-master-bug: 2038362
  packages:
main: linux-cascade
meta: linux-meta-cascade
signed: linux-signed-cascade
- phase: Packaging
- phase-changed: Wednesday, 11. October 2023 15:18 UTC
+ phase: Holding before Promote to Proposed
+ phase-changed: Wednesday, 11. October 2023 19:59 UTC
  reason:
-   :prepare-packages: Pending -- building in ppa (signed:P)
-   new-review: Pending -s ready for review
-   prepare-package-signed: Ongoing -- signed package not yet fully
- built
-   sru-review: Pending -s ready for review
+   new-review: Stalled -s ready for review (built)
+   sru-review: Stalled -s ready for review (built)
  synthetic:
:promote-to-as-proposed: Invalid
  trackers:
xenial/linux-cascade/cascade-kernel: bug 2038356
  variant: debs
  versions:
main: 4.4.0-1063.68
meta: 4.4.0.1063.67
signed: 4.4.0-1063.68
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 17:34:11.643725
clamps:
  new-review: ef8b65ce9693823e
  self: 4.4.0-1063.68
  sru-review: ef8b65ce9693823e

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/2038357

Title:
  xenial/linux-cascade: 4.4.0-1063.68 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Invalid
Status in Kernel SRU Workflow boot-testing series:
  Invalid
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow new-review series:
  Triaged
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-signed series:
  Fix Released
Status in Kernel SRU Workflow promote-signing-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  Invalid
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  Invalid
Status in Kernel SRU Workflow security-signoff series:
  Invalid
Status in Kernel SRU Workflow sru-review series:
  Triaged
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux source package in Xenial:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
    https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  -- swm properties --
  built:
from: ef8b65ce9693823e
route-entry: 1
  delta:
promote-to-proposed: [main, meta, signed]
  issue: KSRU-10149
  kernel-stable-master-bug: 2038362
  packages:
main: linux-cascade
meta: linux-meta-cascade
signed: linux-signed-cascade
  phase: Holding before Promote to Proposed
  phase-changed: Wednesday, 11. October 2023 19:59 UTC
  reason:
new-review: Stalled -s ready for review (built)
sru-review: Stalled -s ready for review (built)
  synthetic:
:promote-to-as-proposed: Invalid
  trackers:
xenial/linux-cascade/cascade-kernel: bug 2038356
  variant: debs
  versions:
main: 4.4.0-1063.68
meta: 4.4.0.1063.67
signed: 4.4.0-1063.68
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 17:34:11.643725
clamps:
  new-review: ef8b65ce9693823e
  self: 4.4.0-1063.68
  sru-review: ef8b65ce9693823e

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/2038357/+subscriptions


___
Mailing list: https://launchpad.net/~group.of.nepali.translators
Post to : group.of.nepali.translators@lists.launchpad.net
Unsubscribe : https://launchpad.net/~group.of.nepali.translators
More help   : https://help.launchpad.net/ListHelp


[Group.of.nepali.translators] [Bug 2038323] Re: xenial/linux-azure: 4.15.0-1171.186~16.04.1 -proposed tracker

2023-10-11 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/regression-testing
   Status: Fix Released => Incomplete

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  built:
from: 991a4afa05f99239
route-entry: 2
  delta:
promote-to-proposed: [main, meta, signed, generate]
  flag:
boot-testing-requested: true
bugs-spammed: true
proposed-announcement-sent: true
proposed-testing-requested: true
  issue: KSRU-10130
  kernel-stable-master-bug: 2038325
  packages:
generate: linux-generate-azure
main: linux-azure
meta: linux-meta-azure
signed: linux-signed-azure
- phase: Ready for Signoff
- phase-changed: Wednesday, 11. October 2023 18:32 UTC
+ phase: Testing
+ phase-changed: Wednesday, 11. October 2023 19:12 UTC
  reason:
-   promote-to-updates: 'Holding -- waiting for signoffs:
- stakeholder-signoff'
+   regression-testing: Stalled -s testing FAILED
stakeholder-signoff: Pending -s waiting for signoff
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.15.0-1171.186~16.04.1
meta: 4.15.0.1171.155
signed: 4.15.0-1171.186~16.04.1
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 18:07:53.703749
clamps:
  new-review: 991a4afa05f99239
  promote-to-proposed: 991a4afa05f99239
  self: 4.15.0-1171.186~16.04.1
  sru-review: 991a4afa05f99239

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/2038323

Title:
  xenial/linux-azure: 4.15.0-1171.186~16.04.1 -proposed tracker

Status in canonical-signing-jobs task00 series:
  Fix Released
Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Invalid
Status in Kernel SRU Workflow boot-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow new-review series:
  Fix Released
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-generate series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-signed series:
  Fix Released
Status in Kernel SRU Workflow promote-signing-to-proposed series:
  Invalid
Status in Kernel SRU Workflow promote-to-proposed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-security series:
  Invalid
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  Incomplete
Status in Kernel SRU Workflow security-signoff series:
  Invalid
Status in Kernel SRU Workflow sru-review series:
  Fix Released
Status in Kernel SRU Workflow stakeholder-signoff series:
  Confirmed
Status in Kernel SRU Workflow verification-testing series:
  Fix Released
Status in linux-azure source package in Xenial:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  -- swm properties --
  built:
from: 991a4afa05f99239
route-entry: 2
  delta:
promote-to-proposed: [main, meta, signed, generate]
  flag:
boot-testing-requested: true
bugs-spammed: true
proposed-announcement-sent: true
proposed-testing-requested: true
  issue: KSRU-10130
  kernel-stable-master-bug: 2038325
  packages:
generate: linux-generate-azure
main: linux-azure
meta: linux-meta-azure
signed: linux-signed-azure
  phase: Testing
  phase-changed: Wednesday, 11. October 2023 19:12 UTC
  reason:
regression-testing: Stalled -s testing FAILED
stakeholder-signoff: Pending -s waiting for signoff
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.15.0-1171.186~16.04.1
meta: 4.15.0.1171.155
signed: 4.15.0-1171.186~16.04.1
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 18:07:53.703749
clamps:
  new-review: 991a4afa05f99239
  promote-to-proposed: 991a4afa05f99239
  self: 4.15.0-1171.186~16.04.1
  sru-review: 991a4afa05f99239

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-signing-jobs/task00/+bug/2038323/+subscriptions


___
Mailing list: https://launchpad.net/~group.of.nepali.translators
Post to : group.of.nepali.translators@lists.launchpad.net
Unsubscribe : https://launchpad.net/~group.of.nepali.translators
More help   : https://help.launchpad.net/ListHelp


[Group.of.nepali.translators] [Bug 2038357] Re: xenial/linux-cascade: 4.4.0-1063.68 -proposed tracker

2023-10-11 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/prepare-package
   Status: Fix Committed => Fix Released

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
    https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  built:
from: ef8b65ce9693823e
route-entry: 1
  delta:
promote-to-proposed: [main, meta, signed]
  issue: KSRU-10149
  kernel-stable-master-bug: 2038362
  packages:
main: linux-cascade
meta: linux-meta-cascade
signed: linux-signed-cascade
  phase: Packaging
  phase-changed: Wednesday, 11. October 2023 15:18 UTC
  reason:
-   :prepare-packages: Pending -- building in ppa (main:P signed:D)
+   :prepare-packages: Ongoing -- building in ppa (signed:B)
new-review: Pending -s ready for review
-   prepare-package: Ongoing -- main package not yet fully built
prepare-package-signed: Ongoing -- signed package not yet fully
  built
sru-review: Pending -s ready for review
  synthetic:
:promote-to-as-proposed: Invalid
  trackers:
xenial/linux-cascade/cascade-kernel: bug 2038356
  variant: debs
  versions:
main: 4.4.0-1063.68
meta: 4.4.0.1063.67
signed: 4.4.0-1063.68
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 17:34:11.643725
clamps:
  new-review: ef8b65ce9693823e
  self: 4.4.0-1063.68
  sru-review: ef8b65ce9693823e

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
    https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  built:
from: ef8b65ce9693823e
route-entry: 1
  delta:
promote-to-proposed: [main, meta, signed]
  issue: KSRU-10149
  kernel-stable-master-bug: 2038362
  packages:
main: linux-cascade
meta: linux-meta-cascade
signed: linux-signed-cascade
  phase: Packaging
  phase-changed: Wednesday, 11. October 2023 15:18 UTC
  reason:
-   :prepare-packages: Ongoing -- building in ppa (signed:B)
+   :prepare-packages: Pending -- building in ppa (signed:Q)
new-review: Pending -s ready for review
prepare-package-signed: Ongoing -- signed package not yet fully
  built
sru-review: Pending -s ready for review
  synthetic:
:promote-to-as-proposed: Invalid
  trackers:
xenial/linux-cascade/cascade-kernel: bug 2038356
  variant: debs
  versions:
main: 4.4.0-1063.68
meta: 4.4.0.1063.67
signed: 4.4.0-1063.68
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 17:34:11.643725
clamps:
  new-review: ef8b65ce9693823e
  self: 4.4.0-1063.68
  sru-review: ef8b65ce9693823e

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/2038357

Title:
  xenial/linux-cascade: 4.4.0-1063.68 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Invalid
Status in Kernel SRU Workflow boot-testing series:
  Invalid
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow new-review series:
  Confirmed
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-signed series:
  Fix Committed
Status in Kernel SRU Workflow promote-signing-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  Invalid
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  Invalid
Status in Kernel SRU Workflow security-signoff series:
  Invalid
Status in Kernel SRU Workflow sru-review series:
  Confirmed
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux source package in Xenial:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
    https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  -- swm properties --
  built:
from: ef8b65ce9693823e
route-entry: 1
  delta:
promote-to-proposed: [main, meta, signed]
  issue: KSRU-10149
  kernel-stable-master-bug: 2038362
  packages:
main: linux-cascade
meta: linux-meta-cascade
signed: linux-signed-cascade
  phase: Packaging
  phase-changed: Wednesday, 11. October 2023 15:18 UTC
  reason:
:prepare-packages: Pending -- building in ppa (signed:Q)
new-review: Pending -s ready for review
prepare-package-signed: Ongoing -- signed package not yet fully
 

[Group.of.nepali.translators] [Bug 2038323] Re: xenial/linux-azure: 4.15.0-1171.186~16.04.1 -proposed tracker

2023-10-11 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/regression-testing
   Status: Triaged => Fix Released

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  built:
from: 991a4afa05f99239
route-entry: 2
  delta:
promote-to-proposed: [main, meta, signed, generate]
  flag:
boot-testing-requested: true
bugs-spammed: true
proposed-announcement-sent: true
proposed-testing-requested: true
  issue: KSRU-10130
  kernel-stable-master-bug: 2038325
  packages:
generate: linux-generate-azure
main: linux-azure
meta: linux-meta-azure
signed: linux-signed-azure
- phase: Testing
- phase-changed: Wednesday, 11. October 2023 16:48 UTC
+ phase: Ready for Signoff
+ phase-changed: Wednesday, 11. October 2023 18:32 UTC
  reason:
-   regression-testing: Ongoing -s testing in progress
-   stakeholder-signoff: Stalled -s waiting for signoff
+   promote-to-updates: 'Holding -- waiting for signoffs:
+ stakeholder-signoff'
+   stakeholder-signoff: Pending -s waiting for signoff
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.15.0-1171.186~16.04.1
meta: 4.15.0.1171.155
signed: 4.15.0-1171.186~16.04.1
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 18:07:53.703749
clamps:
  new-review: 991a4afa05f99239
  promote-to-proposed: 991a4afa05f99239
  self: 4.15.0-1171.186~16.04.1
  sru-review: 991a4afa05f99239

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/2038323

Title:
  xenial/linux-azure: 4.15.0-1171.186~16.04.1 -proposed tracker

Status in canonical-signing-jobs task00 series:
  Fix Released
Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Invalid
Status in Kernel SRU Workflow boot-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow new-review series:
  Fix Released
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-generate series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-signed series:
  Fix Released
Status in Kernel SRU Workflow promote-signing-to-proposed series:
  Invalid
Status in Kernel SRU Workflow promote-to-proposed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-security series:
  Invalid
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  Fix Released
Status in Kernel SRU Workflow security-signoff series:
  Invalid
Status in Kernel SRU Workflow sru-review series:
  Fix Released
Status in Kernel SRU Workflow stakeholder-signoff series:
  Confirmed
Status in Kernel SRU Workflow verification-testing series:
  Fix Released
Status in linux-azure source package in Xenial:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  -- swm properties --
  built:
from: 991a4afa05f99239
route-entry: 2
  delta:
promote-to-proposed: [main, meta, signed, generate]
  flag:
boot-testing-requested: true
bugs-spammed: true
proposed-announcement-sent: true
proposed-testing-requested: true
  issue: KSRU-10130
  kernel-stable-master-bug: 2038325
  packages:
generate: linux-generate-azure
main: linux-azure
meta: linux-meta-azure
signed: linux-signed-azure
  phase: Ready for Signoff
  phase-changed: Wednesday, 11. October 2023 18:32 UTC
  reason:
promote-to-updates: 'Holding -- waiting for signoffs:
  stakeholder-signoff'
stakeholder-signoff: Pending -s waiting for signoff
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.15.0-1171.186~16.04.1
meta: 4.15.0.1171.155
signed: 4.15.0-1171.186~16.04.1
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 18:07:53.703749
clamps:
  new-review: 991a4afa05f99239
  promote-to-proposed: 991a4afa05f99239
  self: 4.15.0-1171.186~16.04.1
  sru-review: 991a4afa05f99239

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-signing-jobs/task00/+bug/2038323/+subscriptions


___
Mailing list: https://launchpad.net/~group.of.nepali.translators
Post to : group.of.nepali.translators@lists.launchpad.net
Unsubscribe : 

[Group.of.nepali.translators] [Bug 2038355] Re: xenial/linux-aws: 4.4.0-1162.177 -proposed tracker

2023-10-11 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/boot-testing
   Status: Incomplete => Fix Released

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  built:
from: 2f9d73aba1e224f7
route-entry: 2
  delta:
promote-to-proposed: [main, meta]
  flag:
boot-testing-requested: true
  issue: KSRU-10148
  kernel-stable-master-bug: 2038362
  packages:
main: linux-aws
meta: linux-meta-aws
- phase: Testing
- phase-changed: Wednesday, 11. October 2023 15:49 UTC
+ phase: Holding before Promote to Proposed
+ phase-changed: Wednesday, 11. October 2023 18:32 UTC
  reason:
-   boot-testing: Stalled -s testing FAILED
new-review: Stalled -s ready for review (built)
sru-review: Stalled -s ready for review (built)
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.4.0-1162.177
meta: 4.4.0.1162.166
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 17:33:42.381577
clamps:
  new-review: 2f9d73aba1e224f7
  self: 4.4.0-1162.177
  sru-review: 2f9d73aba1e224f7

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/2038355

Title:
  xenial/linux-aws: 4.4.0-1162.177 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Invalid
Status in Kernel SRU Workflow boot-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow new-review series:
  Triaged
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  Invalid
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  Invalid
Status in Kernel SRU Workflow sru-review series:
  Triaged
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-aws source package in Xenial:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  -- swm properties --
  built:
from: 2f9d73aba1e224f7
route-entry: 2
  delta:
promote-to-proposed: [main, meta]
  flag:
boot-testing-requested: true
  issue: KSRU-10148
  kernel-stable-master-bug: 2038362
  packages:
main: linux-aws
meta: linux-meta-aws
  phase: Holding before Promote to Proposed
  phase-changed: Wednesday, 11. October 2023 18:32 UTC
  reason:
new-review: Stalled -s ready for review (built)
sru-review: Stalled -s ready for review (built)
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.4.0-1162.177
meta: 4.4.0.1162.166
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 17:33:42.381577
clamps:
  new-review: 2f9d73aba1e224f7
  self: 4.4.0-1162.177
  sru-review: 2f9d73aba1e224f7

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/2038355/+subscriptions


___
Mailing list: https://launchpad.net/~group.of.nepali.translators
Post to : group.of.nepali.translators@lists.launchpad.net
Unsubscribe : https://launchpad.net/~group.of.nepali.translators
More help   : https://help.launchpad.net/ListHelp


[Group.of.nepali.translators] [Bug 2038357] Re: xenial/linux-cascade: 4.4.0-1063.68 -proposed tracker

2023-10-11 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/prepare-package-meta
   Status: Fix Committed => Fix Released

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
    https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  built:
from: ef8b65ce9693823e
route-entry: 1
  delta:
promote-to-proposed: [main, meta, signed]
  issue: KSRU-10149
  kernel-stable-master-bug: 2038362
  packages:
main: linux-cascade
meta: linux-meta-cascade
signed: linux-signed-cascade
  phase: Packaging
  phase-changed: Wednesday, 11. October 2023 15:18 UTC
  reason:
-   :prepare-packages: Pending -- building in ppa (main:B meta:P
- signed:D)
+   :prepare-packages: Ongoing -- building in ppa (main:B signed:D)
new-review: Pending -s ready for review
prepare-package: Ongoing -- main package not yet fully built
-   prepare-package-meta: Ongoing -- meta package not yet fully built
prepare-package-signed: Ongoing -- signed package not yet fully
  built
sru-review: Pending -s ready for review
  synthetic:
:promote-to-as-proposed: Invalid
  trackers:
xenial/linux-cascade/cascade-kernel: bug 2038356
  variant: debs
  versions:
main: 4.4.0-1063.68
meta: 4.4.0.1063.67
signed: 4.4.0-1063.68
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 17:34:11.643725
clamps:
  new-review: ef8b65ce9693823e
  self: 4.4.0-1063.68
  sru-review: ef8b65ce9693823e

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/2038357

Title:
  xenial/linux-cascade: 4.4.0-1063.68 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Invalid
Status in Kernel SRU Workflow boot-testing series:
  Invalid
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow new-review series:
  Confirmed
Status in Kernel SRU Workflow prepare-package series:
  Fix Committed
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-signed series:
  Fix Committed
Status in Kernel SRU Workflow promote-signing-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  Invalid
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  Invalid
Status in Kernel SRU Workflow security-signoff series:
  Invalid
Status in Kernel SRU Workflow sru-review series:
  Confirmed
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux source package in Xenial:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
    https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  -- swm properties --
  built:
from: ef8b65ce9693823e
route-entry: 1
  delta:
promote-to-proposed: [main, meta, signed]
  issue: KSRU-10149
  kernel-stable-master-bug: 2038362
  packages:
main: linux-cascade
meta: linux-meta-cascade
signed: linux-signed-cascade
  phase: Packaging
  phase-changed: Wednesday, 11. October 2023 15:18 UTC
  reason:
:prepare-packages: Pending -- building in ppa (main:Q signed:D)
new-review: Pending -s ready for review
prepare-package: Ongoing -- main package not yet fully built
prepare-package-signed: Ongoing -- signed package not yet fully
  built
sru-review: Pending -s ready for review
  synthetic:
:promote-to-as-proposed: Invalid
  trackers:
xenial/linux-cascade/cascade-kernel: bug 2038356
  variant: debs
  versions:
main: 4.4.0-1063.68
meta: 4.4.0.1063.67
signed: 4.4.0-1063.68
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 17:34:11.643725
clamps:
  new-review: ef8b65ce9693823e
  self: 4.4.0-1063.68
  sru-review: ef8b65ce9693823e

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/2038357/+subscriptions


___
Mailing list: https://launchpad.net/~group.of.nepali.translators
Post to : group.of.nepali.translators@lists.launchpad.net
Unsubscribe : https://launchpad.net/~group.of.nepali.translators
More help   : https://help.launchpad.net/ListHelp


[Group.of.nepali.translators] [Bug 2038323] Re: xenial/linux-azure: 4.15.0-1171.186~16.04.1 -proposed tracker

2023-10-11 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/promote-to-proposed
   Status: Fix Committed => Fix Released

** Changed in: kernel-sru-workflow/regression-testing
   Status: New => Triaged

** Changed in: kernel-sru-workflow/stakeholder-signoff
   Status: New => Confirmed

** Changed in: kernel-sru-workflow/verification-testing
   Status: New => Fix Released

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  built:
from: 991a4afa05f99239
route-entry: 2
  delta:
promote-to-proposed: [main, meta, signed, generate]
  flag:
boot-testing-requested: true
+   bugs-spammed: true
+   proposed-announcement-sent: true
+   proposed-testing-requested: true
  issue: KSRU-10130
  kernel-stable-master-bug: 2038325
  packages:
generate: linux-generate-azure
main: linux-azure
meta: linux-meta-azure
signed: linux-signed-azure
- phase: Promote to Proposed
- phase-changed: Wednesday, 11. October 2023 14:08 UTC
+ phase: Testing
+ phase-changed: Wednesday, 11. October 2023 16:48 UTC
  reason:
-   canonical-signing-jobs/task00: Ongoing -s signing request
- in-progress
-   promote-to-proposed: Pending -- packages copying to Proposed (main:P
- signed:P meta:P)
+   regression-testing: Ongoing -s testing in progress
+   stakeholder-signoff: Stalled -s waiting for signoff
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.15.0-1171.186~16.04.1
meta: 4.15.0.1171.155
signed: 4.15.0-1171.186~16.04.1
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 18:07:53.703749
clamps:
  new-review: 991a4afa05f99239
  promote-to-proposed: 991a4afa05f99239
  self: 4.15.0-1171.186~16.04.1
  sru-review: 991a4afa05f99239

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/2038323

Title:
  xenial/linux-azure: 4.15.0-1171.186~16.04.1 -proposed tracker

Status in canonical-signing-jobs task00 series:
  Fix Released
Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Invalid
Status in Kernel SRU Workflow boot-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow new-review series:
  Fix Released
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-generate series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-signed series:
  Fix Released
Status in Kernel SRU Workflow promote-signing-to-proposed series:
  Invalid
Status in Kernel SRU Workflow promote-to-proposed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-security series:
  Invalid
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  Triaged
Status in Kernel SRU Workflow security-signoff series:
  Invalid
Status in Kernel SRU Workflow sru-review series:
  Fix Released
Status in Kernel SRU Workflow stakeholder-signoff series:
  Confirmed
Status in Kernel SRU Workflow verification-testing series:
  Fix Released
Status in linux-azure source package in Xenial:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  -- swm properties --
  built:
from: 991a4afa05f99239
route-entry: 2
  delta:
promote-to-proposed: [main, meta, signed, generate]
  flag:
boot-testing-requested: true
bugs-spammed: true
proposed-announcement-sent: true
proposed-testing-requested: true
  issue: KSRU-10130
  kernel-stable-master-bug: 2038325
  packages:
generate: linux-generate-azure
main: linux-azure
meta: linux-meta-azure
signed: linux-signed-azure
  phase: Testing
  phase-changed: Wednesday, 11. October 2023 16:48 UTC
  reason:
regression-testing: Ongoing -s testing in progress
stakeholder-signoff: Stalled -s waiting for signoff
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.15.0-1171.186~16.04.1
meta: 4.15.0.1171.155
signed: 4.15.0-1171.186~16.04.1
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 18:07:53.703749
clamps:
  new-review: 991a4afa05f99239
  promote-to-proposed: 991a4afa05f99239
  self: 4.15.0-1171.186~16.04.1
  sru-review: 991a4afa05f99239

To manage notifications about this bug go to:

[Group.of.nepali.translators] [Bug 2038323] Re: xenial/linux-azure: 4.15.0-1171.186~16.04.1 -proposed tracker

2023-10-11 Thread Andy Whitcroft
** Changed in: canonical-signing-jobs/task00
   Status: In Progress => Fix Released

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/2038323

Title:
  xenial/linux-azure: 4.15.0-1171.186~16.04.1 -proposed tracker

Status in canonical-signing-jobs task00 series:
  Fix Released
Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Invalid
Status in Kernel SRU Workflow boot-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow new-review series:
  Fix Released
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-generate series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-signed series:
  Fix Released
Status in Kernel SRU Workflow promote-signing-to-proposed series:
  Invalid
Status in Kernel SRU Workflow promote-to-proposed series:
  Fix Committed
Status in Kernel SRU Workflow promote-to-security series:
  Invalid
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  Invalid
Status in Kernel SRU Workflow sru-review series:
  Fix Released
Status in Kernel SRU Workflow stakeholder-signoff series:
  New
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-azure source package in Xenial:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  -- swm properties --
  built:
from: 991a4afa05f99239
route-entry: 2
  delta:
promote-to-proposed: [main, meta, signed, generate]
  flag:
boot-testing-requested: true
  issue: KSRU-10130
  kernel-stable-master-bug: 2038325
  packages:
generate: linux-generate-azure
main: linux-azure
meta: linux-meta-azure
signed: linux-signed-azure
  phase: Promote to Proposed
  phase-changed: Wednesday, 11. October 2023 14:08 UTC
  reason:
canonical-signing-jobs/task00: Ongoing -s signing request
  in-progress
promote-to-proposed: Pending -- packages copying to Proposed (main:P
  signed:P meta:P)
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.15.0-1171.186~16.04.1
meta: 4.15.0.1171.155
signed: 4.15.0-1171.186~16.04.1
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 18:07:53.703749
clamps:
  new-review: 991a4afa05f99239
  promote-to-proposed: 991a4afa05f99239
  self: 4.15.0-1171.186~16.04.1
  sru-review: 991a4afa05f99239

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-signing-jobs/task00/+bug/2038323/+subscriptions


___
Mailing list: https://launchpad.net/~group.of.nepali.translators
Post to : group.of.nepali.translators@lists.launchpad.net
Unsubscribe : https://launchpad.net/~group.of.nepali.translators
More help   : https://help.launchpad.net/ListHelp


[Group.of.nepali.translators] [Bug 2038355] Re: xenial/linux-aws: 4.4.0-1162.177 -proposed tracker

2023-10-11 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/boot-testing
   Status: New => Triaged

** Changed in: kernel-sru-workflow/new-review
   Status: Confirmed => Triaged

** Changed in: kernel-sru-workflow/prepare-package
   Status: Fix Committed => Fix Released

** Changed in: kernel-sru-workflow/sru-review
   Status: Confirmed => Triaged

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  built:
from: 2f9d73aba1e224f7
route-entry: 2
  delta:
promote-to-proposed: [main, meta]
+ flag:
+   boot-testing-requested: true
  issue: KSRU-10148
  kernel-stable-master-bug: 2038362
  packages:
main: linux-aws
meta: linux-meta-aws
- phase: Packaging
- phase-changed: Wednesday, 11. October 2023 12:37 UTC
+ phase: Testing
+ phase-changed: Wednesday, 11. October 2023 15:49 UTC
  reason:
-   :prepare-packages: Pending -- building in ppa (main:P)
-   new-review: Pending -s ready for review
-   prepare-package: Ongoing -- main package not yet fully built
-   sru-review: Pending -s ready for review
+   boot-testing: Ongoing -s testing in progress
+   new-review: Stalled -s ready for review (built)
+   sru-review: Stalled -s ready for review (built)
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.4.0-1162.177
meta: 4.4.0.1162.166
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 17:33:42.381577
clamps:
  new-review: 2f9d73aba1e224f7
  self: 4.4.0-1162.177
  sru-review: 2f9d73aba1e224f7

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/2038355

Title:
  xenial/linux-aws: 4.4.0-1162.177 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Invalid
Status in Kernel SRU Workflow boot-testing series:
  Triaged
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow new-review series:
  Triaged
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  Invalid
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  Invalid
Status in Kernel SRU Workflow sru-review series:
  Triaged
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-aws source package in Xenial:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  -- swm properties --
  built:
from: 2f9d73aba1e224f7
route-entry: 2
  delta:
promote-to-proposed: [main, meta]
  flag:
boot-testing-requested: true
  issue: KSRU-10148
  kernel-stable-master-bug: 2038362
  packages:
main: linux-aws
meta: linux-meta-aws
  phase: Testing
  phase-changed: Wednesday, 11. October 2023 15:49 UTC
  reason:
boot-testing: Ongoing -s testing in progress
new-review: Stalled -s ready for review (built)
sru-review: Stalled -s ready for review (built)
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.4.0-1162.177
meta: 4.4.0.1162.166
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 17:33:42.381577
clamps:
  new-review: 2f9d73aba1e224f7
  self: 4.4.0-1162.177
  sru-review: 2f9d73aba1e224f7

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/2038355/+subscriptions


___
Mailing list: https://launchpad.net/~group.of.nepali.translators
Post to : group.of.nepali.translators@lists.launchpad.net
Unsubscribe : https://launchpad.net/~group.of.nepali.translators
More help   : https://help.launchpad.net/ListHelp


[Group.of.nepali.translators] [Bug 2038338] Re: xenial/linux-hwe: 4.15.0-219.230~16.04.1 -proposed tracker

2023-10-11 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/promote-to-proposed
   Status: Fix Committed => Fix Released

** Changed in: kernel-sru-workflow/regression-testing
   Status: New => Triaged

** Changed in: kernel-sru-workflow/verification-testing
   Status: New => Fix Released

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  built:
from: e932fe3958bcbd45
route-entry: 2
  delta:
promote-to-proposed: [main, meta, signed, generate]
  flag:
boot-testing-requested: true
+   bugs-spammed: true
+   proposed-announcement-sent: true
+   proposed-testing-requested: true
  issue: KSRU-10143
  kernel-stable-master-bug: 2038339
  packages:
generate: linux-generate-hwe
main: linux-hwe
meta: linux-meta-hwe
signed: linux-signed-hwe
- phase: Promote to Proposed
- phase-changed: Wednesday, 11. October 2023 12:32 UTC
+ phase: Testing
+ phase-changed: Wednesday, 11. October 2023 15:20 UTC
  reason:
-   canonical-signing-jobs/task00: Ongoing -s signing request
- in-progress
-   promote-to-proposed: Pending -- packages copying to Proposed (main:P
- signed:P meta:P)
+   regression-testing: Ongoing -s testing in progress
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.15.0-219.230~16.04.1
meta: 4.15.0.219.3
signed: 4.15.0-219.230~16.04.1
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 11:58:32.598970
clamps:
  new-review: e932fe3958bcbd45
  promote-to-proposed: e932fe3958bcbd45
  self: 4.15.0-219.230~16.04.1
  sru-review: e932fe3958bcbd45

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/2038338

Title:
  xenial/linux-hwe: 4.15.0-219.230~16.04.1 -proposed tracker

Status in canonical-signing-jobs task00 series:
  Fix Released
Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Invalid
Status in Kernel SRU Workflow boot-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow new-review series:
  Fix Released
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-generate series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-signed series:
  Fix Released
Status in Kernel SRU Workflow promote-signing-to-proposed series:
  Invalid
Status in Kernel SRU Workflow promote-to-proposed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-security series:
  Invalid
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  Triaged
Status in Kernel SRU Workflow security-signoff series:
  Invalid
Status in Kernel SRU Workflow sru-review series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  Fix Released
Status in linux-hwe source package in Xenial:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  -- swm properties --
  built:
from: e932fe3958bcbd45
route-entry: 2
  delta:
promote-to-proposed: [main, meta, signed, generate]
  flag:
boot-testing-requested: true
bugs-spammed: true
proposed-announcement-sent: true
proposed-testing-requested: true
  issue: KSRU-10143
  kernel-stable-master-bug: 2038339
  packages:
generate: linux-generate-hwe
main: linux-hwe
meta: linux-meta-hwe
signed: linux-signed-hwe
  phase: Testing
  phase-changed: Wednesday, 11. October 2023 15:20 UTC
  reason:
regression-testing: Ongoing -s testing in progress
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.15.0-219.230~16.04.1
meta: 4.15.0.219.3
signed: 4.15.0-219.230~16.04.1
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 11:58:32.598970
clamps:
  new-review: e932fe3958bcbd45
  promote-to-proposed: e932fe3958bcbd45
  self: 4.15.0-219.230~16.04.1
  sru-review: e932fe3958bcbd45

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-signing-jobs/task00/+bug/2038338/+subscriptions


___
Mailing list: https://launchpad.net/~group.of.nepali.translators
Post to : group.of.nepali.translators@lists.launchpad.net
Unsubscribe : https://launchpad.net/~group.of.nepali.translators
More help  

[Group.of.nepali.translators] [Bug 2038357] Re: xenial/linux-cascade: 4.4.0-1063.68 -proposed tracker

2023-10-11 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/promote-to-security
   Status: New => Invalid

** Changed in: kernel-sru-workflow/security-signoff
   Status: New => Invalid

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  built:
route-entry: 2
  issue: KSRU-10149
  kernel-stable-master-bug: 2038362
  packages:
main: linux-cascade
meta: linux-meta-cascade
signed: linux-signed-cascade
- phase: Ready for Packaging
- phase-changed: Tuesday, 10. October 2023 17:34 UTC
+ phase: Packaging
+ phase-changed: Wednesday, 11. October 2023 15:18 UTC
  reason:
-   :prepare-packages: Pending -b Debs ready to be cranked
-   prepare-package: Pending -- version not specified
+   :prepare-packages: 'Ongoing -b Being cranked by: smb'
+   prepare-package: Pending -- tag not published and package not
+ uploaded
+   prepare-package-meta: Pending -- tag not published and package not
+ uploaded
+   prepare-package-signed: Pending -- tag not published and package not
+ uploaded
+ synthetic:
+   :promote-to-as-proposed: Invalid
  trackers:
xenial/linux-cascade/cascade-kernel: bug 2038356
  variant: debs
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 17:34:11.643725
+   clamps:
+ self: 4.4.0-1063.68

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/2038357

Title:
  xenial/linux-cascade: 4.4.0-1063.68 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Invalid
Status in Kernel SRU Workflow boot-testing series:
  Invalid
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow new-review series:
  New
Status in Kernel SRU Workflow prepare-package series:
  In Progress
Status in Kernel SRU Workflow prepare-package-meta series:
  In Progress
Status in Kernel SRU Workflow prepare-package-signed series:
  In Progress
Status in Kernel SRU Workflow promote-signing-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  Invalid
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  Invalid
Status in Kernel SRU Workflow security-signoff series:
  Invalid
Status in Kernel SRU Workflow sru-review series:
  New
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux source package in Xenial:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  -- swm properties --
  built:
route-entry: 2
  issue: KSRU-10149
  kernel-stable-master-bug: 2038362
  packages:
main: linux-cascade
meta: linux-meta-cascade
signed: linux-signed-cascade
  phase: Packaging
  phase-changed: Wednesday, 11. October 2023 15:18 UTC
  reason:
:prepare-packages: 'Ongoing -b Being cranked by: smb'
prepare-package: Pending -- tag not published and package not
  uploaded
prepare-package-meta: Pending -- tag not published and package not
  uploaded
prepare-package-signed: Pending -- tag not published and package not
  uploaded
  synthetic:
:promote-to-as-proposed: Invalid
  trackers:
xenial/linux-cascade/cascade-kernel: bug 2038356
  variant: debs
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 17:34:11.643725
clamps:
  self: 4.4.0-1063.68

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/2038357/+subscriptions


___
Mailing list: https://launchpad.net/~group.of.nepali.translators
Post to : group.of.nepali.translators@lists.launchpad.net
Unsubscribe : https://launchpad.net/~group.of.nepali.translators
More help   : https://help.launchpad.net/ListHelp


[Group.of.nepali.translators] [Bug 2038338] Re: xenial/linux-hwe: 4.15.0-219.230~16.04.1 -proposed tracker

2023-10-11 Thread Andy Whitcroft
** Changed in: canonical-signing-jobs/task00
   Status: In Progress => Fix Released

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/2038338

Title:
  xenial/linux-hwe: 4.15.0-219.230~16.04.1 -proposed tracker

Status in canonical-signing-jobs task00 series:
  Fix Released
Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Invalid
Status in Kernel SRU Workflow boot-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow new-review series:
  Fix Released
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-generate series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-signed series:
  Fix Released
Status in Kernel SRU Workflow promote-signing-to-proposed series:
  Invalid
Status in Kernel SRU Workflow promote-to-proposed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-security series:
  Invalid
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  Triaged
Status in Kernel SRU Workflow security-signoff series:
  Invalid
Status in Kernel SRU Workflow sru-review series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  Fix Released
Status in linux-hwe source package in Xenial:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  -- swm properties --
  built:
from: e932fe3958bcbd45
route-entry: 2
  delta:
promote-to-proposed: [main, meta, signed, generate]
  flag:
boot-testing-requested: true
bugs-spammed: true
proposed-announcement-sent: true
proposed-testing-requested: true
  issue: KSRU-10143
  kernel-stable-master-bug: 2038339
  packages:
generate: linux-generate-hwe
main: linux-hwe
meta: linux-meta-hwe
signed: linux-signed-hwe
  phase: Testing
  phase-changed: Wednesday, 11. October 2023 15:20 UTC
  reason:
regression-testing: Ongoing -s testing in progress
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.15.0-219.230~16.04.1
meta: 4.15.0.219.3
signed: 4.15.0-219.230~16.04.1
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 11:58:32.598970
clamps:
  new-review: e932fe3958bcbd45
  promote-to-proposed: e932fe3958bcbd45
  self: 4.15.0-219.230~16.04.1
  sru-review: e932fe3958bcbd45

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-signing-jobs/task00/+bug/2038338/+subscriptions


___
Mailing list: https://launchpad.net/~group.of.nepali.translators
Post to : group.of.nepali.translators@lists.launchpad.net
Unsubscribe : https://launchpad.net/~group.of.nepali.translators
More help   : https://help.launchpad.net/ListHelp


[Group.of.nepali.translators] [Bug 2038320] Re: xenial/linux-aws-hwe: 4.15.0-1162.175~16.04.1 -proposed tracker

2023-10-11 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/promote-to-security
   Status: New => Invalid

** Changed in: kernel-sru-workflow/security-signoff
   Status: New => Invalid

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  built:
route-entry: 2
  issue: KSRU-10127
  kernel-stable-master-bug: 2038321
  packages:
generate: linux-generate-aws-hwe
main: linux-aws-hwe
meta: linux-meta-aws-hwe
signed: linux-signed-aws-hwe
- phase: Ready for Packaging
- phase-changed: Wednesday, 11. October 2023 12:27 UTC
+ phase: Packaging
+ phase-changed: Wednesday, 11. October 2023 14:55 UTC
  reason:
-   :prepare-packages: Pending -b Debs ready to be cranked
-   prepare-package: Pending -- version not specified
+   :prepare-packages: 'Ongoing -b Being cranked by: bzolnier'
+   prepare-package: Pending -- tag not published and package not
+ uploaded
+   prepare-package-generate: Pending -- package not uploaded
+   prepare-package-meta: Pending -- tag not published and package not
+ uploaded
+   prepare-package-signed: Pending -- tag not published and package not
+ uploaded
+ synthetic:
+   :promote-to-as-proposed: Invalid
  variant: debs
  ~~:
announce:
  swm-transition-crankable: 2023-10-11 12:27:28.016997
+   clamps:
+ self: 4.15.0-1162.175~16.04.1

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/2038320

Title:
  xenial/linux-aws-hwe: 4.15.0-1162.175~16.04.1 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Invalid
Status in Kernel SRU Workflow boot-testing series:
  New
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow new-review series:
  New
Status in Kernel SRU Workflow prepare-package series:
  In Progress
Status in Kernel SRU Workflow prepare-package-generate series:
  In Progress
Status in Kernel SRU Workflow prepare-package-meta series:
  In Progress
Status in Kernel SRU Workflow prepare-package-signed series:
  In Progress
Status in Kernel SRU Workflow promote-signing-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  Invalid
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  Invalid
Status in Kernel SRU Workflow sru-review series:
  New
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-aws-hwe source package in Xenial:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  -- swm properties --
  built:
route-entry: 2
  issue: KSRU-10127
  kernel-stable-master-bug: 2038321
  packages:
generate: linux-generate-aws-hwe
main: linux-aws-hwe
meta: linux-meta-aws-hwe
signed: linux-signed-aws-hwe
  phase: Packaging
  phase-changed: Wednesday, 11. October 2023 14:55 UTC
  reason:
:prepare-packages: 'Ongoing -b Being cranked by: bzolnier'
prepare-package: Pending -- tag not published and package not
  uploaded
prepare-package-generate: Pending -- package not uploaded
prepare-package-meta: Pending -- tag not published and package not
  uploaded
prepare-package-signed: Pending -- tag not published and package not
  uploaded
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  ~~:
announce:
  swm-transition-crankable: 2023-10-11 12:27:28.016997
clamps:
  self: 4.15.0-1162.175~16.04.1

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/2038320/+subscriptions


___
Mailing list: https://launchpad.net/~group.of.nepali.translators
Post to : group.of.nepali.translators@lists.launchpad.net
Unsubscribe : https://launchpad.net/~group.of.nepali.translators
More help   : https://help.launchpad.net/ListHelp


[Group.of.nepali.translators] [Bug 2038355] Re: xenial/linux-aws: 4.4.0-1162.177 -proposed tracker

2023-10-11 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/prepare-package-meta
   Status: Fix Committed => Fix Released

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  built:
from: 2f9d73aba1e224f7
route-entry: 2
  delta:
promote-to-proposed: [main, meta]
  issue: KSRU-10148
  kernel-stable-master-bug: 2038362
  packages:
main: linux-aws
meta: linux-meta-aws
  phase: Packaging
  phase-changed: Wednesday, 11. October 2023 12:37 UTC
  reason:
-   :prepare-packages: Pending -- building in ppa (main:B meta:P)
-   new-review: Stalled -s ready for review
+   :prepare-packages: Pending -- building in ppa (main:Q)
+   new-review: Pending -s ready for review
prepare-package: Ongoing -- main package not yet fully built
-   prepare-package-meta: Ongoing -- meta package not yet fully built
-   sru-review: Stalled -s ready for review
+   sru-review: Pending -s ready for review
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.4.0-1162.177
meta: 4.4.0.1162.166
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 17:33:42.381577
clamps:
  new-review: 2f9d73aba1e224f7
  self: 4.4.0-1162.177
  sru-review: 2f9d73aba1e224f7

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/2038355

Title:
  xenial/linux-aws: 4.4.0-1162.177 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Invalid
Status in Kernel SRU Workflow boot-testing series:
  New
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow new-review series:
  Confirmed
Status in Kernel SRU Workflow prepare-package series:
  Fix Committed
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  Invalid
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  Invalid
Status in Kernel SRU Workflow sru-review series:
  Confirmed
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-aws source package in Xenial:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  -- swm properties --
  built:
from: 2f9d73aba1e224f7
route-entry: 2
  delta:
promote-to-proposed: [main, meta]
  issue: KSRU-10148
  kernel-stable-master-bug: 2038362
  packages:
main: linux-aws
meta: linux-meta-aws
  phase: Packaging
  phase-changed: Wednesday, 11. October 2023 12:37 UTC
  reason:
:prepare-packages: Pending -- building in ppa (main:Q)
new-review: Pending -s ready for review
prepare-package: Ongoing -- main package not yet fully built
sru-review: Pending -s ready for review
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.4.0-1162.177
meta: 4.4.0.1162.166
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 17:33:42.381577
clamps:
  new-review: 2f9d73aba1e224f7
  self: 4.4.0-1162.177
  sru-review: 2f9d73aba1e224f7

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/2038355/+subscriptions


___
Mailing list: https://launchpad.net/~group.of.nepali.translators
Post to : group.of.nepali.translators@lists.launchpad.net
Unsubscribe : https://launchpad.net/~group.of.nepali.translators
More help   : https://help.launchpad.net/ListHelp


[Group.of.nepali.translators] [Bug 2038323] Re: xenial/linux-azure: 4.15.0-1171.186~16.04.1 -proposed tracker

2023-10-11 Thread Ubuntu Kernel Bot
** Changed in: canonical-signing-jobs/task00
   Status: Triaged => Confirmed

** Changed in: kernel-sru-workflow/boot-testing
   Status: Triaged => Fix Released

** Changed in: kernel-sru-workflow/promote-to-proposed
   Status: New => In Progress

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  built:
from: 991a4afa05f99239
route-entry: 2
  delta:
promote-to-proposed: [main, meta, signed, generate]
  flag:
boot-testing-requested: true
  issue: KSRU-10130
  kernel-stable-master-bug: 2038325
  packages:
generate: linux-generate-azure
main: linux-azure
meta: linux-meta-azure
signed: linux-signed-azure
- phase: Testing
- phase-changed: Wednesday, 11. October 2023 12:54 UTC
+ phase: Promote to Proposed
+ phase-changed: Wednesday, 11. October 2023 14:08 UTC
  reason:
-   boot-testing: Ongoing -s testing in progress
+   canonical-signing-jobs/task00: Pending -- Ready
+   promote-to-proposed: Stalled -- promotion in progress
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.15.0-1171.186~16.04.1
meta: 4.15.0.1171.155
signed: 4.15.0-1171.186~16.04.1
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 18:07:53.703749
clamps:
  new-review: 991a4afa05f99239
+ promote-to-proposed: 991a4afa05f99239
  self: 4.15.0-1171.186~16.04.1
  sru-review: 991a4afa05f99239

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/2038323

Title:
  xenial/linux-azure: 4.15.0-1171.186~16.04.1 -proposed tracker

Status in canonical-signing-jobs task00 series:
  In Progress
Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Invalid
Status in Kernel SRU Workflow boot-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow new-review series:
  Fix Released
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-generate series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-signed series:
  Fix Released
Status in Kernel SRU Workflow promote-signing-to-proposed series:
  Invalid
Status in Kernel SRU Workflow promote-to-proposed series:
  In Progress
Status in Kernel SRU Workflow promote-to-security series:
  Invalid
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  Invalid
Status in Kernel SRU Workflow sru-review series:
  Fix Released
Status in Kernel SRU Workflow stakeholder-signoff series:
  New
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-azure source package in Xenial:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  -- swm properties --
  built:
from: 991a4afa05f99239
route-entry: 2
  delta:
promote-to-proposed: [main, meta, signed, generate]
  flag:
boot-testing-requested: true
  issue: KSRU-10130
  kernel-stable-master-bug: 2038325
  packages:
generate: linux-generate-azure
main: linux-azure
meta: linux-meta-azure
signed: linux-signed-azure
  phase: Promote to Proposed
  phase-changed: Wednesday, 11. October 2023 14:08 UTC
  reason:
canonical-signing-jobs/task00: Ongoing -s signing request
  in-progress
promote-to-proposed: Ongoing -- promotion in progress
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.15.0-1171.186~16.04.1
meta: 4.15.0.1171.155
signed: 4.15.0-1171.186~16.04.1
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 18:07:53.703749
clamps:
  new-review: 991a4afa05f99239
  promote-to-proposed: 991a4afa05f99239
  self: 4.15.0-1171.186~16.04.1
  sru-review: 991a4afa05f99239

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-signing-jobs/task00/+bug/2038323/+subscriptions


___
Mailing list: https://launchpad.net/~group.of.nepali.translators
Post to : group.of.nepali.translators@lists.launchpad.net
Unsubscribe : https://launchpad.net/~group.of.nepali.translators
More help   : https://help.launchpad.net/ListHelp


[Group.of.nepali.translators] [Bug 2038323] Re: xenial/linux-azure: 4.15.0-1171.186~16.04.1 -proposed tracker

2023-10-11 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/boot-testing
   Status: New => Triaged

** Changed in: kernel-sru-workflow/prepare-package-signed
   Status: Fix Committed => Fix Released

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  built:
from: 991a4afa05f99239
route-entry: 2
  delta:
promote-to-proposed: [main, meta, signed, generate]
+ flag:
+   boot-testing-requested: true
  issue: KSRU-10130
  kernel-stable-master-bug: 2038325
  packages:
generate: linux-generate-azure
main: linux-azure
meta: linux-meta-azure
signed: linux-signed-azure
- phase: Packaging
- phase-changed: Tuesday, 10. October 2023 21:32 UTC
+ phase: Testing
+ phase-changed: Wednesday, 11. October 2023 12:54 UTC
  reason:
-   :prepare-packages: Pending -- building in ppa (signed:P)
-   prepare-package-signed: Ongoing -- signed package not yet fully
- built
+   boot-testing: Ongoing -s testing in progress
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.15.0-1171.186~16.04.1
meta: 4.15.0.1171.155
signed: 4.15.0-1171.186~16.04.1
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 18:07:53.703749
clamps:
  new-review: 991a4afa05f99239
  self: 4.15.0-1171.186~16.04.1
  sru-review: 991a4afa05f99239

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/2038323

Title:
  xenial/linux-azure: 4.15.0-1171.186~16.04.1 -proposed tracker

Status in canonical-signing-jobs task00 series:
  Triaged
Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Invalid
Status in Kernel SRU Workflow boot-testing series:
  Triaged
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow new-review series:
  Fix Released
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-generate series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-signed series:
  Fix Released
Status in Kernel SRU Workflow promote-signing-to-proposed series:
  Invalid
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  Invalid
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  Invalid
Status in Kernel SRU Workflow sru-review series:
  Fix Released
Status in Kernel SRU Workflow stakeholder-signoff series:
  New
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-azure source package in Xenial:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  -- swm properties --
  built:
from: 991a4afa05f99239
route-entry: 2
  delta:
promote-to-proposed: [main, meta, signed, generate]
  flag:
boot-testing-requested: true
  issue: KSRU-10130
  kernel-stable-master-bug: 2038325
  packages:
generate: linux-generate-azure
main: linux-azure
meta: linux-meta-azure
signed: linux-signed-azure
  phase: Testing
  phase-changed: Wednesday, 11. October 2023 12:54 UTC
  reason:
boot-testing: Ongoing -s testing in progress
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.15.0-1171.186~16.04.1
meta: 4.15.0.1171.155
signed: 4.15.0-1171.186~16.04.1
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 18:07:53.703749
clamps:
  new-review: 991a4afa05f99239
  self: 4.15.0-1171.186~16.04.1
  sru-review: 991a4afa05f99239

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-signing-jobs/task00/+bug/2038323/+subscriptions


___
Mailing list: https://launchpad.net/~group.of.nepali.translators
Post to : group.of.nepali.translators@lists.launchpad.net
Unsubscribe : https://launchpad.net/~group.of.nepali.translators
More help   : https://help.launchpad.net/ListHelp


[Group.of.nepali.translators] [Bug 2038355] Re: xenial/linux-aws: 4.4.0-1162.177 -proposed tracker

2023-10-11 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/promote-to-security
   Status: New => Invalid

** Changed in: kernel-sru-workflow/security-signoff
   Status: New => Invalid

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  built:
route-entry: 2
  issue: KSRU-10148
  kernel-stable-master-bug: 2038362
  packages:
main: linux-aws
meta: linux-meta-aws
- phase: Ready for Packaging
- phase-changed: Tuesday, 10. October 2023 17:33 UTC
+ phase: Packaging
+ phase-changed: Wednesday, 11. October 2023 12:37 UTC
  reason:
-   :prepare-packages: Pending -b Debs ready to be cranked
-   prepare-package: Pending -- version not specified
+   :prepare-packages: 'Ongoing -b Being cranked by: cascardo'
+   prepare-package: Pending -- tag not published and package not
+ uploaded
+   prepare-package-meta: Pending -- tag not published and package not
+ uploaded
+ synthetic:
+   :promote-to-as-proposed: Invalid
  variant: debs
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 17:33:42.381577
+   clamps:
+ self: 4.4.0-1162.177

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/2038355

Title:
  xenial/linux-aws: 4.4.0-1162.177 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Invalid
Status in Kernel SRU Workflow boot-testing series:
  New
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow new-review series:
  New
Status in Kernel SRU Workflow prepare-package series:
  In Progress
Status in Kernel SRU Workflow prepare-package-meta series:
  In Progress
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  Invalid
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  Invalid
Status in Kernel SRU Workflow sru-review series:
  New
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-aws source package in Xenial:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  -- swm properties --
  built:
route-entry: 2
  issue: KSRU-10148
  kernel-stable-master-bug: 2038362
  packages:
main: linux-aws
meta: linux-meta-aws
  phase: Packaging
  phase-changed: Wednesday, 11. October 2023 12:37 UTC
  reason:
:prepare-packages: 'Ongoing -b Being cranked by: cascardo'
prepare-package: Pending -- tag not published and package not
  uploaded
prepare-package-meta: Pending -- tag not published and package not
  uploaded
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 17:33:42.381577
clamps:
  self: 4.4.0-1162.177

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/2038355/+subscriptions


___
Mailing list: https://launchpad.net/~group.of.nepali.translators
Post to : group.of.nepali.translators@lists.launchpad.net
Unsubscribe : https://launchpad.net/~group.of.nepali.translators
More help   : https://help.launchpad.net/ListHelp


[Group.of.nepali.translators] [Bug 2038323] Re: xenial/linux-azure: 4.15.0-1171.186~16.04.1 -proposed tracker

2023-10-11 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/promote-signing-to-proposed
   Status: New => Invalid

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  built:
from: 991a4afa05f99239
route-entry: 2
  delta:
promote-to-proposed: [main, meta, signed, generate]
  issue: KSRU-10130
  kernel-stable-master-bug: 2038325
  packages:
generate: linux-generate-azure
main: linux-azure
meta: linux-meta-azure
signed: linux-signed-azure
  phase: Packaging
  phase-changed: Tuesday, 10. October 2023 21:32 UTC
  reason:
:prepare-packages: Pending -- building in ppa (signed:P)
-   new-review: Pending -s ready for review
prepare-package-signed: Ongoing -- signed package not yet fully
  built
-   sru-review: Pending -s ready for review
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.15.0-1171.186~16.04.1
meta: 4.15.0.1171.155
signed: 4.15.0-1171.186~16.04.1
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 18:07:53.703749
clamps:
  new-review: 991a4afa05f99239
  self: 4.15.0-1171.186~16.04.1
  sru-review: 991a4afa05f99239

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/2038323

Title:
  xenial/linux-azure: 4.15.0-1171.186~16.04.1 -proposed tracker

Status in canonical-signing-jobs task00 series:
  Triaged
Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Invalid
Status in Kernel SRU Workflow boot-testing series:
  New
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow new-review series:
  Fix Released
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-generate series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-signed series:
  Fix Committed
Status in Kernel SRU Workflow promote-signing-to-proposed series:
  Invalid
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  Invalid
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  Invalid
Status in Kernel SRU Workflow sru-review series:
  Fix Released
Status in Kernel SRU Workflow stakeholder-signoff series:
  New
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-azure source package in Xenial:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  -- swm properties --
  built:
from: 991a4afa05f99239
route-entry: 2
  delta:
promote-to-proposed: [main, meta, signed, generate]
  issue: KSRU-10130
  kernel-stable-master-bug: 2038325
  packages:
generate: linux-generate-azure
main: linux-azure
meta: linux-meta-azure
signed: linux-signed-azure
  phase: Packaging
  phase-changed: Tuesday, 10. October 2023 21:32 UTC
  reason:
:prepare-packages: Pending -- building in ppa (signed:P)
prepare-package-signed: Ongoing -- signed package not yet fully
  built
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.15.0-1171.186~16.04.1
meta: 4.15.0.1171.155
signed: 4.15.0-1171.186~16.04.1
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 18:07:53.703749
clamps:
  new-review: 991a4afa05f99239
  self: 4.15.0-1171.186~16.04.1
  sru-review: 991a4afa05f99239

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-signing-jobs/task00/+bug/2038323/+subscriptions


___
Mailing list: https://launchpad.net/~group.of.nepali.translators
Post to : group.of.nepali.translators@lists.launchpad.net
Unsubscribe : https://launchpad.net/~group.of.nepali.translators
More help   : https://help.launchpad.net/ListHelp


[Group.of.nepali.translators] [Bug 2038323] Re: xenial/linux-azure: 4.15.0-1171.186~16.04.1 -proposed tracker

2023-10-11 Thread Andy Whitcroft
** Changed in: kernel-sru-workflow/sru-review
   Status: Confirmed => In Progress

** Changed in: kernel-sru-workflow/sru-review
 Assignee: (unassigned) => Andy Whitcroft (apw)

** Changed in kernel-sru-workflow/sru-review
 Status explanation: unset => from:

** Changed in: kernel-sru-workflow/new-review
   Status: Confirmed => In Progress

** Changed in: kernel-sru-workflow/new-review
 Assignee: (unassigned) => Andy Whitcroft (apw)

** Changed in kernel-sru-workflow/new-review
 Status explanation: unset => from:

** Changed in: canonical-signing-jobs/task00
   Importance: Undecided => Medium

** Changed in: canonical-signing-jobs/task00
 Assignee: (unassigned) => Andy Whitcroft (apw)

** Changed in canonical-signing-jobs/task00
 Importance explanation: unset => xenial:linux-azure

** Changed in canonical-signing-jobs/task00
 Status explanation: unset => # title kernel xenial:linux-azure
# route ppa:canonical-kernel-esm/ubuntu/ppa2 -> signing:pro/3 -> 
ppa:canonical-kernel-esm/ubuntu/proposed2
validate \
  --exclude xenial:linux-azure --publications \
~canonical-kernel-esm/+archive/ubuntu/ppa2/+sourcepub/15197184 \
~canonical-kernel-esm/+archive/ubuntu/ppa2/+sourcepub/15197185 \
~canonical-kernel-esm/+archive/ubuntu/ppa2/+sourcepub/15197189 \
~canonical-kernel-esm/+archive/ubuntu/ppa2/+sourcepub/15197186
copy \
  --from ppa:canonical-kernel-esm/ubuntu/ppa2 --from-suite xenial --sources \
linux-azure/4.15.0-1171.186~16.04.1 \
linux-meta-azure/4.15.0.1171.155 \
linux-generate-azure/4.15.0-1171.186~16.04.1 \
  --to signing:pro/3 --to-suite xenial
copy \
  --from ppa:canonical-kernel-esm/ubuntu/ppa2 --from-suite xenial --sources \
linux-signed-azure/4.15.0-1171.186~16.04.1/signing \
  --to signing:pro/3 --to-suite xenial
copy \
  --from signing:pro/3 --from-suite xenial --sources \
linux-azure/4.15.0-1171.186~16.04.1 \
linux-meta-azure/4.15.0.1171.155 \
linux-signed-azure/4.15.0-1171.186~16.04.1 \
  --to ppa:canonical-kernel-esm/ubuntu/proposed2 --to-suite xenial
delete \
  --from signing:pro/3 --from-suite xenial --sources \
linux-azure/4.15.0-1171.186~16.04.1 \
linux-meta-azure/4.15.0.1171.155 \
linux-generate-azure/4.15.0-1171.186~16.04.1 \
linux-signed-azure/4.15.0-1171.186~16.04.1

** Changed in: kernel-sru-workflow/sru-review
   Status: In Progress => Fix Released

** Changed in: canonical-signing-jobs/task00
   Status: New => Triaged

** Changed in: kernel-sru-workflow/new-review
   Status: In Progress => Fix Released

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/2038323

Title:
  xenial/linux-azure: 4.15.0-1171.186~16.04.1 -proposed tracker

Status in canonical-signing-jobs task00 series:
  Triaged
Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Invalid
Status in Kernel SRU Workflow boot-testing series:
  New
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow new-review series:
  Fix Released
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-generate series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-signed series:
  Fix Committed
Status in Kernel SRU Workflow promote-signing-to-proposed series:
  Invalid
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  Invalid
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  Invalid
Status in Kernel SRU Workflow sru-review series:
  Fix Released
Status in Kernel SRU Workflow stakeholder-signoff series:
  New
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-azure source package in Xenial:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  -- swm properties --
  built:
from: 991a4afa05f99239
route-entry: 2
  delta:
promote-to-proposed: [main, meta, signed, generate]
  issue: KSRU-10130
  kernel-stable-master-bug: 2038325
  packages:
generate: linux-generate-azure
main: linux-azure
meta: linux-meta-azure
signed: linux-signed-azure
  phase: Packaging
  phase-changed: Tuesday, 10. October 2023 21:32 UTC
  reason:
:prepare-packages: Pending -- building in ppa (signed:P)
prepare-package-signed: Ongoing -- signed package not yet fully
  built
  synthetic:

[Group.of.nepali.translators] [Bug 2038338] Re: xenial/linux-hwe: 4.15.0-219.230~16.04.1 -proposed tracker

2023-10-11 Thread Ubuntu Kernel Bot
** Changed in: canonical-signing-jobs/task00
   Status: Triaged => Confirmed

** Changed in: kernel-sru-workflow/promote-signing-to-proposed
   Status: New => Invalid

** Changed in: kernel-sru-workflow/promote-to-proposed
   Status: New => In Progress

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  built:
from: e932fe3958bcbd45
route-entry: 2
  delta:
promote-to-proposed: [main, meta, signed, generate]
  flag:
boot-testing-requested: true
  issue: KSRU-10143
  kernel-stable-master-bug: 2038339
  packages:
generate: linux-generate-hwe
main: linux-hwe
meta: linux-meta-hwe
signed: linux-signed-hwe
- phase: Holding before Promote to Proposed
- phase-changed: Tuesday, 10. October 2023 22:06 UTC
+ phase: Promote to Proposed
+ phase-changed: Wednesday, 11. October 2023 12:32 UTC
  reason:
-   new-review: Stalled -s review in progress
-   sru-review: Stalled -s review in progress
+   canonical-signing-jobs/task00: Pending -- Ready
+   promote-to-proposed: Stalled -- promotion in progress
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.15.0-219.230~16.04.1
meta: 4.15.0.219.3
signed: 4.15.0-219.230~16.04.1
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 11:58:32.598970
clamps:
  new-review: e932fe3958bcbd45
+ promote-to-proposed: e932fe3958bcbd45
  self: 4.15.0-219.230~16.04.1
  sru-review: e932fe3958bcbd45

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/2038338

Title:
  xenial/linux-hwe: 4.15.0-219.230~16.04.1 -proposed tracker

Status in canonical-signing-jobs task00 series:
  In Progress
Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Invalid
Status in Kernel SRU Workflow boot-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow new-review series:
  Fix Released
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-generate series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-signed series:
  Fix Released
Status in Kernel SRU Workflow promote-signing-to-proposed series:
  Invalid
Status in Kernel SRU Workflow promote-to-proposed series:
  In Progress
Status in Kernel SRU Workflow promote-to-security series:
  Invalid
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  Invalid
Status in Kernel SRU Workflow sru-review series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-hwe source package in Xenial:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  -- swm properties --
  built:
from: e932fe3958bcbd45
route-entry: 2
  delta:
promote-to-proposed: [main, meta, signed, generate]
  flag:
boot-testing-requested: true
  issue: KSRU-10143
  kernel-stable-master-bug: 2038339
  packages:
generate: linux-generate-hwe
main: linux-hwe
meta: linux-meta-hwe
signed: linux-signed-hwe
  phase: Promote to Proposed
  phase-changed: Wednesday, 11. October 2023 12:32 UTC
  reason:
canonical-signing-jobs/task00: Ongoing -s signing request
  in-progress
promote-to-proposed: Ongoing -- promotion in progress
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.15.0-219.230~16.04.1
meta: 4.15.0.219.3
signed: 4.15.0-219.230~16.04.1
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 11:58:32.598970
clamps:
  new-review: e932fe3958bcbd45
  promote-to-proposed: e932fe3958bcbd45
  self: 4.15.0-219.230~16.04.1
  sru-review: e932fe3958bcbd45

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-signing-jobs/task00/+bug/2038338/+subscriptions


___
Mailing list: https://launchpad.net/~group.of.nepali.translators
Post to : group.of.nepali.translators@lists.launchpad.net
Unsubscribe : https://launchpad.net/~group.of.nepali.translators
More help   : https://help.launchpad.net/ListHelp


[Group.of.nepali.translators] [Bug 2038338] Re: xenial/linux-hwe: 4.15.0-219.230~16.04.1 -proposed tracker

2023-10-11 Thread Andy Whitcroft
** Changed in: kernel-sru-workflow/sru-review
   Status: In Progress => Fix Released

** Changed in: canonical-signing-jobs/task00
   Importance: Undecided => Medium

** Changed in: canonical-signing-jobs/task00
 Assignee: (unassigned) => Andy Whitcroft (apw)

** Changed in canonical-signing-jobs/task00
 Importance explanation: unset => xenial:linux-hwe

** Changed in canonical-signing-jobs/task00
 Status explanation: unset => # title kernel xenial:linux-hwe
# route ppa:canonical-kernel-esm/ubuntu/ppa2 -> signing:pro/3 -> 
ppa:canonical-kernel-esm/ubuntu/proposed2
validate \
  --exclude xenial:linux-hwe --publications \
~canonical-kernel-esm/+archive/ubuntu/ppa2/+sourcepub/15196118 \
~canonical-kernel-esm/+archive/ubuntu/ppa2/+sourcepub/15196119 \
~canonical-kernel-esm/+archive/ubuntu/ppa2/+sourcepub/15196123 \
~canonical-kernel-esm/+archive/ubuntu/ppa2/+sourcepub/15196120
copy \
  --from ppa:canonical-kernel-esm/ubuntu/ppa2 --from-suite xenial --sources \
linux-hwe/4.15.0-219.230~16.04.1 \
linux-meta-hwe/4.15.0.219.3 \
linux-generate-hwe/4.15.0-219.230~16.04.1 \
  --to signing:pro/3 --to-suite xenial
copy \
  --from ppa:canonical-kernel-esm/ubuntu/ppa2 --from-suite xenial --sources \
linux-signed-hwe/4.15.0-219.230~16.04.1/signing \
  --to signing:pro/3 --to-suite xenial
copy \
  --from signing:pro/3 --from-suite xenial --sources \
linux-hwe/4.15.0-219.230~16.04.1 \
linux-meta-hwe/4.15.0.219.3 \
linux-signed-hwe/4.15.0-219.230~16.04.1 \
  --to ppa:canonical-kernel-esm/ubuntu/proposed2 --to-suite xenial
delete \
  --from signing:pro/3 --from-suite xenial --sources \
linux-hwe/4.15.0-219.230~16.04.1 \
linux-meta-hwe/4.15.0.219.3 \
linux-generate-hwe/4.15.0-219.230~16.04.1 \
linux-signed-hwe/4.15.0-219.230~16.04.1

** Changed in: canonical-signing-jobs/task00
   Status: New => Triaged

** Changed in: kernel-sru-workflow/new-review
   Status: In Progress => Fix Released

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/2038338

Title:
  xenial/linux-hwe: 4.15.0-219.230~16.04.1 -proposed tracker

Status in canonical-signing-jobs task00 series:
  In Progress
Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Invalid
Status in Kernel SRU Workflow boot-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow new-review series:
  Fix Released
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-generate series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-signed series:
  Fix Released
Status in Kernel SRU Workflow promote-signing-to-proposed series:
  Invalid
Status in Kernel SRU Workflow promote-to-proposed series:
  In Progress
Status in Kernel SRU Workflow promote-to-security series:
  Invalid
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  Invalid
Status in Kernel SRU Workflow sru-review series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-hwe source package in Xenial:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  -- swm properties --
  built:
from: e932fe3958bcbd45
route-entry: 2
  delta:
promote-to-proposed: [main, meta, signed, generate]
  flag:
boot-testing-requested: true
  issue: KSRU-10143
  kernel-stable-master-bug: 2038339
  packages:
generate: linux-generate-hwe
main: linux-hwe
meta: linux-meta-hwe
signed: linux-signed-hwe
  phase: Promote to Proposed
  phase-changed: Wednesday, 11. October 2023 12:32 UTC
  reason:
canonical-signing-jobs/task00: Ongoing -s signing request
  in-progress
promote-to-proposed: Ongoing -- promotion in progress
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.15.0-219.230~16.04.1
meta: 4.15.0.219.3
signed: 4.15.0-219.230~16.04.1
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 11:58:32.598970
clamps:
  new-review: e932fe3958bcbd45
  promote-to-proposed: e932fe3958bcbd45
  self: 4.15.0-219.230~16.04.1
  sru-review: e932fe3958bcbd45

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-signing-jobs/task00/+bug/2038338/+subscriptions


___
Mailing list: 

[Group.of.nepali.translators] [Bug 2038323] Re: xenial/linux-azure: 4.15.0-1171.186~16.04.1 -proposed tracker

2023-10-11 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/prepare-package-generate
   Status: Fix Committed => Fix Released

** Changed in: kernel-sru-workflow/prepare-package-meta
   Status: Fix Committed => Fix Released

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  built:
from: 991a4afa05f99239
route-entry: 2
  delta:
promote-to-proposed: [main, meta, signed, generate]
  issue: KSRU-10130
  kernel-stable-master-bug: 2038325
  packages:
generate: linux-generate-azure
main: linux-azure
meta: linux-meta-azure
signed: linux-signed-azure
  phase: Packaging
  phase-changed: Tuesday, 10. October 2023 21:32 UTC
  reason:
-   :prepare-packages: Pending -- building in ppa (generate:P signed:D
- meta:P)
+   :prepare-packages: Ongoing -- building in ppa (signed:B)
new-review: Pending -s ready for review
-   prepare-package-generate: Ongoing -- generate package not yet fully
- built
-   prepare-package-meta: Ongoing -- meta package not yet fully built
prepare-package-signed: Ongoing -- signed package not yet fully
  built
sru-review: Pending -s ready for review
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.15.0-1171.186~16.04.1
meta: 4.15.0.1171.155
signed: 4.15.0-1171.186~16.04.1
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 18:07:53.703749
clamps:
  new-review: 991a4afa05f99239
  self: 4.15.0-1171.186~16.04.1
  sru-review: 991a4afa05f99239

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  built:
from: 991a4afa05f99239
route-entry: 2
  delta:
promote-to-proposed: [main, meta, signed, generate]
  issue: KSRU-10130
  kernel-stable-master-bug: 2038325
  packages:
generate: linux-generate-azure
main: linux-azure
meta: linux-meta-azure
signed: linux-signed-azure
  phase: Packaging
  phase-changed: Tuesday, 10. October 2023 21:32 UTC
  reason:
-   :prepare-packages: Ongoing -- building in ppa (signed:B)
+   :prepare-packages: Pending -- building in ppa (signed:Q)
new-review: Pending -s ready for review
prepare-package-signed: Ongoing -- signed package not yet fully
  built
sru-review: Pending -s ready for review
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.15.0-1171.186~16.04.1
meta: 4.15.0.1171.155
signed: 4.15.0-1171.186~16.04.1
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 18:07:53.703749
clamps:
  new-review: 991a4afa05f99239
  self: 4.15.0-1171.186~16.04.1
  sru-review: 991a4afa05f99239

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  built:
from: 991a4afa05f99239
route-entry: 2
  delta:
promote-to-proposed: [main, meta, signed, generate]
  issue: KSRU-10130
  kernel-stable-master-bug: 2038325
  packages:
generate: linux-generate-azure
main: linux-azure
meta: linux-meta-azure
signed: linux-signed-azure
  phase: Packaging
  phase-changed: Tuesday, 10. October 2023 21:32 UTC
  reason:
-   :prepare-packages: Pending -- building in ppa (signed:Q)
+   :prepare-packages: Pending -- building in ppa (signed:P)
new-review: Pending -s ready for review
prepare-package-signed: Ongoing -- signed package not yet fully
  built
sru-review: Pending -s ready for review
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.15.0-1171.186~16.04.1
meta: 4.15.0.1171.155
signed: 4.15.0-1171.186~16.04.1
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 18:07:53.703749
clamps:
  new-review: 991a4afa05f99239
  self: 4.15.0-1171.186~16.04.1
  sru-review: 991a4afa05f99239

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/2038323

Title:
  xenial/linux-azure: 4.15.0-1171.186~16.04.1 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Invalid
Status in Kernel SRU Workflow boot-testing series:
  New
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow new-review series:
  Confirmed
Status in Kernel SRU 

[Group.of.nepali.translators] [Bug 2038323] Re: xenial/linux-azure: 4.15.0-1171.186~16.04.1 -proposed tracker

2023-10-11 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/prepare-package
   Status: Fix Committed => Fix Released

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  built:
from: 991a4afa05f99239
route-entry: 2
  delta:
promote-to-proposed: [main, meta, signed, generate]
  issue: KSRU-10130
  kernel-stable-master-bug: 2038325
  packages:
generate: linux-generate-azure
main: linux-azure
meta: linux-meta-azure
signed: linux-signed-azure
  phase: Packaging
  phase-changed: Tuesday, 10. October 2023 21:32 UTC
  reason:
-   :prepare-packages: Pending -- building in ppa (main:P generate:D
- signed:D meta:D)
+   :prepare-packages: Ongoing -- building in ppa (generate:B signed:D
+ meta:B)
new-review: Pending -s ready for review
-   prepare-package: Ongoing -- main package not yet fully built
prepare-package-generate: Ongoing -- generate package not yet fully
  built
prepare-package-meta: Ongoing -- meta package not yet fully built
prepare-package-signed: Ongoing -- signed package not yet fully
  built
sru-review: Pending -s ready for review
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.15.0-1171.186~16.04.1
meta: 4.15.0.1171.155
signed: 4.15.0-1171.186~16.04.1
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 18:07:53.703749
clamps:
  new-review: 991a4afa05f99239
  self: 4.15.0-1171.186~16.04.1
  sru-review: 991a4afa05f99239

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  built:
from: 991a4afa05f99239
route-entry: 2
  delta:
promote-to-proposed: [main, meta, signed, generate]
  issue: KSRU-10130
  kernel-stable-master-bug: 2038325
  packages:
generate: linux-generate-azure
main: linux-azure
meta: linux-meta-azure
signed: linux-signed-azure
  phase: Packaging
  phase-changed: Tuesday, 10. October 2023 21:32 UTC
  reason:
-   :prepare-packages: Ongoing -- building in ppa (generate:B signed:D
- meta:B)
+   :prepare-packages: Pending -- building in ppa (generate:Q signed:D
+ meta:Q)
new-review: Pending -s ready for review
prepare-package-generate: Ongoing -- generate package not yet fully
  built
prepare-package-meta: Ongoing -- meta package not yet fully built
prepare-package-signed: Ongoing -- signed package not yet fully
  built
sru-review: Pending -s ready for review
  synthetic:
:promote-to-as-proposed: Invalid
  variant: debs
  versions:
main: 4.15.0-1171.186~16.04.1
meta: 4.15.0.1171.155
signed: 4.15.0-1171.186~16.04.1
  ~~:
announce:
  swm-transition-crankable: 2023-10-10 18:07:53.703749
clamps:
  new-review: 991a4afa05f99239
  self: 4.15.0-1171.186~16.04.1
  sru-review: 991a4afa05f99239

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/2038323

Title:
  xenial/linux-azure: 4.15.0-1171.186~16.04.1 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Invalid
Status in Kernel SRU Workflow boot-testing series:
  New
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow new-review series:
  Confirmed
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-generate series:
  Fix Committed
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Committed
Status in Kernel SRU Workflow prepare-package-signed series:
  Fix Committed
Status in Kernel SRU Workflow promote-signing-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  Invalid
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  Invalid
Status in Kernel SRU Workflow sru-review series:
  Confirmed
Status in Kernel SRU Workflow stakeholder-signoff series:
  New
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-azure source package in Xenial:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see: