[Bug 1874824] Re: pgrep reports error "cannot allocate" when run without stack limit

2021-03-04 Thread Luke Yeager
FWIW, I was able to apply bb96fc4295 cleanly to the current 20.04
package (2:3.3.16-1ubuntu2) and it works for me.

apt-get -y source procps && cd procps-*
curl -fSsL -o debian/patches/sc_arg_max 
https://gitlab.com/procps-ng/procps/-/commit/bb96fc4295.patch
echo sc_arg_max >>debian/patches/series
dch --local myorg 'Apply patch: "pgrep: check sanity of SC_ARG_MAX"'
debuild -us -uc -G -i -tc

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1874824

Title:
  pgrep reports error "cannot allocate" when run without stack limit

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1833720] Re: Bad symlink for libpmix.so

2019-07-12 Thread Luke Yeager
FWIW, I fixed the bionic package in my PPA:
https://launchpad.net/~nvidia-deepops/+archive/ubuntu/slurm/+packages?field.status_filter=

I also backported the disco package for bionic in that PPA, since the
symlinks are fixed there.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1833720

Title:
  Bad symlink for libpmix.so

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1639354] Re: pip doesn't recognize installation because of missing egg information

2017-06-12 Thread Luke Yeager
** Changed in: pymongo (Ubuntu)
   Status: Expired => New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1639354

Title:
  pip doesn't recognize installation because of missing egg information

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1639354] Re: pip doesn't recognize installation because of missing egg information

2017-04-10 Thread Luke Yeager
FROM ubuntu:xenial
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
python-pymongo \
python-pip \
&& rm -rf /var/lib/apt/lists/*
RUN python -c 'import pymongo; print pymongo.__version__, pymongo.__file__'
RUN pip list
RUN pip install pymongo
RUN python -c 'import pymongo; print pymongo.__version__, pymongo.__file__'

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1639354

Title:
  pip doesn't recognize installation because of missing egg information

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1639354] Re: pip doesn't recognize installation because of missing egg information

2017-04-10 Thread Luke Yeager
^ That was supposed to be an attachment. A dockerfile to repro.

The pip list command shows only one Python package installed (pip
(8.1.1)).

The pip install command should do nothing, since pymongo is already
installed. But instead, pip doesn't see the existing installation and
re-installs the package (the newest available version from PyPI).

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1639354

Title:
  pip doesn't recognize installation because of missing egg information

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1609585] Re: python-pydot installs wrong version on xenial, yakkety, zesty

2017-01-09 Thread Luke Yeager
Sorry, I'm new to this bug system. This comment makes it seem like
Sandro closed the debian bug as "Won't Fix":

> since the patch is taken from upstream i wont change it as it will
make it harder to merge when they release again. it's purely aesthetic
so we can live with that, closing.

... but this ubuntu bug has comments about the debian bug saying it is
"Fix Released". So, was it fixed or not?

Either way, I agree that this is only an aesthetic problem and if they
won't fix it upstream then I guess we just live with it. If they closed
that one, we should probably close this one. At least it's reported
online and somebody can find this discussion if they need it.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1609585

Title:
  python-pydot installs wrong version on xenial, yakkety, zesty

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1639354] [NEW] pip doesn't recognize installation because of missing egg information

2016-11-04 Thread Luke Yeager
Public bug reported:

Ubuntu 16.04
pymongo 3.2-1build1

When most packages (i.e. numpy, scipy, flask, etc.) are installed with
deb packages, they are installed in such a way that pip can see them.
This is done by installing "*.egg-info/" directories (find
/usr/lib/python2.7/dist-packages -type d -name '*egg*').

pymongo doesn't do this, so pip doesn't realize it is installed and will
install a second copy of the library even when it's not necessary.

# install python-pymongo package
sudo apt install python-pymongo

# the package can be imported
python -c 'import pymongo'

# but pip doesn't see it
pip search pymongo

# so pip doesn't realize that the pymongo requirement is already fulfilled
pip install pymongo

** Affects: pymongo (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1639354

Title:
  pip doesn't recognize installation because of missing egg information

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs