Compare commits
No commits in common. "5021f561e9316b6ce3637a7e0433b7e583b529d0" and "39b75dfe92c6b8d651e5e332edd43abe36ea3d80" have entirely different histories.
5021f561e9
...
39b75dfe92
|
@ -1,53 +0,0 @@
|
||||||
#/usr/bin/env bash
|
|
||||||
|
|
||||||
pkgname="pasty-git"
|
|
||||||
arch="amd64"
|
|
||||||
pkgrel=1
|
|
||||||
pkgver=20240312172222-39b75df
|
|
||||||
pkgdesc="pasty is a fast and lightweight code pasting server"
|
|
||||||
url="https://github.com/leafee98/pasty"
|
|
||||||
maintainer="Leafee98 <me@leafee98.com>"
|
|
||||||
|
|
||||||
source=(
|
|
||||||
"pasty::git+https://github.com/leafee98/pasty.git"
|
|
||||||
"pasty.service::materials/pasty.service"
|
|
||||||
"env::materials/env"
|
|
||||||
)
|
|
||||||
|
|
||||||
function pkgver {
|
|
||||||
echo "$(date +%Y%m%d%H%M%S)-$(git rev-parse --short HEAD)"
|
|
||||||
}
|
|
||||||
|
|
||||||
function build {
|
|
||||||
(
|
|
||||||
cd ${srcdir}/pasty
|
|
||||||
go build -o pasty ./cmd/pasty/main.go
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
function package {
|
|
||||||
install -Dm755 ${srcdir}/pasty/pasty ${pkgdir}/usr/lib/pasty/pasty
|
|
||||||
install -Dm644 ${srcdir}/pasty/LICENSE ${pkgdir}/usr/share/licenses/pasty/LICENSE
|
|
||||||
|
|
||||||
cp -r ${srcdir}/pasty/web ${pkgdir}/usr/lib/pasty/web
|
|
||||||
|
|
||||||
install -Dm644 ${srcdir}/pasty.service ${pkgdir}/usr/lib/systemd/system/pasty.service
|
|
||||||
# We haven't implement the 'conffiles', so don't create this file in case override user's config
|
|
||||||
#install -Dm644 ${srcdir}/env ${pkgdir}/etc/pasty/env
|
|
||||||
}
|
|
||||||
|
|
||||||
function debian_postinst {
|
|
||||||
cat << 'EOF'
|
|
||||||
#!/usr/bin/env bash
|
|
||||||
service_name="pasty.service"
|
|
||||||
|
|
||||||
adduser --system --group pasty
|
|
||||||
chown -R pasty:pasty /usr/lib/pasty
|
|
||||||
|
|
||||||
systemctl daemon-reload
|
|
||||||
|
|
||||||
if systemctl is-active --quiet ${service_name} ; then
|
|
||||||
systemctl restart ${service_name}
|
|
||||||
fi
|
|
||||||
EOF
|
|
||||||
}
|
|
|
@ -1 +0,0 @@
|
||||||
# See README on https://github.com/lus/pasty
|
|
|
@ -1,18 +0,0 @@
|
||||||
[Unit]
|
|
||||||
Description=Pasty is a fast and lightweight code pasting server
|
|
||||||
After=network.target
|
|
||||||
|
|
||||||
[Service]
|
|
||||||
User=pasty
|
|
||||||
|
|
||||||
# Here store the configs
|
|
||||||
EnvironmentFile=/etc/pasty/env
|
|
||||||
|
|
||||||
# Start program here, the pasty read `./web` to find the front pages
|
|
||||||
WorkingDirectory=/usr/lib/pasty/
|
|
||||||
|
|
||||||
ExecStart=/usr/lib/pasty/pasty
|
|
||||||
Restart=on-failure
|
|
||||||
|
|
||||||
[Install]
|
|
||||||
WantedBy=multi-user.target
|
|
|
@ -2,8 +2,8 @@
|
||||||
|
|
||||||
pkgname="dendrite"
|
pkgname="dendrite"
|
||||||
arch="amd64"
|
arch="amd64"
|
||||||
pkgrel=1
|
pkgrel=2
|
||||||
pkgver="0.13.8"
|
pkgver="0.13.6"
|
||||||
pkgdesc="Dendrite is a second-generation Matrix homeserver written in Go!"
|
pkgdesc="Dendrite is a second-generation Matrix homeserver written in Go!"
|
||||||
url="https://github.com/matrix-org/dendrite"
|
url="https://github.com/matrix-org/dendrite"
|
||||||
maintainer="Leafee98 <me@leafee98.com>"
|
maintainer="Leafee98 <me@leafee98.com>"
|
||||||
|
|
Loading…
Reference in a new issue