Bug#912578: [devscripts] Package is not installable on unstable
Package: devscripts Version: 2.18.7 Severity: grave --- Please enter the report below this line. --- Dear Maintainer, The package is not installable on unstable due to dependencies problem. ``` The following packages have unmet dependencies: devscripts : Depends: libipc-run-perl but it is not going to be installed Depends: libmoo-perl but it is not going to be installed Depends: libwww-perl but it is not going to be installed Recommends: licensecheck but it is not going to be installed Recommends: lintian but it is not going to be installed Recommends: liblwp-protocol-https-perl but it is not going to be installed Recommends: libsoap-lite-perl but it is not going to be installed E: Unable to correct problems, you have held broken packages.* ```* The issue is reproducible building the following dockerfile: ``` FROM debian:unstable RUN apt-get update && apt-cache policy devscripts && apt-get install devscripts -y ``` The output is attached. --- System information. --- Architecture: Kernel: Linux 4.17.0-2-amd64 Debian Release: buster/sid 500 unstable httpredir.debian.org 500 stretch download.docker.com 500 stable repository.spotify.com 500 jessie packagecloud.io --- Output from package bug script --- --- /etc/devscripts.conf --- --- ~/.devscripts --- Not present -- - ina Sending build context to Docker daemon 2.048kB Step 1/2 : FROM debian:unstable ---> b291695bd6d4 Step 2/2 : RUN apt-get update && apt-cache policy devscripts && apt-get install devscripts -y ---> Running in 40561f614f4d Get:1 http://cdn-fastly.deb.debian.org/debian unstable InRelease [233 kB] Get:2 http://cdn-fastly.deb.debian.org/debian unstable/main amd64 Packages [8296 kB] Fetched 8529 kB in 4s (2237 kB/s) Reading package lists... devscripts: Installed: (none) Candidate: 2.18.7 Version table: 2.18.7 500 500 http://deb.debian.org/debian unstable/main amd64 Packages Reading package lists... Building dependency tree... Reading state information... Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation: The following packages have unmet dependencies: devscripts : Depends: libipc-run-perl but it is not going to be installed Depends: libmoo-perl but it is not going to be installed Depends: libwww-perl but it is not going to be installed Recommends: licensecheck but it is not going to be installed Recommends: lintian but it is not going to be installed Recommends: liblwp-protocol-https-perl but it is not going to be installed Recommends: libsoap-lite-perl but it is not going to be installed E: Unable to correct problems, you have held broken packages. The command '/bin/sh -c apt-get update && apt-cache policy devscripts && apt-get install devscripts -y' returned a non-zero code: 100 signature.asc Description: OpenPGP digital signature
Bug#954151: Please move logbook to Debian Python Modules team (Was: src:logbook: Requires a package outside of Main)
El 14/4/20 a las 10:43, Andreas Tille escribió: > Hi Agustin and Iñaki, > > I wonder whether you would like to maintain the logbook package in > Debian Python Modules team (by setting the mailing list as Maintainer > and you two serve as Uploaders.) This would possibly enhance the number > of people who are watching this package and would simplify doing a team > upload for the package. > > Kind regards > > Andreas. > Hi Andreas, I'm having troubles to find time to maintain my packages lately, so I think that's the best way to go. I'll wait for Agustin's opinion, but it's ok for me! Thanks! -- - ina
Bug#950847: python-icecream needs new upstream for Python 3.8 support
El 7/2/20 a las 12:37, Matthias Klose escribió: > Package: src:python-icecream > Version: 1.3.1-1 > Severity: serious > Tags: sid bullseye > User: debian-pyt...@lists.debian.org > Usertags: python3.8 > > python-icecream needs new upstream for Python 3.8 support. The tests fail. > > upstream changelog: > > > v2.0.0 > > Added: Support for Python 3.8. > Removed: Support for Python 3.4. > Changed: Switched core AST parsing engine to Alex Hall's executing > (https://github.com/alexmojaki/executing). Huge thank you to Alex Hall. > Changed: Whitespace in arguments is no longer collapsed. Indentation in > multiline arguments is now preserved. > > > from https://github.com/gruns/icecream/archive/v2.0.0.tar.gz > Hi ! I'm waiting for #951438 to get accepted in order to be able to package the new version. Abrazos -- - ina signature.asc Description: OpenPGP digital signature
Bug#961584: lxc-stop fails with exit code 1
El 26/5/20 a las 23:35, Antonio Terceiro escribió: > is there an easy/documented way of reproducing the salsa ci environment > (i.e. lxc working under docker) locally? Attached is a Dockerfile. It should be sufficient to reproduce the problem. Changing the FROM statement from debian:unstable to debian:testing is enough to make it work. It needs to be run as privileged. $ docker build -t autopkgtest - < Dockerfile $ docker run --rm --privileged autopkgtest -- - ina FROM debian:unstable ENV SALSA_CI_AUTOPKGTEST_LXC https://salsa.debian.org/salsa-ci-team/autopkgtest-lxc ENV LXC_PATH /lxc # Download and configure container. RUN apt-get update && apt-get install -y wget RUN wget --progress=dot:giga ${SALSA_CI_AUTOPKGTEST_LXC}/-/jobs/artifacts/master/raw/artifacts/lxc.tar?job=stable -O lxc.tar RUN mkdir ${LXC_PATH} && tar xf lxc.tar -C ${LXC_PATH} RUN sed -i "/lxc.rootfs.path/ s@dir:.*/lxc/@dir:${LXC_PATH}/@" ${LXC_PATH}/autopkgtest-stable-amd64/config # Install lxc. RUN apt-get update && apt-get install -y eatmydata RUN eatmydata apt-get install -y lxc iptables RUN echo "lxc.lxcpath=${LXC_PATH}" | tee -a /etc/lxc/lxc.conf RUN echo 'USE_LXC_BRIDGE="true"' | tee /etc/default/lxc-net RUN echo 'tmpfs /sys/fs/cgroup tmpfs rw,relatime,seclabel' | tee /etc/fstab RUN echo 'cgroup /sys/fs/cgroup/cpuset cgroup rw,relatime,cpuset,x-mount.mkdir' | tee -a /etc/fstab RUN echo 'cgroup /sys/fs/cgroup/devices cgroup rw,relatime,devices,x-mount.mkdir' | tee -a /etc/fstab # This steps need to be run as privileged. CMD umount -R /sys/fs/cgroup && mount -a && \ /etc/init.d/lxc-net start && \ /etc/init.d/lxc start && \ lxc-start autopkgtest-stable-amd64 && \ lxc-stop autopkgtest-stable-amd64 && \ echo "ok" signature.asc Description: OpenPGP digital signature
Bug#961584: lxc-stop fails with exit code 1
El 2/6/20 a las 20:07, Pierre-Elliott Bécue escribió: > Could you remove the --quiet bit to see if lxc-stop gives us a bit more > intel? > > If possible, have your testbed call lxc-stop --kill --logpriority trace > --logfile /dev/stdout --name ${NAME}, so we can have the most expressive > output. But if it's an error, removing the quiet bit could be enough. > > Thanks. > The POC I attached on a previous email it's not using debci, so you can modify the lxc-stop call. After enabling trace log level, the output is the following: > Starting LXC network bridge: :Starting LXC autoboot containers: : > lxc-stop autopkgtest-stable-amd64 20200603085059.718 TRACEcommands - > commands.c:lxc_cmd_rsp_recv:123 - Command "get_init_pid" received response > lxc-stop autopkgtest-stable-amd64 20200603085059.718 DEBUGcommands - > commands.c:lxc_cmd_rsp_recv:156 - Response data length for command > "get_init_pid" is 0 > lxc-stop autopkgtest-stable-amd64 20200603085059.718 TRACEcommands - > commands.c:lxc_cmd:293 - Opened new command socket connection fd 4 for > command "get_init_pid" > lxc-stop autopkgtest-stable-amd64 20200603085059.719 TRACEcommands - > commands.c:lxc_cmd_rsp_recv:123 - Command "get_state" received response > lxc-stop autopkgtest-stable-amd64 20200603085059.719 DEBUGcommands - > commands.c:lxc_cmd_rsp_recv:156 - Response data length for command > "get_state" is 0 > lxc-stop autopkgtest-stable-amd64 20200603085059.719 TRACEcommands - > commands.c:lxc_cmd:293 - Opened new command socket connection fd 4 for > command "get_state" > lxc-stop autopkgtest-stable-amd64 20200603085059.719 DEBUGcommands - > commands.c:lxc_cmd_get_state:656 - Container "autopkgtest-stable-amd64" is in > "RUNNING" state > lxc-stop autopkgtest-stable-amd64 20200603085059.719 TRACEcommands - > commands.c:lxc_cmd_rsp_recv:123 - Command "stop" received response > lxc-stop autopkgtest-stable-amd64 20200603085059.719 DEBUGcommands - > commands.c:lxc_cmd_rsp_recv:156 - Response data length for command "stop" is 0 > lxc-stop autopkgtest-stable-amd64 20200603085059.719 TRACEcommands - > commands.c:lxc_cmd:293 - Opened new command socket connection fd 4 for > command "stop" > lxc-stop autopkgtest-stable-amd64 20200603085059.720 ERRORcommands - > commands.c:lxc_cmd_stop:707 - No such file or directory - Failed to stop > container "autopkgtest-stable-amd64" > lxc-stop: autopkgtest-stable-amd64: commands.c: lxc_cmd_stop: 707 No such > file or directory - Failed to stop container "autopkgtest-stable-amd64" -- - ina signature.asc Description: OpenPGP digital signature