Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
aports
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
alpine
aports
Commits
40c918d4
Commit
40c918d4
authored
2 years ago
by
Martijn Braam
Committed by
alice
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
testing/pully: new aport
parent
5103bd78
Loading
Loading
1 merge request
!31472
testing/pully: new aport
Pipeline
#112981
canceled
2 years ago
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
testing/pully/APKBUILD
+31
-0
31 additions, 0 deletions
testing/pully/APKBUILD
testing/pully/pully.confd
+10
-0
10 additions, 0 deletions
testing/pully/pully.confd
testing/pully/pully.initd
+21
-0
21 additions, 0 deletions
testing/pully/pully.initd
with
62 additions
and
0 deletions
testing/pully/APKBUILD
0 → 100644
+
31
−
0
View file @
40c918d4
# Maintainer: Martijn Braam <martijn@brixit.nl>
# Contributor: Martijn Braam <martijn@brixit.nl>
pkgname
=
pully
pkgver
=
1.0.0
pkgrel
=
0
pkgdesc
=
"Gitlab webhook receiver daemon"
url
=
"https://git.sr.ht/~martijnbraam/pully"
arch
=
"all"
license
=
"GPL-3.0-only"
source
=
"
$pkgname
-
$pkgver
.tar.gz::https://git.sr.ht/~martijnbraam/pully/archive/
$pkgver
.tar.gz
pully.confd
pully.initd
"
depends
=
"python3"
subpackages
=
"
$pkgname
-openrc"
package
()
{
install
-D
-m755
"
$builddir
"
/pully.py
\
"
$pkgdir
"
/usr/bin/pully
install
-D
-m644
"
$srcdir
"
/pully.confd
\
"
$pkgdir
"
/etc/conf.d/pully
install
-D
-m755
"
$srcdir
"
/pully.initd
\
"
$pkgdir
"
/etc/init.d/pully
}
sha512sums
=
"
dd59b23375a969bd1e76d9f024abd63d9c64993e536d879bb37b33ab8963772b6f6e067fb10a5008b84ef00ab633668f7ce6bbc881d8bd49748855f6dc7d7921 pully-1.0.0.tar.gz
5bea58d6a7359342238ae2b6e1a2c220c2e95ba860fd69460f8053c804fac3f1600bb1b02e2d9464f14d22d095159781a666070a82618191b19b590fd7844274 pully.confd
d668da01a75793d0d0f4fb68aa0b750fcbf022060d0d5b76291e50f11c222b2c7a616de015dba4b43b6537621445519ee239edc5851b23f1da67649a43499f79 pully.initd
"
This diff is collapsed.
Click to expand it.
testing/pully/pully.confd
0 → 100644
+
10
−
0
View file @
40c918d4
# Configuration for /etc/init.d/pully
# Path to the config file to use.
#cfgfile="/etc/pully.conf"
output_log
=
"/var/log/pully.log"
error_log
=
"/var/log/pully.log"
supervisor
=
supervise-daemon
This diff is collapsed.
Click to expand it.
testing/pully/pully.initd
0 → 100644
+
21
−
0
View file @
40c918d4
#!/sbin/openrc-run
name
=
"Pully"
description
=
"Gitlab Webhook receiver"
:
${
cfgfile
:
=
"/etc/pully.conf"
}
:
${
command_user
:
=
"root:root"
}
command
=
"/usr/bin/pully"
command_args
=
"
$cfgfile
"
required_files
=
"
$cfgfile
"
depend
()
{
need net
after firewall
}
start_pre
()
{
checkpath
-f
--owner
"
$command_user
"
--mode
"0644"
$logfile
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment