Custom Query (1174 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (313 - 315 of 1174)

Ticket Resolution Summary Owner Reporter
#5575 fixed Upgrade setuptools and pip in Makefile anongoblin
Description

[This is Michael Lynch (mtlynch.io). Boris suggested I post here under the anon account as new registrations on the issue tracker seem to be down]

When I try to install MediaGoblin on a clean machine (or in a fresh Docker container), I get an error on the "make" step because setuptools is too old in virtualenv:

https://travis-ci.org/mtlynch/mediagoblin-docker/builds/453296179

Upgrading pip and setuptools within the virtualenv solves this issue:

https://travis-ci.org/mtlynch/mediagoblin-docker/builds/453299609

I created a patch to fix this issue in the "upgrade-packages" branch of my Github fork:

https://github.com/mtlynch/mediagoblin/tree/upgrade-packages

#5611 fixed Upgrade issue from 0.9 to 0.10 TmCTux
Description

during upgrade on a debian stretch up to date (I've redone all the step on a fresh buster and ended at the same place), there were an issue during configure on the following step: ./bin/python setup.py develop --upgrade

when trying to install MarkupSafe, minimum version required by egg file was minimum 0.23, thus 2.0.0a was installed, which failed. as a workarond, egg file has been modified to force version 1.1.1 which is stable to be installed. Configure was fine from there.

Then, upgrade failed because a previously installed plugin (mediagoblin_private) was not found anymore. After reinstallation, all was ok. I believe documentation should precise to either deactivate plugin during upgrade, or reinstall them before proceed at a suitable step.

#5626 fixed Upgrade issue from 0.10 to 0.11 TmCTux
Description

following the upgrade guide (and the installation guide just in case), I've encounter the following issue during upgrade:

1) after launching this command: ./bootstrap.sh && VIRTUALENV_FLAGS='--system-site-packages' ./configure && make

it fails during setup saying idna3.2 is installed (as one package require >2 and it picks the last available) but a later one require < 3 (this could be removed because python2 support has been dropped).

workaround was: ./bin/pip uninstall idna ./bin/pip install idna==2.10 and relaunch the last step: ./bin/python setup.py develop --upgrade and continue the rest of the upgrade process: make

2) on the last upgrade process we have to upgrade the db: ./bin/gmg dbupdate this fails because jsonschema.compat is not found

workaround: commenting the import from the following file mediagoblin/tools/metadata.py

and now the gmg dbupdate works.

YMMV but that's what happend for me on buster 10.10 on 5th july 2021. (date can be important due to external nodejs dependency) - and it is only reported now as the trac seemed to have been broken for a while (on my side at least).

thanks again for this new release, works quite well so far!

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.