Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ help:
@echo 'Targets:'
@awk 'BEGIN {FS = ":.*##"} /^[a-zA-Z_-]+:.*##/ {printf " %-15s %s\n", $$1, $$2}' $(MAKEFILE_LIST)

install: ## Install package in development mode
pip install -e .
install: ## Install package
pip install --root-user-action=ignore .
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you explain this? We would prefer development mode for testing right?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm running this in the live build, and I needed that.

Anyone running in the live build would too.

I haven't tested most of my changes because there's still much that needs to be done to get it to the point where you can see your changes, I've been moving forward by fixing build errors.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We can perhaps have make install-live-build?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That can work.


test: ## Run all tests
pytest tests/ -v
Expand Down
2 changes: 1 addition & 1 deletion bin/Makefile.am
Original file line number Diff line number Diff line change
@@ -1 +1 @@
dist_bin_SCRIPTS = sugar-activity sugar-activity-web sugar-activity3
dist_bin_SCRIPTS = sugar-activity sugar-activity-web sugar-activity4
2 changes: 1 addition & 1 deletion bin/sugar-activity
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python2

from sugar3.activity import activityinstance
from sugar4.activity import activityinstance

activityinstance.main()
2 changes: 1 addition & 1 deletion bin/sugar-activity-web
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.

exec sugar-activity3 sugar3.activity.webactivity.WebActivity $@
exec sugar-activity3 sugar4.activity.webactivity.WebActivity $@
2 changes: 1 addition & 1 deletion bin/sugar-activity3 → bin/sugar-activity4
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python3

from sugar3.activity import activityinstance
from sugar4.activity import activityinstance

activityinstance.main()
2 changes: 1 addition & 1 deletion ci/docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ sudo make
show-green "Building documentation"
./make-doc.sh
mkdir deploy
cp -r doc/_build/html deploy/sugar3
cp -r doc/_build/html deploy/sugar4
touch deploy/.nojekyll
# create an index.html so that users don't become confused
show-green "Writing index.html"
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
"dbus",
"SimpleHTTPServer",
"socketserver",
"sugar3",
"sugar4",
"cairo",
]

Expand Down
16 changes: 8 additions & 8 deletions po/POTFILES.in
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
src/sugar3/activity/activity.py
src/sugar3/activity/widgets.py
src/sugar3/graphics/alert.py
src/sugar3/graphics/colorbutton.py
src/sugar3/graphics/objectchooser.py
src/sugar3/util.py
src/sugar3/mime.py
src/sugar3/speech.py
src/sugar4/activity/activity.py
src/sugar4/activity/widgets.py
src/sugar4/graphics/alert.py
src/sugar4/graphics/colorbutton.py
src/sugar4/graphics/objectchooser.py
src/sugar4/util.py
src/sugar4/mime.py
src/sugar4/speech.py
6 changes: 3 additions & 3 deletions po/POTFILES.skip
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# We don't care about these string, they are in code which we don't really
# use and is there solely to not diverge too much from the "upstream"
# versions of these files.
src/sugar3/eggdesktopfile.c
src/sugar3/eggsmclient.c
src/sugar3/gsm-xsmp.c
src/sugar4/eggdesktopfile.c
src/sugar4/eggsmclient.c
src/sugar4/gsm-xsmp.c
tests/data/sample.activity/activity.py
Loading