Hi all,
several people asked me to convert the devpi repository from
hg/mercurial to git. Although i am mostly fine with hg/mercurial
myself i'd like to use git in some more depth. Therefore i plan
to convert the repository to git but continue to host it at bitbucket
for the time being. Probably going to happen sometime this week.
best,
holger
Hello,
I have a central devpi-server instance deployed on a vps on the cloud,
which I'd like to mirror locally on my laptop.
Is it currently possible ? I would appreciate if someone could point me the
right docs. I already searched without any success.
Cheers, and thanks for the nice work done so far !
I'm trying to follow the directions for doing uploads to devpi using
setup.py rather than 'devpi upload' found here:
http://doc.devpi.net/1.2.1/userman/devpi_misc.html#using-plain-setup-py-for…
Things are well enough configured that 'devpi upload' works, but trying a
command like 'python setup.py sdist --formats=zip upload
--repository=myrepo' results in:
Upload failed (405): Method Not Allowed
Spying on the HTTP traffic, I can see that the request is going to the
expected URL and includes an Authorization header with the credentials
(encoded for basic auth) from my .pypirc.
Is this known to be working in 1.2.1? Any suggestions for tracking down the
problem?
Thanks,
Eric
Hi all,
I'm trying to configure devpi-server behind apache but I'm having some
trouble.
The devpi-server URL is http://example.com/devpi/
practicum2$ devpi use
current devpi index: http://example.com/devpi/alex/prod/ (logged in as alex)
~/.pydistutils.cfg : http://example.com/devpi/alex/prod/+simple/
~/.pip/pip.conf : http://example.com/devpi/alex/prod/+simple/
~/.buildout/default.cfg: no index server configured
always-set-cfg: no
I can install and upload packages from/to my indexes, but:
practicum2$ devpi list dja.views
alex/prod/+f/301f72b5408dec514036f2ae6d25cbdb/dja.views-0.1dev-r486.tar.gz
WARN: devpi-client-1.2.2 got an unversioned reply, assuming API-VERSION
1 (as implemented by devpi-server-1.1 and 1.2)
GET
http://example.com/alex/prod/+f/301f72b5408dec514036f2ae6d25cbdb/dja.views-…
404 Not Found
Here the URL seems wrong, the 'devpi' part is missing.
The command I use to start devpi-server is:
/opt/pyvenv/devpi-server/bin/python
/opt/pyvenv/devpi-server/bin/devpi-server --host localhost --port 3141
--serverdir /home/alex/espai/devpi/cache --outside-url
http://example.com/devpi/
devpi server and client 1.2.2
The apache config:
RewriteRule ^/devpi$ /devpi/ [R]
RewriteRule ^/devpi/(.*) http://localhost:3141/$1 [proxy]
Any clue on what I'm doing wrong.
Thanks in advance