Compare commits

...

5 Commits

Author SHA1 Message Date
fbt
9f740dd137 Actions.
All checks were successful
Package builder / BuildPackage (push) Successful in 57s
Signed-off-by: fbt <fbt@fleshless.org>
2023-10-26 00:19:31 +00:00
fbt
77b5b65f16 pkgrel bump
Signed-off-by: fbt <fbt@fleshless.org>
2022-03-27 14:58:54 +03:00
fbt
1c1fe044f9 Don't use the bash killall5 implementation, we have one from suckless instead
Signed-off-by: fbt <fbt@fleshless.org>
2022-03-27 14:50:00 +03:00
fbt
8af9cb81f7 we depend on inetutils
Signed-off-by: fbt <fbt@fleshless.org>
2021-03-15 22:18:57 +03:00
fbt
d53eb95539 v++
Signed-off-by: fbt <fbt@fleshless.org>
2021-03-14 14:48:22 +03:00
2 changed files with 40 additions and 5 deletions

View File

@@ -0,0 +1,33 @@
name: Package builder
run-name: ${{ gitea.actor }} is building ${{ gitea.repo }}
on: [push]
jobs:
BuildPackage:
runs-on: autobuilder
container:
volumes:
- /home/builder/public/spark/import:/import
steps:
- name: Show job info
run: |
echo "The job was automatically triggered by a ${{ gitea.event_name }} event."
echo "This job is now running on a ${{ runner.os }} server hosted by Gitea!"
echo "The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
- name: Check out repository code
uses: actions/checkout@v3
- name: Link the workdir into /buildroot # for script compatability with the old builder.
run: |
ln -vfs ${{ gitea.workspace }} /buildroot
- name: Build the package
run: |
cd ${{ gitea.workspace }}
/build -s --noconfirm
# - name: Upload artifacts
# uses: actions/upload-artifact@v3
# with:
# name: package
# path: ./*.pkg.tar.zst
- name: Put the packages into the import dir
run: cp -v ./*.pkg.tar.zst /import
- run: echo "This job's status is ${{ job.status }}."

View File

@@ -4,13 +4,13 @@
pkgname='spark-rc'
pkgdesc='A simple rc script'
license=( 'BSD' )
pkgver=1.12.1
pkgrel=3
pkgver=1.12.2
pkgrel=4
arch=( 'any' )
url='https://code.fleshless.org/Spark/spark-rc'
depends=( halt-ubase-git )
conflicts=( sysvinit-tools-adds )
depends=( 'halt-ubase-git' 'inetutils' 'killall5-ubase-git' )
conflicts=( 'sysvinit-tools-adds' )
backup=( 'etc/rc.conf' )
@@ -24,6 +24,8 @@ build() {
package() {
cd "${srcdir}/${pkgname}"
make USR=/usr DESTDIR="$pkgdir" install
rm -v "$pkgdir/usr/bin/killall5"
}
sha1sums=('05ff6e30aedc5c71e11dc5d8156f81a766f458ba')
sha1sums=('1597fa8ae438a1d3f84a6d6c43369054fd4c8bfa')