Latest mono from testing is corrupt?

checking package integrity...
error: archive mono-1.1.5-1.pkg.tar.gz is corrupted
I know every time someone gets that from a pacman -Syu they tell them to delete the package and run -Syu again, but I don't have it on my system?
(miqorz@tobias arch-packages)$ locate mono-1.1.5-1.pkg.tar.gz
(miqorz@tobias arch-packages)$
Hmm I may just rebuild this from abs to avoid the trouble.

And damn, I can't build the sucker, just errors out..
Hmm, neri. Where are you?

Similar Messages

  • [Solved] Xorg update from testing: display corruption.

    Hello!
    Today I did a update in my system, pacman updated 3 packs:
    [2008-09-08 09:05] upgraded libx11 (1.1.4-3 -> 1.1.5-1)
    [2008-09-08 09:05] upgraded pixman (0.11.8-1 -> 0.11.10-1)
    [2008-09-08 09:05] upgraded xorg-server (1.4.99.906-3 -> 1.5.0-1)
    My display now looks like this:
    You see the stripes?
    I use arch in x64 system with a xpress 200m card (using the open source drivers).
    Someone have in cache the old version?
    Thanks!
    EDIT: Solved, bug from upstream solved in pixman-0.11.10-2
    Last edited by kazuo (2008-09-16 12:13:33)

    I've got the same problem.
    To correct it, downgrade Pixman.:D
    Last edited by DZello (2008-09-08 19:47:16)

  • I try to restore ipad to ios 7.0.4 but the tunes show error ,the ipad could not be restore because the firmware file was corrupt, i have the latest update from itunes and windows and i turn off antivirus and firewall and the error is the same , what i do?

    i try to restore ipad to ios 7.0.4 but the tunes show error ,the ipad could not be restore because the firmware file was corrupt, i have the latest update from itunes and windows and i turn off antivirus and firewall and the error is the same , what i do?, my ipad is show apple logo
    please what i do

    Hello JD_NINJA,
    Thanks for using Apple Support Communities.
    Error 9006 when restoring your iOS device indicates that there is security software on your computer which is preventing connection to the Apple server or your device.  To troubleshoot this issue please follow the directions below.
    Check your security software
    Related errors: 2, 4, 6, 9, 1611, 9006. Sometimes security software can stop your device from communicating with either the Apple update server or with your device.
    Check your security software and settings to make sure that they aren't blocking a connection to the Apple servers.
    Get help with iOS update and restore errors - Apple Support
    When restoring your iPhone, please make sure to follow the directions in the link below to properly restore.
    Restore your device from an iCloud or iTunes backup - Apple Support
    Take care,
    Alex H.

  • Master Child tables how to get the latest rows from both

    Hi,
    Need some help with the sql. I have two tables Master & Child. In my Master table I have multiple rows for the same record and in the child table also multiple rows for the same master row how can I get the latest one's from both.
    For example Data in my Master table looks like
    CONT_ID                  SEQ_NUM        DESCRIPTION
    1                         189             Update 2
    1                         188             Update 1
    1                         187              NewNow in the child table for the same CONT_ID I may have the following rows
    CONT_ID                   UPDATED_DATE                                     STATUS
    1                        3/16/2010 2:19:01.552700 PM                          P
    1                        3/16/2010 12:29:01.552700 PM                         A
    1                        3/16/2010 12:29:01.552700 PM                         P
    1                        3/16/2010 12:19:01.552700 PM                         NIn my final query how can I get the row with seq_num 189 as it's the latest in Master table and from child table the row with status of P as it's the latest one based on the time. Here is the query i have but it returns the latest row from the child table only and basically repeats the master table rows as opposed to one row that is latest from both:
    Thanks

    Hi,
    You can use the analytic ROW_NUMKBER function to find the latest row for each cont_id in each table:
    WITH     got_m_rnum     AS
         SELECT     cont_id,     seq_num,     description
         ,     ROW_NUMBER () OVER ( PARTITION BY  cont_id
                                   ORDER BY          seq_num     DESC
                           ) AS m_rnum
         FROM    master_table
    --     WHERE     ...     -- any filtering goes here
    ,     got_c_rnum     AS
         SELECT     cont_id, updated_date,     status
         ,     ROW_NUMBER () OVER ( PARTITION BY  cont_id
                                   ORDER BY          updated_date     DESC
                           ) AS c_rnum
         FROM    child_table
    --     WHERE     ...     -- any filtering goes here
    SELECT     m.cont_id,     m.seq_num,     m.description
    ,     c.updated_date,     c.status
    FROM     got_m_rnum     m
    JOIN     got_c_rnum     c     ON     m.cont_id     = c.cont_id
                        AND     m.m_rnum     = c.c_rnum
                        AND     m.m_rnum     = 1
    ;If you'd like to post CREATE TABLE and INSERT statements for the sample data, then I could test this.
    If there happens to be a tie for the latest row (say, there are only two rows in the child_table with a certain cont_id, and both have exactly the same updated_date), then this query will arbitrarily choose one of them as the latest.

  • Have anybody copied Queries from "Test" database to "Production database?

    I am looking for the best method to copy queries from one database to another.  From TEST to PRODUCTION.  Other than Copy Express or Copy/Past, is there another recommended approach?  Such as within SQL?

    Hi Alain,
    Copying anything from database A to database B using SQL, means somehow using  SQL command "Insert". Please note that commands like Insert, Update, Delete are NOT SUPPORTED as it might cause data corruption.
    Kind regards
    Mario

  • Install Go-oo from Testing or AUR?

    I just noticed that Go-oo is in the testing repo. I'm not running a testing system. Does it make sense to install Go-oo (if I want to try it) from the testing repo, if I'm not using any other packages from testing? Or would it be better to use the version in AUR?
    I guess I'm wondering both which would produce a better working version of Go-oo in my system and which package is being upgraded more consistently?
    Also is there any prognosis on when Go-oo might be ready for the extra repo?
    Thanks.
    Last edited by cb474 (2009-04-27 09:45:00)

    AndyRTR wrote:For localization just use the vanilla langpack PGBUILDs as proto and change the install path. That should work.
    Thank you, that worked like a charm! :-)
    If someone also wants to localize go-openoffice, here is my PKGBUILD:
    pkgname=go-openoffice-de
    pkgver=3.0.1
    pkgrel=1
    pkgdesc="OpenOffice.org - german language files for go-oo.org"
    arch=('i686' 'x86_64')
    license=('LGPL')
    url="http://www.openoffice.org"
    makedepends=('rpmextract')
    depends=('go-openoffice')
    source=(http://ftp-1.gwdg.de/pub/openoffice/extended/3.1.0rc2/OOo_3.1.0rc2_20090427_LinuxIntel_langpack_de.tar.gz)
    md5sums=('43151ce886665ef794a939c765ac7d3f')
    build() {
    cd ${srcdir}/*native_packed*/RPMS
    for i in *.rpm
    do rpmextract.sh $i
    done
    # install openoffice language files
    mkdir -p ${pkgdir}/usr/lib/go-openoffice-3.0.99.6/basis-link
    cp -R opt/openoffice.org/basis3.1/* ${pkgdir}/usr/lib/go-openoffice-3.0.99.6/basis-link
    cp -R opt/openoffice.org3/* ${pkgdir}/usr/lib/go-openoffice-3.0.99.6/basis-link
    chown root:root -R ${pkgdir}/usr/lib/go-openoffice-3.0.99.6/
    I just altered the name, pkgdesc, depends, source (there's a newer file online now, the old one doesn't exist anymore), md5sums and the install part of course
    I don't know if the pkgver is correct (since it is 3.1.0 RC2) but hey, it works!
    If someone wants to localize it for another language the only thing you have to do is to change the pkgname, source¹ and md5sums line.
    ¹: Choose your langpack .tar.gz file from here: http://ftp-1.gwdg.de/pub/openoffice/extended/3.1.0rc2/
    Just like the vanilla openoffice you have to install the spell and grammar checker afterwards. The file is located here: /usr/lib/go-openoffice-3.0.99.6/share/extension/install
    Thank you very much again Andy. I don't go back to vanilla openoffice
    EDIT: I also don't really care if you split the mono and gstreamer dependencies into other packages (if that is possible). I would install them anyway
    But I don't really get the point why Arch should do this? Openoffice is a fat package, everyone who wants to install knows this... One or two dependencies more don't hurt much in my opinion. So what is bad about mono and/or gstreamer?
    I'm very happy with the features like video support since the Java Media Framework (JMF) isn't available for x86_64 :-(
    Also vanilla openoffice could be placed in AUR so there's a way you can install it without those dependencies.
    Last edited by darie (2009-04-27 23:18:27)

  • How to configure Crystal Report from Test DB to Production DB

    Hi,
    I have a VB/asp.net application that is currently using Oracle DB.
    Now, I'm creating a new Crytal report that will connect using any userID, password, database, servername on runtime.
    When I created the Crystal Report I used the Oracle OLE/DB connection using the test database logon information now I would like to make this  dynamic at form load event which I have my crystal report viewer configured and then pass the dataset regardless if it is coming from test or production database.
    Now, at form load connection using the test database I can see the report properly which I provided with the same logon information when the crystal report was created but when I switch the login using the production database, it doesn't get the correct datasource and logon information and it still uses the test datasource.
    I would appreaciate if you can give me a solution or any links of the previous threads that has similar issue with resolution or any sample that may help.
    Thank you,
    Ryan

    Hi Ryan
    I'd start with these samples:
    csharp_win_dbengine.zip / vbnet_win_dbengine.zip
    csharp_win_subreport_logon.zip / vbnet_win_subreport_logon.zip
    Link to the samples and others is in this wiki: Crystal Reports for .NET SDK Samples - Business Intelligence (BusinessObjects) - SCN Wiki
    Next, I find the Crystal Reports for Visual Studio 2005 Walkthroughs to be an absolute gem (and it applies to all versions of CR and VS).
    And of course, the developer help files:
    SAP Crystal Reports .NET SDK Developer Guide
    SAP Crystal Reports .NET API Guide
    Now, one thing you don't mention is which APIs you are using; CR, or RAS - both of which may be available to you depending on the version of CR and VS you are using... RAS Developer Help files are here:
    Report Application Server .NET SDK Developer Guide
    Report Application Server .NET API Guide
    The RAS APIs are a bit more complicated, but way more powerful. And there is even a utility that will write the DB logon code for you:
    KBA: 1553921 - Is there a utility that would help in writing database logon code?
    Finally, don't forget to search this SCN Space. Search box is in the top right corner. I find using short search string is best. E.g.; 'crystal net logon' will return a number of KBAs (notes), wikis, blogs, etc., etc.
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • After upgrading to Yosemite I have lost iPhoto. It has a cross through it in Finder, but I clicked on it and I was directed to download the latest version from the App store, but it is not available in the Australian store. Can anyone help?

    After upgrading to Yosemite I have lost iPhoto. It has a cross through it in Finder, but I clicked on it and I was directed to download the latest version from the App store, but it is not available in the Australian store. Can anyone please help? I am not an advanced user and I would like my photos back, having had no idea I would lose iPhoto in the upgrade!

    Thanks petermac87...but for some reason, the only purchases showing are OS. So assuming iPhoto is in Mountain Lion, I was hoping to look under Hidden Items there as you suggested, but there is no option for that. Only option is to download Mountain Lion again, not iPhoto specifically. Any ideas welcome!

  • ATI HD3400 in Lenovo T400: xf86-video-ati from testing docking issues

    Hi everyone,
    I have a Lenovo T400 which I exclusively use with the discrete ATI HD3400 graphics chip because I need the DVI output from my Lenovo Advanced Mini Dock to drive a large display. When I recently updated to xf86-video-ati 6.9.0.91-1 (from testing), everytime I start X and the laptop is in the dock, all that happens is that the whole internal screen shows one full-screen color, cycling white->red->green->blue->grey->vertical black/white gradient->horizontal black/white gradient, and the external DVI display is ignored. The internal display is fine when I start X in the undocked state, until I put it into the dock and enable the DVI-out via xrandr (VGA-out seems to work fine, curiously).
    6.9.0-6 (from extra) shows no problems. Pity this happens right now that one can expect more from the open-source drivers due to AMD's publication of the hardware spec...
    Has anyone encountered a similar problem or knows where to file a bug most appropriately?
    Thanks in advance,
    S.

    R00KIE wrote:Why don't you try the ATI binary drivers? Sure they aren't what we all would want them to be but at the current time they have support for more things than the open source drivers.
    Do they support xrandr 1.2 now for using multiple displays easily? Last time I played around with them (in October) this was still a pain and ugly hacks were necessary to get multi-head to work. Otherwise I would have switched long before.

  • Steps for Go Live for Webtools moving from Test to Production

    Further to the useful checklist in the wiki recently supplied by Bryce can I ask for some minor gaps to be filled ( perhaps by inserting a few additional steps in that document)
    I have yet to hit the issues created by a go live implementation but this is only a matter of time...
    I am trying to work out what needs  to occur between having :
    a) a test B1 database successfully synching to a test WT site and db set up
    and
    b) the Production B1 database initially synched to the the live WT live WT db ready to accept the first live transactions.
    1) Copy WT site from test to live location
    2) Change Server config, settings and Tables tabs in Synch Manager click on 'Install Plugin' to add custom fields to Production B1 database
    3) ......
    I am stuck as to what needs to be done to "reset"  the WT back end db and how one goes about this.
    Coupled with this and probably part of the answer is the 'Initialise Synch' button. It would be useful to understand exactly what this does in terms of data  - presumably it is only transactional data - but which tables are affected?
    Also if there's anything else that I might have overlooked in terms of potential pitfalls I'd be grateful for advice - the recent posts regarding product trees and images come to mind.
    Thanks

    First thing is to plan for some downtime in your B1 databases. Nothing more frustrating than having new data come into b1 when you're trying to set this up. So perhaps do this at night or on a weekend when no one is using B1.
    Install Plugin operation adds UDF's, edits the stored proc in b1 db, and creates the queue table, PRX_Transaction_Queue
    Initialize synch runs upgrade scripts(if applicable), deletes all data that has synched from B1 previously(or would synch from Wt to B1, like a test order created in Wt) and inserts all relevant data into the queue table in B1 db. Also the synchid's are reset. It's pretty much the same list as is displayed on the Settings page of the Synch Manager. Please someone correct me if I'm missing something here!
    Pre-requisites:
    - Name the Wt db relevant to its position in the environment. B1Webtools is not the greatest name, it's meant to be a jumping off point. Rename your Wt db in the way that you would for B1. ie WebtoolsLive, WebtoolsTest. Makes things easier
    Two options:
    1) Presuming you have a test Wt db and a test b1 db or even a test Wt db and a production(live) B1 db, you could duplicate the test Wt db and change the synch manager config to point to the B1 live db. Install the "plugin" on the new B1 live db and enter your table mappings. Initialize synch will delete all the data that has synched from B1 test db to Wt db(now live db) and reset the synch id's to zero. These will be populated during the synch. Then Run Synch.
    Caveat: This option is fine if your synch takes a "short" period of time. Short being an hour. If you have say 20,000 business partners with 3 years of order history and 300 lines per order... expect several hours.
    2) Create a test synch profile and a live synch profile in tandem and update only the live synch profile with data. Also, have two web tools websites but work primarily in the live one. The synch manager will auto synch both profiles every time the service runs(set by you)
    When it's go time, copy the live db's over the test db's so you have a test environment exactly matching your live environment.  Now, obviously as soon as new data goes into the live db it's out of synch, but this way you have a test system you can break or use to test upgrades, etc.
    As you might guess, there are a number of ways to go with this. It really does depend on a) how comfortable you are with moving data around in SQL and b) what your setup entails.
    I think the best thing you can do is make it as simple as possible. Don't overthink things and make sure you have a backup of everything before you start.
    Good luck!

  • Latest episode from TV series "Lies

    Latest episode from TV series “Lies & Secrets" hasn’t downloaded automatically per the norm. Tunes wants to charge me the cost of this individual episode as if it doesn’t recognize the Season as Purchased (despite Store’s Season label states Purchased). Checked all the usual points to no avail. This is a recurring problem.
    Episode 1 & 2 from TV series "What on Earth” disappeared from Cloud.

    By 'checked all the usual points' you mean ... ? Does it show in the Purchased link under Quick Links on the right-hand side of the iTunes store homepage for downloading ?
    For the other series, if they are still in your country's store then check to see if you've hidden those episodes : iTunes Store: Hiding and unhiding purchases - Apple Support

  • Transporting an object from testing client to development client

    Hi,
                 This is Sekhar . My question is
      If i transported an object from development client to testing client .After transporting object to testing client i got a bug so that ABAP developer should work on that and how could i modify that bugs in testing client .Is it possible to modify in testing client? Is their any reverse transportation from testing client to development client?
    please give me reply for my question.
    Thanks & Regards
    Sekhar Rao

    Hi Ankesh,
    You said that
    "        If there is a bug then make appropriate changes in DEV and transport the object again.
            Reverse transports are not needed and such paths are not created.   "
    I am asking that my object is in TES client and i need it in my DEV client again to make appropriate changes for bugs i got.then what i had to do.
    please reply  me
    Thanks & Regards
    Sekhar

  • How to XI pick latest file from folder.

    hi,
    I have one folder in that i got almost10 files one by one with some different time period..
    My requirement is Every time XI Will pick latest file from  that folder With out deleting previous file.
    how it is possible.
    Any special configuration in  file adapter may be it is sender or receiver.
    Please Clarify.
    Thanks

    Hi Venkata shiva ,
    agree with Michael
    you can have some java or scripts  that will help you may be change the name of the latest file and that be picked up by your adapter, asuming you have changed settings of your adapter to pick the file with this name.
    Significance : -  this will also not posts your file at the receiver multiple times.
    Thanks and Regards,
    Vishal
    Message was edited by:
            vishal kharat

  • Migrate BQY files from Test to Prod.

    I have published some reports in workspace manually earlier. But, now i have so many reports which i need to migrate from Test to Prod.
    Please suggest the steps, and how to handle the OCE files and Security.
    Version is 11.1.2.1
    windows 2008 server
    Thanks in advance.

    You can use LCM utility to migrate to different env's provided they are on same version.
    http://docs.oracle.com/cd/E17236_01/epm.1112/epm_lifecycle_management.pdf
    Thx

  • Migrate OAF MDS customizations from TEST to PROD from UNIX

    1. Copy the the files of JDEV_USER_HOME/jdevbin to TEST or PROD UNIX mid-tier
    jdevbin/jdev/appslibrt/oamdsdt.jar
    jdevbin/jdev/lib/mdsdt.jar
    jdevbin/mds/lib/mdsrt.jar
    jdevbin/BC4J/lib/collections.jar
    jdevbin/lib/xmlparserv2.jar
    jdevbin/jdev/appslibrt/share.jar
    jdevbin/jdev/appslibrt/uix2.jar
    jdevbin/jdbc/lib/classes12dms.jar
    jdevbin/lib/dms.jar
    jdevbin/jdev/appslibrt/oamdsdt.jar
    2. environment variable for XMLExporter/XMLImporter:
    ($PRO_LIB is the path pointing to the jar files)
    CLASSPATH=\
    $PRO_LIB/jdevbin/jdev/appslibrt/oamdsdt.jar:\
    $PRO_LIB/jdevbin/jdev/lib/mdsdt.jar:\
    $PRO_LIB/jdevbin/mds/lib/mdsrt.jar:\
    $PRO_LIB/jdevbin/BC4J/lib/collections.jar:\
    $PRO_LIB/jdevbin/lib/xmlparserv2.jar:\
    $PRO_LIB/jdevbin/jdev/appslibrt/share.jar:\
    $PRO_LIB/jdevbin/jdev/appslibrt/uix2.jar:\
    $PRO_LIB/jdevbin/jdbc/lib/classes12dms.jar:\
    $PRO_LIB/jdevbin/lib/dms.jar:\
    $PRO_LIB/jdevbin/jdev/appslibrt/oamdsdt.jar
    3. for -mmddir needed in XMLExporter/XMLImporter:
    copy the following files of JDEV_USER_HOME\myhtml\OA_HTML\jrad to TEST or PROD UNIX mid-tier
    JRADElementList.xml
    OAElementList.xml
    UIXElementList.xml
    4. Write a Unix shell script to export from TEST and import to PROD. (You may register it in Oracle apps to let the developers to promote it themselves using the assigned responsibility)
    Notice:
    1. Oracle puts OAF customization together with Oracle seeded customizations. It's impossible to tell them apart just from the OAF MDS document names.
    2. Using responsibility_id in the document name to get the application_id from the apps table, you'll get an different application_id than the application_id in the document name.
    3. The function_id in the document name is not consistent with the function_id in the apps table. The function_id in apps table has null value.

    You may also use a PC to migrate OAF MDS from TEST to PROD. Instead of running an Unix script on the TEST or PROD mid-tier, you may write a batch file and run it on your PC.

Maybe you are looking for