Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gajim
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
norstbox
gajim
Commits
2fdbe37b
Commit
2fdbe37b
authored
12 years ago
by
Yann Leboulanger
Browse files
Options
Downloads
Patches
Plain Diff
we require PyGTK2.22 for InfoBar
parent
e1808fd5
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
README.html
+1
-1
1 addition, 1 deletion
README.html
debian/control
+1
-1
1 addition, 1 deletion
debian/control
src/gajim.py
+6
-6
6 additions, 6 deletions
src/gajim.py
with
8 additions
and
8 deletions
README.html
+
1
−
1
View file @
2fdbe37b
...
...
@@ -15,7 +15,7 @@
<h2>
Runtime Requirements
</h2>
<ul>
<li>
python2.5 or higher
</li>
<li>
pygtk2.
16
or higher
</li>
<li>
pygtk2.
22
or higher
</li>
</ul>
<h2>
Optional Runtime Requirements
</h2>
...
...
This diff is collapsed.
Click to expand it.
debian/control
+
1
−
1
View file @
2fdbe37b
...
...
@@ -10,7 +10,7 @@ Vcs-Browser: http://hg.gajim.org/gajim/file
Package: gajim
Architecture: all
Depends: ${misc:Depends}, ${python:Depends}, python-gtk2 (>= 2.
16
.0), dnsutils
Depends: ${misc:Depends}, ${python:Depends}, python-gtk2 (>= 2.
22
.0), dnsutils
Recommends: dbus, python-dbus, notification-daemon, python-openssl (>= 0.12), python-crypto, python-pyasn1
Suggests: python-gconf, python-gnome2, nautilus-sendto, avahi-daemon, python-avahi, network-manager, libgtkspell0, aspell-en, python-gnomekeyring, gnome-keyring, python-kerberos (>= 1.1), texlive-latex-base, dvipng, python-farstream, gstreamer0.10-plugins-ugly, python-pycurl
Description: Jabber client written in PyGTK
...
...
This diff is collapsed.
Click to expand it.
src/gajim.py
+
6
−
6
View file @
2fdbe37b
...
...
@@ -233,12 +233,12 @@ else:
elif
sysname
in
(
'
FreeBSD
'
,
'
OpenBSD
'
,
'
NetBSD
'
):
libc
.
setproctitle
(
'
gajim
'
)
if
gtk
.
pygtk_version
<
(
2
,
16
,
0
):
pritext
=
_
(
'
Gajim needs PyGTK 2.
16
or above
'
)
sectext
=
_
(
'
Gajim needs PyGTK 2.
16
or above to run. Quiting...
'
)
elif
gtk
.
gtk_version
<
(
2
,
16
,
0
):
pritext
=
_
(
'
Gajim needs GTK 2.
16
or above
'
)
sectext
=
_
(
'
Gajim needs GTK 2.
16
or above to run. Quiting...
'
)
if
gtk
.
pygtk_version
<
(
2
,
22
,
0
):
pritext
=
_
(
'
Gajim needs PyGTK 2.
22
or above
'
)
sectext
=
_
(
'
Gajim needs PyGTK 2.
22
or above to run. Quiting...
'
)
elif
gtk
.
gtk_version
<
(
2
,
22
,
0
):
pritext
=
_
(
'
Gajim needs GTK 2.
22
or above
'
)
sectext
=
_
(
'
Gajim needs GTK 2.
22
or above to run. Quiting...
'
)
from
common
import
check_paths
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment