mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-06 12:27:46 +03:00
Handle setting the revision in a different way.
This commit is contained in:
parent
0b807e8945
commit
b950d28781
4 changed files with 24 additions and 7 deletions
9
setup.py
9
setup.py
|
@ -50,11 +50,15 @@ try:
|
|||
stdout = os.popen("svn info")
|
||||
for line in stdout:
|
||||
if line.split(" ")[0] == "Revision:":
|
||||
revision_string = "r%s" % line.split(" ")[1].strip()
|
||||
revision_string = line.split(" ")[1].strip()
|
||||
break
|
||||
f = open("deluge/data/revision", "w")
|
||||
f.write(revision_string)
|
||||
f.close()
|
||||
except:
|
||||
pass
|
||||
|
||||
|
||||
# The libtorrent extension
|
||||
_extra_compile_args = [
|
||||
"-Wno-missing-braces",
|
||||
|
@ -173,7 +177,7 @@ for path in glob.glob('deluge/plugins/*'):
|
|||
setup(
|
||||
name = "deluge",
|
||||
fullname = "Deluge Bittorent Client",
|
||||
version = "0.6.0.0" + revision_string,
|
||||
version = "0.6.0.0",
|
||||
author = "Andrew Resch, Marcos Pinto",
|
||||
author_email = "andrewresch@gmail.com, markybob@dipconsultants.com",
|
||||
description = "GTK+ bittorrent client",
|
||||
|
@ -183,6 +187,7 @@ setup(
|
|||
package_data = {"deluge": ["ui/gtkui/glade/*.glade",
|
||||
"data/pixmaps/*.png",
|
||||
"data/pixmaps/deluge.svg",
|
||||
"data/revision",
|
||||
"plugins/*.egg",
|
||||
"i18n/*.pot",
|
||||
"i18n/*/LC_MESSAGES/*.mo",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue