[arch-commits] Commit in hedgedoc/repos/community-any (8 files)
Jelle van der Waa
jelle at archlinux.org
Tue May 11 20:00:05 UTC 2021
Date: Tuesday, May 11, 2021 @ 20:00:05
Author: jelle
Revision: 930612
archrelease: copy trunk to community-any
Added:
hedgedoc/repos/community-any/PKGBUILD
(from rev 930610, hedgedoc/trunk/PKGBUILD)
hedgedoc/repos/community-any/hedgedoc.service
(from rev 930610, hedgedoc/trunk/hedgedoc.service)
hedgedoc/repos/community-any/sysusers.conf
(from rev 930611, hedgedoc/trunk/sysusers.conf)
hedgedoc/repos/community-any/tmpfiles.conf
(from rev 930611, hedgedoc/trunk/tmpfiles.conf)
Deleted:
hedgedoc/repos/community-any/PKGBUILD
hedgedoc/repos/community-any/hedgedoc.service
hedgedoc/repos/community-any/sysusers.conf
hedgedoc/repos/community-any/tmpfiles.conf
------------------+
PKGBUILD | 260 ++++++++++++++++++++++++++---------------------------
hedgedoc.service | 94 +++++++++----------
sysusers.conf | 2
tmpfiles.conf | 6 -
4 files changed, 181 insertions(+), 181 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2021-05-11 20:00:02 UTC (rev 930611)
+++ PKGBUILD 2021-05-11 20:00:05 UTC (rev 930612)
@@ -1,130 +0,0 @@
-# Maintainer: Jelle van der Waa <jelle at archlinux.org>
-
-pkgname=hedgedoc
-pkgver=1.8.1
-pkgrel=1
-pkgdesc="Platform to write and share markdown"
-arch=('any')
-url='https://github.com/hedgedoc/hedgedoc'
-license=('AGPL3')
-depends=('nodejs' 'npm')
-makedepends=('nodejs' 'sqlite' 'python' 'node-gyp' 'git' 'yarn')
-optdepends=('postgresql: postgresql database support'
- 'mariadb: mariadb database support'
- 'sqlite: sqlite database support')
-backup=("etc/webapps/${pkgname}"/config.json)
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/hedgedoc/${pkgname}/archive/${pkgver}.tar.gz"
- "sysusers.conf"
- "tmpfiles.conf"
- "hedgedoc.service")
-options=(!emptydirs)
-sha1sums=('46314019e40cf3d8ccbadc6caf747484a5342a36'
- 'dc4220c9d7e21d2b5b5c54462bb681375d1cce62'
- '090b12e0214386e34e4390dd647cb07fd75f8ec0'
- '7630e5fddc4f1bd88a8bdc3011af41e6de836f3f')
-
-build() {
- cd "${pkgname}-${pkgver}"
- # Build steps from Dockerfile
- yarn install --production=false
- yarn run build
- rm -rf node_modules
- # Production modules
- yarn install --production=true
-}
-
-package() {
- cd "${pkgname}-${pkgver}"
-
- # removing unneeded files and directories
- find node_modules -type f \
- \( \
- -iname '*Makefile*' -o \
- -iname '*armv*' -o \
- -iname '*.cache' -o \
- -iname '*Makefile*' -o \
- -iname '*appveyor.yml' -o \
- -iname '*.babelrc' -o \
- -iname '*.bak' -o \
- -iname '*bower.json' -o \
- -iname '*.c' -o \
- -iname '*.cc' -o \
- -iname '*.cpp' -o \
- -iname '*.md' -o \
- -iname '*.markdown' -o \
- -iname '*.rst' -o \
- -iname '*.nycrc' -o \
- -iname '*.npmignore' -o \
- -iname '*.editorconfig' -o \
- -iname '*.el' -o \
- -iname '*.eslintignore' -o \
- -iname '*.eslintrc*' -o \
- -iname '*.fimbullinter.yaml' -o \
- -iname '*.gitattributes' -o \
- -iname '*.gitmodules' -o \
- -iname '*.h' -o \
- -iname '*.html' -o \
- -iname '*.jshintrc' -o \
- -iname '*.jscs.json' -o \
- -iname '*.log' -o \
- -iname '*logo.svg' -o \
- -iname '*.nvmrc' -o \
- -iname '*.o' -o \
- -iname '*package-lock.json' -o \
- -iname '*.travis.yml' -o \
- -iname '*.prettierrc' -o \
- -iname '*.sh' -o \
- -iname '*.tags*' -o \
- -iname '*.Dockerfile*' -o \
- -iname '*.tm_properties' -o \
- -iname '*.wotanrc.yaml' -o \
- -iname '*tsconfig.json' -o \
- -iname '*yarn.lock' \
- \) \
- -delete
-
- find node_modules -type d \
- \( \
- -iwholename '*.github' -o \
- -iwholename '*.tscache' -o \
- -iwholename '*/man' -o \
- -iwholename '*/test' -o \
- -iwholename '*/scripts' -o \
- -iwholename '*/git-hooks' -o \
- -iwholename '*/linux-arm64' -o \
- -iwholename '*/linux-armvy' -o \
- -iwholename '*/linux-armv7' -o \
- -iwholename '*/win32-ia32' -o \
- -iwholename '*/win32-x64' -o \
- -iwholename '*/darwin-x64' \
- \) \
- -exec rm -rvf {} +
-
- install -m0755 -d "${pkgdir}/usr/share/webapps/${pkgname}"
-
- # install application parts
- cp -a bin public lib locales node_modules "${pkgdir}/usr/share/webapps/${pkgname}"
- install -m0644 app.js -t "${pkgdir}/usr/share/webapps/${pkgname}"
- install -m0644 package.json -t "${pkgdir}/usr/share/webapps/${pkgname}"
-
- # Make public/uploads a symlink to the hedgedoc writable directory.
- # An alternative would be to configure the uploadsPath in config.json.
- rm "${pkgdir}/usr/share/webapps/${pkgname}/public/uploads/.gitkeep"
- rm -d "${pkgdir}/usr/share/webapps/${pkgname}/public/uploads"
- ln -s "/var/lib/${pkgname}/uploads" \
- "${pkgdir}/usr/share/webapps/${pkgname}/public/uploads"
-
-
- # Setup config files in /etc.
- install -m0755 -d "${pkgdir}/etc/webapps/${pkgname}"
- cp config.json.example "${pkgdir}/etc/webapps/${pkgname}/config.json"
-
- ln -s "/etc/webapps/${pkgname}"/config.json "${pkgdir}/usr/share/webapps/${pkgname}/config.json"
-
- # Configure hedgedoc user and some directories writable for that user.
- install -Dm0644 ${srcdir}/sysusers.conf "${pkgdir}/usr/lib/sysusers.d/${pkgname}.conf"
- install -Dm0644 ${srcdir}/tmpfiles.conf "${pkgdir}/usr/lib/tmpfiles.d/${pkgname}.conf"
-
- # Install systemd service file.
- install -Dm0644 -t "${pkgdir}/usr/lib/systemd/system/" "${srcdir}"/hedgedoc.service
-}
Copied: hedgedoc/repos/community-any/PKGBUILD (from rev 930610, hedgedoc/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2021-05-11 20:00:05 UTC (rev 930612)
@@ -0,0 +1,130 @@
+# Maintainer: Jelle van der Waa <jelle at archlinux.org>
+
+pkgname=hedgedoc
+pkgver=1.8.2
+pkgrel=1
+pkgdesc="Platform to write and share markdown"
+arch=('any')
+url='https://github.com/hedgedoc/hedgedoc'
+license=('AGPL3')
+depends=('nodejs' 'npm')
+makedepends=('nodejs' 'sqlite' 'python' 'node-gyp' 'git' 'yarn')
+optdepends=('postgresql: postgresql database support'
+ 'mariadb: mariadb database support'
+ 'sqlite: sqlite database support')
+backup=("etc/webapps/${pkgname}"/config.json)
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/hedgedoc/${pkgname}/archive/${pkgver}.tar.gz"
+ "sysusers.conf"
+ "tmpfiles.conf"
+ "hedgedoc.service")
+options=(!emptydirs)
+sha1sums=('89151491a28906445ec3fb3ef67c1836159f9acd'
+ 'dc4220c9d7e21d2b5b5c54462bb681375d1cce62'
+ '090b12e0214386e34e4390dd647cb07fd75f8ec0'
+ '7630e5fddc4f1bd88a8bdc3011af41e6de836f3f')
+
+build() {
+ cd "${pkgname}-${pkgver}"
+ # Build steps from Dockerfile
+ yarn install --production=false
+ yarn run build
+ rm -rf node_modules
+ # Production modules
+ yarn install --production=true
+}
+
+package() {
+ cd "${pkgname}-${pkgver}"
+
+ # removing unneeded files and directories
+ find node_modules -type f \
+ \( \
+ -iname '*Makefile*' -o \
+ -iname '*armv*' -o \
+ -iname '*.cache' -o \
+ -iname '*Makefile*' -o \
+ -iname '*appveyor.yml' -o \
+ -iname '*.babelrc' -o \
+ -iname '*.bak' -o \
+ -iname '*bower.json' -o \
+ -iname '*.c' -o \
+ -iname '*.cc' -o \
+ -iname '*.cpp' -o \
+ -iname '*.md' -o \
+ -iname '*.markdown' -o \
+ -iname '*.rst' -o \
+ -iname '*.nycrc' -o \
+ -iname '*.npmignore' -o \
+ -iname '*.editorconfig' -o \
+ -iname '*.el' -o \
+ -iname '*.eslintignore' -o \
+ -iname '*.eslintrc*' -o \
+ -iname '*.fimbullinter.yaml' -o \
+ -iname '*.gitattributes' -o \
+ -iname '*.gitmodules' -o \
+ -iname '*.h' -o \
+ -iname '*.html' -o \
+ -iname '*.jshintrc' -o \
+ -iname '*.jscs.json' -o \
+ -iname '*.log' -o \
+ -iname '*logo.svg' -o \
+ -iname '*.nvmrc' -o \
+ -iname '*.o' -o \
+ -iname '*package-lock.json' -o \
+ -iname '*.travis.yml' -o \
+ -iname '*.prettierrc' -o \
+ -iname '*.sh' -o \
+ -iname '*.tags*' -o \
+ -iname '*.Dockerfile*' -o \
+ -iname '*.tm_properties' -o \
+ -iname '*.wotanrc.yaml' -o \
+ -iname '*tsconfig.json' -o \
+ -iname '*yarn.lock' \
+ \) \
+ -delete
+
+ find node_modules -type d \
+ \( \
+ -iwholename '*.github' -o \
+ -iwholename '*.tscache' -o \
+ -iwholename '*/man' -o \
+ -iwholename '*/test' -o \
+ -iwholename '*/scripts' -o \
+ -iwholename '*/git-hooks' -o \
+ -iwholename '*/linux-arm64' -o \
+ -iwholename '*/linux-armvy' -o \
+ -iwholename '*/linux-armv7' -o \
+ -iwholename '*/win32-ia32' -o \
+ -iwholename '*/win32-x64' -o \
+ -iwholename '*/darwin-x64' \
+ \) \
+ -exec rm -rvf {} +
+
+ install -m0755 -d "${pkgdir}/usr/share/webapps/${pkgname}"
+
+ # install application parts
+ cp -a bin public lib locales node_modules "${pkgdir}/usr/share/webapps/${pkgname}"
+ install -m0644 app.js -t "${pkgdir}/usr/share/webapps/${pkgname}"
+ install -m0644 package.json -t "${pkgdir}/usr/share/webapps/${pkgname}"
+
+ # Make public/uploads a symlink to the hedgedoc writable directory.
+ # An alternative would be to configure the uploadsPath in config.json.
+ rm "${pkgdir}/usr/share/webapps/${pkgname}/public/uploads/.gitkeep"
+ rm -d "${pkgdir}/usr/share/webapps/${pkgname}/public/uploads"
+ ln -s "/var/lib/${pkgname}/uploads" \
+ "${pkgdir}/usr/share/webapps/${pkgname}/public/uploads"
+
+
+ # Setup config files in /etc.
+ install -m0755 -d "${pkgdir}/etc/webapps/${pkgname}"
+ cp config.json.example "${pkgdir}/etc/webapps/${pkgname}/config.json"
+
+ ln -s "/etc/webapps/${pkgname}"/config.json "${pkgdir}/usr/share/webapps/${pkgname}/config.json"
+
+ # Configure hedgedoc user and some directories writable for that user.
+ install -Dm0644 ${srcdir}/sysusers.conf "${pkgdir}/usr/lib/sysusers.d/${pkgname}.conf"
+ install -Dm0644 ${srcdir}/tmpfiles.conf "${pkgdir}/usr/lib/tmpfiles.d/${pkgname}.conf"
+
+ # Install systemd service file.
+ install -Dm0644 -t "${pkgdir}/usr/lib/systemd/system/" "${srcdir}"/hedgedoc.service
+}
Deleted: hedgedoc.service
===================================================================
--- hedgedoc.service 2021-05-11 20:00:02 UTC (rev 930611)
+++ hedgedoc.service 2021-05-11 20:00:05 UTC (rev 930612)
@@ -1,47 +0,0 @@
-[Unit]
-Description=Hedgedoc real-time collaborative markdown editor
-After=network.target
-
-[Service]
-Type=exec
-
-Environment=NODE_ENV=production
-
-Restart=always
-RestartSec=2s
-
-User=hedgedoc
-Group=hedgedoc
-
-WorkingDirectory=/usr/share/webapps/hedgedoc
-ExecStart=/usr/bin/npm start --production
-
-CapabilityBoundingSet=
-NoNewPrivileges=true
-PrivateDevices=true
-RemoveIPC=true
-LockPersonality=true
-
-ProtectControlGroups=true
-ProtectKernelTunables=true
-ProtectKernelModules=true
-ProtectKernelLogs=true
-ProtectClock=true
-ProtectHostname=true
-ProtectProc=noaccess
-
-RestrictRealtime=true
-RestrictSUIDSGID=true
-RestrictNamespaces=true
-RestrictAddressFamilies=AF_UNIX AF_INET AF_INET6
-
-ProtectSystem=strict
-ProtectHome=true
-PrivateTmp=true
-ReadWritePaths=/var/lib/hedgedoc /run/hedgedoc
-
-SystemCallArchitectures=native
-SystemCallFilter=@system-service
-
-[Install]
-WantedBy=multi-user.target
Copied: hedgedoc/repos/community-any/hedgedoc.service (from rev 930610, hedgedoc/trunk/hedgedoc.service)
===================================================================
--- hedgedoc.service (rev 0)
+++ hedgedoc.service 2021-05-11 20:00:05 UTC (rev 930612)
@@ -0,0 +1,47 @@
+[Unit]
+Description=Hedgedoc real-time collaborative markdown editor
+After=network.target
+
+[Service]
+Type=exec
+
+Environment=NODE_ENV=production
+
+Restart=always
+RestartSec=2s
+
+User=hedgedoc
+Group=hedgedoc
+
+WorkingDirectory=/usr/share/webapps/hedgedoc
+ExecStart=/usr/bin/npm start --production
+
+CapabilityBoundingSet=
+NoNewPrivileges=true
+PrivateDevices=true
+RemoveIPC=true
+LockPersonality=true
+
+ProtectControlGroups=true
+ProtectKernelTunables=true
+ProtectKernelModules=true
+ProtectKernelLogs=true
+ProtectClock=true
+ProtectHostname=true
+ProtectProc=noaccess
+
+RestrictRealtime=true
+RestrictSUIDSGID=true
+RestrictNamespaces=true
+RestrictAddressFamilies=AF_UNIX AF_INET AF_INET6
+
+ProtectSystem=strict
+ProtectHome=true
+PrivateTmp=true
+ReadWritePaths=/var/lib/hedgedoc /run/hedgedoc
+
+SystemCallArchitectures=native
+SystemCallFilter=@system-service
+
+[Install]
+WantedBy=multi-user.target
Deleted: sysusers.conf
===================================================================
--- sysusers.conf 2021-05-11 20:00:02 UTC (rev 930611)
+++ sysusers.conf 2021-05-11 20:00:05 UTC (rev 930612)
@@ -1 +0,0 @@
-u hedgedoc - "Hedgedoc user"
Copied: hedgedoc/repos/community-any/sysusers.conf (from rev 930611, hedgedoc/trunk/sysusers.conf)
===================================================================
--- sysusers.conf (rev 0)
+++ sysusers.conf 2021-05-11 20:00:05 UTC (rev 930612)
@@ -0,0 +1 @@
+u hedgedoc - "Hedgedoc user"
Deleted: tmpfiles.conf
===================================================================
--- tmpfiles.conf 2021-05-11 20:00:02 UTC (rev 930611)
+++ tmpfiles.conf 2021-05-11 20:00:05 UTC (rev 930612)
@@ -1,3 +0,0 @@
-d /var/lib/hedgedoc 0750 hedgedoc hedgedoc -
-d /var/lib/hedgedoc/uploads 0750 hedgedoc hedgedoc -
-d /run/hedgedoc 0750 hedgedoc hedgedoc -
Copied: hedgedoc/repos/community-any/tmpfiles.conf (from rev 930611, hedgedoc/trunk/tmpfiles.conf)
===================================================================
--- tmpfiles.conf (rev 0)
+++ tmpfiles.conf 2021-05-11 20:00:05 UTC (rev 930612)
@@ -0,0 +1,3 @@
+d /var/lib/hedgedoc 0750 hedgedoc hedgedoc -
+d /var/lib/hedgedoc/uploads 0750 hedgedoc hedgedoc -
+d /run/hedgedoc 0750 hedgedoc hedgedoc -
More information about the arch-commits
mailing list