Compare commits
5 commits
a273990b37
...
34a30412ed
Author | SHA1 | Date | |
---|---|---|---|
34a30412ed | |||
6ca187c032 | |||
0963203bf0 | |||
576ec33d5a | |||
726947d396 |
5 changed files with 25 additions and 12 deletions
9
.bumpversion.cfg
Normal file
9
.bumpversion.cfg
Normal 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]
|
||||||
|
|
|
@ -14,6 +14,7 @@
|
||||||
#:use-module (gnu packages guile)
|
#:use-module (gnu packages guile)
|
||||||
#:use-module (gnu packages game-development)
|
#:use-module (gnu packages game-development)
|
||||||
#:use-module (gnu packages pkg-config)
|
#:use-module (gnu packages pkg-config)
|
||||||
|
#:use-module (gnu packages python-xyz)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@ -25,7 +26,7 @@
|
||||||
(define-public bloatrunner
|
(define-public bloatrunner
|
||||||
(package
|
(package
|
||||||
(name "bloatrunner")
|
(name "bloatrunner")
|
||||||
(version "0.3.0-git")
|
(version "0.3.3-git")
|
||||||
;; (source (git-checkout (url (dirname (current-filename)))))
|
;; (source (git-checkout (url (dirname (current-filename)))))
|
||||||
(source (local-file "../.." "guile-checkout"
|
(source (local-file "../.." "guile-checkout"
|
||||||
#:recursive? #t
|
#:recursive? #t
|
||||||
|
@ -73,7 +74,7 @@
|
||||||
)))))
|
)))))
|
||||||
))
|
))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list autoconf automake pkg-config))
|
(list autoconf automake pkg-config python-bumpversion))
|
||||||
(inputs
|
(inputs
|
||||||
(list guile-3.0))
|
(list guile-3.0))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
WWWWWGWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
|
WWWWWGWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
|
||||||
W H W
|
W H W
|
||||||
W O H O 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 O BBBBBBBBBBBBBBBBBBBBBBBBBBHB O W -
|
||||||
W H W
|
W H W
|
||||||
W H W
|
W H W
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
dnl -*- Autoconf -*-
|
dnl -*- Autoconf -*-
|
||||||
|
|
||||||
AC_INIT(bloatrunner, 0.3.1)
|
AC_INIT(bloatrunner, 0.3.3)
|
||||||
AC_CONFIG_SRCDIR(game)
|
AC_CONFIG_SRCDIR(game)
|
||||||
AC_CONFIG_AUX_DIR([build-aux])
|
AC_CONFIG_AUX_DIR([build-aux])
|
||||||
AM_INIT_AUTOMAKE([foreign -Woverride -Wno-portability])
|
AM_INIT_AUTOMAKE([foreign -Woverride -Wno-portability])
|
||||||
|
|
13
publish.in
13
publish.in
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
ITCH_CHANNEL=snamellit/Bloatrunner
|
ITCH_CHANNEL=snamellit/Bloatrunner
|
||||||
|
|
||||||
if [[ ! -f Makefile ]]; then
|
if [[ -f Makefile ]]; then
|
||||||
make distclean
|
make distclean
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -17,18 +17,21 @@ if [ -f "$SOURCETAR" ]; then
|
||||||
BASENAME="@PACKAGE@-@VERSION@"
|
BASENAME="@PACKAGE@-@VERSION@"
|
||||||
|
|
||||||
echo releasing $BASENAME
|
echo releasing $BASENAME
|
||||||
|
|
||||||
butler push $SOURCETAR $ITCH_CHANNEL:source
|
butler push $SOURCETAR $ITCH_CHANNEL:source
|
||||||
|
|
||||||
TARBALL=$(guix pack -R -Sbloatrunner=bin -L .guix/modules bloatrunner)
|
TARBALL=$(guix pack -R -Sbloatrunner=bin -L .guix/modules bloatrunner)
|
||||||
echo created $TARBALL
|
echo created $TARBALL
|
||||||
TARGETNAME=/tmp/$BASENAME-linux-x86_64.tar.gz
|
if [ -f $TARBALL ]; then
|
||||||
echo copy $TARBALL to $TARGETNAME
|
TARGETNAME=/tmp/bloatrunner
|
||||||
|
echo unpack $TARBALL to $TARGETNAME
|
||||||
rm -f $TARGETNAME
|
rm -f $TARGETNAME
|
||||||
cp $TARBALL $TARGETNAME
|
mkdir -p $TARGETNAME
|
||||||
|
|
||||||
|
tar -xzvf $TARBALL -C $TARGETNAME
|
||||||
|
|
||||||
echo push $TARGETNAME
|
echo push $TARGETNAME
|
||||||
butler push $TARGETNAME $ITCH_CHANNEL:linux-x86_64
|
butler push $TARGETNAME $ITCH_CHANNEL:linux-x86_64
|
||||||
|
fi
|
||||||
|
|
||||||
else
|
else
|
||||||
echo "No source tarball found"
|
echo "No source tarball found"
|
||||||
|
|
Loading…
Reference in a new issue