diff options
author | Igor Pashev <igor.pashev@nexenta.com> | 2013-04-17 14:08:01 +0400 |
---|---|---|
committer | Igor Pashev <igor.pashev@nexenta.com> | 2013-04-17 14:08:01 +0400 |
commit | 207cd347945b53a1034d0ed8ad35037cf497e471 (patch) | |
tree | 455f399a5c405141b9c2fe500bcf9be05534d304 /examples/python2.7/python-minimal.p5m.gen | |
parent | 62c2114fcab6cf9826089109633117494ace630e (diff) | |
download | cibs-207cd347945b53a1034d0ed8ad35037cf497e471.tar.gz |
Examples: vim & python
Diffstat (limited to 'examples/python2.7/python-minimal.p5m.gen')
-rwxr-xr-x | examples/python2.7/python-minimal.p5m.gen | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/examples/python2.7/python-minimal.p5m.gen b/examples/python2.7/python-minimal.p5m.gen new file mode 100755 index 0000000..bfb85fe --- /dev/null +++ b/examples/python2.7/python-minimal.p5m.gen @@ -0,0 +1,25 @@ +#!/bin/sh + +set -e +set -u + +tmp=/tmp/cibs-python-minimal.$$ + +proto=${proto:-work/proto/python-minimal} + +cat <<'META' > $tmp +set name=pkg.fmri value=pkg:/runtime/python$(pyver)-minimal@$(ips-version) +set name=pkg.summary value="Minimal subset of the Python language (version $(pyver))" +set name=info.upstream-url value="$(home)" +set name=info.source-url value="$(download)" + +license $(license-file) license="$(license)" + +<transform file path=.*\.py -> add pkg.depend.bypass-generate .*> + +META + +/usr/share/cibs/scripts/make-payload $proto >> $tmp +cat $tmp +rm $tmp + |