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 game-development)
|
||||
#:use-module (gnu packages pkg-config)
|
||||
#:use-module (gnu packages python-xyz)
|
||||
)
|
||||
|
||||
|
||||
|
@ -26,7 +25,7 @@
|
|||
(define-public bloatrunner
|
||||
(package
|
||||
(name "bloatrunner")
|
||||
(version "0.3.3-git")
|
||||
(version "0.3.0-git")
|
||||
;; (source (git-checkout (url (dirname (current-filename)))))
|
||||
(source (local-file "../.." "guile-checkout"
|
||||
#:recursive? #t
|
||||
|
@ -74,7 +73,7 @@
|
|||
)))))
|
||||
))
|
||||
(native-inputs
|
||||
(list autoconf automake pkg-config python-bumpversion))
|
||||
(list autoconf automake pkg-config))
|
||||
(inputs
|
||||
(list guile-3.0))
|
||||
(propagated-inputs
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
WWWWWGWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
|
||||
W H 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 H W
|
||||
W H W
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
dnl -*- Autoconf -*-
|
||||
|
||||
AC_INIT(bloatrunner, 0.3.3)
|
||||
AC_INIT(bloatrunner, 0.3.1)
|
||||
AC_CONFIG_SRCDIR(game)
|
||||
AC_CONFIG_AUX_DIR([build-aux])
|
||||
AM_INIT_AUTOMAKE([foreign -Woverride -Wno-portability])
|
||||
|
|
19
publish.in
19
publish.in
|
@ -1,7 +1,7 @@
|
|||
|
||||
ITCH_CHANNEL=snamellit/Bloatrunner
|
||||
|
||||
if [[ -f Makefile ]]; then
|
||||
if [[ ! -f Makefile ]]; then
|
||||
make distclean
|
||||
fi
|
||||
|
||||
|
@ -17,21 +17,18 @@ 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
|
||||
if [ -f $TARBALL ]; then
|
||||
TARGETNAME=/tmp/bloatrunner
|
||||
echo unpack $TARBALL to $TARGETNAME
|
||||
rm -f $TARGETNAME
|
||||
mkdir -p $TARGETNAME
|
||||
TARGETNAME=/tmp/$BASENAME-linux-x86_64.tar.gz
|
||||
echo copy $TARBALL to $TARGETNAME
|
||||
rm -f $TARGETNAME
|
||||
cp $TARBALL $TARGETNAME
|
||||
|
||||
tar -xzvf $TARBALL -C $TARGETNAME
|
||||
|
||||
echo push $TARGETNAME
|
||||
butler push $TARGETNAME $ITCH_CHANNEL:linux-x86_64
|
||||
fi
|
||||
echo push $TARGETNAME
|
||||
butler push $TARGETNAME $ITCH_CHANNEL:linux-x86_64
|
||||
|
||||
else
|
||||
echo "No source tarball found"
|
||||
|
|
Loading…
Reference in a new issue