Compare commits
No commits in common. "34a30412edc6f127345e2c3477abbe790738e788" and "a273990b37d5f41391b808de15e21da586bf69ea" have entirely different histories.
34a30412ed
...
a273990b37
5 changed files with 12 additions and 25 deletions
|
@ -1,9 +0,0 @@
|
||||||
[bumpversion]
|
|
||||||
current_version = 0.3.3
|
|
||||||
tag = True
|
|
||||||
commit = True
|
|
||||||
|
|
||||||
[bumpversion:file:configure.ac]
|
|
||||||
|
|
||||||
[bumpversion:file:.guix/modules/bloatrunner.scm]
|
|
||||||
|
|
|
@ -14,7 +14,6 @@
|
||||||
#: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)
|
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@ -26,7 +25,7 @@
|
||||||
(define-public bloatrunner
|
(define-public bloatrunner
|
||||||
(package
|
(package
|
||||||
(name "bloatrunner")
|
(name "bloatrunner")
|
||||||
(version "0.3.3-git")
|
(version "0.3.0-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
|
||||||
|
@ -74,7 +73,7 @@
|
||||||
)))))
|
)))))
|
||||||
))
|
))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list autoconf automake pkg-config python-bumpversion))
|
(list autoconf automake pkg-config))
|
||||||
(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 F F H W
|
W H K F K f K FFFF 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.3)
|
AC_INIT(bloatrunner, 0.3.1)
|
||||||
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])
|
||||||
|
|
19
publish.in
19
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,21 +17,18 @@ 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
|
||||||
if [ -f $TARBALL ]; then
|
TARGETNAME=/tmp/$BASENAME-linux-x86_64.tar.gz
|
||||||
TARGETNAME=/tmp/bloatrunner
|
echo copy $TARBALL to $TARGETNAME
|
||||||
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
|
||||||
|
butler push $TARGETNAME $ITCH_CHANNEL:linux-x86_64
|
||||||
echo push $TARGETNAME
|
|
||||||
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