Skip to content

Commit

Permalink
Merge pull request #244 from xoltar/ipkg-format-docs
Browse files Browse the repository at this point in the history
Update docs to reflect changes to ipkg format
  • Loading branch information
edwinb authored Jun 8, 2020
2 parents 73de552 + a5449d9 commit ff56062
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/tutorial/packages.rst
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,6 @@ a simple recipe for this trivial case:
package myProject
pkgs = pruviloj, lightyear
depends = pruviloj, lightyear
- In Atom, use the File menu to Open Folder myProject.
28 changes: 28 additions & 0 deletions docs/source/updates/updates.rst
Original file line number Diff line number Diff line change
Expand Up @@ -461,6 +461,34 @@ directory ``build/ttc``, in the root of the source tree, with the directory
structure following the directory structure of the source. Executables are
placed in ``build/exec``.

Packages
--------

Dependencies on other packages are now indicated with the ``depends`` field,
the ``pkgs`` field is no longer recognized. Also, fields with URLS or other
string data (other than module or package names), must be enclosed in double
quotes.
For example:

::

package lightyear

sourceloc = "git://git@github.com:ziman/lightyear.git"
bugtracker = "http://www.github.com/ziman/lightyear/issues"

depends = effects

modules = Lightyear
, Lightyear.Position
, Lightyear.Core
, Lightyear.Combinators
, Lightyear.StringFile
, Lightyear.Strings
, Lightyear.Char
, Lightyear.Testing


.. _sect-new-features:

New features
Expand Down

0 comments on commit ff56062

Please sign in to comment.