From e348caae3b930dd046b765594fcb6ccfebbb6e0b Mon Sep 17 00:00:00 2001 From: Florian Wagner Date: Wed, 27 Mar 2024 12:13:56 +0100 Subject: [PATCH 1/4] GitHub Action: trigger repository build --- .github/workflows/trigger.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/trigger.yaml diff --git a/.github/workflows/trigger.yaml b/.github/workflows/trigger.yaml new file mode 100644 index 00000000000000..b23a12f500f1c6 --- /dev/null +++ b/.github/workflows/trigger.yaml @@ -0,0 +1,18 @@ +name: Trigger repository build + +on: + push: + branches: + - wagnerflo + +jobs: + trigger: + name: Trigger + runs-on: ubuntu-latest + steps: + - name: Trigger + uses: peter-evans/repository-dispatch@v3 + with: + token: ${{ secrets.PAT }} + repository: wagnerflo/void-repository + event-type: Push to wagnerflo/void-packages From 17c244e18fbe3c36da433d1c68f4657ef8029a0b Mon Sep 17 00:00:00 2001 From: Florian Wagner Date: Wed, 10 Aug 2022 21:46:13 +0200 Subject: [PATCH 2/4] New package: claws-mail-theme-basicsvg-0.6.4. --- srcpkgs/claws-mail-theme-basicsvg/template | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 srcpkgs/claws-mail-theme-basicsvg/template diff --git a/srcpkgs/claws-mail-theme-basicsvg/template b/srcpkgs/claws-mail-theme-basicsvg/template new file mode 100644 index 00000000000000..567ada3697769e --- /dev/null +++ b/srcpkgs/claws-mail-theme-basicsvg/template @@ -0,0 +1,17 @@ +# Template file for 'claws-mail-theme-basicsvg' +pkgname=claws-mail-theme-basicsvg +version=0.6.4 +revision=1 +depends="claws-mail" +short_desc="Basic SVG icons theme for Claws Mail" +maintainer="Florian Wagner " +license="GPL-2.0-only" +homepage="http://rame.altervista.org/cmbasicsvg/" +distfiles="http://rame.altervista.org/dl.php?fp=cmbasicsvg/BasicSVG-${version}.tar.gz" +checksum=6136910b431bc39496557d9cf5786607c4c95473e8d9eac2d3f8d91f0a0dee3b +create_wrksrc=yes + +do_install() { + vmkdir usr/share/claws-mail/themes + vcopy "${wrksrc}/BasicSVG" usr/share/claws-mail/themes +} From 89d529b7e3f09833ac0ff243688151cc6305024e Mon Sep 17 00:00:00 2001 From: Florian Wagner Date: Tue, 26 Dec 2023 19:41:34 +0100 Subject: [PATCH 3/4] New package: bupstash-0.12.0. --- srcpkgs/bupstash/template | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 srcpkgs/bupstash/template diff --git a/srcpkgs/bupstash/template b/srcpkgs/bupstash/template new file mode 100644 index 00000000000000..3a4703dbba5858 --- /dev/null +++ b/srcpkgs/bupstash/template @@ -0,0 +1,18 @@ +# Template file for 'bupstash' +pkgname=bupstash +version=0.12.0 +revision=1 +archs="~i686*" +build_style=cargo +hostmakedepends="pkg-config" +makedepends="libsodium-devel" +short_desc="Easy and efficient encrypted backups" +maintainer="Florian Wagner " +license="MIT" +homepage="https://bupstash.io" +distfiles="https://github.com/andrewchambers/bupstash/archive/refs/tags/v${version}.tar.gz" +checksum=a2ce4eeb2caa881a778e823cc70d39c2adb0b301f737c55e44a4dd0fbd6a4265 + +post_install() { + vlicense LICENSE +} From b974d4a158af88be79fa282bb37fb78296791858 Mon Sep 17 00:00:00 2001 From: Florian Wagner Date: Wed, 1 May 2024 10:13:20 +0200 Subject: [PATCH 4/4] python3-zstandard: update to 0.22.0 --- .../patches/disablehardcodedversion.patch | 11 +++++++++++ srcpkgs/python3-zstandard/template | 6 +++--- 2 files changed, 14 insertions(+), 3 deletions(-) create mode 100644 srcpkgs/python3-zstandard/patches/disablehardcodedversion.patch diff --git a/srcpkgs/python3-zstandard/patches/disablehardcodedversion.patch b/srcpkgs/python3-zstandard/patches/disablehardcodedversion.patch new file mode 100644 index 00000000000000..3b72fa20c73a9e --- /dev/null +++ b/srcpkgs/python3-zstandard/patches/disablehardcodedversion.patch @@ -0,0 +1,11 @@ +--- a/c-ext/backend_c.c 2023-11-01 02:58:34.000000000 -0300 ++++ b/c-ext/backend_c.c 2024-03-29 21:32:40.694372789 -0300 +@@ -152,7 +152,7 @@ + PyObject *features = NULL; + PyObject *feature = NULL; + unsigned zstd_ver_no = ZSTD_versionNumber(); +- unsigned our_hardcoded_version = 10505; ++ unsigned our_hardcoded_version = ZSTD_VERSION_NUMBER; + if (ZSTD_VERSION_NUMBER != our_hardcoded_version || + zstd_ver_no != our_hardcoded_version) { + PyErr_Format( diff --git a/srcpkgs/python3-zstandard/template b/srcpkgs/python3-zstandard/template index d59cbb09b965fc..36907f76c111c1 100644 --- a/srcpkgs/python3-zstandard/template +++ b/srcpkgs/python3-zstandard/template @@ -1,7 +1,7 @@ # Template file for 'python3-zstandard' pkgname=python3-zstandard -version=0.21.0 -revision=3 +version=0.22.0 +revision=1 build_style=python3-module make_build_args="--system-zstd" hostmakedepends="python3-setuptools" @@ -14,7 +14,7 @@ license="BSD-3-Clause" homepage="https://github.com/indygreg/python-zstandard" changelog="https://raw.githubusercontent.com/indygreg/python-zstandard/main/docs/news.rst" distfiles="https://github.com/indygreg/python-zstandard/archive/${version}.tar.gz" -checksum=15adc6bfa629d48b0bb658e9eae94c484adb66a28738fa780478eebeb41599a5 +checksum=34ce7ef020afca1344c538a778e2a2e30dc43b11509aa4cb5cf076228d959ca7 pre_check() { # The skipped test ignored due to failure, see: