[solved] Proper KDEmod3 repository

What is the proper repository for kdemod3?
The current wiki page (Feb 19, 2009) shows the following repository (No X-64 specific repository):
# KDEmod 3
[kdemod-legacy]
Server = http://mirror.rit.edu/kdemod/legacy/i686
Digging thru my notes, I found the following repository:
#kdemod X86-64
[kdemod-legacy]
Server =  http://kdemod.ath.cx/repo/legacy/x86_64
Without going into details, using the wiki repository, messed up both my main Arch64 partition and a fresh Arch64 backup sytem using ext4.  Chakra's web page only showed kdemod3 packages and not a repository for future updates. 
After restoring a very recent image of my primary Arch partition, I was able to update it using the second repository without any problems.  I was also successful in installing kdemod3-base on the fresh Arch partition without any problems.
I was just curious if the wiki is wrong (at least for X_64), or just left out the X_64 repository. or whether I'm missing something very obvious that will get me flamed as in RTFWiki more CAREFULLY!
Last edited by ljshap (2009-03-05 15:41:05)

byte wrote:I think it goes without saying that you're not supposed to use an i686 repo on an x86_64 machine
It was understood, thats why my post asked if the x86_64 repository was just left out of the wiki.
or more generally, that there are certain variable parts in a repo URL.
I try to avoid assumptions, but replacing  the i686  with x86_64 in the wiki repository does seem to work.  I can't tell because the system was up to date.  I guess there are times when you have to make assumptions.

Similar Messages

  • [Solved] Proper method to remove multilib repository?

    I've looked at the sparse Multilib Wiki Page and I have googled to no avail for instructions to properly remove the multilib repository and installed packages from it on my system.
    pacman -Qs lib32*
    Gives me a list of 32 bit packages installed on my machine however I am not versed in how to use a wildcard (*) with pacman -R.
    My general idea of how to go about this is a) remove all 32 bit packages, b) comment out the multilib repo in pacman.conf, c) pacman -Syy
    Any advice?  If I get a working solution I'll edit it into the Wiki Multilib page.
    Last edited by headkase (2013-09-19 10:45:15)

    Ok,
    I ran into troubles with gcc-libs.  The solution to that was to
    # pacman -S gcc-libs base-devel
    Once that was done then I ran your command substitution line and it removed all the 32 bit packages:
    # pacman -R `LANG=C pacman -Sl multilib | grep installed | cut -d ' ' -f 2`
    Then I commented out multilib in
    /etc/pacman.conf
    Then
    # pacman -Syy
    And then in
    /var/lib/pacman/sync
    I deleted multilib.db.
    Then
    # pacman -Sc
    to remove packages that were no longer installed from the cache.
    Thank you very much!
    Last edited by headkase (2013-09-19 11:12:41)

  • [SOLVED] pacman & test repository

    Hi,
    I have two questions:
    1) Where should the testing repository be added in the pacman config? Right now the order of my repositories is default:
    61 [core]
    62 # Add your preferred servers here, they will be used first
    63 Include = /etc/pacman.d/mirrorlist
    64
    65 [extra]
    66 # Add your preferred servers here, they will be used first
    67 Include = /etc/pacman.d/mirrorlist
    68
    69 [community]
    70 # Add your preferred servers here, they will be used first
    71 Include = /etc/pacman.d/mirrorlist
    Where in this order would [testing] go? I'm not sure where it should be placed.
    2) Is there a way to specifically tell pacman which packages I want to be updated in the testing repository? For example, I do not want Apache to be updated from [testing] but I may want Subversion to be updated from that repository.
    Thanks.
    Last edited by void.pointer (2008-09-23 18:14:36)

    skottish wrote:Testing is listed first in makepkg.conf. On the rare occasions that I've used testing this has worked fine. As far as the second request, I would enable testing, update the database, install the package I was looking for (with its dependencies), then disable testing. You could go through all of the work of IgnorePkg =, but I wouldn't bother.
    How about an EnablePkg= ? That would pretty much solve my problem I believe. Why do you mention makepkg.conf? Doesn't it need to be in pacman.conf? I'm confused...
    Adding/Removing stuff from a config file everytime I want to update isn't really something I want to do. I'd rather not use [testing] at all in that case. Gentoo can do this, I was hoping Archlinux could as well.
    Last edited by void.pointer (2008-09-23 15:49:24)

  • [SOLVED] Create local repository

    Hello everyone!
    First of all, I'd like to apologize for the terminology. I'm still not sure about what are the names I should use. That said, here's my problem: I want to set up a local repository to place all the packages I've ever built with makepkg. The main reason that has motivated me to do so is that, when building a package, I often need to install make dependencies, such as, for example, xorg-server-devel. That package in particular comes from xorg-server, which I have built by myself. Thus, if a package required it, I should install the correspondent package (the one I've built), and not the generic one coming from the repositories (this case may not be a good example, but, well, just think about kernel headers).
    In order to set up the repository, I read Allan McRae's articles about makepkg, repo-add and package signing. I generated a key with GPG as explained here, taking the defaults, and added it to the pacman's keyring:
    gpg --export Kalrish > Kalrish.key
    pacman-key -a Kalrish.key
    I also edited /etc/makepkg.conf as follows:
    BUILDENV=(fakeroot !distcc color !ccache check sign)
    Note that I've enabled sign.
    I decided to maintain my "local repository" (please, correct me if I'm not making use of the correct terminology) in /var/abs/local. For that purpose, I edited /etc/makepkg.conf:
    $ grep -m1 PKGDEST /etc/makepkg.conf
    PKGDEST=/var/abs/local
    I then built dhcpcd (which is relatively small), just to try out. makepkg put the package file in /var/abs/local as I intended; then, I did this:
    repo-add 'local.db.tar.gz' 'dhcpcd-5.6.8-3-x86_64.pkg.tar.xz'
    It asked me for the password to unlock my secret key. After entering it, all went well:
    ==> Adding package 'dhcpcd-5.6.8-3-x86_64.pkg.tar.xz'
    -> Adding package signature...
    -> Computing checksums...
    -> Creating 'desc' db entry...
    -> Creating 'depends' db entry...
    ==> Creating updated database file 'local.db.tar.gz'
    And finally added the repo in /etc/pacman.conf (I'm only showing the relevant part of the file):
    [local]
    Server = file:///var/abs/local
    I updated the package databases just fine with pacman -Syy. But, after removing the previously-downloaded packages from /var/cache/pacman/pkg, when trying to install the package:
    $ pacman -Sy dhcpcd
    :: Synchronizing package databases...
    local is up to date
    core is up to date
    extra is up to date
    community is up to date
    multilib is up to date
    :: dhcpcd is in IgnorePkg/IgnoreGroup. Install anyway? [Y/n] y
    warning: dhcpcd-5.6.8-3 is up to date -- reinstalling
    resolving dependencies...
    looking for inter-conflicts...
    Packages (1): dhcpcd-5.6.8-3
    Total Installed Size: 0.23 MiB
    Net Upgrade Size: 0.00 MiB
    :: Proceed with installation? [Y/n] y
    (1/1) checking keys in keyring [######################] 100%
    (1/1) checking package integrity [######################] 100%
    error: dhcpcd: signature from "Kalrish (Kalrish Bäakjen) <[email protected]>" is invalid
    :: File /var/cache/pacman/pkg/dhcpcd-5.6.8-3-x86_64.pkg.tar.xz is corrupted (invalid or corrupted package (PGP signature)).
    Do you want to delete it? [Y/n] n
    error: failed to commit transaction (invalid or corrupted package (PGP signature))
    Errors occurred, no packages were upgraded.
    So it seems that I have not added my key properly. Can anybody please help me? Any answer, even if it explained why I shouldn't be trying to do this or why I should try other alternatives, will be welcomed.
    Best regards,
    Kalrish
    Last edited by Kalrish (2013-06-28 18:26:30)

    drcouzelis wrote:... if you built the package on that machine yourself then all of the dependencies are already installed.
    I was talking about make dependencies, not runtime dependencies. I always build with makepkg -sr :)
    drcouzelis wrote:I hope I'm not being too critical. I just don't want you to work harder than you need to. :)
    Of course not, don't worry.
    Kalrish wrote:Any answer, even if it explained why I shouldn't be trying to do this or why I should try other alternatives, will be welcomed.
    I love thought-provoking answers as well as personal opinions. Who knows when an unexpected explanation may change my mind and make me think different? You're right: it may not be worth it. But, well, you yourself pointed the "elegant" reason out:
    drcouzelis wrote:I think the only benefit of creating a local repository is so you can use "pacman -S" instead of "pacman -U".
    If pacman found the packages by itself, I wouldn't have to execute pacman -U --asdeps for every make dependency that is required by a package - but rather execute makepkg -sr and simply let pacman pick those packages I've built by myself from my local repository, and the rest from the official repos.

  • [Solved] Debian Packaging/Repository

    Hello. I have tried arch in the past, and LOVED it, but I had to leave for that which is unnecessary to explain. So lets get on with the matter at hand. I will be the repository manager for bAdGigabit (Hopefully, In a few months when we get going with it.). A manly iDevice centric community. We maintain a Repository for Cydia, The alternative to the App Store. A Place where you can modify your iPhone, outside the scope of an "App". (Google "barrel 2", "iconoclasm", "initsua", "bAdGB"). Cydia, is infact a front end for the APT front end to Dpkg. Thus, we have to have a Debian style Repository. To manage and Build it, I require the Debian and iphone-os Tool Chains. iphone-os Tool chain resides on the Iphone itself, no need to port it. As for the Debian Repository Tool Chain, That is a must. To be able to build deb's, manage deb's and keep the repository up to date on a daily, if not hourly, basis.
    Infact I have a daily cron job set to search a directory on my computer, look for any .deb's and add them to the repository. This directory is also in the same directory my Dropbox folder, and allows me to update it from school if need be be "cp ~/Dropbox ~/Repo" (Not the actual command, just a stand in)
    Now with this information in your grasp, let me ask the obvious question that you all know is comming. Is there a way to do this on Arch. To have the entire debian packaging system at my disposal, or am I stuck with Linux Mint (UGH).
    Finnaly, failing that, Is there an Arch Linux-Like distribution that is based on Debian/Ubuntu available?
    Last edited by NictraSavios (2011-05-29 18:04:44)

    I ran Gentoo for a while, I tend to build everything from source anyway, Building from source it routine for me. As for the Virtual machine, I find them very slow, and trying to run that Cron job would be very tricky. The script itself would need sleep times, Be bug filled, and subject to the crashes and whims of a Virtualbox.
    Also, I only have 2GB of RAM. I do not like the idea of sharing that and killing performance.
    Last edited by NictraSavios (2011-05-28 16:30:53)

  • [Solved] Install entire repository

    Hello!
    This may sound like a really crazy thing, but I was wondering if it were possible to install every single program in a repository. And if it were possible, how do you do it?
    For example, I want to install every program in the kde4-eyecandy-64 repository. How to do that?
    Last edited by magyckleo (2011-01-21 00:20:31)

    first of all, we don't have such repo. secondly RTFM means read the fine manual and there is no straight way to install all the packages.
    you have to combine pacman -Slq repo + pacman -S -> pacman -S $(pacman -Slq repo)
    more about the options pacman -Sh
    Last edited by wonder (2011-01-20 23:32:37)

  • [Solved] Proper/Preferred Way to Install a Directory into $pkgdir?

    I'm wondering if there are any guidelines on installing directories from an unpacked RPM into my $pkgdir. From what I've seen, it's typically frowned upon to use cp/mv, but install doesn't seem to have an option to recursively copy a directory. Is my current PKGBUILD okay, or should I be using a different command in place of "cp -r"? Thanks!
    My current PKGBUILD looks like this:
    # Contributor: Trevor Turner <turn3r [dot] tr3v0r [at] gmail [dot] com>
    _i686rpm=hpasm-7.7.0-115.sles9.i586.rpm
    _x86_64rpm=hpasm-7.7.0-115.sles9.x86_64.rpm
    pkgname=hpasm
    pkgver=7.7.0_115
    pkgrel=1
    pkgdesc="HP Proliant Server Management Agents and Utilities"
    arch=('i686' 'x86_64')
    url="ftp://ftp.compaq.com/pub/products/servers/supportsoftware/linux/"
    license=('custom')
    makedepends=('rpmextract')
    source=('hpasmd' 'hpasmd.service')
    md5sums=('4efbcaf99d2ad688d5887dd28d48854f' '3249472c2ca273d8c348b8daf0ffd996')
    if [ "${CARCH}" = "x86_64" ]; then
    source+=(ftp://ftp.compaq.com/pub/products/servers/supportsoftware/linux/${_x86_64rpm})
    md5sums+=('812416e7ee25690d55389b1df1b549bb')
    noextract=("${_x86_64rpm}")
    elif [ "${CARCH}" = "i686" ]; then
    source+=(ftp://ftp.compaq.com/pub/products/servers/supportsoftware/linux/${_i686rpm})
    md5sums+=('420e886d6a66eb6cb3fd0671635519ec')
    noextract=("${_i686rpm}")
    fi
    package() {
    cd "$srcdir"
    msg2 "Extracting RPM..."
    rpmextract.sh *.rpm
    msg2 "Installing Files..."
    install -dm 755 "${pkgdir}/usr/lib/systemd/system"
    install -dm 755 "${pkgdir}/usr/sbin"
    install -dm 755 "${pkgdir}/etc/rc.d"
    install -Dm 755 "${srcdir}/hpasmd" "${pkgdir}/etc/rc.d/hpasmd"
    install -Dm 755 "${srcdir}/hpasmd.service" "${pkgdir}/usr/lib/systemd/system/hpasmd.service"
    install -Dm 755 "${srcdir}/sbin/bootcfg" "${pkgdir}/usr/sbin/bootcfg"
    install -Dm 755 "${srcdir}/sbin/hpasmcli" "${pkgdir}/usr/sbin/hpasmcli"
    install -Dm 755 "${srcdir}/sbin/hplog" "${pkgdir}/usr/sbin/hplog"
    install -Dm 755 "${srcdir}/sbin/hpuid" "${pkgdir}/usr/sbin/hpuid"
    cp -r "${srcdir}/opt" "${pkgdir}/"
    ln -s "/opt/compaq/hpasmd/bin/hpasmd" "${pkgdir}/usr/sbin/hpasmd"
    ln -s "/opt/compaq/hpasm/addon/libhpasmintrfc.so.1.0" "${pkgdir}/usr/lib/libhpasmintrfc.so.1.0"
    ln -s "libhpasmintrfc.so.1.0" "${pkgdir}/usr/lib/libhpasmintrfc.so.1"
    ln -s "/opt/compaq/hpasm/addon/libhpev.so.1.0" "${pkgdir}/usr/lib/libhpev.so.1.0"
    ln -s "libhpev.so.1.0" "${pkgdir}/usr/lib/libhpev.so.1"
    Last edited by DarkSniper (2012-07-11 00:20:01)

    cp is tolerated, but make sure that you manually set permissions if necessary.
    Otherwise, create your own functions and paste them in sparingly, e.g.
    function install_dir()
    src_dir_="${1%/}"
    shift
    dst_dir_="${1%/}"
    shift
    src_len_=${#src_dir_}
    find "$src_dir_" -type f -print | while read path_
    do
    rel_path_="${path_:${src_len_}}"
    install "$@" "$path_" "$dst_dir$rel_path_"
    done
    install_dir "$srcdir/$pkgname-$pkgver/foo/lib" "$pkgdir/lib" -Dm 644

  • //solved // pacman local repository problem / testing vs testing

    i have a serious problem with pacman, i hope someone can help me out.
    i've tried to create a local repo and made a really stupid mistake by calling it 'testing' (i used repo-add)
    now if i try to update the system with -Syu I get a flood of warnings for all my packages being newer than platform core etc
    there is obviously a conflict with the usual 'testing' and I couldn't find a way to revert this. repo-remove didn't help either.
    is there a way to fix it?
    tia
    Last edited by JYQ (2013-04-04 10:02:58)

    parazyd wrote:Try editing your pacman.conf and remove it.
    I tried it already. Didn't help.
    jasonwryan, thanks but i have a little experience with pacman. the problem is a confict in the database.
    manpages do not cover this.
    "Creating & Modifying Packages( Discussion and support regarding building packages with makepkg and ABS)
    was a natural choice for the thread because there are people who do the same thing.
    Last edited by JYQ (2013-04-04 10:23:30)

  • [SOLVED]Proper Partitioning for Dual-boot

    I am attempting to dual-boot Windows XP and Arch, except I've left no free space...
    Do I have to reformat?
    Also, a question on windows. It uses 1 partition for everything, then allows you to create logical ones, right?
    Last edited by Haptic (2011-06-22 04:31:38)

    Haptic wrote:
    I am attempting to dual-boot Windows XP and Arch, except I've left no free space...
    Do I have to reformat?
    Also, a question on windows. It uses 1 partition for everything, then allows you to create logical ones, right?
    What Mardoct said about resizing w/ gparted is true, so unless you have the data backed-up, do it as your own risk.  Can you post a screenshot of a gparted map of your drive? 
    As you know, Win needs to be the first partition on the drive.  You are limited to four primary partitions, so if you want more, make three primary partitions, then the rest of the space an an extended partition.  Inside the extended partition, you can add many logical partitions.  I'd recommend doing all this from within gparted.
    My 1 TB drive example:
    /dev/sda1 (primary for windows), 20 gigs
    /dev/sda2 (primary for Arch), 20 gigs
    /dev/sda3 (backup of my Arch partition), 20 gigs
    /dev/sda4 (EXTENDED PARTITION), 873 gigs
    /dev/sda5 (logical for /home), 72 gigs
    /dev/sda6 (logical for /var), 8 gigs
    /dev/sda7 (logical for /boot), 0.11 gigs
    /dev/sda8 (logical for /data), 784 gigs
    /dev/sda9 (logical for swap), 8 gigs
    As a side note, you can also you gparted to copy/paste entire partitions which makes keeping backup very easy.  My /dev/sda3 is a periodic backup of my live Arch partition.
    Last edited by graysky (2009-09-16 11:15:29)

  • Deploying the Scenario with scheduling

    I am trying to depoy the scenario with scheduling using command:
    OdiImportObject -FILE_NAME=<FileName> -WORK_REP_NAME=<workRepositoryName>
    -IMPORT_MODE=SYNONYM_INSERT
    Giving the proper work repository of the environment which i am deploying into.But the scenario gets deployed without the Scheduling component? Can anyone help on this?

    Murphy's Law: If anything can go wrong it will
    A corollary to Murphy's law: When everything fails, read the manual.
    Web application funda: Every web application must have its own context root. So, if wkfsocos is one
    web application then, wkfsocos1 is another web application -
    and hence must have its own context root.
    Hello Aman,
    If you are in E-Commerce version 4.0, then read this
    [ISA_Buildtool document |https://service.sap.com/~sapdownload/011000358700001920472003E/ISA_BuildTool_10.pdf]
    to create a copy of the application in its own context root.
    From your URL pattern I guess you are in E-Commerce version 4.0.
    If you are in E-Commerce 5.0 or above, then the
    [Extension Guide |http://service.sap.com/~sapdownload/011000358700006120622006E/]gives steps to create a copy with its own context root for use in modification.
    (See the chapter on - Creating a project specific Web Application with own context root )
    Both these links require access to SAP Service Marketplace. You can also find the
    documents through /instguides shortcut in Service Marketplace.
    Easwar Ram
    http://www.parxlns.com

  • [SOLVED]Problem with Ubuntu One related python module gi.repository

    So, I have Ubuntu One working on another Arch install, but I just put it on my new laptop today, and it's not working.  Installed with no apparent problems. However, when I try to run
    $ ubuntuone-control-panel-qt
    I get these messages (the last line is the only one that contains an actual error message):
    Traceback (most recent call last):
    File "/usr/bin/ubuntuone-control-panel-qt", line 29, in <module>
    from ubuntuone.controlpanel.gui.qt import main
    File "/usr/lib/python2.7/site-packages/ubuntuone-control-panel/ubuntuone/controlpanel/gui/__init__.py", line 26, in <module>
    from ubuntuone.controlpanel.backend import UBUNTUONE_LINK
    File "/usr/lib/python2.7/site-packages/ubuntuone-control-panel/ubuntuone/controlpanel/backend.py", line 29, in <module>
    from ubuntuone.platform.credentials import CredentialsManagementTool
    File "/usr/lib/python2.7/site-packages/ubuntuone-client/ubuntuone/platform/__init__.py", line 47, in <module>
    from ubuntuone.platform import os_helper
    File "/usr/lib/python2.7/site-packages/ubuntuone-client/ubuntuone/platform/os_helper/__init__.py", line 41, in <module>
    from ubuntuone.platform.os_helper import linux
    File "/usr/lib/python2.7/site-packages/ubuntuone-client/ubuntuone/platform/os_helper/linux.py", line 48, in <module>
    from gi.repository import Gio, GLib
    ImportError: No module named gi.repository
    I read on some Ubuntu site that it might help to reinstall python-gobjects, though the package is different on Arch (which I guess is a given), and it pulled in python3, so, as you might imagine, it didn't work.
    When I run `ubuntuone-launch` or `u1sdtool` I don't get an error, but nothing happens either (no prompt for login).  I searched google and the forums and the wiki, so sorry if I missed something obvious. Don't know anything about python either, beyond "hello-world.py" (and that I had to put parenthesis around the print statement in order to "port my software" to python3)
    Last edited by ninjaaron (2012-10-24 05:12:04)

    I only had python2-gobject2 (well, and python-gobject, and python-gobject2).  Installed python2-gobject and it works now.
    Thanks!
    SOLVED
    Last edited by ninjaaron (2012-10-24 05:27:21)

  • [SOLVED] Error building firefox-aurora from heftig's repository

    I'm currently using the aurora package from heftig's repository at : http://pkgbuild.com/~heftig/aurora/ . No troubles with that so far in the time I've been using it (1-2 days).
    Sometimes I like to rebuild certain packages to get a bit more of performance (don't expecting a huge increase) but this time I can't manage to build this one.
    At some point after spending an hour or so building I get this error and makepkg finishes without building it:
    http://www.pastie.org/2106870
    I have no clue on what does trigger that error and the only thing I can think so far is if there is some kind of script that is somehow tailored to the server where usually the aurora package is build and that is making it fail on my laptop.
    Does anyone experience this or have any clue on what could be causing this error?
    Thank you in advance for your help
    EDIT:
    Building the package in a clean chroot worked. Makes me think about the hosts config file on my system may have some problem. Anyway, solved.
    Last edited by ethail (2011-06-23 23:42:25)

    Ok, i tried to use wiki and build firefox with kde patches and pgo from  AUR repository.
    I followed the instructions form wiki page you kindly provided, but every time i get:
    ==> ERROR: 'pacman' failed to install missing dependencies.
    i think it's complaining  about missing kmozillahelper which is available only in AUR. However i found another repository that includes kmozillahelper package -> no result. Can you give me an advise please?
    Last edited by irrlicht (2011-06-30 23:06:17)

  • HT5484 Hi, I am using "Avenir Heavy" font in my iOS 6 app but when I run it on iOS5 the label on which I am placing Avenir fonts changes lot and I am not getting proper look n feel. How can I solve this issue ?

    Hi, I am using "Avenir Heavy" font in my iOS 6 app but when I run it on iOS5 the label on which I am placing Avenir fonts changes lot and I am not getting proper look n feel. How can I solve this issue ?

    Post your question on the Developer forums:  http://devforums.apple..com

  • [Solved] pacman -Syyu sync's repository and then repoistory.db

    For instance I run 'pacman -Syyu' and it will then sync core, core.db, extra, etra.db and so on a so forth for all the repo's in my pacman.conf. It did not sync the .db on my last install which was up to date unitl I just did a fresh install using the archboot iso. I looked through the pacman.conf a few times and did not see anything obvious wrong to me. <-- not saying much
    I searched this section of the forum going back about 2 months figuring it has to do with signatures and found nothing. So i believe it means that either a) my last setup was incorrect. b) My searching skills are lacking.
    If this is normal that is fine, it doesn't bother me, was just curous about it.
    Cheers.
    Last edited by doug piston (2012-07-27 04:52:08)

    Sure and I apologize for the delay and not includung this information to begin with.
    ┌─[jarvis][watson][~]
    └──╼ sudo pacman -Syyu
    Password:
    :: Synchronizing package databases...
    core 107.7 KiB 146K/s 00:01 [-----------------------------------------------------------------------------------] 100%
    core.sig 4.2 KiB 44.9K/s 00:00 [-----------------------------------------------------------------------------------] 100%
    extra 1408.6 KiB 547K/s 00:03 [-----------------------------------------------------------------------------------] 100%
    extra.sig 4.2 KiB 44.6K/s 00:00 [-----------------------------------------------------------------------------------] 100%
    community 1765.5 KiB 762K/s 00:02 [-----------------------------------------------------------------------------------] 100%
    community.sig 4.2 KiB 42.5K/s 00:00 [-----------------------------------------------------------------------------------] 100%
    multilib 90.6 KiB 148K/s 00:01 [-----------------------------------------------------------------------------------] 100%
    multilib.sig 4.2 KiB 45.6K/s 00:00 [-----------------------------------------------------------------------------------] 100%
    :: Starting full system upgrade...
    resolving dependencies...
    looking for inter-conflicts...
    ┌─[jarvis][watson][~]
    └──╼ cat /etc/pacman.conf
    # /etc/pacman.conf
    # See the pacman.conf(5) manpage for option and repository directives
    # GENERAL OPTIONS
    [options]
    # The following paths are commented out with their default values listed.
    # If you wish to use different paths, uncomment and update the paths.
    #RootDir = /
    #DBPath = /var/lib/pacman/
    #CacheDir = /var/cache/pacman/pkg/
    #LogFile = /var/log/pacman.log
    #GPGDir = /etc/pacman.d/gnupg/
    HoldPkg = pacman glibc
    # If upgrades are available for these packages they will be asked for first
    SyncFirst = pacman
    #XferCommand = /usr/bin/curl -C - -f %u > %o
    #XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
    #CleanMethod = KeepInstalled
    Architecture = auto
    # Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
    #IgnorePkg =
    #IgnoreGroup =
    #NoUpgrade =
    #NoExtract =
    # Misc options
    #UseSyslog
    #UseDelta
    #TotalDownload
    CheckSpace
    #VerbosePkgLists
    ILoveCandy
    # By default, pacman accepts packages signed by keys that its local keyring
    # trusts (see pacman-key and its man page), as well as unsigned packages.
    SigLevel = Optional TrustedOnly
    # NOTE: You must run `pacman-key --init` before first using pacman; the local
    # keyring can then be populated with the keys of all official Arch Linux
    # packagers with `pacman-key --populate archlinux`.
    # REPOSITORIES
    # - can be defined here or included from another file
    # - pacman will search repositories in the order defined here
    # - local/custom mirrors can be added here or in separate files
    # - repositories listed first will take precedence when packages
    # have identical names, regardless of version number
    # - URLs will have $repo replaced by the name of the current repo
    # - URLs will have $arch replaced by the name of the architecture
    # Repository entries are of the format:
    # [repo-name]
    # Server = ServerName
    # Include = IncludePath
    # The header [repo-name] is crucial - it must be present and
    # uncommented to enable the repo.
    # The testing repositories are disabled by default. To enable, uncomment the
    # repo name header and Include lines. You can add preferred servers immediately
    # after the header, and they will be used before the default mirrors.
    #[testing]
    #SigLevel = PackageRequired
    #Include = /etc/pacman.d/mirrorlist
    [core]
    SigLevel = PackageRequired
    Include = /etc/pacman.d/mirrorlist
    [extra]
    SigLevel = PackageRequired
    Include = /etc/pacman.d/mirrorlist
    #[community-testing]
    #SigLevel = PackageRequired
    #Include = /etc/pacman.d/mirrorlist
    [community]
    SigLevel = PackageRequired
    Include = /etc/pacman.d/mirrorlist
    # If you want to run 32 bit applications on your x86_64 system,
    # enable the multilib repositories as required here.
    #[multilib-testing]
    #SigLevel = PackageRequired
    #Include = /etc/pacman.d/mirrorlist
    [multilib]
    SigLevel = PackageRequired
    Include = /etc/pacman.d/mirrorlist
    # An example of a custom package repository. See the pacman manpage for
    # tips on creating your own repositories.
    #[custom]
    #SigLevel = Optional TrustAll
    #Server = file:///home/custompkgs
    Also I was wrong it isn't repository.db but actually repository.sig

  • [solved] kdemod3-gwenview

    FYI... kdemod3-gwenview no longer works due to removal of the libkipi package from extra...
    resolving dependencies...
    error: cannot resolve "libkipi>=0.1.6", a dependency of "kdemod3-gwenview"
    error: failed to prepare transaction (could not satisfy dependencies)
    :: kdemod3-gwenview: requires libkipi>=0.1.6
    I posted this notice to the kdemod forums as well.  Any idea on how to resolve the issue?  I tried installing  libkipi from AUR but kdemod3-gwenview complains about a missing library and I even tried to make a symlink for the missing library but that causes kdemod3-gwenview to segfault.  I actually use kdemod3-gwenview quit often but in the meantime I am currently using mirage.  Thanks in advanced!
    Last edited by BKJ (2009-03-31 06:50:13)

    You are using a KDE3 version. So, you have to install the KDE3 version of libkipi (http://www.kipi-plugins.org), it's the 0.1.6 version. libkipi in AUR is the KDE4 version and was made for the new digikam-slim package I have made in the AUR.
    Just do another libkipi package (e.g. kdemod3-libkipi) and upload it to the AUR. Maybe a starting point for you:
    pkgname=kdemod3-libkipi
    pkgver=0.1.6
    pkgrel=1
    pkgdesc="library for kipi-plugins"
    arch=(i686 x86_64)
    url="http://digikam.sourceforge.net"
    depends=('kdelibs3') #MAYBE THERE MUST BE THE KDEMOD3 PACKAGE, NOT THE OFFICIAL ONE
    provides=('libkipi')
    source=(http://dl.sourceforge.net/sourceforge/kipi/$pkgname-$pkgver.tar.bz2)
    md5sums=('6fd010aa8eab7039143f69543e806c65')
    build() {
    cd $startdir/src/$pkgname-$pkgver
    . /etc/profile.d/qt3.sh
    . /etc/profile.d/kde3.sh
    cd $startdir/src/$pkgname-$pkgver
    ./configure --prefix=/opt/kde --disable-debug --without-arts
    make || return 1
    make DESTDIR=$startdir/pkg/ install

Maybe you are looking for

  • Purchase Order Against Good Receipt PO

    Dear Experts, I want to display PO Against GRPO. I am little bit confused about above query output. For Example : i have an total 10 Items in PO but in GRPO only 6 Items will be there but with using above query i only find matching items records. I w

  • Server_id column in tables fnd_nodes and fnd_application_servers

    Hi, I have a problem in uploading attachments. While following the note Receiving Error "You Are Not Authorized To View This Page" While Adding Attachments [ID 550727.1] I found that the server_id in fnd_nodes and fnd_application_servers do not match

  • Sql*plus worksheet error

    Hi there, I'm using Windows 2000 SP3 with Oracle 9i Database Server release 92010 The sql*pl worksheet work fine several time until now, when I'm clicking on SQL*PL worksheet I'm getting an error message that says: SQL*Plus executable may not have be

  • BW implementation scenarios

    Hi All I'm a rookie in SAP BW. I would appreciate if anyone can give me links or info. on case studies or industry implementations of SAP BW. One specific question I have is, can anyone give me an example of what kind of FI data is extracted from R/3

  • NVIDIA QUANDRO FX 540 CODE 35 ON XW4300 WORKSTATION

    ON THIS XW 4300 WORKSTATION RUNNING WINDOWS 7 64 BIT. ULT. THERE IS A CODE 35 ON THE QUANDRO FX540 THE BIOS VERSION I SEE IS 786D3 VOL.05 (don't really what that is) compared to what I see on the website.  LAST THING I TRIED WAS TO DOWNLOAD THE DRIVE