diff options
| author | Peter Mikkelsen <petermikkelsen10@gmail.com> | 2026-04-29 19:28:02 +0200 |
|---|---|---|
| committer | Peter Mikkelsen <petermikkelsen10@gmail.com> | 2026-04-29 19:28:02 +0200 |
| commit | a66d153e0b1b89a87080c60ad005727e77f15968 (patch) | |
| tree | 0faa37327d5078ab19a97ea62e1fa7802f17a9e3 | |
| parent | c9f1161ecb323c7872559dd40c56d691dbd5959f (diff) | |
Bump version to 0.2 (not released yet), and add a build file
This allows sourcehut to build the project on each commit
| -rw-r--r-- | .builds/freebsd.yml | 19 | ||||
| -rw-r--r-- | NEWS | 4 | ||||
| -rw-r--r-- | configure.ac | 4 | ||||
| -rw-r--r-- | po/da.po | 2 |
4 files changed, 26 insertions, 3 deletions
diff --git a/.builds/freebsd.yml b/.builds/freebsd.yml new file mode 100644 index 0000000..4d9e95c --- /dev/null +++ b/.builds/freebsd.yml @@ -0,0 +1,19 @@ +image: freebsd/latest +packages: +- autoconf +- automake +- libtool +- gettext +- pkgconf +- help2man +- texinfo +tasks: +- build: | + cd aplwc + ./bootstrap --skip-po --copy + ./configure + make +- test: | + cd aplwc + make check + make distcheck
\ No newline at end of file @@ -1,3 +1,7 @@ +Version 0.2 (in development) + +* ... + Version 0.1 * Initial import of the code into git. diff --git a/configure.ac b/configure.ac index 04eb027..eeb6163 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([aplwc], [0.1], [peter@pmikkelsen.com], [aplwc], [aplwc.org]) +AC_INIT([aplwc], [0.2], [peter@pmikkelsen.com], [aplwc], [aplwc.org]) AC_CONFIG_SRCDIR([src/main.c]) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_HEADERS([config.h]) @@ -8,7 +8,7 @@ AC_PREREQ([2.71]) VERSION_NUMBER=`cd $srcdir && build-aux/git-version-gen .tarball-version` gl_INIT_PACKAGE_VERSION([$VERSION_NUMBER]) -AM_INIT_AUTOMAKE([gnu check-news std-options -Wall -Werror dist-bzip2 dist-xz]) +AM_INIT_AUTOMAKE([gnu std-options -Wall -Werror dist-bzip2 dist-xz]) AM_SILENT_RULES([yes]) AC_PROG_CC @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: aplwc 0.1.6-fa0c-modified\n" "Report-Msgid-Bugs-To: bug-aplwc@gnu.org\n" -"POT-Creation-Date: 2026-04-19 17:07+0200\n" +"POT-Creation-Date: 2026-04-29 19:26+0200\n" "PO-Revision-Date: 2026-04-03 14:54+0200\n" "Last-Translator: <>\n" "Language-Team: Danish\n" |