{SOLVED} Need ld-lsb to build Yandex.Browser package

But I get an error.
==> Building and installing package
==> Making package: ld-lsb 3-7 (Mon Mar 2 12:40:04 YEKT 2015)
==> Checking runtime dependencies...
==> Installing missing dependencies...
[sudo] password for qq:
error: target not found: lib32-glibc
==> ERROR: 'pacman' failed to install missing dependencies.
==> ERROR: Makepkg was unable to build ld-lsb.
==> Restart building ld-lsb ? [y/N]
What's wrong?
https://www.archlinux.org/packages/mult … b32-glibc/
Existing description of package is not garanteed its real existing?
fixed: need connect multilib repo
Last edited by pethead (2015-03-02 10:53:31)

Enable the multilib repository in your pacman config.

Similar Messages

  • I'm suddenly in need of help with my Firefox browser (6.0.2)

    Hi there,
    I'm suddenly in need of help with my Firefox browser (6.0.2)
    (OS: I use Windows XP).
    When I open up the browser, all I see is a completely blank white screen, with all the toolbars at the top.
    I know that my physical connections are fine: I've tested the modem, turned the pc off and on etc. and I can also receive/send emails.
    This problem started today, 8th September, 2011 and has never happened before.
    Is it a coincidence that Firefox updated itself just before I logged off yesterday evening? Could it be something to do with this particular new update?
    I've also noted that just before I "open up" Firefox, I now get a small box saying:
    [JAVASCRIPT APPLICATION]
    Exc In Ev handl: TypeError: This oRoot.enable is not a function
    This has never appeared before - I hope it offers a clue a to what is wrong.
    The Browser is not stuck in Safe Mode, by the way.
    Obviously, I can't search for any solutions to the problem on the internet, as I can't physically see any websites!
    (A friend is sending this query on my behalf from their pc)
    Any light you could throw on this confusing problem would be much appreciated. I'd rather not have to uninstall and reinstall Firefox if possible.
    If the only option is to uninstall Firefox and reinstall it from your site, then I'm also in trouble (I can't see the internet or make any downloads).
    In that case, would you be able to send the .exe file as an attachment to my email address? If so, please let me know and I'll give you further details.
    Many thanks in advance.

    A possible cause is security software (firewall) that blocks or restricts Firefox or the plugin-container process without informing you, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox and the plugin-container process and the updater process.
    See:
    * https://support.mozilla.com/kb/Server+not+found
    * https://support.mozilla.com/kb/Firewalls
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

  • IWeb is not working for sending podcasts to iTunes, so I need a new web building tool. What is the closest thing to iWeb that I can use, which also supports podcasts?

    iWeb is not working for sending podcasts to iTunes, so I need a new web building tool. What is the closest thing to iWeb that I can use, which also supports podcasts?

    There's no reason you can't go on using iWeb for this - with iWeb '08 you have to publish to a local folder (i.e. on your Mac) and then upload the contents of the folder (not the folder itself) to your hosting service: and you have to make sure you enter the new URL in the Publish information or the feed won't work properly; this done, an iWeb podcast should work fine.
    Of course there is still the problem that iWeb is not supported and sooner or later a system upgrade may break it. You could look at RapidWeaver: you can make podcasts with that, though the last time I looked into that - which was admittedly some time back - I didn't feel it was ideal for this. There are lots of other podcast creation programs or services around. WordPress is OK but it may be a bit of a steep learning curve: Libsyn is an online service that seems to work reliably. Blogger writes messy feeds but does usually work. Podcast Maker used to work well - I used it myself a few years back - but it rather looks as if it's gone moribund and it may not be reliable with Lion/Mountain Lion, so you would want to check into that.

  • Need help for flash builder

    i need help for flash builder 4 and papervison 3d. I need to create a slider with it ranges of value from 10 to 50 to adjust the camera values for the camera.fov and also need to create it for the yaw of the object from 0 to 360. I try to look for any slider event and classes in this program but cant find any, btw, i need to use the AS only project file.
    here is my codes:
    can you please tell me how i should modify the codes?
    package
        import flash.display.BitmapData;
        import flash.display.Sprite;
        import flash.events.Event;
        import org.papervision3d.materials.BitmapFileMaterial;
        import org.papervision3d.materials.BitmapMaterial;
        import org.papervision3d.objects.primitives.Sphere;
        import org.papervision3d.view.BasicView;
        [SWF (width="800", height="600", backgroundColor="0x000000",frameRate="30")]
        public class EarthBitmap extends BasicView
            private var sphere:Sphere;
            public function EarthBitmap()
                super(800 , 600);
                var earthmaterial:BitmapFileMaterial = new BitmapFileMaterial("../assets/Earth.jpg");
                sphere = new Sphere(earthmaterial,100,20,18);
                camera.fov = 25;
                scene.addChild(sphere);
                addEventListener(Event.ENTER_FRAME,rotateSphere);
            public function rotateSphere(evt:Event):void
                sphere.yaw(0.2);
                singleRender();

    Turn the click handler into a full on separate function. Then store all the views in an array and use Math.rand() to randomly choose one.
    Something like this:
    <fx:Script>
         <![CDATA[
              var questionsArray:Array = {question2,question3,question5,questionRed,questionGeography};
              function buttonClickHandler(event:MouseEvent){
                   var randomProblem:int = Math.floor(Math.random()*(questionsArray.length));     //generates a random integer between 0 and the total number of questions in the array (arrays are 0-based)
                   navigator.pushView(questionsArray[randomProblem]);
         ]]>
    </fx:Script>
    <s:Button id="randomProblemButton" label="Next Problem" click="buttonClickHandler(event)" />
    Haven't tested that, but something along that line should work

  • What features do you need in a LabVIEW build tool?

    When developing LabVIEW applications, libraries, and components often ones needs many more features than the Application Builder provides. For example:
    * excluding certain directories from the build
    * defining custom destinations for specific source directories
    * optionally convert destination folders to LLBs (or EXEs)
    * adding a Namespace suffix so that all VIs in the built application have globally unique names.
    I have created a tool called the Development Environment Application Builder that addresses many of these problems. I am looking for feedback and suggestions from other LabVIEW developers. I want to
    know what features you need in a LabVIEW build tool.
    I have started a discussion for this topic here.
    You can get more info and download this project here.

    All you can do is turn off the phone.  SMS text messages are sent on the same network as voice calls - there is no way around that.  You cannot change how they are routed.
    iMessgae, will use a wifi connection, when available, but otherwise your text messages will be sent and received over the cellular network.

  • I want to create a SWF for my small web site. How do I do this? Do I need to purchase "Flash Builder"?

    I want to create a SWF for my small web site. How do I do this? Do I need to purchase "Flash Builder"?

    Hi Developer_46038, 
    if for example all the properties and object are stated as list, i think there is a tool that overcome cross list.
    http://listrollup.codeplex.com/
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/13a51be5-4007-46e8-bbb2-5e04320dfebd/cross-list-webpart?forum=sharepointcustomizationlegacy
    you can also using dataview webpart to show the cross lists:
    http://office.microsoft.com/en-us/sharepoint-designer-help/create-a-data-view-HA010094804.aspx
    http://office.microsoft.com/en-us/sharepoint-designer-help/connect-two-data-views-HA010169133.aspx
    3rd party: http://community.bamboosolutions.com/blogs/bambooteamblog/archive/2009/03/11/relational-database-capabilities-for-sharepoint-lists-cross-list-web-part.aspx
    but i am not quite sure how crystal report will do, if you can make the crystal report as also list, i think its possible, 
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/8247edf5-dee8-49d8-b7ee-9e49bfd97b9b/crystal-report-in-sharepoint-2010-webpart?forum=sharepointdevelopmentprevious
    Regards,
    Aries
    Microsoft Online Community Support
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • [SOLVED] need help with virtualbox install

    I'm a relative n00b to Arch, haging migrated from Ubuntu (pha!!). Arch rocks!
    However, my beloved virtualbox isnt playing ball!
    After many hours of getting arch up and running I now need some assitance please with VirtualBox PEUL. I've googled and search these wikis and found:
    http://aur.archlinux.org/packages.php?d … s=0&SeB=nd
    http://www.mail-archive.com/vbox-users% … 02889.html
    http://wiki.archlinux.org/index.php/VirtualBox
    but, I dont know how to install.
    I used yaourt (having spent another many hours trying to get to speed with what Arch AUR is and yaourt!!)
    This is what I did:
    1. Visited http://wiki.archlinux.org/index.php/VirtualBox and followed PEUL instructions...
    2. Click on AUR link and then click on PKGBUILD and it downloaded a PKGBUILD from here http://aur.archlinux.org/packages.php?d … s=0&SeB=nd
    3. Then went back to the wiki http://wiki.archlinux.org/index.php/VirtualBox  and clicked on VirtualBox_1.5.6-1_Linux_x86.run and downloaded the file.
    4. In accordance with the instructions on the wiki, I ran makepkg
    HOWEVER, I get errors!!:
    # makepkg --asroot
    ==> Making package: virtualbox_bin 1.5.6-1 (Thu May 1 20:06:33 BST 2008)
    ==> WARNING: Running makepkg as root...
    ==> Checking Runtime Dependencies...
    ==> Checking Buildtime Dependencies...
    ==> Retrieving Sources...
    -> Found VirtualBox_1.5.6-1_Linux_x86.run in build dir
    -> Found vbox.install in build dir
    -> Found vbox_build_module in build dir
    -> Found vboxnet.patch in build dir
    -> Found interfaces in build dir
    ==> Validating source files with md5sums...
    VirtualBox_1.5.6-1_Linux_x86.run ... FAILED
    vbox.install ... Passed
    vbox_build_module ... Passed
    vboxnet.patch ... Passed
    interfaces ... Passed
    ==> ERROR: One or more files did not pass the validity check!
    This is what is in the downloaded files dir:-
    ls -l
    total 48
    -rw-r--r-- 1 daz users 3642 2008-05-01 20:06 PKGBUILD
    -rw-r--r-- 1 daz users 26055 2008-05-01 20:05 VirtualBox_1.5.6-1_Linux_x86.run
    -rwxrwxrwx 1 nobody nobody 217 2008-01-08 20:58 interfaces
    drwxrwxrwx 2 root root 125 2008-05-01 20:06 src
    -rwxrwxrwx 1 nobody nobody 2717 2008-02-22 18:22 vbox.install
    -rwxrwxrwx 1 nobody nobody 174 2008-02-22 17:45 vbox_build_module
    -rwxrwxrwx 1 nobody nobody 2179 2007-12-30 12:31 vboxnet.patch
    Can anyone help please? In Ubuntu all this was just installed with dpkg -i VirtualBox.deb
    I'm sure Arch is just as "simple" :-)
    Last edited by keratos (2008-05-04 07:54:14)

    grave wrote:Or try the bin file no problem here  yaourt -S virtualbox_bin
    Good idea, I checked this out originally but it didnt work so I went for "manual" install.
    The download from yaourt never starts, just hangs - the server is dead or something?? ...
    # yaourt -S virtualbox_bin
    ==> WARNING: Building unsupported package as root is dangerous.
    Please run yaourt as a non-privileged user.
    ==> Downloading virtualbox_bin PKGBUILD from AUR...
    ==> Last 5 comments ordered by date (asc):
    Comment by: chris_es on 20080414 [17:02:11]
    Hello!
    Thanks a lot for this package :o)
    Just a quick comment about where to copy the Sun .run package. It should be put to where the tarball from AUR was extracted.
    In my case, it is /home/[users]/virtualbox-bin/
    Cheers
    Chris
    Comment by: fi-dschi on 20080419 [22:46:37]
    You may download the run-file at
    https://cds.sun.com/is-bin/INTERSHOP.enfinity/WFS/CDS-CDS_SMI-Site/en_US/-/USD/ViewProductDetail-Start?ProductRef=innotek-1.5.6-G-F@CDS-CDS_SMI
    Comment by: GGLucas on 20080421 [00:40:38]
    Can't get the kernel module working in 2.6.25, vbox_build_module completes fine, but I get the following error:
    $ sudo modprobe vboxdrv
    FATAL: Error inserting vboxdrv (/lib/modules/2.6.25-ARCH/misc/vboxdrv.ko): Unknown symbol in module, or unknown parameter (see dmesg)
    with these messages in dmesg:
    vboxdrv: Unknown symbol change_page_attr
    vboxdrv: Unknown symbol change_page_attr
    Comment by: Geekosaurio on 20080422 [03:54:09]
    Maybe you could find this instructions helpful
    http://www.mail-archive.com/[email protected]/msg02889.html
    I've not tried this myself but I will do it soon and post the info here. Maybe create a separate package for 2.6.25 kernels it's a good idea.
    Comment by: ise on 20080429 [18:12:57]
    The vboxdrv from the mailinglist of virtualbox runs here without problems on 2.6.25 with vbox 1.5.6
    First Submitted: Sun, 11 Mar 2007 00:52:22 +0000
    Last Updated: Fri, 22 Feb 2008 18:26:15 +0000
    virtualbox_bin 1.5.6-1 (Unsupported): Powerful x86 virtualization - binary version (non GPL - free for personal use and evaluation)
    ==> virtualbox_bin dependencies:
    - libidl2 (already installed)
    - libxslt (already installed)
    - qt3 (already installed)
    - e2fsprogs (already installed)
    - sdl (already installed)
    - libstdc++5 (already installed)
    - patch (already installed)
    ==> Edit the PKGBUILD (recommended) ? [Y/n] ("A" to abort)
    ==> ----------------------------------------------
    ==>n
    ==> WARNING: This PKGBUILD contains install file that can be dangerous.
    vbox.install
    ==> Edit vbox.install (recommended) ? [Y/n] ("A" to abort)
    ==> ----------------------------------------------
    ==>n
    ==> Continue the building of 'virtualbox_bin'? [Y/n]
    ==> ----------------------------------------------
    ==>y
    ==> Building and installing package
    ==> Making package: virtualbox_bin 1.5.6-1 (Fri May 2 06:06:28 BST 2008)
    ==> WARNING: Running makepkg as root...
    ==> Checking Runtime Dependencies...
    ==> Checking Buildtime Dependencies...
    ==> Retrieving Sources...
    -> Downloading VirtualBox_1.5.6-1_Linux_x86.run...
    --2008-05-02 06:06:29-- http://195.34.175.98/download/1.5.6/VirtualBox_1.5.6-1_Linux_x86.run
    Connecting to 195.34.175.98:80...
    Last edited by keratos (2008-05-02 05:52:33)

  • Need a script to make the browser fly over the screen, bouncing around

    I have heard about the youareanidiot.org virus. I need a script to make the browser fly over the screen, bouncing around. Do you have one?

    This is a professional forum, we do not help with jokes that will cost you your job.
    Don't retire TechNet! -
    (Don't give up yet - 13,225+ strong and growing)

  • Need Comprehensive Information on Building Interactive Forms in IDCS6

    Need Comprehensive Information on Building Interactive Forms in IDCS6
    Where could I get the most comprehensive training for building interactive forms in IDCS6?
    I need a tutorial that covers all bases from start to finish, and rules that cannot be broken. I thought I learned enough today to write one, but it appears there are holes in my methods as I found out tonight.

    Actually Claudia's course on Lynda.com is about creating forms with Acrobat X Pro, and she completed it before InDesign CS6 was available.
    Anne-Marie Concepcion discussed creating forms in her New Features in InDesign CS6 video on Lynda.com.
    But Sandee Cohen wrote a dynamite article in the current issue of InDesign Magazine about creating forms in InDesign CS6 which is very thorough.  The magazine is not available for free.
    www.indesignmag.com/purchase.php
    The coupon code FRIEND saves $20 off a 1-year subscription.

  • [SOLVED] pypanel-gaps fails to build on syntax error

    i'm trying to install pypanel-gaps from the aur with yaourt, but i can't build it because of a syntax error in the file setup.py:
    ==> Building and installing package
    ==> Making package: pypanel-gaps 2.4-1 (Tue Jun 21 00:59:48 CEST 2011)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Retrieving Sources...
    -> Found PyPanel-2.4.tar.gz
    -> Found pypanel.patch
    ==> Validating source files with md5sums...
    PyPanel-2.4.tar.gz ... Passed
    pypanel.patch ... Passed
    ==> Extracting Sources...
    -> Extracting PyPanel-2.4.tar.gz with bsdtar
    ==> Removing existing pkg/ directory...
    ==> Entering fakeroot environment...
    ==> Starting build()...
    patching file pypanel
    File "setup.py", line 33
    print "\nPyPanel requires the Python X library -"
    ^
    SyntaxError: invalid syntax
    ==> ERROR: A failure occurred in build().
    Aborting...
    ==> ERROR: Makepkg was unable to build pypanel-gaps.
    ==> Restart building pypanel-gaps ? [y/N]
    ==> -------------------------------------
    ==>
    is this considered a bug? is there a way to edit this file in order to fix the syntax error, when using yaourt? i have these versions of python installed: 2, 2.7, 3, 3.2.
    Last edited by roygbiv (2011-06-23 10:20:16)

    Most probably pypanel is a python 2 application. Replace 'python' with 'python2' in both the depends array and within the build function in the PKGBUILD.

  • What's going on with the Chromium browser packages ?

    They are too many !
    1 bin32-cxchromium--> An old chromium package. Do we need it ?
    2 chromium-browser-{buildnumber}~-svn{date}{upstreamrev} --> it's the repackaged deb of a rebuilt svn chromium. 32bit only.
    3 chromium-browser-dev --> OK. it's the same as the previous one + 64bit package. So (2) isn't needed ?
    4 chromium-browser-inspector --> Don't really know what this is.
    5 chromium-continuous / fresh / lkgr --> Don't they provide the same package ? They drag the .zip from build.chromium.org. What if they provide different svn versions? In an experimental browser, don't expect much stability, so why should we have now three different stages of the svn history of chromium ?
    6 chromium-snapshot --> same as chromium-continuous. 32bit only.
    7 chromium-snapshot-64 --> it's the native 64bit package of chromium-snapshot. 64bit only.
    8 chromium-snapshot-64-last --> Don't really know what this is. It seems the same as (7).
    9 chromium-browser-svn -->The only one that provides the source for building.
    Well, they are too many. Some of them provide the same thing, others should be merged.
    What we should need:
    One PKGBUILD to repackage the deb package from ppa launchpad for both architectures. Too difficult to create a PKGBUILD that will (with the aid of wget or curl or even elinks) automatically check the latest version possible.
    One PKGBUILD to repackage the zip package from build.chromium.org. I have a suggestion for this.
    One PKGBUILD to make an archlinux package from sources. It already exists, this should be the base for the future chrome (stable) package.
    Not all of these.
    Just a suggestion
    Last edited by flamelab (2009-09-04 01:13:32)

    VII wrote:
    As far as I'm concern, Chrome is the spy-ware browser...
    But not a spy-ware for a specific type of users, but one for a major company like Google. Which means, you don't have to worry about Credit Card frauds or something like that... There's an old saying: "information is power" - Google being the biggest marketing corporation on the Internet has a very good use for this power. So, they won't harm users in any way, that would be against their "current" interests... They just want to gather data regarding users interests.
    As you all know by now, at current times Internet is the best place for that:
    -you want to buy something, you browse the Internet
    -you're interested in some future gadgets, you browse the Internet
    -you're looking for a specific product (from any domain) you browse the Internet
    -you're looking for a specific place for a vacation, you browse the Internet.
    ... and so on.
    Until Chrome was released, their search engine (Google) and their mail client (Gmail) was a very good tool for that, yet with Google Chrome they have even more control which obviously, can lead to more accurate results. This will increase their profits significantly, as mentioned above - without hurting those involved.
    It's all up to you as user, if you agree with that or not... which is obviously coved by their EULA Yet, I strongly believe 99.9% of all Goggle Chrome users never looked at it (same as they proceed with any EULA).
    ========
    I use Firefox for general usage, yet I also have Chromium installed for YouTube - since under Linux 64 bit flash doesn't work as wanted under Firefox, yet works pretty decent under Chromium. YouTube is also part of Google, so it makes no difference. And yes, I one of those rare people that don't accept their entire policy and also read EULA's.
    and how does your rant against Google add anything to this 7 month old thread which was created only to clarify the hassles about so many chromium packages in AUR
    Last edited by Inxsible (2010-06-23 14:34:05)

  • Flash Builder 4.7 Packages AIR iOS Standard Even Without Changes

    "Note: If you have not changed your code or assets since the last debug IPA package was generated, Flash Builder skips the packaging and debugs the application. That is, you can launch the installed application on your device and click Debug to connect to the Flash Builder debugger. This way, you can debug repeatedly without packaging the application every time."
    This appears to not be working in Flash Builder 4.7.  It always worked fine in 4.6.  Basically it packages the application every single time I click Debug, regardless of whether anything was changed.

    Hi Brent, I've got a bug filed in this thread, including a project where I've isolated the probem to a single swc lib:
    http://forums.adobe.com/message/4703810#4703810
    /David

  • Build server for packages

    Hi, I'm curious is something like http://cook.slitaz.org/, build server where you upload tarball with build scripts from AUR and it produce packages. Would be useful for people using Arch on older, slower computers to test packages not officially supported like razor-qt. Or better ask does Arch Linux have enough finances to support such kind of service.

    One of Arch devs suggests [building and testing packages as a way of helping Arch: http://allanmcrae.com/2013/05/ways-to-c … rch-linux/
    I found somewhat similar idea in the wiki https://wiki.archlinux.org/index.php/Pacbuild but the service doesn't seem to run anymore.

  • Flash Builder 4.5 packaging IOS problem

    I use Flash Builder 4.5 package ios app,
    whn i package IPA "on Desktop" is work
    but "on Device" is not work and no error message
    And I can not choose used  Packaging method "standard" or "fast"

    well it looks like the 2 Premium version are available now as in Order but the 2 std versions are on Preorder.
    are you saying you bought it in the last day and downloaded it ?
    otherwise if you downloaded it a while ago iOS was not supported.

  • I am currently on the Photoshop and lightroom cc bundle, but for my coarse i need InDesign, if i upgrade to full package ($600) do i get that aswell? is it a dramatic difference between the cc and Cs6? would it be better to invest in it, and can i do a pa

    I am currently on the Photoshop and lightroom cc bundle, but for my coarse i need InDesign, if i upgrade to full package ($600) do i get that aswell? is it a dramatic difference between the cc and Cs6? would it be better to invest in it, and can i do a payment plan?

    The complete CC has indesign included in it.
    Regarding your second question: CC is the advanced version of CS6 with advanced & additional features & functions.
    The payment plan for education will suit you the best since you are studying.
    Please refer to Adobe Creative Cloud for students and teachers | Adobe
    Student software discounts, student eligibility | Adobe
    Regards
    Rajshree

Maybe you are looking for

  • Aperture 3 not working after upgrading to OS X Lion.

    Did a clean installation of OS X Lion and the re-installed Aperture. Now I can't see previews of pics in Aperture. Many of the pics would not open either. For the pics that open, I can't edit them as I get an error saying the master picture cannot be

  • CALC 12C - Where did it go?!?  What now?

    I had downloaded a wonderful app "CALC 12C" which was a terrific emulation of the HP 12C calculator, and free. It was from Crimson Research. I still have it on my iPhone, no problem. Yet. What happened? Anyone know? Perhaps more to the point, when Ap

  • Urgent : border in Smartforms

    hi, I hav a Output purchase order where if the line items flows to the second page the borders r not occuring for the last line item in page 1 ....if the line items ends in page 1 then all the borders r proper..y is it so???

  • Hyperlink Removed from List Column Title

    Hi In SharePoint online I have a list which uses a timesheet format.  Therefore, when you open each item it shows you the relevant information in a form format (designed in InfoPath). I was re-ordering the columns and when I set the columns to the or

  • Max HD for Netra T1 AC/DC200?

    I'm trying to find out the largest hard drive the Netra T1 AC/DC 200 will support. All the documentation I come across only lists the "official" sizes. I believe the connector is an 80-pin SCA. Thanks. Edited by: 838558 on Feb 21, 2011 3:55 PM Edited