-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Hello all,

Think I got the x86_64 stuff in sane way.
But not x86.

Finally managed to atleast make it build x86, but not installable at
all. As it want to have all requires for x86 too? I'm not sure, as I
don't have any knowledge about groups.

tested 2, all failed:
[tforsman@localhost ~]$ sudo conary update mysticmine
[sudo] password for tforsman:
The following dependencies could not be resolved:
    mysticmine:runtime=0.1-1-1:
        soname: ELF32/libblas.so.3gf(SysV x86)
        soname: ELF32/libcrypto.so.0.9.8(OPENSSL_0.9.8 SysV x86)
        soname: ELF32/libgfortran.so.2(SysV x86)
        soname: ELF32/liblapack.so.3gf(SysV x86)
        soname: ELF32/libssl.so.0.9.8(OPENSSL_0.9.8 SysV x86)

[tforsman@localhost ~]$ sudo conary update warsow
The following dependencies could not be resolved:
    warsow:runtime=0.61-1-2:
        soname: ELF32/libcurl.so.4(CURL_OPENSSL_3 SysV x86)


Or is the group-gameway sane and only need to make sure it won't
install those 32bit stuff ?


I hope someone got time to look at recipe, included in this mail.
The main issue might be that i built 32 and 64 bit for those packages?

Let's start with recipe, can someone look if it's sane and if not,
help out to make it sane?

recipe: http://www.rpath.org/repos/gameway/troveInfo?t=group-gameway

and attached.

In meantime, start with rebuilding those with only 32bit.

Thanks in advance
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.9 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQEcBAEBAgAGBQJQAqbzAAoJEHtATJbPs3KG3qUH/ipeu5nARUtZANY/DwpMBgMq
TtQ+K/rJgofLtF1e+ub/8SFpxoEjfRiYvum6rwXOV+Qa5v8wdbYAckW42oScGOe/
HeaffWebO/bGRAPeVXhJSOHGobDJXB4i3MyuvEUL+3T3bWbaD6w4fI7OeozzLQjD
tynQ0O1ipIy5EvwF4sS4n2XgxKfbU9q5lpYKVQ+iR4buTTV5qOU1HpyEuCdvshKm
kemMYiN7fyq8TscuhqL6LHKUyi/wDkMT3GHltOISrlXFBNuHG3Z27DPa6widqPPt
Dsd1olQRlGGD7OQWP4tmFNteN4rdfVPDl0FmeGiq2jxX/6RAZNrG4lpxFAu+tV4=
=MiYX
-----END PGP SIGNATURE-----
# vi: set ts=4 sts=4 sw=4 expandtab:
#
# Copyright (c) 2011-2012 The Foresight Linux Project
# This file is distributed under the terms of the MIT License.
# A copy is available at http://www.rpath.com/permanent/mit-license.html
#

import datetime
class GroupGameway(GroupRecipe):
    name = 'group-gameway'
    realVersion = '2.5.2' 
    stamp = datetime.date.today().strftime("%Y.%m.%d")
    version =  '%s+%s' % (realVersion,stamp) 

    autoResolve = True
    depCheck = True

    x86_64rplGroupsFlavorString = 'is: x86 x86_64'
    x86_64FlavorString = 'is: x86_64'
    x86FlavorString  = 'is: x86'
    x86rplGroupsFlavorString = x86FlavorString

    def rplAddGroup(r, name, groupName, flavor = None, recurse=True):
        if not flavor:
            if Arch.x86_64:
                flavor = r.x86_64rplGroupsFlavorString
            else:
                flavor = r.x86rplGroupsFlavorString

    def rplAdd(r, name, components = None, source=None, versionStr=None,
              groupName=None, flavor=None, byDefault=True, singleArch=False):



        if parentGroup:
            r.setDefaultGroup(parentGroup)
        r.createGroup(name, autoResolve=autoResolve, depCheck=depCheck,
                      checkOnlyByDefaultDeps=checkOnlyByDefaultDeps, 
                      byDefault=byDefault,  
checkPathConflicts=checkPathConflicts)

        if not flavor:
            if Arch.x86_64:
                flavor = r.x86_64rplGroupsFlavorString
            else:
                flavor = r.x86rplGroupsFlavorString

    def setup(r):
        r.setLabelPath('gameway.rpath.org@fl:2', 
'foresight.rpath.org@fl:2-devel', 'conary.rpath.com@rpl:2-qa')
        r.add('abuse-sdl')
        r.add('alienarena')
        r.add('angryanimals')
        r.add('ardentryst')
        r.add('asc')
        r.add('bloodfrontier')
        r.add('chroma')
        r.add('chromium-bsu')
        r.add('familyfarm-demo')
        r.add('freeciv')
        r.add('freedroid')
        r.add('frogatto')
        r.add('gweled')
        r.add('hex-a-hop')
        r.add('lbreakout2')
        r.add('lmarbles')
        r.add('lpairs')
        r.add('ltris')
        r.add('machinarium-demo')
        r.add('maxr')
        #r.add('mysticmine')
        r.add('nexuiz')
        r.add('pingus')
        r.add('pokerth')
        r.add('powermanga')
        r.add('pyhalebarde')
        #r.add('ragetracks')
        r.add('ri-li')
        r.add('sauerbraten')
        r.add('scorched3d')
        r.add('simutrans')
        r.add('smc')
        r.add('speed-dreams')
        r.add('supertuxkart')
        r.add('tremulous')
        r.add('vdrift')
        r.add('violetland')
        #r.add('warsow')
        #if Arch.x86:
        #    r.add('warsow', flavor='is: x86')
        r.add('warzone2100')
        r.add('wesnoth')
        r.add('warmux')
        r.add('xmoto')
        r.add('yodasoccer')
        r.add('yofrankie-bge')
        r.add('zaz')
        r.add('mysticmine', groupName='group-gameway', flavor='is: x86', 
byDefault=False)
        r.add('ragetracks', groupName='group-gameway', flavor='is: x86', 
byDefault=False)
        r.add('warsow', groupName='group-gameway', flavor='is: x86', 
byDefault=False)
_______________________________________________
Foresight-devel mailing list
Foresight-devel@lists.rpath.org
http://lists.rpath.org/mailman/listinfo/foresight-devel

Reply via email to