-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add pyinstaller spec file and adopt certs_file function
- Loading branch information
1 parent
485ec3b
commit 4d5294c
Showing
9 changed files
with
110 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,5 @@ | |
*pyo | ||
*~ | ||
*egg-info* | ||
/build | ||
/dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
HOST="https://www.transifex.com" | ||
USER=$TRANSIFEX_USER | ||
PASSWORD=$TRANSIFEX_PASSWORD | ||
TX=`pwd`"/dist/tx.exe" | ||
|
||
# Exit on fail | ||
set -e | ||
|
||
rm -rf txci | ||
git clone https://github.com/diegobz/txci.git | ||
cd txci | ||
rm -rf .tx | ||
$TX init --host=$HOST --user=$USER --pass=$PASSWORD | ||
$TX set --auto-local -r txci.test -s en 'locale/<lang>/LC_MESSAGES/django.po' -t PO --execute | ||
$TX push -s | ||
$TX pull -l pt_BR -f | ||
|
||
# $TX delete -f |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# -*- mode: python -*- | ||
|
||
block_cipher = None | ||
added_files = [ | ||
('../txclib/cacert.pem', 'txclib'), | ||
] | ||
|
||
a = Analysis(['../tx'], | ||
binaries=None, | ||
datas=added_files, | ||
hiddenimports=[], | ||
hookspath=None, | ||
runtime_hooks=None, | ||
excludes=None, | ||
win_no_prefer_redirects=None, | ||
win_private_assemblies=None, | ||
cipher=block_cipher) | ||
pyz = PYZ(a.pure, a.zipped_data, | ||
cipher=block_cipher) | ||
exe = EXE(pyz, | ||
a.scripts, | ||
a.binaries, | ||
a.zipfiles, | ||
a.datas, | ||
name='tx', | ||
debug=False, | ||
strip=None, | ||
upx=False, | ||
console=True , icon='contrib/tx.ico') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters