-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
232 changed files
with
6,580 additions
and
3,346 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
image: alpine/edge | ||
packages: | ||
- libcurl | ||
- gcc | ||
- autoconf | ||
- automake | ||
- libtool | ||
- make | ||
- pkgconf | ||
- musl-dev | ||
- curl-dev | ||
- flex | ||
- bison | ||
- xz | ||
- gzip | ||
- bzip2 | ||
- libbsd-dev | ||
- kyua | ||
- atf-dev | ||
sources: | ||
- https://git.sr.ht/~herrhotzenplotz/gcli | ||
tasks: | ||
- build: | | ||
cd gcli | ||
./autogen.sh | ||
{ | ||
CFLAGS='-std=c99 -pedantic -Wall -Wextra -Werror' \ | ||
CPPFLAGS='-D_XOPEN_SOURCE=600' \ | ||
./configure --disable-silent-rules || (cat config.log && exit 42) | ||
} | ||
make -j | ||
- check: | | ||
cd gcli | ||
make -j distcheck |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
image: debian/stable | ||
packages: | ||
- build-essential | ||
- libcurl4-openssl-dev | ||
- pkgconf | ||
- autotools-dev | ||
- bison | ||
- flex | ||
- make | ||
- autoconf | ||
- automake | ||
- libtool | ||
- libbsd-dev | ||
- libatf-dev kyua | ||
sources: | ||
- https://git.sr.ht/~herrhotzenplotz/gcli | ||
tasks: | ||
- build: | | ||
cd gcli | ||
./autogen.sh | ||
{ | ||
CFLAGS='-std=c99 -pedantic -Wall -Wextra -Werror' \ | ||
CPPFLAGS='-D_XOPEN_SOURCE=600' \ | ||
./configure --disable-silent-rules || (cat config.log && exit 42) | ||
} | ||
make | ||
- check: | | ||
cd gcli | ||
make distcheck |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
image: freebsd/14.x | ||
packages: | ||
- atf | ||
- autoconf | ||
- automake | ||
- ca_root_nss | ||
- curl | ||
- kyua | ||
- libedit | ||
- libssh2 | ||
- libtool | ||
- libunistring | ||
- m4 | ||
- pkg | ||
- pkgconf | ||
- readline | ||
sources: | ||
- https://git.sr.ht/~herrhotzenplotz/gcli | ||
tasks: | ||
- build: | | ||
cd gcli | ||
./autogen.sh | ||
{ | ||
CFLAGS='-std=c99 -pedantic -Wall -Wextra -Wno-misleading-indentation -Werror' \ | ||
CPPFLAGS='-D_XOPEN_SOURCE=600' \ | ||
LEX=flex YACC=byacc \ | ||
./configure --disable-silent-rules || (cat config.log && exit 42) | ||
} | ||
make -j 4 | ||
- check: | | ||
cd gcli | ||
make -j 4 distcheck |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,14 +3,14 @@ | |
|
||
AC_PREREQ([2.69]) | ||
AC_INIT([gcli], | ||
[2.1.0], | ||
[2.2.0], | ||
[~herrhotzenplotz/[email protected]], | ||
[gcli], | ||
[https://herrhotzenplotz.de/gcli]) | ||
AM_INIT_AUTOMAKE([1.0 foreign subdir-objects dist-bzip2 dist-xz -Wall]) | ||
|
||
dnl Release Date. | ||
PACKAGE_DATE="2023-Dec-08" | ||
PACKAGE_DATE="2024-Feb-05" | ||
AC_SUBST([PACKAGE_DATE]) | ||
|
||
dnl Silent by default. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,3 +13,4 @@ | |
/gcli-snippets.1 | ||
/gcli-status.1 | ||
/gcli.1 | ||
/gcli.5 |
Oops, something went wrong.