Missing PKGBUILDS after synchronizing abs tree?

Hello!
This is my first post here. If my question is answered somewhere - just give me a link. I tried to look for an answer, but so far I failed. I took a look at HOWTOs, that are available on Wiki, but I didn't find anything there.
I want to build my own package that contains the game "Lincity-ng". The binary package for this game can be found in AUR. I added the "community" option in my /etc/abs/abs.conf and then I did "# abs" - so my tree should be synchronized, but I wasn't able to find lincity-ng in my /var/abs directory. I found many others PKGBUILDS (e.g. OpenTTD, that is also in AUR) - but lincity-ng wasn't there.
How can I obtain _all_ PKGBUILDS from AUR?

Lincity-ng is in unsupported, not community. The only way you can get the PKGBUILDs for anything in unsupported is through the AUR interface.

Similar Messages

  • Should abs tree be in sync with repos?

    hello,
    today while playing with bauerbill i noticed that pkgbuilds in the abs tree have a lower pkgver and/or pkgrel than the packages from my selected pacman mirror. i don't use testing repository.
    now my question is:
    should the situation be the opposite, in another words, should abs contain newer pkgbuilds than the packages in repositories (if the repositories are not in sync), or is this normal behaviour?
    thank you for your answers

    wonder wrote:abs is using a rsync snapshot from svn and is generated twice of day if i remember well.
    It is generated only once a day.

  • A very old package version is still in the ABS tree

    I wanted to add some compile-time options to the qemu package so I synced my local ABS tree and made a copy of the relevant PKGBUILD and its associated files:
    $ sudo abs
    $ cp -r /var/abs/extra/qemu/ ~/abs/local/
    However, I noticed that this particular qemu PKGBUILD is at version 1.4.2-2 whereas the qemu version available from the extra repo is currently at 1.5.1-2. 
    To be sure I wasn't mistaken, I synced my local abs tree twice and had someone else confirm that they too are seeing the qemu 1.4.2-2 PKGBUILD after updating his abs tree.
    Is this to be expected?  How often is the central ABS tree updated?

    WonderWoofy wrote:To add to the actual topic of the thread.  If you really need the updated pkgbuild (and any accompanying files), you can always use the packages web interface and follow the link to the git repo that holds all those stuffs.
    You need to be careful if there are versions of this package in testing and non-testing repos, as the web interface will point to the testing ones e.g. https://www.archlinux.org/packages/extra/i686/amule/ If you click 'Source Files' link in the top right and then view the PKGBUILD https://projects.archlinux.org/svntogit … ages/amule you will see it is for version 10803-3, even though we wanted version 10803-2 from [extra].
    For amule, there shouldn't be a difference, but for some other packages, there might be: https://bbs.archlinux.org/viewtopic.php?id=164759

  • Pacman kernel version different from abs tree

    I've started using Arch Linux since last week, switching from Ubuntu, and I must say, I'm impressed. I've been using Gentoo on another system for a while, and I wanted the power of Gentoo, without the compiling, which actually is what Arch is providing.
    I've installed a i686 system, but I have 8Gb of memory so I've compiled my own kernel with HIGHMEM64G=yes.
    When I updated my system today, I got a new kernel package from pacman: 3.1.3-1.
    But when I rebuild my kernel using abs, I get 3.1.2-1.
    Shouldn't these versions be the same? I've tried different mirrors to sync my abs tree, to no effect. Am I missing something?

    Ok, thanks, then I know what's going on.
    How can I use a 64bit kernel with a i686 install? That might be easier than recompiling my kernel each time. What about nvidia module and virtual box modules? I had to recompile these myself as well after I compiled my own kernel.
    Sure, if I had to reinstall, I'd go 64bit all the way; though I now have my system full up and running and configured so I'm not really looking forward reinstalling right now. I chose i686 not for a particular reason, I just assumed there would be a pae enabled kernel, but unfortunately there isn't one in the official repositories.

  • How to relocate the abs-tree

    Hi,
    I reinstalled my laptop, I wanted to save the abstree and I found a line in
    /etc/makepkg.conf:
    # the top-level directory of all your PKGBUILDs
    export ABSROOT="/usr/abs/"
    Cewl, this make it easier for me to keep my own costumized abs-repository
    at a seperate partition,(well, i could mount this partition to /usr/abs, but I
    wanted to try it with "ABSROOT")
    Well I tried to relocate my abs-tree there - but it failed. Running "abs" as root
    downloaded all the files to /usr/abs.
    Now, before I try to crash my system, if I put the quoted line to /etc/profile
    would it work? If ABSROOT is important for "makepkg" so it should be
    important for "abs", too, and so makepkg.conf should be parsed everytime
    "abs" is running, or am I wrong here?
    bye neri

    No, you make a good point.  the 'abs' script doesn't pay any attention to makepkg.conf, it is hard-coded to use /usr/abs instead (though I'll change this in the future).
    For now, you'll have to edit /usr/bin/abs and change the top line, ABS_ROOT, to point to your new abs location.

  • Impdp triggers always give error ORA-04071:missing BEFORE, AFTER or INSTEAD

    Hello,
    I am using 11g impdp to create a test system.
    I use this cmd to import
    impdp 'SYS/xxxxx@PWRFUN AS SYSDBA' dumpfile=PWRPROD.DMP logfile=PWRFUNimportPROD.log SCHEMAS=pwrplant TABLE_EXISTS_ACTION=REPLACE
    Then I get this error for all the triggers
    ORA-39083: Object type TRIGGER failed to create with error:
    ORA-04071: missing BEFORE, AFTER or INSTEAD OF keyword
    Failing sql is:
    CREATE TRIGGER "PWRPLANT"."APPROVAL_STEPS_HISTORY" PS_HISTORY
    BEFORE UPDATE OR INSERT ON PWRPLANT.APPROVAL_STEPS_HISTORY
    FOR EACH ROW
    BEGIN    :new.user_id := USER;    :new.time_stamp := SYSDATE; END;
    As you can see, the trigger does contain the word "before".
    When I remove " "PWRPLANT"."APPROVAL_STEPS_HISTORY" " and run the trigger below, it compiles correctly. Why is this, and how do I make my impdp to run correctly?
    CREATE TRIGGER PS_HISTORY
    BEFORE UPDATE OR INSERT ON PWRPLANT.APPROVAL_STEPS_HISTORY
    FOR EACH ROW
    BEGIN    :new.user_id := USER;    :new.time_stamp := SYSDATE; END;

    same error, thanks for your attemp
    Error starting at line 1 in command:
    CREATE TRIGGER "PWRPLANT"."APPROVAL_STEPS_HISTORY" PS_HISTORY
    BEFORE UPDATE OR INSERT ON PWRPLANT.APPROVAL_STEPS_HISTORY
    REFERENCING new AS new
    FOR EACH ROW
    BEGIN :new.user_id := USER; :new.time_stamp := SYSDATE; END;
    Error report:
    ORA-04071: missing BEFORE, AFTER or INSTEAD OF keyword
    04071. 00000 - "missing BEFORE, AFTER or INSTEAD OF keyword"
    *Cause:    The trigger statement is missing the BEFORE/AFTER/INSTEAD OF clause.
    *Action:   Specify either BEFORE, AFTER or INSTEAD OF.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Can't update haskell-http by editing the PKGBUILD in the abs

    So I dont see how to update the haskell-http package.
    I have adjusted the versions of the depending pkg's, but it doesn't help.
    (moved from Thread p1486676 because partly solved the overall sysUpgrade issue)
    termnml wrote:
    Okay. So as packages got updated:
    haskell-network -> 2.6.0.2-1
    haskell-parsec -> 3.1.7-1
    I edited the PKGBUILD in the abs and changed the depending versions to the proper ones.
    Build the package
    temporary removed haskell-http with pacman
    Performed the SysUpgrade with pacman which now ran smooth
    Tried to install the modified pkg -> haskell-http
    Still gives me the errors about the deps
    $: pacman -U haskell-http-4000.2.12-3-x86_64.pkg.tar.xz
    loading packages...
    resolving dependencies...
    warning: cannot resolve "haskell-network=2.5.0.0-2", a dependency of "haskell-http"
    warning: cannot resolve "haskell-parsec=3.1.5-3", a dependency of "haskell-http"
    :: The following package cannot be upgraded due to unresolvable dependencies:
    haskell-http
    Could it be that there are dep-defs in the src itself?
    I'm a little confused.
    But thank for your great help guys and the insane fast replys.
    Edited: Some lang improvement.
    Last edited by termnml (2014-12-23 03:20:55)

    Post the edited PKGBUILD.

  • Missing indexes after system copy

    Hi All
    we have around 70,000 missing indexes after the system copy
    offline export from
    source with sun solaris oracle
    To 
    Linux oracle
    but these appeared after we Run  SGEN , which took 60 hours for a 200 Gb database.
    and target system response is also slow , how to go ahead with this issue
    we have checked export and import logs , none of the packages were missed
    1 Why these missing indexes after SGEN , and why SGEN for 60 hours
    2  when we check the Tables which appeared in Missing indexes ,from SE14  it says In Consistency with Data dictionary
    3  and the other error , is  Index Missing in the database ,
    4  but we cant create all these manually.
    Regards

    Hi Matt
    Thanks for the response
    After sap suggestion  , we have done only import again, with 721 R3load same as export.
    but still the R3load.exe.log of import shows as done with 720 kernel.
    import R3load.exe log       //bas/720_REL/src/R3ld/R3load/R3ldmain.c#
    export R3load.exe log     //bas/721_REL/src/R3ld/R3load/R3ldmain.c#10 $ SAP
    But when we compare  the sapinst_dev and AGR logs both from export and import
    both are referring the same 721 R3load version ,
    //bas/721_REL/src/R3ld/R3load/R3ldmain.c
    still we have same missing indexes issue , after we did the import again.
    Are we making any mistakes in export  , Any suggestions are welcome
    hi all , kindly respond with your inputs , on this
    Regards

  • Why does Visual STudio 2012 References keep showing Exclamation mark (which means assembly is missing) even after I specify the exact path?

     Our web application at work requires Visual Studio 2012
    For one of the projects within the Visual Studio 2012 Web Application Solution, we need the System.Web.Mvc in the References.
    I already have the following in the packages folder:
    {blah...blah..Visual Studio Solution path..blah}\packages\Microsoft.AspNet.Mvc.5.1.1\lib\net45\System.Web.Mvc.dll
    I keep adding it, but the References still shows the Exclamation mark ( which means missing) next to the System.Web.Mvc
    Why does it keep showing the Exclamation mark ( which means missing) , even after I specify the exact path to the System.Web.Mvc.dll ?

    Hi cslewis33,
    Thank you for posting in MSDN forum.
    Based on your issue, if you want to add the System.Web.Mvc reference for a web application in VS2012. As far as l know that the System.Web.Mvc dll is default be located like this path:" C:\Program Files (x86)\Microsoft ASP.NET\ASP.NET MVC 4\Assemblies\System.Web.Mvc.dll.
    So if you create the web app using c# language, I suggest you can right-click your Reference under the we application -> Add Reference->select the System.Web.Mvc in the Assemblies tab.
    If the above suggestion still could not help you, I suggest you can consult this issue directly to the ASP.NET forum:http://forums.asp.net/ , maybe you will get better support.
    Thanks for your understanding.
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Missing Apps after System restore

    Yesterday I did a System Restore on my iPhone 3Gs and now all of my Apps are missing. After this I tried to do a Restore from backup again but I still have the same problem.
    I don't have Sync Apps ticked in iTunes as if I do it will sync all apps and there is a mix of iPad and iPhone apps there. For some Apps there are separate iPad and iPhone versions and I'm not sure if this will cause any problems.
    Is there a way to have the apps restored to the same folders they were in before? I know I can sync selected apps from iTunes but I spent a lot of time organising all of my apps into folders and I'm hoping to avoid having to do that again. When I tick "Sync Apps" but before actually going ahead iTunes shows 10 screens of Apps and none are in folders as they were before.
    I thought that doing a restore from a backup that I did just before the restore would have restored the phone exactly as I had it before.
    Thanks for any advice you can offer.

    No iTunes content including 3rd party apps are included with your iPhone's backup. If you don't have Sync Apps selected under the Apps tab for your iPhone sync preferences with iTunes along with the apps selected below that you want available on your iPhone - which can be placed in folders with iTunes followed by a sync, iTunes does not know which apps you had installed on your iPhone. With Sync Apps selected along with the apps in your chosen folders, when restoring your iPhone with iTunes from your iPhone's backup, your iPhone will be restored in this regard. After restoring as a new iPhone or from the backup, this must be followed by a sync to re-transfer your selected iTunes content including 3rd party apps to your iPhone. What is selected under the Apps tab for your iPhone sync preferences will be pre-selected prior to the initial sync with iTunes after the restore, and the apps will be transferred back to the same folders as before. Your mistake in this process was not having Sync Apps selected under the Apps tab. With this selected, after downloading an app direct with your iPhone the app will be copied to your iTunes library automatically the first time you sync your iPhone with iTunes after doing so.
    If there is an iPad only app that you select to be transferred to your iPhone, a warning message will be provided with the following sync indicating the app cannot be installed on your iPhone. You can create your app folders with iTunes followed by a sync.

  • Anyone else having trouble with missing ringtones after upgrading to 8.1.1

    Anyone else having trouble with missing ringtones after upgrading to 8.1.1?

    Try resetting the keyboard dictionary
    Settings>General>Reset>Reset Keyboard Dictionary

  • Missing apps after iOS 5update

    Missing apps after upgrade to its 5 operating system. How to recover apps. Syncing does not do it.

    I recently updated my iphone to ios 5..everything else synced up but the Apps. How do i recover the Apps??

  • Simple shell script utility to copy abs tree for build

    Hi,
        I'm learning shell script and decided to make a simple script to copy the folder i want from /var/abs to
        a new folder so i can build the package. here it is: (remember, i'm new to shell scripting, if you know a better way to do it, you can modify my script
        and post here a better solution, so, i (and others) can learn with my errors)
    #!/bin/bash
    #Looks for the abs tree of the software you want
    #and copy it to your build path
    ABSTREE=/var/abs
    echo -n "What software do you want? "
    read absname
    result=$(find $ABSTREE -name $absname)
    for i in $result; do
    echo -n "$i, is this what you want? [y/n] "
    read opt
    if [ $opt = "y" ]; then
    echo -n "Copy to... "
    read buildpath
    relative=${i#$ABSTREE}
    absolute=$buildpath${relative%$absname}
    mkdir -p $absolute
    cp -r $i $absolute
    echo "$i successfully copied to $absolute"
    exit 0
    fi
    done
    exit 1

    spoonman wrote: mkdir -p $absolute
    cp -r $i $absolute
    echo "$i successfully copied to $absolute"
    You are assuming `mkdir` and `cp` were successful. You should test them to make sure, and exit with failure if not:
    mkdir -p $absolute || exit 1
    cp -r $i $absolute || exit 1
    echo "$i successfully copied to $absolute"
    You could also include your own error message, but mkdir and cp would throw their own if something fails...
    mkdir -p $absolute || { echo "mkdir failed"; exit 1; }
    cp -r $i $absolute || { echo "cp failed"; exit 1; }
    echo "$i successfully copied to $absolute"
    Another way is to use `set -e` which will exit the script on any failure without explicit testing:
    set -e
    mkdir -p $absolute
    cp -r $i $absolute
    set +e
    echo "$i successfully copied to $absolute"

  • Various missing drivers after re-installing Win7 64 bit on hp pavilion dv7-6111eo

    Aloha
    First off... I'm no techy, geek or nerd... And I mean those words in the best way, to those who are.
    In this case You need to see me like a kid in kindergarden, being taken by the hand, and being shown what to do, down the the last detail. Sad but true.
    Without me knowing why, I experienced missing several DLL-files, and often got error messages about those.
    A pain in the neck, so I re-installed Windows 7 64 bit, as I didn't want to mess with those DLLs missing.
    After that re-installing, I couldn't get internet-connection to my router. Luckily I have a 10+ year old stationary, where I after some time found the driver I needed, so that works now.
    But now it seems there's several other drivers missing/not been installed.
    I got a little info, from another post, what to provide with info, and hope that will be enough. if not, then please let me know the additional info that may be needed, and where I can find those on my PC, so I can provide these.
    Missing drivers:
    Network Controller;
    Hardware ID: PCI\VEN_8086&DEV_008B&SUBSYS_53158086&REV_34
    SM Bus Controller;
    Hardware ID: PCI\VEN_8086&DEV_1C22&SUBSYS_1659103C&REV_05
    Universal Serial Bus (USB) Controller;
    Hardware ID: PCI\VEN_1033&DEV_0194&SUBSYS_1659103C&REV_04
    I have 4 USB-ports, but only one will work, the others don't respond, and I need all four running at the same time. Plus I'd like to have everything in order after I had to re-install Win 7.
    I thank You in advance for any and every help I can get. Just have in mind, that I need the things carved into paper.
    This question was solved.
    View Solution.

    Hi:
    You need these drivers...
    SM Bus Controller;  Install this first and reboot.
    http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=ob-102010-2&cc=us&dlc=en&lc=en...
    Network Controller;
    http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=ob-99014-2&cc=us&dlc=en&lc=en&...
    Universal Serial Bus (USB) Controller;
    http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=ob-100294-2&cc=us&dlc=en&lc=en...
    You will also need this bluetooth driver.
    http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=ob-99500-2&cc=us&dlc=en&lc=en&...

  • This restored my missing apps after belle update (...

    I see a few people with missing Apps after installing Belle, so as I seem to have stumbled upon a solution I thought I'd post it to help a few people out.
    I removed my memory card and then reran the Belle installation process from Nokia Suite.
    All the apps that were missing after the several previous times I ran the update, are now on my phone.
    Hope this works for a few other people too!

    this was the obvious first thing I did. It did not work for me.

Maybe you are looking for

  • Pls help!  update 06-28-2006 erased my library!

    I was given the option to upload my the latest version of ipod and i selected 'update' and then when i went to open my library, it was all erased! i am devastated and hope it isn't gone forever . . . anyone have any advice??

  • 'no vendor assigned' on some lines of cart

    I support a client who uses EBP v 4.0 (SRM 3.0.) They have a problem I am looking at, where a user creates a cart of multiple lines, typically an annual purchase order to cover monthly charges. These lines are all for the same vendor and all using th

  • BAPI Extension - Sales Order(VBAK, VBAP)

    Hi all,           Please help me in the issue .  I have added user custom fields for sales order va01 in header and item . i am using bapi for creating sales order . I need do use Extensionin struture for updating table vbak and vbap. Can anyone brie

  • ES_SAPMV50A-OP of delivery not triggered on WM transfer order in upgrade

    ES_SAPMV50A - enhancement FCODE_BEARBEITEN_03 is not called for delivery when the transfer order is created. earlier system was 4.5, the same config worked in it. however in upgrade, when the WM transfer order is created the output is not generated.

  • Apple mail to pc mail

    How do I send a group contact list from apple mail to a friend with a PC? She uses AOL