aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafael G. Martins <rafael@rafaelmartins.eng.br>2009-12-23 17:44:18 -0200
committerRafael G. Martins <rafael@rafaelmartins.eng.br>2009-12-23 17:44:18 -0200
commitcbbb58ae2f421144fe3e3b7ca8dcd46f44b4f1e0 (patch)
tree522c0d1604ad1b42712a5b99529019a1f5dfb342
parentadded LICENSE (diff)
downloadg-octave-cbbb58ae2f421144fe3e3b7ca8dcd46f44b4f1e0.tar.gz
g-octave-cbbb58ae2f421144fe3e3b7ca8dcd46f44b4f1e0.tar.bz2
g-octave-cbbb58ae2f421144fe3e3b7ca8dcd46f44b4f1e0.zip
changed URL; small fixes on scripts/g-octave; added usage examples to
README.rst
-rw-r--r--README.rst34
-rw-r--r--g_octave/__init__.py2
-rwxr-xr-xscripts/g-octave2
3 files changed, 36 insertions, 2 deletions
diff --git a/README.rst b/README.rst
index 4267ffb..8d21c6e 100644
--- a/README.rst
+++ b/README.rst
@@ -145,6 +145,28 @@ CLI options
don't use colors on the CLI
+Usage Examples
+--------------
+
+Install the latest version of *control*: ::
+
+ # g-octave control
+
+Install the version 1.0.11 of *control*: ::
+
+ # g-octave control-1.0.11
+
+Remove the package *control*: ::
+
+ # g-octave -C control
+
+Get informations about the package *control*: ::
+
+ # g-octave -i control
+
+The options *verbose*, *ask* and *pretend* are passed to **emerge**.
+
+
Dependencies
------------
@@ -163,6 +185,18 @@ The users can help testing and reporting bugs in our `issue tracker`_.
If you can help programming in Python_, please take a look at our missing
features and at the To-Do list. :)
+`g-octave`_ ebuilds are available here:
+http://overlay.rafaelmartins.eng.br/
+
+
+Warning
+-------
+
+If you experienced some random errors when installing some package, please
+retry, using the option *--force-all*, and report the issue to us.
+If you don't want to lose all your ebuilds, you can try to use the option
+*--force*, that will recreate only the affected ebuild.
+
Authors
-------
diff --git a/g_octave/__init__.py b/g_octave/__init__.py
index e91f218..06e8429 100644
--- a/g_octave/__init__.py
+++ b/g_octave/__init__.py
@@ -17,7 +17,7 @@ A tool that generates and installs ebuilds for Octave-Forge packages "on-the-fly
to Gentoo Linux, using Portage.
"""
-__url__ = 'http://rafaelmartins.eng.br/en-us/projects/g-octave/' # not done yet :(
+__url__ = 'http://bitbucket.org/rafaelmartins/g-octave/'
__copyright__ = '(c) 2009 %s' % __author__
__license__ = 'GPLv2'
diff --git a/scripts/g-octave b/scripts/g-octave
index 11a9e17..5f27121 100755
--- a/scripts/g-octave
+++ b/scripts/g-octave
@@ -222,7 +222,7 @@ can install only one package at once and his dependencies.""")
sys.exit(1)
if options.unmerge:
- print white('You may want to remove the dependencies too, using:')
+ print white('\nYou may want to remove the dependencies too, using:')
print light_blue('# emerge -av --depclean')
sys.exit(0)