Skip to content

Commit

Permalink
Merge pull request #28 from danielbair/master
Browse files Browse the repository at this point in the history
Update info to v1.7.1
  • Loading branch information
danielbair authored Mar 9, 2017
2 parents deb2f3d + 499954c commit 93460bb
Show file tree
Hide file tree
Showing 14 changed files with 52 additions and 3,492 deletions.
12 changes: 6 additions & 6 deletions MS_Windows_Installer/Aeneas_Installer.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "aeneas tools"
#define MyAppVersion "1.7.1"
#define MyAppVersion "1.7.2"
#define MyAppPublisher "Daniel Bair"
#define MyAppURL "http://www.danielbair.com/"
#define MyAppInstallDir "C:\aeneas-install"
#define MyAppFileName "aeneas-windows-setup-1.7.1"
#define MyAppFileName "aeneas-windows-setup-1.7.2"

[Setup]
; NOTE: The value of AppId uniquely identifies this application.
Expand Down Expand Up @@ -37,7 +37,7 @@ ChangesEnvironment=yes
;SignTool=mysigntool

[Messages]
WelcomeLabel2=This will install aeneas 1.7.1 on your computer.%n%naeneas is a Python library and a set of tools for automated audio and text synchronization.%n%nIn addition to aeneas, the following independent programs necessary for running aeneas are contained in this installer:%n1. FFmpeg%n2. eSpeak%n3. Python%n%nIt is recommended that you close all other applications before continuing.
WelcomeLabel2=This will install aeneas 1.7.2 on your computer.%n%naeneas is a Python library and a set of tools for automated audio and text synchronization.%n%nIn addition to aeneas, the following independent programs necessary for running aeneas are contained in this installer:%n1. FFmpeg%n2. eSpeak%n3. Python%n%nIt is recommended that you close all other applications before continuing.

[Languages]
Name: "english"; MessagesFile: "compiler:Default.isl"
Expand All @@ -55,10 +55,10 @@ Name: "python"; Description: "Install Python 2.7.13"; ExtraDiskSpaceRequired: 10
Name: "bs4"; Description: "Install Python Module BeautifulSoup4 4.5.1"; ExtraDiskSpaceRequired: 3400000; Types: full compact custom; Flags: fixed
Name: "lxml"; Description: "Install Python Module lxml 3.6.0"; ExtraDiskSpaceRequired: 0; Types: full compact custom; Flags: fixed
Name: "numpy"; Description: "Install Python Module NumPy 1.11.2"; ExtraDiskSpaceRequired: 0; Types: full compact custom; Flags: fixed
Name: "aeneas"; Description: "Install Python Module aeneas 1.7.1.0"; ExtraDiskSpaceRequired: 0; Types: full compact custom; Flags: fixed
Name: "aeneas"; Description: "Install Python Module aeneas 1.7.2.0"; ExtraDiskSpaceRequired: 0; Types: full compact custom; Flags: fixed

[Files]
Source: "aeneas-1.7.1.0-cp27-cp27m-win32.whl"; DestDir: "{app}"; Components: aeneas; Flags: ignoreversion
Source: "aeneas-1.7.2.0-cp27-cp27m-win32.whl"; DestDir: "{app}"; Components: aeneas; Flags: ignoreversion
Source: "aeneas_check_setup.bat"; DestDir: "{app}"; Components: aeneas; Flags: ignoreversion
Source: "beautifulsoup4-4.5.1-py2-none-any.whl"; DestDir: "{app}"; Components: bs4; Flags: ignoreversion
Source: "install_packages.bat"; DestDir: "{app}"; Components: aeneas; Flags: ignoreversion
Expand All @@ -78,7 +78,7 @@ Name: "{group}\{cm:UninstallProgram,{#MyAppName}}"; Filename: "{uninstallexe}"
Filename: "{app}\setup_ffmpeg-3.2.exe"; Parameters: "/SILENT"; Description: "Install FFmpeg 3.2"; Components: ffmpeg; Flags: shellexec waituntilterminated
Filename: "{app}\setup_espeak-1.48.04.exe"; Parameters: "/SILENT"; Description: "Install eSpeak 1.48.04"; Components: espeak; Flags: shellexec waituntilterminated
Filename: "{app}\python-2.7.13.msi"; Parameters: "/PASSIVE"; Description: "Install Python 2.7.13"; Components: python; Flags: shellexec waituntilterminated
Filename: "{app}\install_packages.bat"; Description: "Install Aeneas 1.7.1 and dependencies"; Components: aeneas; Flags: shellexec waituntilterminated
Filename: "{app}\install_packages.bat"; Description: "Install Aeneas 1.7.2 and dependencies"; Components: aeneas; Flags: shellexec waituntilterminated
Filename: "{app}\aeneas_check_setup.bat"; Description: "Check Aeneas Setup"; Components: aeneas; Flags: shellexec waituntilterminated

[UninstallRun]
Expand Down
10 changes: 5 additions & 5 deletions MS_Windows_Installer/build_packages.bat
Original file line number Diff line number Diff line change
Expand Up @@ -75,14 +75,14 @@ C:\Python27\python -m pip install -U numpy-1.11.2-cp27-none-win32.whl
C:\Python27\python -m pip install -U lxml-3.6.0-cp27-none-win32.whl
C:\Python27\python -m pip install -U beautifulsoup4-4.5.1-py2-none-any.whl

C:\Python27\python -m pip download aeneas==1.7.1
C:\Python27\python -m pip download aeneas==1.7.2

RMDIR /S /Q aeneas-1.7.1.0
"%PF32%\7-Zip\7z.exe" e aeneas-1.7.1.0.tar.gz -aoa
"%PF32%\7-Zip\7z.exe" x aeneas-1.7.1.0.tar -aoa
RMDIR /S /Q aeneas-1.7.2.0
"%PF32%\7-Zip\7z.exe" e aeneas-1.7.2.0.tar.gz -aoa
"%PF32%\7-Zip\7z.exe" x aeneas-1.7.2.0.tar -aoa
echo copying espeak.lib to C:\Python27\libs\
copy /b/v/y espeak.lib C:\Python27\libs\
cd aeneas-1.7.1.0
cd aeneas-1.7.2.0
REM copy ..\aeneas-patches\setupmeta.py .
REM C:\Python27\python.exe -m patch -v -p 1 --debug ..\aeneas-patches\1.7.0.0-windows.diff
C:\Python27\python setup.py build_ext --inplace
Expand Down
2 changes: 1 addition & 1 deletion MS_Windows_Installer/install_packages.bat
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,5 @@ C:\Python27\python -m pip install -U beautifulsoup4-4.5.1-py2-none-any.whl
C:\Python27\python -m pip install -U lxml-3.6.0-cp27-none-win32.whl
C:\Python27\python -m pip install -U numpy-1.11.2-cp27-none-win32.whl
C:\Python27\python -m pip uninstall -y aeneas
C:\Python27\python -m pip install aeneas-1.7.1.0-cp27-cp27m-win32.whl
C:\Python27\python -m pip install aeneas-1.7.2.0-cp27-cp27m-win32.whl

10 changes: 5 additions & 5 deletions Mac_OSX_Installer/Aeneas_Installer.pkgproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
<key>LOCATION</key>
<integer>0</integer>
<key>NAME</key>
<string>ffmpeg-3.2.2</string>
<string>ffmpeg-3.2.4</string>
</dict>
<key>PATH</key>
<dict>
<key>PATH</key>
<string>./ffmpeg-3.2.2.pkg</string>
<string>./ffmpeg-3.2.4.pkg</string>
<key>PATH_TYPE</key>
<integer>1</integer>
</dict>
Expand Down Expand Up @@ -130,12 +130,12 @@
<key>LOCATION</key>
<integer>0</integer>
<key>NAME</key>
<string>aeneas-1.7.1</string>
<string>aeneas-1.7.2</string>
</dict>
<key>PATH</key>
<dict>
<key>PATH</key>
<string>aeneas-1.7.1.pkg</string>
<string>aeneas-1.7.2.pkg</string>
<key>PATH_TYPE</key>
<integer>1</integer>
</dict>
Expand Down Expand Up @@ -850,7 +850,7 @@
</dict>
</array>
<key>NAME</key>
<string>aeneas-mac-setup-1.7.1</string>
<string>aeneas-mac-setup-1.7.2</string>
</dict>
</dict>
<key>TYPE</key>
Expand Down
Loading

0 comments on commit 93460bb

Please sign in to comment.