Skip to content

Commit

Permalink
- Changed version number from 2.3 to 2.5 as preparation for the new c…
Browse files Browse the repository at this point in the history
…oming release

git-svn-id: https://codelite.svn.sourceforge.net/svnroot/codelite/trunk@4005 9da81c78-c036-0410-9e1f-a2b0375e4b5a
  • Loading branch information
eranif committed Mar 29, 2010
1 parent f1735be commit ce189a2
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions InnoSetup/make_packages.bat
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
IF "%1"=="" GOTO USAGE

:: Installer name for IDE only
SET CODELITE_INSTALLER=codelite-2.3.0.%1
SET CODELITE_INSTALLER=codelite-2.5.0.%1

:: Installer name for IDE + MinGW
SET CODELITE_INSTALLER_MINGW=codelite-2.3.0.%1-mingw4.4.1
SET CODELITE_INSTALLER_MINGW=codelite-2.5.0.%1-mingw4.4.1

:: Installer name for IDE + MinGW + WX2.8.10
SET CODELITE_INSTALLER_MINGW_WX=codelite-2.3.0.%1-mingw4.4.1-wx2.8.10
SET CODELITE_INSTALLER_MINGW_WX=codelite-2.5.0.%1-mingw4.4.1-wx2.8.10

"%ProgramFiles%\Inno Setup 5\iscc" lite_editor.iss /F%CODELITE_INSTALLER%

Expand Down
2 changes: 1 addition & 1 deletion LiteEditor/app.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
// Define the version string for this codelite
//////////////////////////////////////////////
extern wxChar *SvnRevision;
wxString CODELITE_VERSION_STR = wxString::Format(wxT("v2.3.0.%s"), SvnRevision);
wxString CODELITE_VERSION_STR = wxString::Format(wxT("v2.5.0.%s"), SvnRevision);

#if defined(__WXMAC__)||defined(__WXGTK__)
#include <signal.h> // sigprocmask
Expand Down
10 changes: 5 additions & 5 deletions codelite.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: codelite
Version: 2.3.0
Version: 2.5.0
Release: 1%{?dist}
License: GPLv2+
Group: Development/Tools
Expand All @@ -11,7 +11,7 @@ Requires: wxGTK xterm
BuildRequires: wxGTK-devel

%description
CodeLite uses a sophisticated, yet intuitive interface which allows
CodeLite uses a sophisticated, yet intuitive interface which allows
users to easily create, build and debug complex projects.

%prep
Expand All @@ -20,7 +20,7 @@ users to easily create, build and debug complex projects.
%build
./configure --prefix=%{_prefix} --plugins-dir=%{_libdir}/%{name} \
--disable-debian --disable-desktop_icon --disable-make_symlink
%{__make}
%{__make}

%install
%{__rm} -rf $RPM_BUILD_ROOT
Expand All @@ -34,7 +34,7 @@ desktop-file-install --delete-original \

%files
%defattr(-,root,root)
%doc AUTHORS LICENSE COPYING
%doc AUTHORS LICENSE COPYING
%{_bindir}/codelite
%{_bindir}/codelite_indexer
%{_bindir}/codelite_fix_files
Expand All @@ -55,5 +55,5 @@ desktop-file-install --delete-original \
* Wed Jan 27 2010 Jess Portnoy <[email protected]>
- Reomved obsolete switch (--copy-generic-name-to-name)
updated version number to 2.2.0
updated version number to 2.3.0
updated version number to 2.5.0

2 changes: 1 addition & 1 deletion make_deb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ generateDebianFiles()
{
cat > fakeroot/DEBIAN/control <<EOF
Package: codelite
Version: 2.3.0.${cur_rev}
Version: 2.5.0.${cur_rev}
Section: devel
Priority: optional
Architecture: ${arch}
Expand Down
8 changes: 4 additions & 4 deletions make_src_targz.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ cur_rev=`svn info | grep Revision | awk '{print $2;}'`
curdir=`pwd`
rm -fr /tmp/codelite-${cur_rev}/

svn export . /tmp/codelite-2.3.0.${cur_rev}/
svn export . /tmp/codelite-2.5.0.${cur_rev}/

## set correct permissions

cp ./LiteEditor/svninfo.cpp /tmp/codelite-2.3.0.${cur_rev}/LiteEditor/
cp ./LiteEditor/svninfo.cpp /tmp/codelite-2.5.0.${cur_rev}/LiteEditor/
echo "Creating tar-ball"
cd /tmp/
rm -fr /tmp/codelite-2.3.0.${cur_rev}/sdk/curl
tar cvfz ${curdir}/codelite-2.3.0.${cur_rev}.tar.gz codelite-2.3.0.${cur_rev}/*
rm -fr /tmp/codelite-2.5.0.${cur_rev}/sdk/curl
tar cvfz ${curdir}/codelite-2.5.0.${cur_rev}.tar.gz codelite-2.5.0.${cur_rev}/*

0 comments on commit ce189a2

Please sign in to comment.