Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWalter Bender <walter@sugarlabs.org>2013-05-24 22:48:53 (GMT)
committer Walter Bender <walter@sugarlabs.org>2013-05-24 22:48:53 (GMT)
commit491cec67652630fe999f719de2b154ebff8c965d (patch)
tree66ace8795dc36cce984ba442af06926545e7db4d
parent6cbe85b82a99dd6dba78d2fde3028e9adf03bc9d (diff)
v16v16
-rw-r--r--NEWS2
-rw-r--r--activity/activity.info2
-rwxr-xr-xsetup.py48
3 files changed, 21 insertions, 31 deletions
diff --git a/NEWS b/NEWS
index c5164fd..4763a9b 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
NEWS
-15
+16
* New translations
diff --git a/activity/activity.info b/activity/activity.info
index 20f4eba..1f2950f 100644
--- a/activity/activity.info
+++ b/activity/activity.info
@@ -1,6 +1,6 @@
[Activity]
name = Paths
-activity_version = 15
+activity_version = 16
license = GPLv3
bundle_id = org.sugarlabs.PathsActivity
exec = sugar-activity PathsActivity.PathsActivity
diff --git a/setup.py b/setup.py
index e5026ee..876cd3f 100755
--- a/setup.py
+++ b/setup.py
@@ -1,32 +1,22 @@
-#!/usr/bin/env python
-import os
-import sys
+#!/usr/bin/python
-if len(sys.argv) > 1 and '--no-sugar' == sys.argv[1]:
- # Remove the argument from the stack so we don't cause problems
- # for distutils
- sys.argv.pop(1)
-
- import glob, os.path, string
- from distutils.core import setup
-
- DATA_FILES = [
- ('icons', glob.glob('icons/*')),
- ('images', glob.glob('images/*')),
- ('/usr/share/applications', ['turtleart.desktop'])
- ]
+# Copyright (C) 2006, Red Hat, Inc.
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
- setup (name = 'Turtle Art',
- description = "A LOGO-like tool for teaching programming",
- author = "Walter Bender",
- author_email = "walter.bender@gmail.com",
- version = '0.9.4',
- packages = ['TurtleArt'],
- scripts = ['turtleart'],
- data_files = DATA_FILES,
- )
-else:
- from sugar.activity import bundlebuilder
+from sugar.activity import bundlebuilder
+
+bundlebuilder.start()
- if __name__ == "__main__":
- bundlebuilder.start()