2016-09-13 05:52:54 -04:00
|
|
|
name: hugo
|
2019-02-01 04:42:55 -05:00
|
|
|
version: "0.55.0-DEV"
|
2016-09-13 05:52:54 -04:00
|
|
|
summary: Fast and Flexible Static Site Generator
|
|
|
|
description: |
|
|
|
|
Hugo is a static HTML and CSS website generator written in Go. It is
|
|
|
|
optimized for speed, easy use and configurability. Hugo takes a directory
|
|
|
|
with content and templates and renders them into a full HTML website.
|
|
|
|
confinement: strict
|
2019-02-01 04:42:55 -05:00
|
|
|
grade: devel # "devel" or "stable"
|
2016-09-13 05:52:54 -04:00
|
|
|
|
|
|
|
apps:
|
|
|
|
hugo:
|
|
|
|
command: bin/hugo
|
2018-04-05 09:15:51 -04:00
|
|
|
completer: hugo-completion
|
2018-01-31 04:00:16 -05:00
|
|
|
plugs: [home, network-bind, removable-media]
|
2016-09-13 05:52:54 -04:00
|
|
|
|
|
|
|
parts:
|
2018-09-25 09:05:55 -04:00
|
|
|
git:
|
|
|
|
plugin: nil
|
|
|
|
stage-packages:
|
|
|
|
- git
|
|
|
|
organize:
|
|
|
|
usr/bin/: bin/
|
|
|
|
prime:
|
|
|
|
- bin/git
|
|
|
|
|
2016-09-13 05:52:54 -04:00
|
|
|
hugo:
|
2018-09-30 01:29:57 -04:00
|
|
|
plugin: nil
|
2019-03-07 04:26:26 -05:00
|
|
|
build-snaps: [go/1.12/stable]
|
2016-09-13 05:52:54 -04:00
|
|
|
source: .
|
2018-07-09 04:41:10 -04:00
|
|
|
override-build: |
|
2018-09-25 09:05:55 -04:00
|
|
|
set -ex
|
|
|
|
|
2018-07-09 04:41:10 -04:00
|
|
|
echo "\nStarting override-build:"
|
2018-09-30 01:29:57 -04:00
|
|
|
export GOPATH=$(realpath ../go)
|
2018-09-30 16:22:01 -04:00
|
|
|
export PATH=$GOPATH/bin:$PATH
|
2018-09-25 09:05:55 -04:00
|
|
|
|
2018-07-09 04:41:10 -04:00
|
|
|
echo ' * Running "go get -v github.com/magefile/mage"...'
|
2018-09-30 16:22:01 -04:00
|
|
|
GO111MODULE=off go get -v github.com/magefile/mage
|
|
|
|
|
2018-09-30 01:31:06 -04:00
|
|
|
echo ' * Running "mage -v test"...'
|
2018-09-30 16:22:01 -04:00
|
|
|
export GO111MODULE=on
|
2018-09-30 01:31:06 -04:00
|
|
|
mage -v test
|
2018-09-25 09:05:55 -04:00
|
|
|
|
2018-10-11 10:56:53 -04:00
|
|
|
echo " * SNAPCRAFT_IMAGE_INFO=$SNAPCRAFT_IMAGE_INFO"
|
|
|
|
# Example: SNAPCRAFT_IMAGE_INFO='{"build_url": "https://launchpad.net/~gohugoio/+snap/hugo-extended-dev/+build/344022"}'
|
|
|
|
if echo $SNAPCRAFT_IMAGE_INFO | grep -q '/+snap/hugo-extended'; then
|
|
|
|
export HUGO_BUILD_TAGS="extended"
|
|
|
|
fi
|
|
|
|
echo " * Building hugo (HUGO_BUILD_TAGS=\"$HUGO_BUILD_TAGS\")..."
|
2018-07-09 04:41:10 -04:00
|
|
|
[ "$SNAPCRAFT_PROJECT_GRADE" = "stable" ] && mage -v hugoNoGitInfo || mage -v hugo
|
2018-04-05 09:14:51 -04:00
|
|
|
./hugo version
|
2018-07-09 04:41:10 -04:00
|
|
|
ldd hugo || :
|
2018-09-25 09:05:55 -04:00
|
|
|
|
2018-07-09 04:41:10 -04:00
|
|
|
echo " * Building shell completion..."
|
2018-04-05 09:15:51 -04:00
|
|
|
./hugo gen autocomplete --completionfile=hugo-completion
|
2018-09-25 09:05:55 -04:00
|
|
|
|
2018-07-09 04:41:10 -04:00
|
|
|
echo " * Installing to ${SNAPCRAFT_PART_INSTALL}..."
|
2018-04-05 09:14:51 -04:00
|
|
|
install -d $SNAPCRAFT_PART_INSTALL/bin
|
2018-07-09 04:41:10 -04:00
|
|
|
cp -av hugo $SNAPCRAFT_PART_INSTALL/bin/
|
|
|
|
mv -v hugo-completion $SNAPCRAFT_PART_INSTALL/
|
2018-09-25 09:05:55 -04:00
|
|
|
|
2018-07-09 04:41:10 -04:00
|
|
|
echo " * Stripping binary..."
|
|
|
|
ls -l $SNAPCRAFT_PART_INSTALL/bin/hugo
|
2018-07-09 03:45:18 -04:00
|
|
|
strip --remove-section=.comment --remove-section=.note $SNAPCRAFT_PART_INSTALL/bin/hugo
|
2018-07-09 04:41:10 -04:00
|
|
|
ls -l $SNAPCRAFT_PART_INSTALL/bin/hugo
|
2018-08-24 11:35:07 -04:00
|
|
|
|
|
|
|
node:
|
2018-09-30 18:28:11 -04:00
|
|
|
plugin: x-nodejs
|
2018-09-25 00:20:45 -04:00
|
|
|
node-packages: [postcss-cli]
|
|
|
|
filesets:
|
|
|
|
node:
|
|
|
|
- bin/node
|
|
|
|
postcss:
|
|
|
|
- bin/postcss
|
|
|
|
- lib/node_modules/postcss-cli/*
|
2018-08-24 11:35:07 -04:00
|
|
|
prime:
|
2018-09-25 00:20:45 -04:00
|
|
|
- $node
|
|
|
|
- $postcss
|
2018-08-24 11:35:07 -04:00
|
|
|
|
|
|
|
pygments:
|
|
|
|
plugin: python
|
|
|
|
python-packages: [Pygments]
|
|
|
|
prime:
|
|
|
|
- bin/pygmentize
|
|
|
|
- lib/python*/site-packages/Pygments-*.dist-info/*
|
|
|
|
- lib/python*/site-packages/pygments/*
|
|
|
|
- usr/bin/python*
|
|
|
|
- -usr/bin/python*m
|
|
|
|
- usr/lib/python*/*
|
|
|
|
- -usr/lib/python*/distutils/*
|
|
|
|
- -usr/lib/python*/email/*
|
|
|
|
- -usr/lib/python*/lib2to3/*
|
|
|
|
- -usr/lib/python*/tkinter/*
|
|
|
|
- -usr/lib/python*/unittest/*
|