mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-02 22:48:40 +00:00
Prepping for release
This commit is contained in:
parent
262279b27f
commit
baaafefb89
3 changed files with 5 additions and 35 deletions
6
debian/changelog
vendored
6
debian/changelog
vendored
|
@ -1,5 +1,5 @@
|
||||||
deluge-torrent (0.9.09-1) unstable; urgency=low
|
deluge-torrent (1.0.0-1) unstable; urgency=low
|
||||||
|
|
||||||
* RC9 release
|
* 1.0.0 - "Sharks are bulletproof"
|
||||||
|
|
||||||
-- Andrew Resch (andar) <andrewresch@gmail.com> Sun, 14 Sep 2008 16:31:14 -0800
|
-- Andrew Resch (andar) <andrewresch@gmail.com> Sun, 21 Sep 2008 02:10:00 -0000
|
||||||
|
|
|
@ -905,7 +905,7 @@ class Core(
|
||||||
from urllib2 import urlopen
|
from urllib2 import urlopen
|
||||||
try:
|
try:
|
||||||
self.new_release = urlopen(
|
self.new_release = urlopen(
|
||||||
"http://download.deluge-torrent.org/version-1.0").read().strip()
|
"http://download.deluge-torrent.org/version").read().strip()
|
||||||
except Exception, e:
|
except Exception, e:
|
||||||
log.debug("Unable to get release info from website: %s", e)
|
log.debug("Unable to get release info from website: %s", e)
|
||||||
return
|
return
|
||||||
|
|
32
setup.py
32
setup.py
|
@ -51,29 +51,6 @@ def windows_check():
|
||||||
else:
|
else:
|
||||||
return False
|
return False
|
||||||
|
|
||||||
# Try to get SVN revision number to append to version
|
|
||||||
revision_string = ""
|
|
||||||
try:
|
|
||||||
stdout = os.popen("svn info")
|
|
||||||
for line in stdout:
|
|
||||||
if line.split(" ")[0] == "Revision:":
|
|
||||||
revision_string = line.split(" ")[1].strip()
|
|
||||||
break
|
|
||||||
# Try to get the SVN revision on Gentoo systems
|
|
||||||
if revision_string == "":
|
|
||||||
stdout = os.popen("svn info /usr/portage/distfiles/svn-src/deluge/deluge-0.6")
|
|
||||||
for line in stdout:
|
|
||||||
if line.split(" ")[0] == "Revision:":
|
|
||||||
revision_string = line.split(" ")[1].strip()
|
|
||||||
break
|
|
||||||
|
|
||||||
f = open("deluge/data/revision", "w")
|
|
||||||
f.write(revision_string)
|
|
||||||
f.close()
|
|
||||||
except:
|
|
||||||
pass
|
|
||||||
|
|
||||||
|
|
||||||
if not os.environ.has_key("CC"):
|
if not os.environ.has_key("CC"):
|
||||||
os.environ["CC"] = "gcc"
|
os.environ["CC"] = "gcc"
|
||||||
|
|
||||||
|
@ -333,12 +310,5 @@ setup(
|
||||||
]},
|
]},
|
||||||
packages = find_packages(exclude=["plugins"]),
|
packages = find_packages(exclude=["plugins"]),
|
||||||
url = "http://deluge-torrent.org",
|
url = "http://deluge-torrent.org",
|
||||||
version = "0.9.09",
|
version = "1.0.0",
|
||||||
)
|
)
|
||||||
|
|
||||||
try:
|
|
||||||
f = open("deluge/data/revision", "w")
|
|
||||||
f.write("")
|
|
||||||
f.close()
|
|
||||||
except:
|
|
||||||
pass
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue