Skip to content

Commit

Permalink
jitterentropy-library/3.6.1 package update (#36653)
Browse files Browse the repository at this point in the history
<p align="center">
<img
src="https://raw.githubusercontent.com/wolfi-dev/.github/b535a42419ce0edb3c144c0edcff55a62b8ec1f8/profile/wolfi-logo-light-mode.svg"
/>
</p>

---------

Signed-off-by: wolfi-bot <[email protected]>
Signed-off-by: Mark McCormick <[email protected]>
Co-authored-by: wolfi-bot <[email protected]>
Co-authored-by: Mark McCormick <[email protected]>
  • Loading branch information
3 people authored Dec 12, 2024
1 parent 145f25c commit 5a695e6
Showing 1 changed file with 28 additions and 2 deletions.
30 changes: 28 additions & 2 deletions jitterentropy-library.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: jitterentropy-library
version: 3.6.0
version: 3.6.1
epoch: 0
description: Jitterentropy Library
copyright:
Expand All @@ -16,7 +16,7 @@ pipeline:
- uses: git-checkout
with:
repository: https://github.com/smuellerDD/jitterentropy-library
expected-commit: 7199c8959347b0e8342df7dc6e0c1fc4b484d2fb
expected-commit: 16c9e5c93e614f0df25f1cb30d0730102e6f4e41
tag: v${{package.version}}

- runs: |
Expand All @@ -39,6 +39,32 @@ subpackages:
- uses: split/static
description: ${{package.name}} development headers and static library

test:
environment:
contents:
packages:
- build-base
- jitterentropy-library-dev
pipeline:
- name: Library presence check
runs: |
test -f /usr/lib/libjitterentropy.so.3
test -f /usr/lib/libjitterentropy.so.3.6.1
- name: Check library functionality
runs: |
cat <<EOF > test.c
#include <jitterentropy.h>
#include <stdio.h>
int main() {
if (jent_entropy_init() != 0) {
return 1;
}
return 0;
}
EOF
gcc test.c -o test -L/usr/lib -ljitterentropy
./test
update:
enabled: true
github:
Expand Down

0 comments on commit 5a695e6

Please sign in to comment.