gitso

gitso Commit Details


Date:2008-06-15 17:43:06 (16 years 6 months ago)
Author:gerberad
Branch:master
Commit:bdb1275f2e0109a7134772e49343896d9ae46983
Parents: 027102227fd87655b1b08ce9681a0b94b1a5ef9e
Message:Updated Linux version, sizes and things, and implemented the .deb packaging script

Changes:

File differences

gitso/trunk/arch/linux/changelog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
PACKAGE (0.5) hardy; urgency=low
* Complete rewrite of the interface
* Gitso no longer has Zombied VNC processes after it quits.
* Gitso stops the VNC process when it closes
* Updated Icon
* Updated License: GPL 3
* Added Support to be able to specify a list of hosts when you distribute it.
* Added History/Clear History of servers
* Added OS X 10.5 Support (need testing on 10.4 and 10.3)
* OS X uses TightVNC 1.3.9
* OS X uses OSXVNC 3.0
-- Aaron D. Gerber Sun, 15 June 2008 16:17:43 -0600
PACKAGE (0.4) hardy; urgency=low
* updated with icons and much more
-- Aaron D. Gerber Sat, 10 May 2008 16:17:43 -0600
PACKAGE (0.3) UNRELEASED; urgency=low
* Initial release. (Closes: #XXXXXX)
-- Derek <derek@buranen.info> Thu, 08 May 2008 22:35:52 -0600
gitso/trunk/arch/linux/control
44
55
66
7
7
88
99
1010
Section: utils
Architecture: all
Depends: x11vnc, vncviewer, python-wxtools
Installed-Size: 572
Installed-Size: 17830
Maintainer: Derek Buranen <derek@buranen.info>
Description: gitso is to support others (using wxPython and reverse vnc)
gitso is a Python and wxWidgets frontend to x11vnc server
gitso/trunk/arch/linux/gitso
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env python
import sys, os
sys.path.append(os.path.join(sys.path[0], '..', 'share', 'gitso'))
from gitso import Connect
if __name__ == "__main__":
hello = Connect()
hello.main()
gitso/trunk/makegitso
4646
4747
4848
49
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
5081
}
} elsif (`uname -a` =~ m/Linux/) {
print "Implement makegitso for Linux\n"
my $path = "gitso_0.5_all";
print "Creating $path.deb";
`rm -rf $path`;
`mkdir $path`;
`mkdir $path/DEBIAN`;
`cp arch/linux/control $path/DEBIAN`;
print "..";
`mkdir $path/usr`;
`mkdir $path/usr/bin`;
`mkdir $path/usr/share`;
`mkdir $path/usr/share/applications`;
`mkdir $path/usr/share/doc`;
`mkdir $path/usr/share/doc/gitso`;
`mkdir $path/usr/share/gitso`;
`cp arch/linux/gitso $path/usr/bin/`;
`cp Gitso.py $path/usr/share/gitso/`;
`cp __init__.py $path/usr/share/gitso/`;
`cp hosts.txt $path/usr/share/gitso/`;
print "..";
`cp arch/linux/gitso.desktop $path/usr/share/applications/`;
`cp arch/linux/README.txt $path/usr/share/doc/gitso/README`;
`cp copyright $path/usr/share/doc/gitso/`;
`gzip -cf arch/linux/changelog > $path/usr/share/doc/gitso/changelog.gz`;
print "..";
`dpkg -b $path $path.deb`;
`rm -rf $path`;
print " [done]\n";
}

Archive Download the corresponding diff file

Branches

Number of commits:
Page rendered in 0.05415s using 13 queries.