Compare commits

...

5 commits

5 changed files with 25 additions and 12 deletions

9
.bumpversion.cfg Normal file
View file

@ -0,0 +1,9 @@
[bumpversion]
current_version = 0.3.3
tag = True
commit = True
[bumpversion:file:configure.ac]
[bumpversion:file:.guix/modules/bloatrunner.scm]

View file

@ -14,6 +14,7 @@
#:use-module (gnu packages guile)
#:use-module (gnu packages game-development)
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages python-xyz)
)
@ -25,7 +26,7 @@
(define-public bloatrunner
(package
(name "bloatrunner")
(version "0.3.0-git")
(version "0.3.3-git")
;; (source (git-checkout (url (dirname (current-filename)))))
(source (local-file "../.." "guile-checkout"
#:recursive? #t
@ -73,7 +74,7 @@
)))))
))
(native-inputs
(list autoconf automake pkg-config))
(list autoconf automake pkg-config python-bumpversion))
(inputs
(list guile-3.0))
(propagated-inputs

View file

@ -5,7 +5,7 @@
WWWWWGWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
W H W
W O H O W
W H K F K f K FFFF H W
W H K F K f K F F H W
W O BBBBBBBBBBBBBBBBBBBBBBBBBBHB O W -
W H W
W H W

View file

@ -1,6 +1,6 @@
dnl -*- Autoconf -*-
AC_INIT(bloatrunner, 0.3.1)
AC_INIT(bloatrunner, 0.3.3)
AC_CONFIG_SRCDIR(game)
AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE([foreign -Woverride -Wno-portability])

View file

@ -1,7 +1,7 @@
ITCH_CHANNEL=snamellit/Bloatrunner
if [[ ! -f Makefile ]]; then
if [[ -f Makefile ]]; then
make distclean
fi
@ -17,18 +17,21 @@ if [ -f "$SOURCETAR" ]; then
BASENAME="@PACKAGE@-@VERSION@"
echo releasing $BASENAME
butler push $SOURCETAR $ITCH_CHANNEL:source
TARBALL=$(guix pack -R -Sbloatrunner=bin -L .guix/modules bloatrunner)
echo created $TARBALL
TARGETNAME=/tmp/$BASENAME-linux-x86_64.tar.gz
echo copy $TARBALL to $TARGETNAME
if [ -f $TARBALL ]; then
TARGETNAME=/tmp/bloatrunner
echo unpack $TARBALL to $TARGETNAME
rm -f $TARGETNAME
cp $TARBALL $TARGETNAME
mkdir -p $TARGETNAME
tar -xzvf $TARBALL -C $TARGETNAME
echo push $TARGETNAME
butler push $TARGETNAME $ITCH_CHANNEL:linux-x86_64
fi
else
echo "No source tarball found"