2021-01-22 13:04:05 |
Kleber Sacilotto de Souza |
bug |
|
|
added bug |
2021-01-22 13:05:36 |
Kleber Sacilotto de Souza |
nominated for series |
|
Ubuntu Focal |
|
2021-01-22 13:05:36 |
Kleber Sacilotto de Souza |
bug task added |
|
west-chamber (Ubuntu Focal) |
|
2021-01-22 13:05:36 |
Kleber Sacilotto de Souza |
nominated for series |
|
Ubuntu Bionic |
|
2021-01-22 13:05:36 |
Kleber Sacilotto de Souza |
bug task added |
|
west-chamber (Ubuntu Bionic) |
|
2021-01-22 13:05:51 |
Kleber Sacilotto de Souza |
west-chamber (Ubuntu): status |
New |
Fix Released |
|
2021-01-22 13:05:54 |
Kleber Sacilotto de Souza |
west-chamber (Ubuntu Bionic): status |
New |
In Progress |
|
2021-01-22 13:05:58 |
Kleber Sacilotto de Souza |
west-chamber (Ubuntu Focal): status |
New |
Confirmed |
|
2021-01-22 13:06:01 |
Kleber Sacilotto de Souza |
west-chamber (Ubuntu Bionic): status |
In Progress |
Confirmed |
|
2021-01-22 16:13:27 |
Kleber Sacilotto de Souza |
description |
[Impact]
Focal linux 5.4.0-57.63 backported from v5.4.78 upstream stable release the following commit, which broke the build of west-chamber dkms modules on Focal and Bionic for all 5.4 kernels based on this release:
"netfilter: use actual socket sk rather than skb sk when routing harder" (Upstream commit 46d6c5ae953cc0be38efd0e469284df7c4328cf8).
This is the same issue found on xtables-addons (bug 1907109).
[Test case]
Install west-chamber-dkms package.
[Fix]
[Where problems could occur]
-----
Testing failing on:
amd64: https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac/autopkgtest-focal/focal/amd64/w/west-chamber/20210121_172911_d9f41@/log.gz
arm64: https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac/autopkgtest-focal/focal/arm64/w/west-chamber/20210113_011159_54cdf@/log.gz
armhf: https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac/autopkgtest-focal/focal/armhf/w/west-chamber/20210113_010911_54cdf@/log.gz
ppc64el: https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac/autopkgtest-focal/focal/ppc64el/w/west-chamber/20210113_010547_54cdf@/log.gz
s390x: https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac/autopkgtest-focal/focal/s390x/w/west-chamber/20210113_010347_cc516@/log.gz
Build of the dkms is failing with the following error:
/usr/src/west-chamber-20100405+svn20111107.r124/extensions/xt_CUI.c:106:30: error: passing argument 2 of ‘ip_route_me_harder’ from incompatible pointer type [-Werror=incompatible-pointer-types]
106 | if (ip_route_me_harder(net, skb, addr_type))
| ^~~
| |
| struct sk_buff *
In file included from ./include/linux/netfilter/x_tables.h:245,
from /usr/src/west-chamber-20100405+svn20111107.r124/extensions/xt_CUI.c:19:
./include/linux/netfilter_ipv4.h:19:54: note: expected ‘struct sock *’ but argument is of type ‘struct sk_buff *’
19 | int ip_route_me_harder(struct net *net, struct sock *sk, struct sk_buff *skb, unsigned addr_type);
| |
[Impact]
Focal linux 5.4.0-57.63 backported from v5.4.78 upstream stable release the following commit, which broke the build of west-chamber dkms modules on Focal and Bionic for all 5.4 kernels based on this release:
"netfilter: use actual socket sk rather than skb sk when routing harder" (Upstream commit 46d6c5ae953cc0be38efd0e469284df7c4328cf8).
This is the same issue found on xtables-addons (bug 1907109).
[Test case]
Install west-chamber-dkms package.
[Fix]
The proposed fix is similar to what has been done for xtabled-addons and use a version of the API depending on the kernel version being built against.
[Where problems could occur]
If any kernel version doesn't match the assumptions reflected by the ifdef's the modules can fail to build.
-----
Testing failing on:
amd64: https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac/autopkgtest-focal/focal/amd64/w/west-chamber/20210121_172911_d9f41@/log.gz
arm64: https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac/autopkgtest-focal/focal/arm64/w/west-chamber/20210113_011159_54cdf@/log.gz
armhf: https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac/autopkgtest-focal/focal/armhf/w/west-chamber/20210113_010911_54cdf@/log.gz
ppc64el: https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac/autopkgtest-focal/focal/ppc64el/w/west-chamber/20210113_010547_54cdf@/log.gz
s390x: https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac/autopkgtest-focal/focal/s390x/w/west-chamber/20210113_010347_cc516@/log.gz
Build of the dkms is failing with the following error:
/usr/src/west-chamber-20100405+svn20111107.r124/extensions/xt_CUI.c:106:30: error: passing argument 2 of ‘ip_route_me_harder’ from incompatible pointer type [-Werror=incompatible-pointer-types]
106 | if (ip_route_me_harder(net, skb, addr_type))
| ^~~
| |
| struct sk_buff *
In file included from ./include/linux/netfilter/x_tables.h:245,
from /usr/src/west-chamber-20100405+svn20111107.r124/extensions/xt_CUI.c:19:
./include/linux/netfilter_ipv4.h:19:54: note: expected ‘struct sock *’ but argument is of type ‘struct sk_buff *’
19 | int ip_route_me_harder(struct net *net, struct sock *sk, struct sk_buff *skb, unsigned addr_type);
| |
|
2021-01-22 16:13:59 |
Kleber Sacilotto de Souza |
description |
[Impact]
Focal linux 5.4.0-57.63 backported from v5.4.78 upstream stable release the following commit, which broke the build of west-chamber dkms modules on Focal and Bionic for all 5.4 kernels based on this release:
"netfilter: use actual socket sk rather than skb sk when routing harder" (Upstream commit 46d6c5ae953cc0be38efd0e469284df7c4328cf8).
This is the same issue found on xtables-addons (bug 1907109).
[Test case]
Install west-chamber-dkms package.
[Fix]
The proposed fix is similar to what has been done for xtabled-addons and use a version of the API depending on the kernel version being built against.
[Where problems could occur]
If any kernel version doesn't match the assumptions reflected by the ifdef's the modules can fail to build.
-----
Testing failing on:
amd64: https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac/autopkgtest-focal/focal/amd64/w/west-chamber/20210121_172911_d9f41@/log.gz
arm64: https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac/autopkgtest-focal/focal/arm64/w/west-chamber/20210113_011159_54cdf@/log.gz
armhf: https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac/autopkgtest-focal/focal/armhf/w/west-chamber/20210113_010911_54cdf@/log.gz
ppc64el: https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac/autopkgtest-focal/focal/ppc64el/w/west-chamber/20210113_010547_54cdf@/log.gz
s390x: https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac/autopkgtest-focal/focal/s390x/w/west-chamber/20210113_010347_cc516@/log.gz
Build of the dkms is failing with the following error:
/usr/src/west-chamber-20100405+svn20111107.r124/extensions/xt_CUI.c:106:30: error: passing argument 2 of ‘ip_route_me_harder’ from incompatible pointer type [-Werror=incompatible-pointer-types]
106 | if (ip_route_me_harder(net, skb, addr_type))
| ^~~
| |
| struct sk_buff *
In file included from ./include/linux/netfilter/x_tables.h:245,
from /usr/src/west-chamber-20100405+svn20111107.r124/extensions/xt_CUI.c:19:
./include/linux/netfilter_ipv4.h:19:54: note: expected ‘struct sock *’ but argument is of type ‘struct sk_buff *’
19 | int ip_route_me_harder(struct net *net, struct sock *sk, struct sk_buff *skb, unsigned addr_type);
| |
[Impact]
Focal linux 5.4.0-57.63 backported from v5.4.78 upstream stable release the following commit, which broke the build of west-chamber dkms modules on Focal and Bionic for all 5.4 kernels based on this release:
"netfilter: use actual socket sk rather than skb sk when routing harder" (Upstream commit 46d6c5ae953cc0be38efd0e469284df7c4328cf8).
This is the same issue found on xtables-addons (bug 1907109).
[Test case]
Install west-chamber-dkms package which builds the kernel modules.
[Fix]
The proposed fix is similar to what has been done for xtabled-addons and use a version of the API depending on the kernel version being built against.
[Where problems could occur]
If any kernel version doesn't match the assumptions reflected by the ifdef's the modules can fail to build.
-----
Testing failing on:
amd64: https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac/autopkgtest-focal/focal/amd64/w/west-chamber/20210121_172911_d9f41@/log.gz
arm64: https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac/autopkgtest-focal/focal/arm64/w/west-chamber/20210113_011159_54cdf@/log.gz
armhf: https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac/autopkgtest-focal/focal/armhf/w/west-chamber/20210113_010911_54cdf@/log.gz
ppc64el: https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac/autopkgtest-focal/focal/ppc64el/w/west-chamber/20210113_010547_54cdf@/log.gz
s390x: https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac/autopkgtest-focal/focal/s390x/w/west-chamber/20210113_010347_cc516@/log.gz
Build of the dkms is failing with the following error:
/usr/src/west-chamber-20100405+svn20111107.r124/extensions/xt_CUI.c:106:30: error: passing argument 2 of ‘ip_route_me_harder’ from incompatible pointer type [-Werror=incompatible-pointer-types]
106 | if (ip_route_me_harder(net, skb, addr_type))
| ^~~
| |
| struct sk_buff *
In file included from ./include/linux/netfilter/x_tables.h:245,
from /usr/src/west-chamber-20100405+svn20111107.r124/extensions/xt_CUI.c:19:
./include/linux/netfilter_ipv4.h:19:54: note: expected ‘struct sock *’ but argument is of type ‘struct sk_buff *’
19 | int ip_route_me_harder(struct net *net, struct sock *sk, struct sk_buff *skb, unsigned addr_type);
| |
|
2021-02-01 13:16:05 |
Kleber Sacilotto de Souza |
west-chamber (Ubuntu Bionic): importance |
Undecided |
High |
|
2021-02-01 13:16:08 |
Kleber Sacilotto de Souza |
west-chamber (Ubuntu Focal): importance |
Undecided |
High |
|
2021-02-01 13:24:07 |
Kleber Sacilotto de Souza |
attachment added |
|
debdiff for west-chamber on focal https://bugs.launchpad.net/ubuntu/+source/west-chamber/+bug/1912783/+attachment/5458784/+files/west-chamber_20100405+svn20111107.r124-12ubuntu0.1.debdiff |
|
2021-02-01 14:52:49 |
Kleber Sacilotto de Souza |
west-chamber (Ubuntu Focal): status |
Confirmed |
In Progress |
|
2021-02-01 17:02:19 |
Kleber Sacilotto de Souza |
attachment added |
|
debdiff for west-chamber on bionic https://bugs.launchpad.net/ubuntu/+source/west-chamber/+bug/1912783/+attachment/5458822/+files/west-chamber_20100405+svn20111107.r124-8ubuntu0.1.debdiff |
|
2021-02-01 17:02:25 |
Kleber Sacilotto de Souza |
west-chamber (Ubuntu Bionic): status |
Confirmed |
In Progress |
|
2021-02-12 11:38:51 |
Kleber Sacilotto de Souza |
summary |
west-chamber-dkms fails to build with linux 5.4.0-57.63 |
west-chamber-dkms fails to build after ip_route_me_harder() signature change |
|
2021-02-12 11:46:16 |
Kleber Sacilotto de Souza |
description |
[Impact]
Focal linux 5.4.0-57.63 backported from v5.4.78 upstream stable release the following commit, which broke the build of west-chamber dkms modules on Focal and Bionic for all 5.4 kernels based on this release:
"netfilter: use actual socket sk rather than skb sk when routing harder" (Upstream commit 46d6c5ae953cc0be38efd0e469284df7c4328cf8).
This is the same issue found on xtables-addons (bug 1907109).
[Test case]
Install west-chamber-dkms package which builds the kernel modules.
[Fix]
The proposed fix is similar to what has been done for xtabled-addons and use a version of the API depending on the kernel version being built against.
[Where problems could occur]
If any kernel version doesn't match the assumptions reflected by the ifdef's the modules can fail to build.
-----
Testing failing on:
amd64: https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac/autopkgtest-focal/focal/amd64/w/west-chamber/20210121_172911_d9f41@/log.gz
arm64: https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac/autopkgtest-focal/focal/arm64/w/west-chamber/20210113_011159_54cdf@/log.gz
armhf: https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac/autopkgtest-focal/focal/armhf/w/west-chamber/20210113_010911_54cdf@/log.gz
ppc64el: https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac/autopkgtest-focal/focal/ppc64el/w/west-chamber/20210113_010547_54cdf@/log.gz
s390x: https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac/autopkgtest-focal/focal/s390x/w/west-chamber/20210113_010347_cc516@/log.gz
Build of the dkms is failing with the following error:
/usr/src/west-chamber-20100405+svn20111107.r124/extensions/xt_CUI.c:106:30: error: passing argument 2 of ‘ip_route_me_harder’ from incompatible pointer type [-Werror=incompatible-pointer-types]
106 | if (ip_route_me_harder(net, skb, addr_type))
| ^~~
| |
| struct sk_buff *
In file included from ./include/linux/netfilter/x_tables.h:245,
from /usr/src/west-chamber-20100405+svn20111107.r124/extensions/xt_CUI.c:19:
./include/linux/netfilter_ipv4.h:19:54: note: expected ‘struct sock *’ but argument is of type ‘struct sk_buff *’
19 | int ip_route_me_harder(struct net *net, struct sock *sk, struct sk_buff *skb, unsigned addr_type);
| |
[Impact]
Focal linux 5.4.0-57.63 and Groovy linux 5.8.0-44.50 backported from upstream stable releases the following commit, which broke the build of west-chamber dkms modules on Groovy, Focal and Bionic for all 5.4 and 5.8 kernels based on this release:
"netfilter: use actual socket sk rather than skb sk when routing harder" (Upstream commit 46d6c5ae953cc0be38efd0e469284df7c4328cf8).
This is the same issue found on xtables-addons (bug 1907109 and bug 1915177).
[Test case]
Install west-chamber-dkms package which builds the kernel modules.
[Fix]
The proposed fix is similar to what has been done for xtabled-addons and use a version of the API depending on the kernel version being built against.
However, the ABI version detection needs to be done differently between the 5.4 and the 5.8 kernels. For the 5.4 kernels the ABI change was applied as part of an upstream stable release which changed the SUBLEVEL version on the Makefile, so the detection can be done using the LINUX_VERSION_CODE macro. For the 5.8 kernels, this can't be done and another method is needed to check function declaration on the kernel headers. Therefore Focal also needs the same change as done in Groovy because of the HWE backport based on 5.8.
[Where problems could occur]
If any kernel version doesn't match the assumptions reflected by the ifdef's the modules can fail to build.
-----
Testing failing on:
amd64: https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac/autopkgtest-focal/focal/amd64/w/west-chamber/20210121_172911_d9f41@/log.gz
arm64: https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac/autopkgtest-focal/focal/arm64/w/west-chamber/20210113_011159_54cdf@/log.gz
armhf: https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac/autopkgtest-focal/focal/armhf/w/west-chamber/20210113_010911_54cdf@/log.gz
ppc64el: https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac/autopkgtest-focal/focal/ppc64el/w/west-chamber/20210113_010547_54cdf@/log.gz
s390x: https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac/autopkgtest-focal/focal/s390x/w/west-chamber/20210113_010347_cc516@/log.gz
Build of the dkms is failing with the following error:
/usr/src/west-chamber-20100405+svn20111107.r124/extensions/xt_CUI.c:106:30: error: passing argument 2 of ‘ip_route_me_harder’ from incompatible pointer type [-Werror=incompatible-pointer-types]
106 | if (ip_route_me_harder(net, skb, addr_type))
| ^~~
| |
| struct sk_buff *
In file included from ./include/linux/netfilter/x_tables.h:245,
from /usr/src/west-chamber-20100405+svn20111107.r124/extensions/xt_CUI.c:19:
./include/linux/netfilter_ipv4.h:19:54: note: expected ‘struct sock *’ but argument is of type ‘struct sk_buff *’
19 | int ip_route_me_harder(struct net *net, struct sock *sk, struct sk_buff *skb, unsigned addr_type);
| |
|
2021-02-12 11:46:22 |
Kleber Sacilotto de Souza |
nominated for series |
|
Ubuntu Groovy |
|
2021-02-12 11:46:22 |
Kleber Sacilotto de Souza |
bug task added |
|
west-chamber (Ubuntu Groovy) |
|
2021-02-12 11:46:30 |
Kleber Sacilotto de Souza |
west-chamber (Ubuntu Groovy): status |
New |
In Progress |
|
2021-02-16 10:46:48 |
Kleber Sacilotto de Souza |
west-chamber (Ubuntu Groovy): importance |
Undecided |
High |
|
2021-02-16 11:03:56 |
Kleber Sacilotto de Souza |
attachment removed |
debdiff for west-chamber on focal https://bugs.launchpad.net/ubuntu/+source/west-chamber/+bug/1912783/+attachment/5458784/+files/west-chamber_20100405+svn20111107.r124-12ubuntu0.1.debdiff |
|
|
2021-02-16 11:19:26 |
Kleber Sacilotto de Souza |
attachment added |
|
debdiff for west-chamber on groovy version 20100405+svn20111107.r124-12ubuntu0.1 https://bugs.launchpad.net/ubuntu/+source/west-chamber/+bug/1912783/+attachment/5464097/+files/west-chamber_20100405+svn20111107.r124-12ubuntu0.1.debdiff |
|
2021-02-16 11:25:59 |
Kleber Sacilotto de Souza |
attachment added |
|
debdiff for west-chamber on focal version 20100405+svn20111107.r124-12ubuntu0.1~20.04.1 https://bugs.launchpad.net/ubuntu/+source/west-chamber/+bug/1912783/+attachment/5464098/+files/west-chamber_20100405+svn20111107.r124-12ubuntu0.1~20.04.1.debdiff |
|
2021-02-16 11:36:37 |
Kleber Sacilotto de Souza |
attachment removed |
debdiff for west-chamber on groovy version 20100405+svn20111107.r124-12ubuntu0.1 https://bugs.launchpad.net/ubuntu/+source/west-chamber/+bug/1912783/+attachment/5464097/+files/west-chamber_20100405+svn20111107.r124-12ubuntu0.1.debdiff |
|
|
2021-02-16 11:36:47 |
Kleber Sacilotto de Souza |
attachment removed |
debdiff for west-chamber on focal version 20100405+svn20111107.r124-12ubuntu0.1~20.04.1 https://bugs.launchpad.net/ubuntu/+source/west-chamber/+bug/1912783/+attachment/5464098/+files/west-chamber_20100405+svn20111107.r124-12ubuntu0.1~20.04.1.debdiff |
|
|
2021-02-16 11:40:42 |
Kleber Sacilotto de Souza |
attachment added |
|
debdiff for west-chamber on groovy version 20100405+svn20111107.r124-12ubuntu0.2 https://bugs.launchpad.net/ubuntu/+source/west-chamber/+bug/1912783/+attachment/5464099/+files/west-chamber_20100405+svn20111107.r124-12ubuntu0.2.debdiff |
|
2021-02-16 11:43:49 |
Kleber Sacilotto de Souza |
attachment added |
|
debdiff for west-chamber on focal version 20100405+svn20111107.r124-12ubuntu0.2~20.04.1 https://bugs.launchpad.net/ubuntu/+source/west-chamber/+bug/1912783/+attachment/5464100/+files/west-chamber_20100405+svn20111107.r124-12ubuntu0.2~20.04.1.debdiff |
|
2021-02-17 13:10:18 |
Robie Basak |
bug |
|
|
added subscriber Robie Basak |
2021-02-19 13:38:37 |
Kleber Sacilotto de Souza |
attachment added |
|
debdiff for west-chamber on focal to fix the xtables-addons-dkms dependency https://bugs.launchpad.net/ubuntu/+source/west-chamber/+bug/1912783/+attachment/5465080/+files/west-chamber_20100405+svn20111107.r124-12ubuntu0.2~20.04.2.debdiff |
|
2021-03-02 23:41:31 |
Brian Murray |
west-chamber (Ubuntu Groovy): status |
In Progress |
Fix Committed |
|
2021-03-02 23:41:33 |
Brian Murray |
bug |
|
|
added subscriber Ubuntu Stable Release Updates Team |
2021-03-02 23:41:35 |
Brian Murray |
bug |
|
|
added subscriber SRU Verification |
2021-03-02 23:41:39 |
Brian Murray |
tags |
|
verification-needed verification-needed-groovy |
|
2021-03-03 02:10:12 |
Chris Halse Rogers |
west-chamber (Ubuntu Focal): status |
In Progress |
Fix Committed |
|
2021-03-03 02:10:21 |
Chris Halse Rogers |
tags |
verification-needed verification-needed-groovy |
verification-needed verification-needed-focal verification-needed-groovy |
|
2021-03-04 11:56:44 |
Kleber Sacilotto de Souza |
attachment added |
|
debdiff for west-chamber on groovy version 20100405+svn20111107.r124-12ubuntu0.3 https://bugs.launchpad.net/ubuntu/+source/west-chamber/+bug/1912783/+attachment/5472560/+files/west-chamber_20100405+svn20111107.r124-12ubuntu0.3_all.debdiff |
|
2021-03-04 11:59:57 |
Kleber Sacilotto de Souza |
attachment added |
|
debdiff for west-chamber on focal version 20100405+svn20111107.r124-12ubuntu0.3~20.04.1 https://bugs.launchpad.net/ubuntu/+source/west-chamber/+bug/1912783/+attachment/5472561/+files/west-chamber_20100405+svn20111107.r124-12ubuntu0.3~20.04.1_all.debdiff |
|
2021-03-09 19:38:11 |
Brian Murray |
west-chamber (Ubuntu Bionic): status |
In Progress |
Fix Committed |
|
2021-03-09 19:38:19 |
Brian Murray |
tags |
verification-needed verification-needed-focal verification-needed-groovy |
verification-needed verification-needed-bionic verification-needed-focal verification-needed-groovy |
|
2021-03-09 19:41:06 |
Brian Murray |
bug |
|
|
added subscriber Ubuntu Sponsors Team |
2021-03-11 10:47:07 |
Kleber Sacilotto de Souza |
tags |
verification-needed verification-needed-bionic verification-needed-focal verification-needed-groovy |
verification-done-bionic verification-needed verification-needed-focal verification-needed-groovy |
|
2021-03-15 16:36:54 |
Kleber Sacilotto de Souza |
tags |
verification-done-bionic verification-needed verification-needed-focal verification-needed-groovy |
verification-done-bionic verification-done-groovy verification-needed verification-needed-focal |
|
2021-03-15 17:21:04 |
Kleber Sacilotto de Souza |
tags |
verification-done-bionic verification-done-groovy verification-needed verification-needed-focal |
verification-done-bionic verification-done-focal verification-done-groovy verification-needed |
|
2021-03-16 01:00:45 |
Mathew Hodson |
tags |
verification-done-bionic verification-done-focal verification-done-groovy verification-needed |
verification-done-bionic verification-done-focal verification-done-groovy |
|
2021-03-19 05:13:06 |
Mathew Hodson |
west-chamber (Ubuntu): importance |
Undecided |
High |
|
2021-03-23 19:40:48 |
Launchpad Janitor |
west-chamber (Ubuntu Groovy): status |
Fix Committed |
Fix Released |
|
2021-03-23 19:40:54 |
Brian Murray |
removed subscriber Ubuntu Stable Release Updates Team |
|
|
|
2021-03-23 19:41:21 |
Launchpad Janitor |
west-chamber (Ubuntu Focal): status |
Fix Committed |
Fix Released |
|
2021-03-23 19:41:56 |
Launchpad Janitor |
west-chamber (Ubuntu Bionic): status |
Fix Committed |
Fix Released |
|