Skip to content
This repository has been archived by the owner on Aug 3, 2024. It is now read-only.

Commit

Permalink
Merge branch 'HostsUtl-Desktop-Dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
huhamhire committed Aug 4, 2013
2 parents e2695bb + 5f048fa commit 952fa72
Show file tree
Hide file tree
Showing 28 changed files with 980 additions and 235 deletions.
4 changes: 4 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,7 @@
*.zip binary
*.dmg binary
*.tar.gz binary
*.png binary
*.ico binary
*.icns binary
*.qm binary
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
*.tmp
*.pyc
*.data
Thumbs.db
hosts
.DS_Store
File renamed without changes.
10 changes: 6 additions & 4 deletions _build.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,16 +70,18 @@
]
),
"LICENSE",
"README",
"README.md",
"network.conf",
]

if sys.argv > 1:
tar_flag = 0
if sys.argv[1] == "py2tar":
# Pack up script package for Linux users
file_path = lambda rel_path: SCRIPT_DIR + rel_path
includes = ["*.py", "lang/*.qm", "LICENSE", "README"]
excludes = ["_*.py", ".gitattributes", "README.md"]
includes = [
"*.py", "lang/*.qm", "LICENSE", "README.md", "network.conf"]
excludes = ["_*.py", ".gitattributes"]
ex_files = []
prefix = "HostsUtl-x11-gpl-"
tar_flag = 1
Expand All @@ -88,7 +90,7 @@
# Pack up source package for Linux users
file_path = lambda rel_path: SCRIPT_DIR + rel_path
includes = ["*"]
excludes = [".gitattributes", "README.md"]
excludes = [".gitattributes"]
ex_files = []
prefix = "HostsUtl-source-gpl-"
tar_flag = 1
Expand Down
Loading

0 comments on commit 952fa72

Please sign in to comment.