|
| 1 | +Packaging Quickstart |
| 2 | +==================== |
| 3 | + |
| 4 | +.. contents:: :local: |
| 5 | + |
| 6 | +Introduction |
| 7 | +------------ |
| 8 | + |
| 9 | +Populus can be used as a package manager to interact with any ERC190 smart |
| 10 | +contract packages. |
| 11 | + |
| 12 | + |
| 13 | +Project Manifest |
| 14 | +---------------- |
| 15 | + |
| 16 | +In order to take advantage of the packaging features you will first need to |
| 17 | +create a package manifest for your project. This can either be done manually |
| 18 | +or using the command line helper ``$ populus package init`` which will present |
| 19 | +an interactive prompt for creating the ``ethpm.json`` file. |
| 20 | + |
| 21 | +.. code-block:: bash |
| 22 | +
|
| 23 | + $ populus package init |
| 24 | + Writing new ethpm.json file. |
| 25 | + Package Name: fancy-greeter |
| 26 | + Author(s) [[]]: Piper Merriam <[email protected]> |
| 27 | + Version [1.0.0]: |
| 28 | + License [MIT]: |
| 29 | + Description []: A fancy greeter contract |
| 30 | + Keywords [[]]: greeter, greetings |
| 31 | + Links [{}]: |
| 32 | + Wrote package manifest: ethpm.json |
| 33 | +
|
| 34 | +
|
| 35 | +Installing Packages |
| 36 | +------------------- |
| 37 | + |
| 38 | +Packages can be installed using the ``$populus package install`` command. |
| 39 | +Packages may be specified in the following formats. |
| 40 | + |
| 41 | +* ``populus package install .``: |
| 42 | + |
| 43 | + To install all of the declared dependencies found within the project's package manifest. |
| 44 | + |
| 45 | +* ``populus package install some-package-name`` |
| 46 | + |
| 47 | + To install a named package ``some-package-name`` sourced from a package index. |
| 48 | + |
| 49 | +* ``populus package install ipfs://QmUwVUMVtkVctrLDeL12SoeCPUacELBU8nAxRtHUzvtjND`` |
| 50 | + |
| 51 | + To install directly from a release lockfile via IPFS |
| 52 | + |
| 53 | +* ``populus package install /path/to/release-lockfile.json`` |
| 54 | + |
| 55 | + To install directly from a release lockfile on the local filesystem. |
| 56 | + |
| 57 | + |
| 58 | +Populus also supports installing packages under aliased names. This can be |
| 59 | +used to allow multiple versions of the same package to be installed in tandem. |
| 60 | + |
| 61 | +* ``populus package install some-alias:some-package-name`` |
| 62 | + |
| 63 | + To install a named package ``some-package-name`` under the name |
| 64 | + ``some-alias`` sourced from a package index. |
| 65 | + |
| 66 | +* ``populus package install some-alias@ipfs://QmUwVUMVtkVctrLDeL12SoeCPUacELBU8nAxRtHUzvtjND`` |
| 67 | + |
| 68 | + To install directly from a release lockfile via IPFS using the name ``some-alias``. |
| 69 | + |
| 70 | +* ``populus package install some-alias@/path/to/release-lockfile.json`` |
| 71 | + |
| 72 | + To install directly from a release lockfile on the local filesystem using |
| 73 | + the name ``some-alias`` |
| 74 | + |
| 75 | + |
| 76 | +Packages are installed in the ``./installed_packages`` directory in the root |
| 77 | +project directory under their aliased name, or their package name if no alias |
| 78 | +is used. |
| 79 | + |
| 80 | +When a package is installed it is automatically saved to the project |
| 81 | +dependencies within the package manifest. This can be disabled by passing in |
| 82 | +the ``--no-save`` flag during installation. |
| 83 | + |
| 84 | + |
| 85 | +Using Contracts from Installed Packages |
| 86 | +--------------------------------------- |
| 87 | + |
| 88 | +Importing a contract from an installed package is done by prefixing the source |
| 89 | +path with the name of the installed package, or the alias name if an alias was |
| 90 | +used. |
| 91 | + |
| 92 | +Lets use the common *owned* pattern for an example. Suppose we have the |
| 93 | +``owned`` package installed in our project. We know that this package has a |
| 94 | +single solidity source file that contains the ``owned`` contract located at |
| 95 | +``./contracts/owned.sol``. |
| 96 | + |
| 97 | +To import a contract from this file into local solidity source files you would |
| 98 | +simply prefix the import path with the package name. |
| 99 | + |
| 100 | +.. code-block:: solidity |
| 101 | +
|
| 102 | + pragma solidity ^0.4.0; |
| 103 | +
|
| 104 | + import "owned/contracts/owned.sol"; |
| 105 | +
|
| 106 | + contract MyContract is owned { |
| 107 | + ... |
| 108 | + } |
| 109 | +
|
| 110 | +.. note:: |
| 111 | + |
| 112 | + If you install a package which either has source files which do not compile |
| 113 | + with the solidity compiler version you are using, or which have a ``pragma |
| 114 | + solidity`` statement which is incompatable with your version of solidity |
| 115 | + then compilation will fail. |
| 116 | + |
| 117 | + |
| 118 | +Library Linking |
| 119 | +--------------- |
| 120 | + |
| 121 | +If you have a package installed which contains a library contract with a deployed instance of that library, populus will automatically find and link against that existing deployed library. One of the default contract backends that populus uses will check all installed packages |
| 122 | + |
| 123 | + |
| 124 | + |
| 125 | +Building and Publishing Releases |
| 126 | +-------------------------------- |
| 127 | + |
| 128 | +Populus can be used to build and publish packages to The Ethereum Package |
| 129 | +Registry or any registry which implements a compatable API. |
| 130 | + |
| 131 | +To build a release use the ``$ populus package build`` command. |
0 commit comments