From 44c5eae423a3c4503cf2bc5287e13265019e2a35 Mon Sep 17 00:00:00 2001 From: borutr Date: Thu, 31 May 2007 20:45:20 +0000 Subject: [PATCH] * Small Device C Compiler 2.7.0 released * .version, sdcc.spec, doc/sdccman.lyx, doc/INSTALL.txt: changed sdcc version to 2.7.1 * support/scripts/sdcc.nsi: added How to create WIN32 release setup.exe package git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@4820 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- .version | 2 +- ChangeLog | 8 ++++++++ doc/INSTALL.txt | 6 +++--- doc/sdccman.lyx | 4 ++-- sdcc.spec | 2 +- support/scripts/sdcc.nsi | 24 ++++++++++++++++++++++-- 6 files changed, 37 insertions(+), 9 deletions(-) diff --git a/.version b/.version index 24ba9a38..860487ca 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -2.7.0 +2.7.1 diff --git a/ChangeLog b/ChangeLog index a5663054..5ca141b0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2007-05-31 Borut Razem + + * Small Device C Compiler 2.7.0 released + * .version, sdcc.spec, doc/sdccman.lyx, doc/INSTALL.txt: + changed sdcc version to 2.7.1 + * support/scripts/sdcc.nsi: added How to create WIN32 release + setup.exe package + 2007-05-29 Maarten Brock * doc/sdccman.lyx: documented initialization and allocation of absolute diff --git a/doc/INSTALL.txt b/doc/INSTALL.txt index 0c0ad419..28ff816b 100644 --- a/doc/INSTALL.txt +++ b/doc/INSTALL.txt @@ -10,7 +10,7 @@ To install: cd ~ mkdir tmp cd tmp - tar xzf path/to/binary/kit/sdcc-2.7.0-i386-unknown-linux2.5.tar.gz + tar xzf path/to/binary/kit/sdcc-2.7.1-i386-unknown-linux2.5.tar.gz * Change to the sdcc directory and copy all files to /usr/local cd sdcc @@ -37,7 +37,7 @@ To install: * If you would like to keep a copy of your previous version, rename the directory where it's installed first -* Run sdcc-2.7.0-setup.exe +* Run sdcc-2.7.1-setup.exe By default this will install sdcc binaries into: C:\Program Files\SDCC\bin\ header files into: C:\Program Files\SDCC\include\ @@ -63,7 +63,7 @@ To install: cd ~ mkdir tmp cd tmp - tar xzf path/to/binary/kit/sdcc-2.7.0-ppc-apple-macosx.tar.gz + tar xzf path/to/binary/kit/sdcc-2.7.1-ppc-apple-macosx.tar.gz * Change to the sdcc directory and copy all files to /Developer/sdcc cp -r sdcc /Developer/sdcc diff --git a/doc/sdccman.lyx b/doc/sdccman.lyx index a4be8f0a..d4618487 100644 --- a/doc/sdccman.lyx +++ b/doc/sdccman.lyx @@ -1,4 +1,4 @@ -#LyX 1.4.3 created this file. For more info see http://www.lyx.org/ +#LyX 1.4.4 created this file. For more info see http://www.lyx.org/ \lyxformat 245 \begin_document \begin_header @@ -104,7 +104,7 @@ SDCC Compiler User Guide \begin_layout Date \size normal -SDCC 2.7.0 +SDCC 2.7.1 \size footnotesize \newline diff --git a/sdcc.spec b/sdcc.spec index f72caf26..389b7720 100644 --- a/sdcc.spec +++ b/sdcc.spec @@ -8,7 +8,7 @@ License: GPL Group: Applications/Engineering Summary: Small Device C Compiler Requires: sdcc-common -Version: 2.7.0 +Version: 2.7.1 Release: 2 Source: %{name}-src-%{version}.tar.gz URL: http://sdcc.sourceforge.net/ diff --git a/support/scripts/sdcc.nsi b/support/scripts/sdcc.nsi index 442b0259..9900562f 100644 --- a/support/scripts/sdcc.nsi +++ b/support/scripts/sdcc.nsi @@ -25,7 +25,7 @@ # How to create WIN32 setup.exe # -# - unpack WIN32 mingw daily snapshot sdcc-snapshot-i586-mingw32msvc-yyyymmdd.zip +# - unpack WIN32 mingw daily snapshot sdcc-snapshot-i586-mingw32msvc-yyyymmdd-rrrr.zip # to a clean directory (the option to create directories should be enabled). # A sub directory sdcc is created (referenced as PKGDIR in continuation). # - copy files sdcc/support/scripts/sdcc.ico and sdcc/support/scripts/sdcc.nsi @@ -33,13 +33,33 @@ # - copy file COPYING from the sdcc Subversion snapshot to the PKGDIR directory, # rename it to COPYING.TXT and convert file COPYING to DOS format: # unix2dos COPYING.TXT +# - copy readline5.dll to PKGDIR/bin/readline5.dll # - run NSIS installer from PKGDIR directory: # "c:\Program Files\NSIS\makensis.exe" sdcc.nsi # - A setup file setup.exe is created in PKGDIR directory. -# Rename it to sdcc_yyyymmdd_setup.exe and upload it +# Rename it to sdcc-yyyymmdd-rrrr-setup.exe and upload it # to sdcc download repository at sourceforge.net # # +# How to create WIN32 release setup.exe package +# +# - unpack WIN32 mingw daily snapshot sdcc-snapshot-i586-mingw32msvc-yyyymmdd-rrrr.zip +# to a clean directory (the option to create directories should be enabled). +# A sub directory sdcc is created (referenced as PKGDIR in continuation). +# - remove the PKGDIR/doc/README.TXT file +# - unpack sdcc-doc-yyyymmdd-rrrr.zip to the PKGDIR/doc directory +# - copy files sdcc/support/scripts/sdcc.ico and sdcc/support/scripts/sdcc.nsi +# (this file) from the sdcc Subversion snapshot to the PKGDIR directory +# - copy file COPYING from the sdcc Subversion snapshot to the PKGDIR directory, +# rename it to COPYING.TXT and convert file COPYING to DOS format: +# unix2dos COPYING.TXT +# - copy readline5.dll to PKGDIR/bin/readline5.dll +# - run NSIS installer from PKGDIR directory: +# "c:\Program Files\NSIS\makensis.exe" -DFULL_DOC sdcc.nsi +# - A setup file setup.exe is created in PKGDIR directory. +# Rename it to sdcc-x.x.x-setup.exe and upload it +# to sdcc download repository at sourceforge.net +# # How to upload secc setup.exe tosourceforge.net # # Execute following commands from the cmd prompt: -- 2.47.2