latest version of gnome

Requests go here. If you fill a request, give it a new thread in the appropriate category and then link to it in the request thread.
Post Reply
Message
Author
User avatar
morgonzola
Posts: 161
Joined: Thu 22 Apr 2010, 03:14
Location: Los Angeles, CA

latest version of gnome

#1 Post by morgonzola »

so i realize there is already a gnome sfs but it seriously needs an update. i attempted to do this myself but after i got all the files from the ftp site i kinda was at a loss. so if someone can post a new gnome sfs or tell me what to do it would be most appreciated.

User avatar
morgonzola
Posts: 161
Joined: Thu 22 Apr 2010, 03:14
Location: Los Angeles, CA

oops

#2 Post by morgonzola »

i just read the guidelines

dl site is here
http://ftp.gnome.org/pub/GNOME/desktop/2.30/2.30.2/
and it is for puppy 5

User avatar
morgonzola
Posts: 161
Joined: Thu 22 Apr 2010, 03:14
Location: Los Angeles, CA

#3 Post by morgonzola »

ok so update i learned some things and have gotten a version of git and some instructions on how to build the latest version (aka 3.0) and i also picked up a copy of jhbuild which i am using to build etc etc. i just figured out how to use spot so i can actually use jhbuild (it will not run in root whatever you do)
so i am getting close sort of. the tricky part is after im done getting the files and such and building, how can i make it into a sfs file so everyone can use it? i am aware of the tools that come with puppy and i haven't really done any research on them but i am more talking about am i going to need to put dependencies or other things in there to make it work?

User avatar
morgonzola
Posts: 161
Joined: Thu 22 Apr 2010, 03:14
Location: Los Angeles, CA

#4 Post by morgonzola »

ok so after some head bashing on this i am kinda lost again. i got to about here.

i run jhbuild sanitycheck as spot in terminal
it tells me

/root/.local/bin/jhbuild: line 3: import: command not found
/root/.local/bin/jhbuild: line 4: import: command not found
/root/.local/bin/jhbuild: line 5: import: command not found
/root/.local/bin/jhbuild: line 7: USE_CHECKOUT_SRC: command not found
/root/.local/bin/jhbuild: jhbuild: line 10: syntax error near unexpected token `0,'
/root/.local/bin/jhbuild: jhbuild: line 10: ` sys.path.insert(0, '/root/NewDir/jhbuild')'
what am i doing wrong?

noryb009
Posts: 634
Joined: Sat 20 Mar 2010, 22:28

#5 Post by noryb009 »

Can you paste the content of /root/.local/bin/jhbuild?

User avatar
morgonzola
Posts: 161
Joined: Thu 22 Apr 2010, 03:14
Location: Los Angeles, CA

#6 Post by morgonzola »

#!/usr/bin/env python

import sys
import os
import __builtin__

USE_CHECKOUT_SRC = True

if USE_CHECKOUT_SRC:
sys.path.insert(0, '/root/NewDir/jhbuild')
pkgdatadir = None
datadir = None
import jhbuild
srcdir = os.path.abspath(os.path.join(os.path.dirname(jhbuild.__file__), '..'))
else:
pkgdatadir = "@pkgdatadir@"
datadir = "@datadir@"
srcdir = "@srcdir@"
if '@pythondir@' not in sys.path:
sys.path.insert(0, '@pythondir@')
try:
import jhbuild
except ImportError:
sys.path.insert(0, srcdir)

__builtin__.__dict__['PKGDATADIR'] = pkgdatadir
__builtin__.__dict__['DATADIR'] = datadir
__builtin__.__dict__['SRCDIR'] = srcdir

import jhbuild.main
jhbuild.main.main(sys.argv[1:])

Post Reply