Merge branch 'master' of git.snaile.de:snailed/void-packages
This commit is contained in:
commit
d2937167d7
|
@ -12,7 +12,6 @@ on:
|
|||
- "srcpkgs/font-firacode-nf-ttf/**"
|
||||
- "srcpkgs/kdash/**"
|
||||
- "srcpkgs/pv-migrate/**"
|
||||
- "srcpkgs/snailedesktop/**"
|
||||
- "srcpkgs/st-custom/**"
|
||||
- "srcpkgs/tokyonight-icon-theme/**"
|
||||
- "srcpkgs/tokyonight-theme/**"
|
||||
|
|
|
@ -1,48 +0,0 @@
|
|||
name: 'Cycle Check'
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: '0 18 * * *'
|
||||
|
||||
jobs:
|
||||
cycles:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
issues: write
|
||||
container:
|
||||
image: 'ghcr.io/void-linux/void-buildroot-musl:20240526R1'
|
||||
env:
|
||||
PATH: '/usr/libexec/chroot-git:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/sbin:/usr/local/bin:/tmp/bin'
|
||||
steps:
|
||||
- name: Prepare container
|
||||
run: |
|
||||
# switch to repo-ci mirror
|
||||
mkdir -p /etc/xbps.d && cp /usr/share/xbps.d/*-repository-*.conf /etc/xbps.d/
|
||||
sed -i 's|repo-default|repo-ci|g' /etc/xbps.d/*-repository-*.conf
|
||||
# Sync and upgrade once, assume error comes from xbps update
|
||||
xbps-install -Syu || xbps-install -yu xbps
|
||||
# Upgrade again (in case there was a xbps update)
|
||||
xbps-install -yu
|
||||
# Install script dependencies
|
||||
xbps-install -y python3-networkx github-cli
|
||||
|
||||
- name: Clone and checkout
|
||||
uses: classabbyamp/treeless-checkout-action@v1
|
||||
|
||||
- name: Create hostrepo and prepare masterdir
|
||||
run: |
|
||||
ln -s "$(pwd)" /hostrepo &&
|
||||
common/travis/set_mirror.sh &&
|
||||
common/travis/prepare.sh
|
||||
- name: Find cycles and open issues
|
||||
run: |
|
||||
common/scripts/xbps-cycles.py | tee cycles
|
||||
grep 'Cycle:' cycles | while read -r line; do
|
||||
if gh issue list -R "$GITHUB_REPOSITORY" -S "$line" | grep .; then
|
||||
printf "Issue on '%s' already exists.\n" "$line"
|
||||
else
|
||||
gh issue create -R "$GITHUB_REPOSITORY" -b '' -t "$line"
|
||||
fi
|
||||
done
|
||||
env:
|
||||
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN }}
|
|
@ -1,6 +1,6 @@
|
|||
# Template file for 'dwm-custom'
|
||||
pkgname=dwm-custom
|
||||
version=2024.5.2
|
||||
version=2024.6.2
|
||||
revision=1
|
||||
makedepends="libXinerama-devel libXft-devel freetype-devel pango-devel pkg-config"
|
||||
short_desc="Customized DWM"
|
||||
|
@ -8,7 +8,7 @@ maintainer="Luca Bilke <luca@bil.ke>"
|
|||
license="MIT"
|
||||
homepage="https://git.snaile.de/snailed/dwm-custom"
|
||||
distfiles="${homepage}/archive/${version}.tar.gz"
|
||||
checksum=caef8af0f19a1b1cfb04c7828ee69ceb2390bd141f0b37f0b707f0d741469ac9
|
||||
checksum=67f817ca1af65cc8649d95893e36ec98b4b00fd3a2414cfc753e4666f0ad0b28
|
||||
replaces="dwm>=0"
|
||||
provides='dwm-6.4_1'
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Template file for 'trash-util'
|
||||
pkgname=trash-util
|
||||
version=0.0.1
|
||||
version=0.0.2
|
||||
revision=1
|
||||
build_style=cargo
|
||||
short_desc="Extremely minimalistic trash client, meant to be used by a wrapper script."
|
||||
|
@ -8,4 +8,4 @@ maintainer="Luca Bilke <luca@bil.ke>"
|
|||
license="MIT"
|
||||
homepage="https://git.snaile.de/snailed/trash-util"
|
||||
distfiles="${homepage}/archive/${version}.tar.gz"
|
||||
checksum=fbfda9f31fcc23a04e4b9fe18f9fb9d6b63abaeb6416da959e67851029f90ae1
|
||||
checksum=1f83fd55ce2fa21f403f950fcec6136881581e629a948d2ae078bb8638eef5a4
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Template file for 'velero'
|
||||
pkgname=velero
|
||||
version=1.13.2 # renovate vmware-tanzu/velero
|
||||
revision=1
|
||||
revision=2
|
||||
archs="x86_64* i686"
|
||||
build_style=go
|
||||
go_import_path="github.com/vmware-tanzu/velero"
|
||||
|
|
Loading…
Reference in New Issue