about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2014-11-07 00:17:40 +0000
committerJames Booth <boothj5@gmail.com>2014-11-07 00:17:40 +0000
commit8120c9ebb02288804d91313cbae39905743b3461 (patch)
treedd36437ee9f757004103bc9e42423e42cc96a21a
parent9578a0b36a11c8e6a774b8a18acb3251881ea124 (diff)
downloadprofani-tty-8120c9ebb02288804d91313cbae39905743b3461.tar.gz
Set version to 0.4.5
-rw-r--r--configure.ac2
-rwxr-xr-xinstall-all.sh2
-rwxr-xr-xupgrade.sh60
3 files changed, 3 insertions, 61 deletions
diff --git a/configure.ac b/configure.ac
index f94a2784..6dfde305 100644
--- a/configure.ac
+++ b/configure.ac
@@ -20,7 +20,7 @@ AS_CASE([$host_os],
     [cygwin], [PLATFORM="cygwin"],
     [PLATFORM="nix"])
 
-PACKAGE_STATUS="development"
+PACKAGE_STATUS="release"
 
 ### Get git branch and revision if in development
 if test "x$PACKAGE_STATUS" = xdevelopment; then
diff --git a/install-all.sh b/install-all.sh
index cc32d8fd..7970804b 100755
--- a/install-all.sh
+++ b/install-all.sh
@@ -74,6 +74,7 @@ install_lib_strophe()
     echo
     git clone git://github.com/strophe/libstrophe.git
     cd libstrophe
+    git checkout 0.8.7
     ./bootstrap.sh
     ./configure --prefix=$1
     make
@@ -102,6 +103,7 @@ cyg_install_lib_strophe()
     echo
     git clone git://github.com/strophe/libstrophe.git
     cd libstrophe
+    git checkout 0.8.7
     ./bootstrap.sh
     ./bootstrap.sh # second call seems to fix problem on cygwin
     ./configure --prefix=/usr
diff --git a/upgrade.sh b/upgrade.sh
deleted file mode 100755
index e2ed3d3b..00000000
--- a/upgrade.sh
+++ /dev/null
@@ -1,60 +0,0 @@
-#!/bin/sh
-
-linux_upgrade()
-{
-    echo
-    echo Profanity installer... upgrading Profanity
-    echo
-    ./bootstrap.sh
-    ./configure
-    make clean
-    make
-    sudo make install
-    echo
-    echo Profanity installer... upgrade complete!
-    echo
-    echo Type \'profanity\' to run.
-    echo
-}
-
-cygwin_upgrade()
-{
-    echo
-    echo Profanity installer... upgrading Profanity
-    echo
-    export LIBRARY_PATH=/usr/local/lib
-    ./bootstrap.sh
-    ./configure
-    make clean
-    make
-    make install
-    echo
-    echo Profanity installer... upgrade complete!
-    echo
-    echo Type \'profanity\' to run.
-    echo
-}
-
-OS=`uname -s`
-SYSTEM=unknown
-
-if [ "${OS}" = "Linux" ]; then
-    SYSTEM=linux
-else
-    echo $OS | grep -i cygwin
-    if [ "$?" -eq 0 ]; then
-        SYSTEM=cygwin
-    fi
-fi
-
-case "$SYSTEM" in
-unknown)    echo The upgrade script will not work on this OS.
-            echo Try a manual upgrade instead.
-            exit
-            ;;
-linux)      linux_upgrade
-            ;;
-cygwin)     cygwin_upgrade
-            ;;
-esac
-
Blame the previous revision' href='/akspecs/ranger/blame/AUTHORS?id=bc79568d49652375c08a5c8d58262b1ef03d44e7'>^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30