Circular dependency problem

I am trying to install package audacious-gtk2 from AUR.  When I issue makepkg -s, it comes back with:
==> Making package: audacious-gtk2 3.2.4-1 (Wed Jan 16 21:05:00 MST 2013)
==> Checking runtime dependencies...
==> Installing missing dependencies...
error: target not found: audacious-plugins-gtk2
OK, so I download and try to install audacious-plugins-gtk2.  When I issue makepkg -s on it, it comes back with:
==> Making package: audacious-plugins-gtk2 3.2.4-1 (Wed Jan 16 21:04:25 MST 2013)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Installing missing dependencies...
error: target not found: audacious-gtk2>=3.2.4
I see that makepkg has a "-d" option to ignore dependency checks, but it looks dangerous to use.
How do I resolve this predicament?

Alright I've just got to comment, I had to grab the outdated version of that simply for my preservation and amusment later. I love arch, and I enjoy seeing moments like this when someone makes a typo and a package loops. Someday when I'm old I'll be saying "When I was young we had to build from source..."
Last edited by Multimoon (2013-01-18 00:44:41)

Similar Messages

  • Cannot Update Circular Dependency problem

    Hi everyone,
    I wanted to update a few packages but ran into dependency cycle problem.I did pacman -Syu and then tried to update but all in vain.I searched the forum and found some solutions but I am still unable to solve the problem.This is the error message that I get:
    extra is up to date
    community is up to date
    :: The following packages should be upgraded first :
    pacman
    :: Do you want to cancel the current operation
    :: and upgrade these packages now? [Y/n] y
    resolving dependencies...
    warning: dependency cycle detected:
    warning: udev will be installed before its util-linux dependency
    looking for inter-conflicts...
    :: gnupg and gnupg2 are in conflict. Remove gnupg2? [y/N] y
    :: kmod and module-init-tools are in conflict. Remove module-init-tools? [y/N] y
    error: failed to prepare transaction (could not satisfy dependencies)
    :: gcc: requires gcc-libs=4.6.2-5
    I am not sure about the real approach to this problem.I cannot update pacman neither can I delete all the packages to resolve dependencies.
    Any help will be appreciated Thanks.
    Last edited by stp002 (2012-04-06 10:03:48)

    This is really handled in quite alot of threads on the forums already. Simply running:
    # pacman -S pacman
    should fix it for you.
    Additional info about the kmod/module-init-tools warning.

  • Loadjava for circular dependency classes

    Hi,
    Let me explain my problem step by step.
    1. i created a jar file using the command
    jar -cvf DataProcessing.jar ERS
    2. Then i loaded the jar file using
    loadjava -u ERSDEMO/ERSDEMO -f -v -r DataProcessing.jar
    3. DataProcessing.jar contains several java classes. Among them DependentDataProcessing.class instantiates FoodIndexCalc.class, OutsideAirTemperatureCalc.class,...etc. Inturn FoodIndexCalc.class,OutsideAirTemperatureCalc.class,... instantiates DependentDataProcessing.class.
    so while loading the jar file, always loadjava skips these circular dependency files.
    Because of that my program is not running inside oracle. But it runs very well when i run it in JBuilder4.0. I observed JBuilder4.0 creates some dependency files at the time of compilation. May be due to this the program runs in JBuilder4.0, so i tried to load the dependency files also inside the database, but still i got the same problems.
    Pls help me.
    Regards,
    Babu
    null

    hi my e mail is [email protected] i got that problem with the ejbs a session bean calling another one but with a local interface and when i try to deploy it i got the next error: Cannot resolve reference Unresolved Ejb-Ref ejb.Session1Bean/ xxxxx@xxxxx :
    please help me look this is the structure of my project is simple:
    package cox;
    @Stateless
    public class EJB1Bean{
    @EJB
    private EJB2local eJB2Local;
    package cox;
    @Stateless
    public class EJB2Bean{
    how do i must configure the project in the xml in order to run ok?
    thanks for the answers

  • Circular Dependency in data

    Im usiing oracle 9i.
    I have the following table
    create table JOB_DEPENDS
    JOB VARCHAR2(40) not null,
    SUBJOB VARCHAR2(40) not null,
    DEP_JOB VARCHAR2(40) not null,
    DEP_SUBJOB VARCHAR2(40) not null
    sample data:-
    insert into JOB_DEPENDS (JOB, SUBJOB, DEP_JOB, DEP_SUBJOB)
    values ('A', 'SA', 'B', 'SB');
    insert into JOB_DEPENDS (JOB, SUBJOB, DEP_JOB, DEP_SUBJOB)
    values ('B', 'SB', 'C', 'SC');
    insert into JOB_DEPENDS (JOB, SUBJOB, DEP_JOB, DEP_SUBJOB)
    values ('C', 'SC', 'A', 'SA');
    insert into JOB_DEPENDS (JOB, SUBJOB, DEP_JOB, DEP_SUBJOB)
    values ('D', 'SD', 'E', 'SE');
    Commit;
    Based on he above data
    Job A depends on job B to run.
    Job B depends on job C to run.
    Job C depends on job A to run.
    Thus there is circular dependency between the data A->B->C->A.
    I need a sql query to identify the circular dependent data.
    Output of the sql query should be like below
    JOB     SUBJOB     DEP_JOB     DEP_SUBJOB
    A     SA     B     SB
    B     SB     C     SC
    C     SC     A     SA
    In the above example circular dependency is between 3 jobs.
    I need an sql which finds circular dependency between any number of jobs
    Thanks in advance

    Hi,
    Sorry but I was traveling this afternoon and I could not reply immediately.
    You did not explain in the first post that the relation is with job AND subjob with dep_job and dep_subjob.
    Based on he above data
    Job A depends on job B to run.
    Job B depends on job C to run.
    Job C depends on job A to run.Sorry but my crystal ball has broken for longtime :-)
    Anyway I have 2 assumptions that you have to confirm:
    a) No duplicate records (same job, subjob, dep_job, dep_subjob)
    b) Hierarchical relation among records is job=dep_job AND subjob=dep_subjob
    If these assumptions are correct here below is the modifed script:
    SET SERVEROUTPUT ON SIZE UNLIMITED
    DECLARE
       e_infinite_loop  EXCEPTION;
       PRAGMA EXCEPTION_INIT (e_infinite_loop, -01436);
       l_count          INTEGER;
    BEGIN
       FOR c1 IN (SELECT job, subjob, dep_job, dep_subjob FROM job_depends)
       LOOP
          BEGIN
             SELECT COUNT(*)
               INTO l_count
               FROM job_depends j
              START WITH job = c1.job AND subjob=c1.subjob
                     AND dep_job=c1.dep_job AND dep_subjob=c1.dep_subjob
            CONNECT  BY job = PRIOR dep_job AND subjob = PRIOR dep_subjob;
          EXCEPTION
             WHEN e_infinite_loop
             THEN
                DBMS_OUTPUT.PUT_LINE('Infinite loop detected on Job: '|| c1.job ||' '|| c1.subjob ||' '|| c1.dep_job ||' '|| c1.dep_subjob);
          END;
       END LOOP;
    END;
    and the output is:
    Infinite loop detected on Job: A SA B SB
    Infinite loop detected on Job: B SB C SC
    Infinite loop detected on Job: C SC1 A SA
    Infinite loop detected on Job: C SC C SC1
    {code}
    Regards
    Al                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Is this how pacman is supposed to work? (dependency "problem")[SOLVED]

    Hi
    Just did a fresh install of archlinux after buying a new computer.
    Installed some drivers.. kde (and some other stuff)
    Then.. just for the fun of it I removed qt3 with pacman -Rd.
    I was expecting that pacman -Syu would see that a dependency was missing and try to reinstall qt3.
    So I did a pacman -Syu, and what happened? Nothing.. pacman says all is okay, well all is not okay cus kde will not work without qt3.
    Is this how it should work or is this a bug? I checked the manpages for some kind of "install all missing dependencies" but found nothing..
    /Ivan
    Last edited by Fuel (2008-01-23 01:34:22)

    fwojciec wrote:
    That's not how Arch is supposed to work.  Arch is about giving power to the users.  With power comes responsibility, and this responsibility falls on the users in this case.  Remember -- this is a "do it yourself" kind of distribution and so if what I want to do is to screw up my system I should be able to do it in an easy, efficient and elegant way.  This is consistent with the mission statement of the Arch Linux project, this is how Arch works and this is why many of us love it.
    On a personal note, if Arch/pacman tried to hold my hand more, like you suggest it should, I'd be switching to another distro very, very quickly.
    It's not really about trying to get arch/pacman to hold your hand for you. It's more about giving the possibility to recover from a serious mistake. If you can tell me something wrong with adding an option wich checks for missing dependencies on your system and how that particular feature intervenes with "the arch way" - then please do.
    I'm not saying arch is bad, arch is actually the best linux distro I've used so far - but there is something common with almost all distros - you get dependency problems after a while, one way or another.
    Thats why I think there should be a way to resolve such issues.

  • CMS dependency problem

    Post Author: mplunkett
    CA Forum: Deployment
    I installed XI R2 on a Windows 2003 server, specifying an Oracle
    database as the database for the CMS.  This database resides on a
    separate Unix server.  Everything was fine initially, but eventually I
    started getting the following error message:The system WORKSTATION can be contacted, but there is no Central Management Server running at port 6400.   WORKSTATION is obviously not the real name.  It is a Windows XP desktop that was being used by development to test using the same database schema as I was given for the Windows 2003 server installation.  I want to remove this dependency, so that all that matters is my Windows 2003 server and the Unix server.  How is this possible, or do I have to rerun the installation?Thanks,Matthew

    John,
    Wish I could help you but I had the same problem. Not sure why.
    Erik

  • CSS render dependency problems

    We are using portal on a marketing site that has specific rendering requirements which are satisfied by extensive use of CSS. One such requirement is that themes can be used control the leading colour of the page i.e. changes the colour of heading text in page content and the logo in the header. The hope was to use the cascading nature of CSS to override styles so that the lowest level CSS definitions are applied to the page. The problem is that CSSs are being included on pages when they are not required:
    Consider a site with a top level of books each of which has a set of pages beneath, each book is required to have a different leading colour. In Portal a set of themes have been defined which consist of skin definitions containing a link render dependency that point to the CSS with the appropriate colour definitions for that theme. When the theme is applied to a book all of the pages are rendered with that theme. However, when one page within the book requires a different colour this is not achievable, as adding a different theme to one specific page in the book results in it being rendered in all of the pages in that book. When the HTML source is examined it shows that for all pages in the book, both CSSs are declared in the head, in the order in which the pages occur in the book.
    It seems that the render dependencies are being evaluated inside the book and added to all pages, but our expected behaviour is that only the render dependency associated with the active page will be rendered. Is there any way to control this behaviour?
    We are using Portal 10.0 MP1, the CSS files we are using are being served by apache so the render dependency definitions are absolute. As an aside whenever the page is rendered a number of error messages appear in the weblogic log indicating that 'The look and feel resource at base path ... could not be found', this occurs for all of the CSS and script files used on the page even though they appear correctly in the head. I do not know if this is at all related to the issue but we would also like to make sure these errors stop appearing in our logs.

    Hello,
    Set the UL margin so the browsers don't use their defaults.
    IE is less than FF's default.
    ul#navlist {margin: 10px;}
    Adjust as needed.
    Then just get rid of the margin-top:20; in the LI style.
    The menu text does overflow in my FF, as I probably have my
    text size set larger than yours.
    Such is the nature of AP Divs (aka Layers).
    More info at the link below. Scroll down to the section
    entitled "The trouble with Layers: Overflowing Text" to see
    screenshots and the fix.
    http://apptools.com/examples/pagelayout101.php
    Take care,
    Tim

  • Task dependency problem?

    Hi,
    I have an AD already provisioned to user. and on exchange Resource object , for depends on tab I have selected AD. Meaning saying that if user have not requested AD earlier it would raise request for both AD and Exchange.
    But the problem is, I have a user who AD is already provisioned. Now when I request for exchange , its also raising request for AD along side exchange which should not happen. Since, AD is already provisioned and account exists in the target system. Can any one Highlight on whats wrong with my approach.
    Thanks,
    sat

    Hi,
    What I could see that its not doing anything in AD , its simply provisioning Exchange.
    I have selected "AD" as the dependent resource object for Exchange. Also unchecked "Allow Multiple" for AD.
    Have created a user and assigned AD resource.Now when I request for exchange , its also raising request for AD along with exchange and triggering approval process for both AD and Exchange resource. But AD approval process is not affecting anything on Exchange provisioning.
    is this the default behaviour ? If so , is there any way I can avoid this? kindly assist.
    Thanks & Regards
    Inbaa

  • Circular dependency in jars

    Hello All,
    I have my projects are divided into sub-projects and each of them build their own jar files. I use ANT to build the system. So, my build flow goes something like:
    A) A build.xml at the top level (main project builds EAR and other deliverables but only after delegating to 1- Projext X. 2- Project Yl).
    B) A build.xml for sub-project X builds X.jar
    C) A build.xml file for another sub-project Y builds Y.jar. Y is dependent on X.jar
    D) and finally the main project uses these jars to build EAR and other deliverables.
    But now, I have a need to introduce a code in X which would be dependent on Y.jar. But when I am building X.jar the Y.jar will not be available. SO, I was wondering if there is a way in JAR manifest or at the ANT level etc. I can provide the notion that when I'm building project 'X', even though the Y.jar is not available yet but we should be fine?
    I would appreciate any input from ya'll
    Thanks

    Hello,
    I have exactly the same problem, do you find a solution ?
    Thank you

  • Circular dependency

    My session object is not getting GC.
    I do have class whose object is stored in my session object & that class too have reference of session object.
    but when I am droping the session i am making it null so they should get GC but they are not.
    why this might be happening?

    My session object is not getting GC.Someone keeps a reference.
    I do have class whose object is stored in my session
    object & that class too have reference of session
    object.So somewhere, some one is not releasing a reference to the circle. Circular referencing is not a problem for the GC.
    but when I am droping the session i am making it nullUnnecessary. Just let the variable run out of scope.
    so they should get GC but they are not.
    why this might be happening?See above. You still keep a reference somewhere, either to the session object or an object that references the session.

  • Stock Price Add-in - msnsq.exe dependability problem

    I've used msnsq.exe as an Excel add-in to obtain stock prices for years but it recently become "unstable."  Sometimes it works and sometimes it doesn't. I've tried the "USA" & "NSYE" changes
    that have been suggested but that is only a
    very temporary fix. I've  read a lot of "press" about the problem but haven't found a solution.  How do you make it work dependably in Excel 2010 and/or 2013?  Is another Add-in more appropriate now? 
    If so, how can I access it?

    Works OK with XP and Office 2010.
    Also with Win 7 and Office 2007.
    Win 7 and Office 2010 DON'T work together.
    As for 2013 or Windows 8 I would not hold your breath! Microsoft don't care about customers' needs, only selling new systems, like so many companies that only sell you what they want to sell, not what you want to buy!
    I will never buy Microsoft again!

  • [SOLVED]Installing steam in optimus and lib32-libgl dependency problem

    Hello everyone!
    I have a problem concerning the installation of steam under arch_64 on a laptop with Optimus. I have succesfully installed Bumblebee with Nvidia 319.17-2, everything works fine. I have also installed lib32-nvidia-utils which is version 319.17-1. Now I try to install steam:
    [root@VOSTRO onur]# pacman -S steam
    resolving dependencies...
    :: There are 3 providers available for lib32-libgl:
    :: Repository multilib
    1) lib32-mesa-libgl 2) lib32-nvidia-304xx-utils 3) lib32-nvidia-libgl
    Enter a number (default=1):
    The problem arises at this point:
    1) I am using nvidia, so I can't use mesa.
    2) I have installed driver 319.17 with the corresponding util package, so not this one.
    3) I guess this is the answer. But since I am using bumblebee, I checked the wiki page (https://wiki.archlinux.org/index.php/Bumblebee)  and under section 2.1 there is a note:
    Note: Do not install lib32-nvidia-libgl! Bumblebee will find the correct lib32 nvidia libs without it.
    This leaves me confused. What am I supposed to do at this point? Is it a problem on Bumblebee's part? Or since lib-32-nvidia-304xx-utils is legacy now, shouldn't the dependency be updated to include the latest nvidia-utils package 319.17-1? Or am I missing something?
    Any kind of insight will be deeply appreciated.
    NOTE: Just before submitting this post, I learned that there was Optimus support in the beta release of this driver, but in the release notes of the released version contains nothing about Optimus
    http://www.nvidia.com/object/linux-disp … river.html
    so I guess installing Bumblebee was not a mistake?
    Last edited by Pipix (2013-05-17 22:43:22)

    I have pretty much the same problem.
    I went for lib32-mesa-libgl and uninstalled lib32-nvidia-libgl.  Problem was that Steam did not find libgl.so so i had to install lib32-intel-dri too.
    Now steam works but i cannot use the nvidia GPU..... if i set launch options to "primusrun %command%" then dota2 does not launch.
    optirun glxgears works.
    primusrun glxgears works.
    Even all CUDA examples work.
    what could be the problem?
    Last edited by labotsirc (2013-08-26 20:25:32)

  • Dependency problem with unixODBC-devel-2.2.11-7.1.i386

    Hello, guys:
    I got problem when I try to install 11gR1 on my FC15. I have installed unixODBC-devel-2.2.11-1.i386.rpm successfully. But when I tried to install unixODBC-devel-2.2.11-7.1.i386.rpm. An error says:
    error: Failed dependencies:
         unixODBC = 2.2.11-7.1 is needed by unixODBC-devel-2.2.11-7.1.i386
    How can I resolve this problem?
    Thank you in advance.
    Geng

    sorry. I mean, I installed unixODBC package at first.
    The problem is resolved. It was version conflict. I installed unixODBC-2.2.11-1.i386.rpm first, but actually I should install unixODBC-2.2.11-7.1.i386.rpm!
    Thank you all the same. :-)
    Geng

  • DTR dependency problem

    My problem is as follows:
    1)I have created a java DC which contains several classes.
    2)In that DC’s public part, I have created an assembly (by choosing “Can be packaged into other…”) which exposes all of the classes.
    3)I have created a second DC which is a WebDynpro DC.
    4)In the WebDynpro DC I have declared the 1st DC as a “used DC”.
    5)I have built and deployed the Webdynpro DC – this part works fine. However, when we run the webdynpro I get an error that states that the classes from the JAVA DC are not known to the Webdynpro.
    I think that the problem might be that the .jar files are not packaged into the webdynpro .ear file as a result of a bug in the ANT script that is generated in order to package this .ear file.
    I have created a second scenario which uses a J2EE Enterprise Application instead of the WebDynpro. This project too results in an .ear file but this time the .ear DOES include the classes from the JAVA DC.
    Furthermore, I have looked at the build.xml files of both the projects (the webdynpro DC and the Enterprise Application DC). While the Enterprise Application’s build.xml contains the line:
    <copy todir="C:\Documents and Settings\I029211\.dtc\POCCAF\t\644CC03E11A2633C5526B12EC82461DB/jars">
                        <mapper type="flatten"/>
                        <fileset dir="C:\Documents and Settings\I029211\.dtc\POCCAF\DCs\sap.com\xapps\poc\common\_comp\gen\default\public\CommonDataObjects\">
                               <include name="lib/java/."/>
                        </fileset>
    Which is responsible for bundling .jars into the .ear file, the WebDynpro’s script contains no such line (or anything similar).
    That leads us to the conclusion that the problem might be in the generation of the ANT script of the WebDynpro project.

    Did u try adding the referenced DC project name(in the format of <provider name>/<application name>) in the sharing references of the second webdynpro DC? I suppose this should solve the problem.
    Regards
    Shakeel

  • Pacman -Suy gives mod_perl dependency problem

    :: Starting full system upgrade...
    resolving dependencies...
    warning: cannot resolve "perl=5.12.1", a dependency of "mod_perl"
    :: the following package(s) cannot be upgraded due to unresolvable dependencies:
    mod_perl
    Do you want to skip the above package(s) for this upgrade? [y/N] y
    looking for inter-conflicts...
    error: failed to prepare transaction (could not satisfy dependencies)
    :: mod_perl: requires perl=5.12.1

    File a bug report.

Maybe you are looking for

  • Problem with Javascript in WAD Template

    Hello, I have placed zdate_functions.js  in /sap/bw/Mime/Customer/JavaScript/ with the following function... function getDateMMDDYYYY() {var curdate = new Date(); var month = curdate.getMonth(); var day = curdate.getDate();var year = curdate.getFullY

  • How to restore an effect on logic pro 9

    For accident i have deleted an efect called Wah and i dont know how to recover it or even where is the location. need a help from a expert.

  • HELP! Hard Drive constantly whining FAN?

    I believe it's the fan running. It's been doing this for quite some time. Perhaps it is because I have numerous applications open? I have 4 Gigs of ram. The MBP is 2 years old, so it isn't the latest version. (2.4 GHz) Bus speed 800 MHz. How do I sto

  • Notification via eMail and/or worklist

    Hi everyone, We have a requirement that some notifications will need to be send via eMail and worklist and other notification should only be thru worklist only. e.g., Notification FYI - eMail and Worklist Notification Approval - Worklist only Is ther

  • How do you un-attach one picture when you are trying to burn photos on a DAD

    How do you un-attach one or two photos when you are trying to burn a group on to a DVD?