Skip to content
Permalink
Browse files
Docs - native development environment - cascade porting
Port to Python 3 for sugar-datastore was merged after 0.114 was
released,

As of
sugarlabs/sugar-datastore@43aabbc
the toolkit and datastore must be built for Python 3.
  • Loading branch information
quozl committed Aug 1, 2019
1 parent 25da957 commit e320687
Showing 1 changed file with 3 additions and 3 deletions.
@@ -85,17 +85,17 @@ On Fedora, use [dnf builddep](http://dnf-plugins-core.readthedocs.io/en/latest/b

Autogen, configure, make, and install each module for Python 2;

for module in sugar{-datastore,-artwork,-toolkit,-toolkit-gtk3,}; do
for module in sugar{-artwork,-toolkit,-toolkit-gtk3,}; do
cd $module
./autogen.sh
make
sudo make install
cd ..
done

When support is required for both versions of Python, build the `sugar-toolkit-gtk3` module again with the `--with-python3` option;
Autogen, configure, make, and install modules for Python 3;

for module in sugar-toolkit-gtk3; do
for module in sugar{-toolkit-gtk3,-datastore}; do
cd $module
./autogen.sh --with-python3
make

0 comments on commit e320687

Please sign in to comment.