Change a package to become a dependency of another

i was wondering if i could change a package to be a dependency, Well, i know i could use abs to change PKGBUILD.
But yesterday gnome was upgraded on my machine, and i got an error with a package. I suspected it was because gnome was running, and was a little bit quick just to kill X and install the package explicit. Now i didn't get any error messages, but the package was no longer a dependency of gnome. Could i change that one package to become a dependency of gnome once again?

bender02 wrote:As far as I understood the first three posts, that was exactly the point. That's why I posted the 'language remark', since I gathered that OP wanted to 'have the reason to be installed as a dependency' and not really change the dependency list of anything. But again, maybe I'm wrong.
I interpreted the thread's title and the last line of his post to mean that he wanted it to be handled as if it were a true dependency of gnome (as he claims it used to be):
jerryluc wrote:Could i change that one package to become a dependency of gnome once again?
Only the OP really knows what he wanted though (and maybe not even him, depending on how philosophical you want to get ).

Similar Messages

  • How to change the package name of Managed Bean class

    Hi: Gurus, when ever I create a new JSP page the Creator creates a code behind file with a package name untitled. Is there any way to change this package name? Can't the Creator gives us an option before genereating manged bean page to choose a package name? And then create the Java source directory structure on the basis of the pakcage name?
    Regards,
    Rashid.

    In the Project Navigator (default location is middle right), go to Java Sources, and you can rename the package ("untitled") to something else by right-clicking it or by left-clicking (just like Windows Explorer).
    I agree, though, that giving the developer an option during creation of the JSP page would be nice.

  • Change the "Packaging material category"

    Hi all,
    I'm unable to create an external handling unit because the material has packaging material category "auxiliary packaging material", and I need to change the packaging material category as "packaging material".
    Message Id: HUSELECT047
    Do you know where can I change it?
    Regards,
    Jaime S.

    My problem has been solved. regards

  • How to change the package in a tansport request?

    Hi Abapers,
                     How can I change the "package" of any TR without deleting the TR?

    Who said ? it is wrong.
    you can change package using SE03 ,it is central.
    Simple example ,you have ABAP Program
    Goto SE03 ->select change object direct entries -> click on execute button
    Select first check box -> enter program name -> execute -> now select Line called R3TR  PROG   Program name -> click on
    object directory  ,Now you are able to change Package.
    You can do other things like Function group,table ,data element ,form and so on
    Thanks
    Seshu

  • How to change the package for a report

    Hi can any body tell me the steps to change the package name of a report?
    thanks in advance
    kp

    If you are working on 4.6C,
    Go to SE03-> Object Directory -> Change Object Directory entries
    Execute
    Under Selection by objects give Program of report- click the check box which is there before the program name execute...u will get one more screen
    then place the cursor on the program name of hierarchy and then click the button 'Object directory' which is there in the application tool bar.
    then change the development class.
    I hope the above procedure will help you out.
    Regards,
    Sree
    <b>"Give rewards if this answer helps you out"</b>

  • How to change the package name of View or Window

    Hi all,
    i have created the Webdynpro Application.i have some Views and Windows in the WebDynpro Peoject.i want to change the package Names of Views.is it possible???
    thanks in advance
    regards
    Naidu

    Hi Naidu
        Though you rename the package name, the view in that package refers to the old package and hence that view can be used in other views by including the old package name only. Renaming doesn't have significance that you expect. You can create a new package and views in it and copy the implementation of views from the old package to the views in the new package.
    Regards
    Vijayakhanna Raman

  • Changing message medium of purchase order depending on value of po

    Hi,
    we want to send a purchase order via fax if the netvalue is lower than 1000 EUR. If the value is higher then the po should be printed.
    Is there any Exit or Badi to change the medium of a message depending on the value of a po?
    Regards
    Martin

    Hi Martin,
    Medium of a message is determined by the output condition record and I don't think you can use an exit. You could build a ouput new condition table but PO value is not available as a key.
    You can explore this option.
    Create a new condition table and include an unused field as a key from the list of allowed fields. Find a user-exit in the PO which can update the above field with unique data. Create OCR with for this key combination.
    Cheers !

  • How to change the Package of planning area and datasource to be transportab

    Hi every body,
                       I av created a datasource for the xxx planning area and saved in $tmp which is local package and cannot be transportable .and i would like to transport the planning area along with the data source.But before transporting the planning area along with the data sourse i av to change the package of the data source.I am not able to understand where should i change the package of the planning area and datasouce.
    Can any body help me out of this problem.
    Can be rewarded.
    Shashi

    Hi alaxander,
                    Thanx for your reply but before tranporting a datasource i av to transport the planning area bcoz it is the source.so how can i change the package of the planning area which is in $tmp (local object).
    Regards,
    Shashik

  • Install package as dependency of another package

    Suppose you want to install Package X, which depends on Package Y. You also want to install Package Z, which augments Package X, but is not a dependency of Package X. You run:
    pacman -S X Z
    Now suppose that you no longer want Package X on your system. You run:
    pacman -R X
    Package X is removed. Now you can run:
    pacman -Qdt
    To clean up packages orphaned by Package X. Provided nothing else depends on Package Y, Package Y will be removed.
    All is well and good, except Package Z was not orphaned by Package X. Even though Package Z is (in this hypothetical example) useless without Package X, it won't be removed automatically because it was installed with pacman -S.
    So... is there a way to install Package Z as a dependency of Package X such that, when Package X is removed, Package Z will be orphaned if no other packages depend on it?

    Thank you, rwd, that does the trick. Editing the PKGBUILD is quite reasonable when Package X is in AUR, and for official packages, editing /var/lib/pacman/local/X/depends (not Z/depends) works. The downside is that I have to remember that I want Package Z to behave as a dependency of Package X and tweak Package X every time it is updated. So yes, an --asdepof option would be really swell.
    For venky80 and anyone else who may be interested in this, here's a real-world example. Suppose you want to install loudmouth for use with amarok. If you later decide to uninstall amarok, you would like for loudmouth to be automatically uninstalled as well (unless some other package depends on it). loudmouth is not a depedency of amarok (incidentally it is an optional dependency, but this will work with any package that is not a dependency).
    1. Install amarok
    $ pacman -S amarok
    2. Install loudmouth with --asdeps
    $ pacman -S --asdeps loudmouth
    3. Edit amarok's depends file to make it depend on loudmouth
    3a. Open the file in a text editor
    $ nano /var/lib/pacman/local/amarok*/depends
    3b. Add "loudmouth" under the DEPENDS section; e.g.
    %DEPENDS%
    loudmouth
    mysql>=5.1.34
    kdebase-runtime>=4.2
    taglib
    3c. If loudmouth is an optional dependency of amarok (and it is), remove it from the OPTDEPENDS section.
    3d. Save and close the depends file.
    4. Test to see if it worked
    $ pacman -Qtd
    $ # loudmouth should not be listed
    $ pacman -Rs amarok
    $ # loudmouth should be listed

  • How to change the package name for a msg class

    Can anybody tell me how to change the package name for a message class.
    and how will it effect in the rerport?
    thanks in advance
    kp

    >>and how will it effect in the report?
    You wouldn't see any direct effect on the Report.. But if you transport the report to QA & leave the Message class in Dev, it might result in syntax issues & you will not be able to execute the report. Just ensure that both of them get transported to QA & you will be fine.
    ~Suresh

  • Change Management Package

    Hello All,
    I am looking at the Oracle Change Management package and I see the overall process of baselines, comparisons, and synchronizations.
    I thought in a previous version I was able to put in my own DDL (like an ALTER TABLE) and make that part of a plan that I could then use the Change Management Package to deploy to various databases & schemas.
    Am I mistaken? If not, has the functionality been deprecated or has it been replaced/updated with something else?
    I still have a need to do that sort of thing and having the Change Management package help me manage that would be "optimal".
    Thanks,
    Craig
    11g
    Edited by: user6448213 on Apr 12, 2012 12:59 PM

    Hi Craig:
    Change manager added a capability similar to the one you describe in 12c Cloud Control. You can create a change plan and populate the change plan with specific changes and synchronize them to a destination database. To do this you need to create a change plan in EM and you can populate it with changes from SQL Developer, from another EM Change Manager Comparison, or by capturing a change to a single object. Below is a link to the documentation
    http://docs.oracle.com/cd/E24628_01/em.121/e27046/change_management.htm#EMLCM11813
    regards,
    -Ravi

  • Is there a Java Graphic Package that doesn't depend on DISPLAY?

    Hi
    Is there a Java Graphic Package that doesn't depend on DISPLAY?. I need to generate some images on the web and I can't guarantee that the DISPLAY variable is set correctly.
    Regards,
    N�stor Bosc�n

    Hello,
    Previously to JDK 1.4 the DISPLAYwas mandatory and most of the production Web sites were running a virtual X server (XVFB) take a look to this document
    However using JDK 1.4 or after you should not need to set the display anymore. Java contains now a headless that you set the Java properties java.awt.headless to true (java -Djava.awt.headless=true ...)
    Regards
    Tugdual Grall

  • Hi, I want to change the package

    Hi, I want to change the package
    It has been on automatic payment and information as follows: -
    Skype Name: hooda2010.jeeran
    Product name: Package
    Total amount: EUR9.99
    Transaction date: Apr 11, 2012
    Order number: 602981338
    Order status: Delivered
    But I want to subscribe to another package
    Are as follows: -
    400 Minutes
    of calls per month to Palestinian Territory $ 62.99/month $ 72.44 incl. VAT
    Equivalent to 15.7 ¢ / minute 18.1 ¢ incl. VAT
    Please, I want to close the previous payment order
    And participate in the monthly package
    400 Minutes
    of calls per month to Palestinian Territory $ 62.99/month $ 72.44 incl. VAT
    Equivalent to 15.7 ¢ / minute 18.1 ¢ incl. VAT
    Data package to be closed are: -
    Skype Name: hooda2010.jeeran
    Product name: Package
    Total amount: EUR9.99
    Transaction date: Apr 11, 2012
    Order number: 602981338
    Order status: Delivered
    Thanks
    Note: The balance has not added to my account so far
    Solved!
    Go to Solution.

    If you want to change your subscription then please contact customer service via chat to request a refund for your previous order.
    You'll find the support form to contact us following the steps in the following FAQ:
    https://support.skype.com/en/faq/FA297/How-do-I-request-a-refund
    Once the old subscription is cancelled, please simply purchase the correct one.

  • How do I change the "package" of a Cube?

    Greetings,
    Can anyone tell me how I can change the "package" that is associated with an InfoObject/InfoProvider in B/W?  I assigned it to the package "RS" when I created the objects without realizing that "RS" is a standard SAP package more appropriate for system fixes than it is custom development work.  I would like to reassign these objects to a different, custom package but do not know how.
    Any help is most appreciated and I will assign points !!!
    Thanks,
    Phil

    Hi Sam,
    This seemed to work (going thru SE10).  Thanks for your help.  I think I assigned the points so please check to make sure I did it correctly as I am realtively new to this process and I want to make sure I reward successfully.
    Also, can you provide me any insight you have as to why this worked when the other approaches did not?  What is happening "behind the scenes" within the SAP software?  From what I can tell, it looks like using this approach created a new transport which, when migrated, will simply change the package of the object(s) in the target system.  Is this right?  If I make other changes to the objects before transporting the CTS will those changes be migrated as well?
    Thanks again for all your help on this issue?
    - Phil

  • Change the package of a project in CMOD

    Hi,
    I want to change the name and package of the project created in CMOD which consists of screen exit.
    Can anyone help me out how to change it
    Thanks in advance
    Veda

    hai ramesh....
                   the package / development class of
                   objects, programs, function modules..... whatever it is
                   it is possible to change their packages from any package to any package.
    go to SM30...
    provide table name TADIR...
    click on maintain.
    select ur object by selecting the check box.
    enter ur object i.e table / program / FM name.
    double click on it....
    it will opens the popup window....
    there u can remove the old package name.. and assign ur new package.

Maybe you are looking for

  • I'm going crazy! The order of my text is very much illogical. Help!

    Hello Everyone, I have the strangest problem in illustrator. When I type a symbol in a text; for instance, I try to type "40%" I get "%40". Same thing (but different effect) with a phone number with a plus in front, the + sign is added to the back of

  • Change of sales order

    hi all when i am changing the sales order i am getting this error You are not authorized Message no. ZMSG000 Please advise to solve this Regards Raj

  • -18002 error after Labview 7.1.1 upgrade

    Hi All, It seems like LV 7.1.1 upgrade is very dangerous when you use with Teststand. The existing system runs fine with LV 7.0 and TS 3.1. Now we have upgraded to LV 7.1.1. The LabVIEW adapter was set as LV 7.0 runtime engine previously. Now I could

  • 'Remove Hidden Information' Message

    Hi, I've seen this message a couple of times, each when I tried to close my work.  That's the message box that has 3 options:  *close without removing info *remove info but do not close *remove info then close. That does that message box and the opti

  • Can't open any PNG Files in Fireworks MX2004

    I am unable to open any png files with more than one element in them - eg. text and images. I get a Could not complete your request 'internal error message'. I've re-installed fireworks but this hasn't helped. Please help - this is driving me mad!