Weird error when installing caps from AUR

I get this error:
==> Starting build()...
Traceback (most recent call last):
  File "./configure.py", line 30, in <module>
    store()
  File "./configure.py", line 20, in store
    print >> f, "_CFLAGS=" + ' '.join (CFLAGS)
TypeError: unsupported operand type(s) for >>: 'builtin_function_or_method' and '_io.TextIOWrapper'
    Aborting...
==> ERROR: Makepkg was unable to build caps
Am i missing some package or something?
I need caps for alsaequal.

Hello, I have exactly the same problem.
So I replaced
type -p python 1>/dev/null && ./configure.py 
by
type -p python2.7 1>/dev/null && ./configure.py
The compilation does not work and I have the following error message:
Lancer la compilation de caps ? [O/n]
==> -------------------------------------
==>
==> Construction et installation du paquet
==> Création du paquet caps 0.4.4-1 (lun. oct. 25 08:28:06 CEST 2010)
==> Vérification des dépendances...
==> Vérification des dépendances pour la compilation...
==> Récupération des sources...
  -> caps_0.4.4.tar.gz trouvé
==> Validation des fichiers sources avec md5sums...
    caps_0.4.4.tar.gz ... Réussite
==> Validation des fichiers sources avec sha256sums...
    caps_0.4.4.tar.gz ... Réussite
==> Extraction des sources...
  -> Extraction de caps_0.4.4.tar.gz avec bsdtar
==> Suppression du répertoire pkg/ existant...
==> Lancement de build()...
Traceback (most recent call last):
  File "./configure.py", line 30, in <module>
    store()
  File "./configure.py", line 20, in store
    print >> f, "_CFLAGS=" + ' '.join (CFLAGS)
TypeError: unsupported operand type(s) for >>: 'builtin_function_or_method' and '_io.TextIOWrapper'
    Abandon...
==> ERROR: Makepkg n'a pas pu construire caps.

Similar Messages

  • Getting an "installer failed to initialize" error when installing CS5 from CD

    Getting an "installer failed to initialize" error when installing CS5 from CD
    Mac OS X Version 10.7.5

    Try using the Adobe Creative Suite Cleaner Tool
    helps resolve installation problems for CS3 thru CS6 and for Creative Cloud
    http://www.adobe.com/support/contact/cscleanertool.html
    If you continue to have problems getting the CD installation to work you can download the trial version of the software thru the page linked below and then use your current serial number to activate it.
    Be sure to follow the steps outlined in the Note: Very Important Instructions section on the download pages at this site or else the download will not work properly.
    CS5:
    http://prodesigntools.com/all-adobe-cs5-direct-download-links.html

  • Error when building programs from AUR

    I had a problem installing screen-git from the AUR.  I kept getting this error message, ./autogen.sh: /bin/sh^M: bad interpreter: No such file or directory, when trying to build this package.
    At first I thought it might just be a problem with the screen-git pkgbuild, but I tried to install something else from AUR and got the same message.   I usually install things with Yaourt, so I thought it may be a problem with that.  I tried to manually install something from the AUR and got the same error. It seems to be affecting anything that needs to be built from source, so I'm wondering if it is a problem with my makepkg.conf.
    I couldn't seem to find anything posted in the forums.  Any help will be appreciated.

    I fixed the problem.  It was only affecting packages from a git repository. I checked and for some reason only on one of my computers, git was setup to add dos newline characters.
    With a simple change to my .gitconfig file, changing autocrlf = false, fixed the problem.   Thanks for everyone's help.

  • Error when installing twitter from ICU

    Hi All
    I am having this annoying problem when installing the twitter app from the iPhone Configuration utility which is used by Enterprise.
    This problem also occurred when I tried to install the twitter app onto iPhone 4S.
    Therefore I have the latest iTunes, lates iPhone configuration utility, the latest IOS 6.1 on my iPhone 5 devices and when I try to install the twitter app I get the following error from the ICU:
    The windows is tiitles INSTALL APP
    The error: Could not install application on device. a signed resource has been added, modified, or deleted.
    The only way to install this app is to go in to setting and install it from withing the iPhone 5.
    I am guessing that the twitter app tha I downloaded clashed with the built in one, maybe.
    If there is an update to twitter I cannot install it.
    Come on APpple please fix this!
    Anyone had similar issue?
    Regards
    FSU IT Support

    I would suggest you try and update to the latest Ovi Store, now called Nokia Store.
    With your phone's browser go to the following address:
    http://lr.ovi.mobi/store/new-symbian-3
    you should then get the option to install the latest Nokia Store client, and this should include new QT files. Corrupt QT files are usually the problem when installations from the Nokia/Ovi Store fails.

  • Error when installing apps from OVI Store on my x7...

    I have trouble installing apps from OVI recently. I pretty often get    ``Installation error``. Ive installed the software update today Its still the same.
    Any segestions ???

    I would suggest you try and update to the latest Ovi Store, now called Nokia Store.
    With your phone's browser go to the following address:
    http://lr.ovi.mobi/store/new-symbian-3
    you should then get the option to install the latest Nokia Store client, and this should include new QT files. Corrupt QT files are usually the problem when installations from the Nokia/Ovi Store fails.

  • Weird error when sending DatagramPackets from a multicastSocket

    hi i got this error when running a program that uses a multicastSocket in different Threads
    the error is java.lang.NullPointerException: null address || null buffer
            at java.net.TwoStacksPlainDatagramSocketImpl.send(Native Method)
            at java.net.DatagramSocket.send(DatagramSocket.java:638)
            at network.Main$LocalServer.runloop(Main.java:363)
            at network.Main$LocalServer.run(Main.java:382)line 363 is
                    DatagramPacket dp=new DatagramPacket(b, 19);
                    System.out.println("LocalServer: Packet created with 19 bytes");
                    sleep(100);
                    SL.send(dp);line 283 is (the run method of LocalServer)
    public void run() {
                runloop();
            }variable SL is created at line 173 in class main.java
    sl=new MulticastSocket(1234);
                System.out.println("local socket created");
                sa=new MulticastSocket(51234);
                System.out.println("global socket created");
                InetAddress g1=InetAddress.getByName("[ff05::1]");
                InetAddress g2=InetAddress.getByName("[ff1e::1]");
                sl.joinGroup(g1);
                System.out.println("local socket group joined");
                sl.setLoopbackMode(true);
                sa.joinGroup(g2);sl is passed to Thread as SL at line 290:
    LocalServer s=new LocalServer(sl);
                s.start();and at line 343
    SL=sl;i am using JDK 1.7.0
    and Netbeans IDE 6.0
    please help me fix this problem!
    thanks in advance for any help

    The DatagramPacket has to be constructed so as to contain the target address.
    MulticastSocket.joinGroup() doesn't help that. It only affects incoming datagrams.

  • Error when installing 0vendor from the Business Content in BW

    Hi,
    We installed 0vendor 4 years ago, but never use it. Now I have a requirement to bring vendor master data from FICO.
    In the custom active A version 0vendor, the 0bpartner is a navigation attribute. In 0bpartner, 0legalform is display attribute. But when I try to install 0vendor, it failed complaining about the 0legalform is a navigation attribute in the 0bpartner infoobject. The error message are
    "Char. 0LEGALFORM is exclusively an attribute (cannot be a navigation attribute)".
    Could anyone point to me what is wrong? how should I fix it? We are on 2004S.
    Thanks!!
    Always assign points to helpful suggestion.

    Hi ,
    Try to install 0vendor with Match or Copy and install check.
    It will compare with exisiting active version and will ask for overwrite. 
    By selecting 'No' to overwrite, you can install 0vendor by retaining existing settings ( display/nav settings ).
    Hope it hepls.
    Regards,
    Aditya

  • [SOLVED] Pacman error when installing Arch from installation cd

    Hey I''ve been checking the wiki, forum and even google and I've found some responses but they don't seem to apply to my problem and I just need a little help.
    I'm at the 4th step "Select Packages" and when I select it I get "Pacman preparation failed!  Check /dev/tty7 for errors"
    the error on tty7 is "pacman:  error while loading shared libraries:  /usr/lib/libalpm.so.4:  cannot read file data:  Input/output error"
    I apologize if this is an easy fix but its been almost a year since I've used arch and I'm a bit spoiled with ubuntu.
    ****The cd was outdated. Burning a new copy fixed it*****
    Last edited by Rabbit (2012-01-03 01:40:33)

    I'm afraid it might be too old.  I'm going to try to burn a new copy tomorrow when I can borrow a friends computer.  I just wanted to make sure I wasn't missing something real simple before I gave up.

  • Update error when installing application from Ovi

    my phone is nokia e72 i instaling app for ovi but sho update errer
    Moderator's notes: The post was edited. A more appropriate subject is provided.

    Expect to see these screens, but should still be functional:
    Happy to have helped forum in a small way with a Support Ratio = 37.0

  • Weird message when installing Solaris from CDROM

    Has anybody see something as follow:
    {0} ok boot cdrom
    Boot device: /pci@7c0/pci@0/pci@1/pci@0/ide@8/cdrom@0,0:f  File and args:
    SunOS Release 5.10 Version Generic_118833-33 64-bit Copyright 1983-2006 Sun Microsystems, Inc.  All rights reserved.
    Use is subject to license terms.
    WARNING: mac_open e1000g0 failed
    WARNING: mac_open e1000g0 failed
    WARNING: mac_open e1000g0 failed
    WARNING: Unable to setup switching mode
    Configuring devices.
    WARNING: bypass cookie failure 71ece
    NOTICE: tavor0: error during attach: hw_init_eqinitall_fail
    NOTICE: tavor0: driver attached (for maintenance mode only)
    NOTICE: pciex8086,105e - e1000g[0] : Adapter 1000Mbps full duplex copper link is  up.What's wrong with the e1000g0 network interface?

    I've had similiar messages on the Solaris Developer Edition with my machine that uses the rtls driver, and I simply ignored it, as it did still connect to the internet. I can't check it right now, as I'm currently running S10 U3 on that machine. If I remember correctly, I did do a sys-unconfig to try to get rid of some of the messages.

  • I have an error when installing apps on my mac from the apple store. It says "return to the purchase page and try again"... I think it is something to do with the installation process itself. I have tried to clear apple store cache, restarted apple s

    I have an error when installing apps on my mac from the apple store. It says "return to the purchase page and try again"... I think it is something to do with the installation process itself. I have tried to clear apple store cache, restarted apple store from debug menu, double checked my apple id account and etc..but doesn't work anyway.

    I'm having the same problem and went as far as to delete and reinstall the AppStore and still no dice.

  • Weird error when clicking on instance- flow from the console

    When I have heavy volume coming in for the bpel server(ex: hundreds of instances generated at a time), I see the following weird error when I am trying to see the instance flow from console:
    Process state off. The process class "BugBAM" (revision "v2004_12_20__61032" ) has not been turned on. No operations on the process or any instances belonging to the process may be performed if the process is off. Please consult your administrator if this process has been turned off inadvertently.
    I didn't do anything to the process to turn the state off. What does this error message mean?
    Thanks, Jenny

    I am assuming that you are using 10.1.2 beta 1. Is that correct? I am wondering if in that version there is a switch that turns a process off when a new version of the process is deployed (this would be a bug because the active process should only be switched to retired).
    Next time you get this error, could you please go to the BPEL Console and check the state of the BPEL process.
    We will try to trace the error message in the source code and try to determine if there are other circumpstances which would generate the same error code.
    Edwin

  • Weird Error When Verifying External HDDs

    Hello
    I'm getting a weird error when verifying my 2 external HDDs. Both give me an "invalid leaf record count" error. But only when I check them with the OSX install cd. If I check them in my user account, they come up OK. Both drives also gave me a "reserved fields in the catalog record have incorrect data" error. Disk Utility was able to fix that error, but not the invalid leaf error. I have tried multiple repairs, but DU says the volume cannot be repaired. The other weird thing is when I ran the first repair, it said 1 HFS Volume Repaired and 1 Volume could not be repaired. I have also tried using Disk Warrior, but it gives a "this volume appears to be formatted with a newer version of the OS" error.
    Both these drives I had plugged into my mom's iMac (running 10.5--my eMac is running 10.3.9) because I had firewire problems back in June. Did 10.5 modify something that has 10.3 mixed up?
    Is there something I can do to fix this or do I need to do another re-install?
    Music Luver
    "+I hear her playing music+..." ~ Barry Manilow

    OS X 10.5 does add additional attributes bits to the file descriptors, so using the drive under 10.5 would be expected to add those additional bits to at least the disk directory plus any modified files.
    When you then check the drives using utilities created prior to OS X 10.5, those older utilities don't understand the additional bits and report then as errors (DU), of the utilities check first and refuse to run if the disk is tagged as from a latter OS version (DW).
    There's a generic warning about mixing older utilities with newer OS versions in Only use Mac OS X 10.4-compatible disk utilities with Mac OS X 10.4 volumes.
    I'd be ready to shrug the error reports off as spurious; however, that DU "corrected" the reserved bits suggests the drive directories will be rewritten again should you again move the drives to a 10.5 computer. Are you seeing any actual problems wiuth reading or writing to the external drives? If not, write it off to 10.5 settings bits that earlier versions ignore; it shouldn't affect your data.

  • Error when install Infrastructure 10g 10.1.2 in Windows2000 server

    My environment:
    RDBMS Version: 10.1.0.3.1
    Operating System and Version: Windows2000 SP4
    Product (i.e., OAS, IAS, etc): 10g AS Release 2
    Product Version: 10.1.2
    JDK Version: 1.4
    I have the folowing error when installing the Infrastructure (in the stage of SSO Configure Assistant):
    Default Subscriber GUID: E0575BDE015C411CAD99BDEF85F79029
    Subscriber Naming attribute: dc
    Default Subscriber Name: server01
    *** Resetting user DN and GUID information ...***
    Done....
    PL/SQL procedure successfully completed.
    No errors.
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.1.0.3.1 - Production
    With the Partitioning, Real Application Clusters, OLAP and Data Mining options
    NLS_LANG character set = WE8MSWIN1252
    NLS_LANG param = AMERICAN_AMERICA.WE8MSWIN1252
    ERROR : Exception while configing SSO DAD :
    oracle.ias.repository.schema.SchemaException: Unable to establish connection to the Oracle Internet Directory Server ldap://myserver.domain.com:3060/. Base Exception : javax.naming.CommunicationException: Request: 1 cancelled
    at oracle.ias.repository.directory.DirectoryReader.connect(DirectoryReader.java:124)
    at oracle.ias.repository.IASSchema.getDBConnect(IASSchema.java:523)
    Please advice.
    Thanks
    Trung

    I don't know much about the 10g Releases yet but I had the same error with 9.0.2.3. The problem is that OID isn't available when it needs to be.
    When you get the error, start OID using the command line then try running the config assistant again.
    Hope this helps
    Alex

  • What is the 0x80070570 error when installing Win7 or Win8 or Win 8.1 on a clean SSD/HDD ?!

    Hello,
    My computer was working perfectly with Win7 for about 2years until I formatted on monday to clean a little bit my drives ... Since then I'm unable to install windows again. I have the 0x80070570 error.
    The complete error message is:
    Windows cannot install required files. The file may be corrupt or missing. Make sure that all files required for installation are available and restart the installation. Error code:0x80070570.
    What is the 0x80070570 error when installing Win7 or Win8 or Win 8.1 on a clean SSD/HDD ?! These versions are full from MSDN.
    What I did already:
    check my RAM (16go gskill)
    remove unnecessary hard drives
    replace my "old" SSD with a clean new one
    remove my sound cards
    remove the mouse and use only keyboard
    reset the BIOS
    check every LED on the motherboard (asus sabertooth z77) and there is no problem
    What are the problems?
    Thanks,
    Adrien.

    Hi,
    If all images cannot be installed, we have a reason to suspect the hardware cause.
    If you use two memory slots to get 16G RAM, I suggest you test with just one (8G) to check the result.
    Alex Zhao
    TechNet Community Support

Maybe you are looking for

  • Subject column doesn't show in Mail

    Installed the latest Security Update last night.  Was using the WideMail plugin.  I was promptly informed I'd no longer be able to use that plugin upon restarting the mail app.  Of course I had to reshow all the columns that were previously displayed

  • Unable to start Idc_admin service

    Hi all, I have a problem when starting the idc_admin service, the service wouldn't to start with error : *(internal) 12.02 10:19:19.234 main !csUnableToInstantiateSystemData* base-exception stack intradoc.common.ServiceException: !csUnableToInstantia

  • Premiere El.  11 crashes

    I am running into the same issue with Premiere El. 11 as I did with imovie.  Every time I am editing a video the program crashes.  Always near the end of the session for maximum frustration.  Can I please get a little help?

  • IMac-restarted in OS 9; now only have ? mark/folder blinking.SUGGESTIONS?

    Hi. After attempting to restart in OS 9, my old graphite iMac SE DV 400 mhz suddenly froze and when I hit the restart buton, all I have now is the dreaded alternate ? mark/ folder symbol and multiple attempts end up the same. Any remedies? Is my hard

  • QuickTime 64 bit

    Hi i wonder if an QuickTime 64 bit version will arrive in future Rendering large iPhone .MOV Video projects the  the applications run out of memory Ihave 64 GB installed but as it is to day QuickTime only supports what a 32bit  application can alloca