mirror of
https://github.com/ivabus/pantry
synced 2025-06-08 08:20:32 +03:00
add provides:
where missing
This commit is contained in:
parent
b233f33e0d
commit
ef4ac51c12
23 changed files with 181 additions and 1 deletions
|
@ -33,3 +33,7 @@ test:
|
|||
curl --proto '=https' --tlsv1.2 -sSf https://get-ghcup.haskell.org
|
||||
|
||||
# TODO need to fix the .la file
|
||||
|
||||
provides:
|
||||
- bin/curl
|
||||
- bin/curl-config
|
||||
|
|
|
@ -23,3 +23,6 @@ build:
|
|||
test: |
|
||||
file {{prefix}}/bin/file
|
||||
#TODO check output, we don’t since it varies by platform annoyingly
|
||||
|
||||
provides:
|
||||
- bin/file
|
||||
|
|
|
@ -28,3 +28,14 @@ build:
|
|||
|
||||
test:
|
||||
fc-list
|
||||
|
||||
provides:
|
||||
- bin/fc-cache
|
||||
- bin/fc-cat
|
||||
- bin/fc-conflist
|
||||
- bin/fc-list
|
||||
- bin/fc-match
|
||||
- bin/fc-pattern
|
||||
- bin/fc-query
|
||||
- bin/fc-scan
|
||||
- bin/fc-validate
|
||||
|
|
|
@ -27,3 +27,6 @@ build:
|
|||
#see: https://www.freedesktop.org/wiki/Specifications/shared-mime-info-spec/
|
||||
test: |
|
||||
test -f "{{prefix}}"/share/mime/packages/freedesktop.org.xml
|
||||
|
||||
provides:
|
||||
- bin/update-mime-database
|
||||
|
|
|
@ -46,3 +46,12 @@ test: |
|
|||
git init
|
||||
git add .
|
||||
test "$(git diff --name-only --cached)" = "testfile"
|
||||
|
||||
provides:
|
||||
- bin/git
|
||||
- bin/git-cvsserver
|
||||
- bin/git-receive-pack
|
||||
- bin/git-shell
|
||||
- bin/git-upload-archive
|
||||
- bin/git-upload-pack
|
||||
- bin/scalar
|
||||
|
|
|
@ -29,3 +29,7 @@ test:
|
|||
OUT=$(echo "Hello World" | ./a.out)
|
||||
test "$OUT" = "Hello
|
||||
World"
|
||||
|
||||
provides:
|
||||
- bin/flex
|
||||
- bin/flex++
|
||||
|
|
|
@ -31,3 +31,6 @@ test:
|
|||
test pass = $(echo "((()(())))()" | ./a.out)
|
||||
test fail = $(echo "())" | ./a.out)
|
||||
|
||||
provides:
|
||||
- bin/bison
|
||||
- bin/yacc
|
||||
|
|
|
@ -20,3 +20,6 @@ test:
|
|||
script: |
|
||||
out="$(fribidi --charset=CapRTL --clean --nobreak $FIXTURE)"
|
||||
test "$out" = "a simple TSet that"
|
||||
|
||||
provides:
|
||||
- bin/fribidi
|
||||
|
|
|
@ -28,3 +28,27 @@ build:
|
|||
make install
|
||||
|
||||
test: gettext test
|
||||
|
||||
provides:
|
||||
- bin/autopoint
|
||||
- bin/envsubst
|
||||
- bin/gettext
|
||||
- bin/gettext.sh
|
||||
- bin/gettextize
|
||||
- bin/msgattrib
|
||||
- bin/msgcat
|
||||
- bin/msgcmp
|
||||
- bin/msgcomm
|
||||
- bin/msgconv
|
||||
- bin/msgen
|
||||
- bin/msgexec
|
||||
- bin/msgfilter
|
||||
- bin/msgfmt
|
||||
- bin/msggrep
|
||||
- bin/msginit
|
||||
- bin/msgmerge
|
||||
- bin/msgunfmt
|
||||
- bin/msguniq
|
||||
- bin/ngettext
|
||||
- bin/recode-sr-latin
|
||||
- bin/xgettext
|
||||
|
|
|
@ -15,3 +15,6 @@ build:
|
|||
|
||||
test:
|
||||
script: echo "tea\nfoo\nbar" | gperf
|
||||
|
||||
provides:
|
||||
- bin/gperf
|
|
@ -49,3 +49,9 @@ test:
|
|||
FIXTURE: https://github.com/harfbuzz/harfbuzz/raw/fc0daafab0336b847ac14682e581a8838f36a0bf/test/shaping/fonts/sha1sum/270b89df543a7e48e206a2d830c0e10e5265c630.ttf
|
||||
receipt:
|
||||
build/meson-logs/meson-log.txt
|
||||
|
||||
provides:
|
||||
- bin/hb-ot-shape-closure
|
||||
- bin/hb-shape
|
||||
- bin/hb-subset
|
||||
- bin/hb-view
|
||||
|
|
|
@ -28,3 +28,10 @@ test:
|
|||
script: |
|
||||
curl $FIXTURE > test.jpeg
|
||||
djpeg test.jpeg
|
||||
|
||||
provides:
|
||||
- bin/cjpeg
|
||||
- bin/djpeg
|
||||
- bin/jpegtran
|
||||
- bin/rdjpgcom
|
||||
- bin/wrjpgcom
|
||||
|
|
|
@ -30,3 +30,16 @@ build:
|
|||
|
||||
test:
|
||||
script: true #FIXME
|
||||
|
||||
provides:
|
||||
- bin/captoinfo
|
||||
- bin/clear
|
||||
- bin/infocmp
|
||||
- bin/infotocap
|
||||
- bin/ncursesw6-config
|
||||
- bin/reset
|
||||
- bin/tabs
|
||||
- bin/tic
|
||||
- bin/toe
|
||||
- bin/tput
|
||||
- bin/tset
|
||||
|
|
|
@ -20,3 +20,6 @@ test:
|
|||
cc test.c -lexpat -o test
|
||||
OUTPUT="$(./test)"
|
||||
test "$OUTPUT" = "tag:str|data:Hello, world!|"
|
||||
|
||||
provides:
|
||||
- bin/xmlwf
|
|
@ -29,3 +29,9 @@ test:
|
|||
script: |
|
||||
cc test.c -lpng
|
||||
./a.out
|
||||
|
||||
provides:
|
||||
- bin/libpng-config
|
||||
- bin/libpng16-config
|
||||
- bin/png-fix-itxt
|
||||
- bin/pngfix
|
||||
|
|
|
@ -56,3 +56,6 @@ test:
|
|||
meson ..
|
||||
test -f build.ninja
|
||||
working-directory: build
|
||||
|
||||
provides:
|
||||
- bin/meson
|
|
@ -16,3 +16,16 @@ build:
|
|||
|
||||
test: |
|
||||
nasm --version
|
||||
|
||||
provides:
|
||||
- bin/ldrdf
|
||||
- bin/nasm
|
||||
- bin/ndisasm
|
||||
- bin/rdf2bin
|
||||
- bin/rdf2com
|
||||
- bin/rdf2ihx
|
||||
- bin/rdf2ith
|
||||
- bin/rdf2srec
|
||||
- bin/rdfdump
|
||||
- bin/rdflib
|
||||
- bin/rdx
|
||||
|
|
|
@ -32,3 +32,8 @@ build:
|
|||
|
||||
test:
|
||||
script: pcregrep "regular expression" {{ prefix }}/share/doc/pcre/README
|
||||
|
||||
provides:
|
||||
- bin/pcre-config
|
||||
- bin/pcregrep
|
||||
- bin/pcretest
|
||||
|
|
|
@ -36,4 +36,7 @@ build:
|
|||
- -DSQLITE_MAX_VARIABLE_NUMBER=250000
|
||||
|
||||
test:
|
||||
script: sqlite3 --version
|
||||
script: sqlite3 --version
|
||||
|
||||
provides:
|
||||
- bin/sqlite3
|
|
@ -24,3 +24,6 @@ build:
|
|||
|
||||
test:
|
||||
script: test $(jq .devs[1].github < test.json) = '"jhheider"'
|
||||
|
||||
provides:
|
||||
- bin/jq
|
|
@ -41,3 +41,15 @@ build:
|
|||
test: |
|
||||
cc --version
|
||||
ld --help
|
||||
|
||||
provides:
|
||||
- bin/c++
|
||||
- bin/cc
|
||||
- bin/clang
|
||||
- bin/clang++
|
||||
- bin/g++
|
||||
- bin/gcc
|
||||
- bin/ld
|
||||
- bin/ld64.lld
|
||||
- bin/lld
|
||||
- bin/lld-link
|
||||
|
|
|
@ -21,3 +21,28 @@ build:
|
|||
|
||||
test:
|
||||
script: xz --version
|
||||
|
||||
provides:
|
||||
- bin/lzcat
|
||||
- bin/lzcmp
|
||||
- bin/lzdiff
|
||||
- bin/lzegrep
|
||||
- bin/lzfgrep
|
||||
- bin/lzgrep
|
||||
- bin/lzless
|
||||
- bin/lzma
|
||||
- bin/lzmadec
|
||||
- bin/lzmainfo
|
||||
- bin/lzmore
|
||||
- bin/unlzma
|
||||
- bin/unxz
|
||||
- bin/xz
|
||||
- bin/xzcat
|
||||
- bin/xzcmp
|
||||
- bin/xzdec
|
||||
- bin/xzdiff
|
||||
- bin/xzegrep
|
||||
- bin/xzfgrep
|
||||
- bin/xzgrep
|
||||
- bin/xzless
|
||||
- bin/xzmore
|
||||
|
|
|
@ -37,3 +37,17 @@ test:
|
|||
fixture: |
|
||||
hello
|
||||
world
|
||||
|
||||
provides:
|
||||
- bin/derb
|
||||
- bin/genbrk
|
||||
- bin/gencfu
|
||||
- bin/gencnval
|
||||
- bin/gendict
|
||||
- bin/genrb
|
||||
- bin/icu-config
|
||||
- bin/icuexportdata
|
||||
- bin/icuinfo
|
||||
- bin/makeconv
|
||||
- bin/pkgdata
|
||||
- bin/uconv
|
Loading…
Reference in a new issue