Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 1 addition & 0 deletions contrib/pkgconf/.mailmap
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Ariadne Conill <[email protected]> <[email protected]>
75 changes: 75 additions & 0 deletions contrib/pkgconf/.woodpecker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
pipeline:
debian-meson:
image: debian:testing
commands:
- apt-get update
- apt-get install -y kyua atf-sh build-essential meson
- meson _build -Dwerror=true
- meson compile -C _build
- meson test -v -C _build
when:
matrix:
IMAGE: debian
BUILD: meson

debian-meson-asan:
image: debian:testing
environment:
- ASAN_OPTIONS="exitcode=7"
commands:
- apt-get update
- apt-get install -y kyua atf-sh build-essential meson
- meson _build -Db_sanitize=address
- meson compile -C _build
- meson test -v -C _build
when:
matrix:
IMAGE: debian
BUILD: meson

debian-autotools:
image: debian:testing
commands:
- apt-get update
- apt-get install -y kyua atf-sh build-essential autoconf libtool
- ./autogen.sh
- ./configure
- make -j
- make distcheck
when:
matrix:
IMAGE: debian
BUILD: autotools

alpine-meson:
image: alpine
commands:
- apk add -U --no-cache kyua atf build-base meson
- meson _build -Dwerror=true
- meson compile -C _build
- meson test -v -C _build
when:
matrix:
IMAGE: alpine
BUILD: meson

alpine-autotools:
image: alpine
commands:
- apk add -U --no-cache kyua atf build-base autoconf automake libtool xz gzip
- ./autogen.sh
- ./configure
- make -j
- make distcheck
when:
matrix:
IMAGE: alpine
BUILD: autotools

matrix:
IMAGE:
- debian
- alpine
BUILD:
- meson
- autotools
41 changes: 41 additions & 0 deletions contrib/pkgconf/AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
A. Wilcox <[email protected]>
Alexander Tsoy <[email protected]>
Alexpux <[email protected]>
Alon Bar-Lev <[email protected]>
Alyx <[email protected]>
Ariadne Conill <[email protected]>
Baptiste Daroussin <[email protected]>
Baptiste Daroussin <[email protected]>
Bryan Drewery <[email protected]>
Dag-Erling Smørgrav <[email protected]>
Dan Kegel <[email protected]>
Dan Kegel <[email protected]>
Dan Nicholson <[email protected]>
David Michael <[email protected]>
Emil Renner Berthing <[email protected]>
Fabian Groffen <[email protected]>
Graham Ollis <[email protected]>
Gregor Richards <[email protected]>
Ignacio Casal Quinteiro <[email protected]>
Igor Gnatenko <[email protected]>
Issam Maghni <[email protected]>
JD Horelick <[email protected]>
Jason Dusek <[email protected]>
Javier Viguera <[email protected]>
Jean-Sébastien Pédron <[email protected]>
John Hein <[email protected]>
Jussi Pakkanen <[email protected]>
Leorize <[email protected]>
Luca Barbato <[email protected]>
Marcin Wojdyr <[email protected]>
Maxin B. John <[email protected]>
Michał Górny <[email protected]>
Mike Frysinger <[email protected]>
Seungha Yang <[email protected]>
TingPing <[email protected]>
Tobias Kortkamp <[email protected]>
Tony Theodore <[email protected]>
Volker Braun <[email protected]>
Yu Kobayashi <[email protected]>
orbea <[email protected]>
✈ Graham ✈ <[email protected]>
27 changes: 27 additions & 0 deletions contrib/pkgconf/CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# pkgconf Code of Conduct

We invite and encourage everybody to express their opinions on relevant
topics. All participants should at all times feel at ease to do so without
fearing any form of attack, reprisal or harassment. We ask everybody to be
respectful and considerate towards each other, especially when attempting
to provide constructive criticism.

To foster tolerance, respect and hospitality in our community, we agree not
to engage in discriminatory, disparaging or offensive speech or actions,
including as to (but not limited to) gender, sexuality, race, nationality,
religion or profession. We are a community of many different nationalities
and backgrounds, and we cherish our strength in diversity.


## Reporting incidents

Please report any incidents which may be perceived as violations to
`[email protected]`. Incidents will be investigated and,
if warranted, acted upon.


## Credits

This CoC is derived from the [FSFE Code of Conduct][fsfe-coc].

[fsfe-coc]: https://fsfe.org/about/codeofconduct.en.html
10 changes: 10 additions & 0 deletions contrib/pkgconf/COPYING
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Copyright (c) 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018
pkgconf authors (see AUTHORS file in source directory).

Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.

This software is provided 'as is' and without any warranty, express or
implied. In no event shall the authors be liable for any damages arising
from the use of this software.
5 changes: 5 additions & 0 deletions contrib/pkgconf/Kyuafile.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
syntax(2)

test_suite('pkgconf')

include('tests/Kyuafile')
Loading
Loading