2016-09-13 11:52:54 +02:00
|
|
|
name: hugo
|
2018-11-28 14:08:36 +00:00
|
|
|
version: "0.53-DEV"
|
2016-09-13 11:52:54 +02: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
|
2018-11-28 14:08:36 +00:00
|
|
|
grade: devel # "devel" or "stable"
|
2016-09-13 11:52:54 +02:00
|
|
|
|
|
|
|
apps:
|
|
|
|
hugo:
|
|
|
|
command: bin/hugo
|
2018-04-05 07:15:51 -06:00
|
|
|
completer: hugo-completion
|
2018-01-31 02:00:16 -07:00
|
|
|
plugs: [home, network-bind, removable-media]
|
2016-09-13 11:52:54 +02:00
|
|
|
|
|
|
|
parts:
|
2018-09-25 07:05:55 -06:00
|
|
|
git:
|
|
|
|
plugin: nil
|
|
|
|
stage-packages:
|
|
|
|
- git
|
|
|
|
organize:
|
|
|
|
usr/bin/: bin/
|
|
|
|
prime:
|
|
|
|
- bin/git
|
|
|
|
|
2016-09-13 11:52:54 +02:00
|
|
|
hugo:
|
2018-09-29 23:29:57 -06:00
|
|
|
plugin: nil
|
2018-12-20 21:46:47 -07:00
|
|
|
build-snaps: [go/1.11/stable]
|
2016-09-13 11:52:54 +02:00
|
|
|
source: .
|
2018-07-09 02:41:10 -06:00
|
|
|
override-build: |
|
2018-09-25 07:05:55 -06:00
|
|
|
set -ex
|
|
|
|
|
2018-07-09 02:41:10 -06:00
|
|
|
echo "\nStarting override-build:"
|
2018-09-29 23:29:57 -06:00
|
|
|
export GOPATH=$(realpath ../go)
|
2018-09-30 14:22:01 -06:00
|
|
|
export PATH=$GOPATH/bin:$PATH
|
2018-09-25 07:05:55 -06:00
|
|
|
|
2018-07-09 02:41:10 -06:00
|
|
|
echo ' * Running "go get -v github.com/magefile/mage"...'
|
2018-09-30 14:22:01 -06:00
|
|
|
GO111MODULE=off go get -v github.com/magefile/mage
|
|
|
|
|
2018-09-29 23:31:06 -06:00
|
|
|
echo ' * Running "mage -v test"...'
|
2018-09-30 14:22:01 -06:00
|
|
|
export GO111MODULE=on
|
2018-09-29 23:31:06 -06:00
|
|
|
mage -v test
|
2018-09-25 07:05:55 -06:00
|
|
|
|
2018-10-11 22:56:53 +08: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 02:41:10 -06:00
|
|
|
[ "$SNAPCRAFT_PROJECT_GRADE" = "stable" ] && mage -v hugoNoGitInfo || mage -v hugo
|
2018-04-05 07:14:51 -06:00
|
|
|
./hugo version
|
2018-07-09 02:41:10 -06:00
|
|
|
ldd hugo || :
|
2018-09-25 07:05:55 -06:00
|
|
|
|
2018-07-09 02:41:10 -06:00
|
|
|
echo " * Building shell completion..."
|
2018-04-05 07:15:51 -06:00
|
|
|
./hugo gen autocomplete --completionfile=hugo-completion
|
2018-09-25 07:05:55 -06:00
|
|
|
|
2018-07-09 02:41:10 -06:00
|
|
|
echo " * Installing to ${SNAPCRAFT_PART_INSTALL}..."
|
2018-04-05 07:14:51 -06:00
|
|
|
install -d $SNAPCRAFT_PART_INSTALL/bin
|
2018-07-09 02:41:10 -06:00
|
|
|
cp -av hugo $SNAPCRAFT_PART_INSTALL/bin/
|
|
|
|
mv -v hugo-completion $SNAPCRAFT_PART_INSTALL/
|
2018-09-25 07:05:55 -06:00
|
|
|
|
2018-07-09 02:41:10 -06:00
|
|
|
echo " * Stripping binary..."
|
|
|
|
ls -l $SNAPCRAFT_PART_INSTALL/bin/hugo
|
2018-07-09 09:45:18 +02:00
|
|
|
strip --remove-section=.comment --remove-section=.note $SNAPCRAFT_PART_INSTALL/bin/hugo
|
2018-07-09 02:41:10 -06:00
|
|
|
ls -l $SNAPCRAFT_PART_INSTALL/bin/hugo
|
2018-08-24 09:35:07 -06:00
|
|
|
|
|
|
|
node:
|
2018-09-30 16:28:11 -06:00
|
|
|
plugin: x-nodejs
|
2018-09-24 22:20:45 -06:00
|
|
|
node-packages: [postcss-cli]
|
|
|
|
filesets:
|
|
|
|
node:
|
|
|
|
- bin/node
|
|
|
|
postcss:
|
|
|
|
- bin/postcss
|
|
|
|
- lib/node_modules/postcss-cli/*
|
2018-08-24 09:35:07 -06:00
|
|
|
prime:
|
2018-09-24 22:20:45 -06:00
|
|
|
- $node
|
|
|
|
- $postcss
|
2018-08-24 09:35:07 -06: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/*
|