[Solved]All Packages in the AUR

Quick question, is there an automated way to get/download a list of all packages in the AUR? I have been looking at the rpc interface but I have not discovered a way to get a list of all AUR packages.
Thanks
Last edited by Ryujin (2010-11-29 16:03:52)

Thats what I figured
Oh well, worth a shot. I do think it would be nice to have, but I don't think I can present a sufficient argument to request the feature.
So the answer to me question seems to be "no"
Last edited by Ryujin (2010-11-27 17:44:49)

Similar Messages

  • [Solved] Split packages in the AUR?

    Can I not upload a split package to the AUR? I am getting an error when I try to upload this PKGBUILD source package:
    Invalid name: only lowercase letters are allowed.
    PKGBUILD:
    pkgbase=mfs
    pkgname=('mfs-client' 'mfs-chunkserver' 'mfs-master')
    pkgver=1.6.19
    pkgrel=1
    pkgdesc="File system designed for petabyte class clusters crunching mission critical data 24/7"
    license=("GPL3")
    arch=('i686' 'x86_64')
    options=('!libtool')
    url="http://www.moosefs.com/"
    source=("http://www.moosefs.org/tl_files/mfscode/${pkgbase}-${pkgver}.tar.gz"
    "mfsmaster"
    "mfschunkserver"
    "mfsmetalogger"
    "mfscgiserv")
    md5sums=('21a86c7a521c8682868eb8c0b330fb58'
    'e4e260f48b063d7f2bd568fc6230b813'
    '2b5c6d70938add6aa4e859dfbe11e71b'
    '4359c1e0f857a3c5d26e0cb67f8c9d8b'
    '3aa9b98a05d08e1f6256a57746181798')
    build() {
    cd "${srcdir}/${pkgbase}-${pkgver}"
    package_mfs-client() {
    depends=('zlib' 'fuse')
    cd "${srcdir}/${pkgbase}-${pkgver}"
    ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var/lib --disable-mfschunkserver --disable-mfsmaster --disable-mfscgi --disable-mfscgiserv
    make || return 1
    make DESTDIR="${pkgdir}" install || return 1
    rm -rf ${pkgdir}/usr/share/man/man7
    package_mfs-chunkserver() {
    depends=('zlib')
    cd "${srcdir}/${pkgbase}-${pkgver}"
    ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var/lib --disable-mfsmaster --disable-mfsmount --disable-mfscgi --disable-mfscgiserv
    make || return 1
    make DESTDIR="${pkgdir}" install || return 1
    rm -rf ${pkgdir}/usr/share/man/man7
    install -m 755 -D ${srcdir}/mfschunkserver ${pkgdir}/etc/rc.d/mfschunkserver
    package_mfs-master() {
    depends=('zlib')
    cd "${srcdir}/${pkgbase}-${pkgver}"
    ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var/lib --disable-mfschunkserver --disable-mfsmount
    make || return 1
    make DESTDIR="${pkgdir}" install || return 1
    install -D -m0644 README $pkgdir/usr/share/doc/${pkgbase}/README
    install -D -m0644 INSTALL $pkgdir/usr/share/doc/${pkgbase}/INSTALL
    install -D -m0644 NEWS $pkgdir/usr/share/doc/${pkgbase}/NEWS
    install -D -m0644 UPGRADE $pkgdir/usr/share/doc/${pkgbase}/UPGRADE
    install -m 755 -D ${srcdir}/mfsmaster ${pkgdir}/etc/rc.d/mfsmaster
    install -m 755 -D ${srcdir}/mfsmetalogger ${pkgdir}/etc/rc.d/mfsmetalogger
    install -m 755 -D ${srcdir}/mfscgiserv ${pkgdir}/etc/rc.d/mfscgiserv
    find "$pkgdir" -name 'mfscgiserv' -print0 |xargs -0 \
    sed -i -e 's,^#!/usr/bin/env python$,#!/usr/bin/env python2,' \
    -e 's,^#!/usr/bin/python$,#!/usr/bin/python2,'
    Last edited by Ryujin (2010-12-23 03:35:40)

    https://bugs.archlinux.org/task/16394
    And, please use "code" tags...

  • [Solved] Do I need to manually update my -vcs packages in the AUR?

    I've got a few -vcs packages in the AUR (one hg, 3 svn).  Do I need to manually update the versions in the AUR as the code changes, or does this happen automatically?  I know that makepkg updates the version automatically in the local PKGBUILD, but I want to make sure the people using these packages see the new versions in the AUR.
    Last edited by nofrak (2010-11-06 19:03:42)

    You need to do it manually.
    !next

  • Md5 checksums of all packages from the specified directory

    How to check md5 checksums of all packages from the specified directory with pacman?

    karol wrote:It's 4.30 AM, the sun comes up and I'm going to bed.
    Hmmm, the blue sky and violet-pink clouds remind me of Arch homepage ;P
    Hehe, it's a nice feeling, nevertheless.
    @dkorzhevin: here's a script I've made when I needed this:
    #!/bin/bash
    echo -n "" > pkgNotFound
    echo -n "" > pkgSums
    names=`pacman -Slq`
    for name in $names
    do
    versionLine=`pacman -Si $name | grep "Version : "`
    version=`echo -n $versionLine | sed -e 's/Version : //g'`
    md5Line=`pacman -Si $name | grep "MD5 Sum : "`
    md5=`echo -n $md5Line | sed -e 's/MD5 Sum : //g'`
    pkgPath=`find /var/cache/pacman/pkg/ -name $name"-"$version"*"`
    if [ "$pkgPath" = "" ]
    then
    echo "Error: "$name" package not found in cache." >> pkgNotFound
    else
    echo $md5" "$pkgPath >> pkgSums
    fi
    done
    exit 0
    So your output will be located in the file "pkgSums" and it will look like this, these are the checksums that pacman displays, and the paths of your local packages:
    4ce0d40359bfa1a4a0f47a0e53e65fa5 /var/cache/pacman/pkg/acl-2.2.49-1-x86_64.pkg.tar.xz
    24df396b3146d1a203e0d4f4d6edd67b /var/cache/pacman/pkg/ar9170-fw-1.0-2-any.pkg.tar.gz
    8454e0fc947f9c8ce4ac5c39ed6ef165 /var/cache/pacman/pkg/attr-2.4.44-1-x86_64.pkg.tar.gz
    9ef6b0ce43a4660170df21ead2f8e711 /var/cache/pacman/pkg/autoconf-2.65-2-any.pkg.tar.xz
    505fe675565601f6ca803779601837cf /var/cache/pacman/pkg/automake-1.11.1-1-any.pkg.tar.gz
    To check the checksums against the packages, just run md5 with the newly created file, if you get output then something stinks :
    # md5sum -c --quiet pkgSums
    There's another file "pkgNotFound" for the packages which are found in pacman but not on your disk. So make sure you don't have these two files already, in the current directory, containing important information - they will be overwritten.

  • Grub2 theme packages in the AUR don't work [SOLVED]

    I have grub2 installed as per the wiki page.  I can't get the distroballs theme working, just an endless string of reboots.
    EDIT: Nevermind - it would seem as though all the themes in the AUR were written before the grub2 1.98 package made it into [extra] and require a package that has been removed from the AUR.
    Last edited by graysky (2010-11-14 11:16:35)

    I just noticed the same thing. Hope they plan to update them.

  • Lots of arch=('armv6h') package in the AUR [SOLVED]

    I see many threads get closed if asking for help on ARM systems so I think it is not allowed. Is it allowed?
    Last edited by maggie (2013-04-04 11:56:20)

    Support here on the BBS is offered only to Arch-proper—that is, not any of its derivatives (including, but not limited to, those projects which offer support for other platforms). Having said that, the AUR is 100 percent unsupported (by anyone other than the maintainer) anyway, so if a PKGBUILD allows for an unsupported architecture, that shouldn't be a big deal.
    All the best,
    -HG
    Last edited by HalosGhost (2013-04-03 11:27:01)

  • Jar file is not working after deleting all packages from the same directory

    hello
    i have created a jar file named as server.jar in the same directory in which i have all the packages(for which i have created this jar file).This jar file was working correctly when i had all the packages in the same directory.But after deleting all the packages from the same working directory, this jar file is neither working nor giving any error message..
    Please tell me what may be the reason???
    thanks in advanced

    hello
    i have created a jar file named as server.jar in the same directory in which i have all the packages(for which i have created this jar file).This jar file was working correctly when i had all the packages in the same directory.But after deleting all the packages from the same working directory, this jar file is neither working nor giving any error message..
    Please tell me what may be the reason???
    thanks in advanced

  • [solved] How to install the AUR

    I apologise if this question is answered somewhere, but I looked at the wiki pages and I am still confused.
    I am trying to install libreoffice-extension-languagetool
    I am using the command:
    sudo pacman -S libreoffice-extension-languagetool
    I get the message: error: target not found: libreoffice-extension-languagetool
    I understand that this is in the AUR, I can see it here: https://aur.archlinux.org/packages/libr … guagetool/
    I would be most appreciative of any assistance in understanding this specific situation.
    I checked my pacman.conf and found what I thought indicates that the community repositor is enabled:
    [community]
    Include = /etc/pacman.d/mirrorlist
    I am sure I missed something simple.
    Last edited by cprofitt (2015-02-07 18:28:10)

    cprofitt:
    After you get your grip on using AUR via makepkg, you may take a look at yaourt (@ArchWiki). It allows you to automatically rebuild packages when an update is available. It also helps a lot when building a package that has tons of dependencies coming from AUR.
    Note hower that I've put an emphasize "after". While yaourt is a great tool, using it without understanding "the basic way" first is not the wisest idea. Keep ewaller's words in mind: AUR is just a place where people may put a file that basically contains a set of commands to execute. It's just like finding information on a forum on how to compile a package. You wouldn't just blindly copy-paste commands from a forum to your terminal, would you?
    Last edited by mpan (2015-02-07 06:15:07)

  • Want to abandon packages in the AUR interface, but lost my password.

    Some people suggested to adopt some of my (out of date) packages, but I can't log in the AUR interface to abandon theses packages. What should I do ?

    I tried to post to that list but my message is still on hold and waiting for a moderator approval (It's been more than a month), because I'm not member of the list.
    I have no intention to become a member of that list, and people are waiting to adopt my packages.
    It's a shame, there should be a way for TU to orphan packages without any action from the author of the PKGBUILD.

  • [SOLVED]Which package is the Heltivicta font in?

    Which package is the Heltivicta font in? It's apparently missing from my computer.
    Last edited by ShadowKyogre (2009-07-28 19:12:25)

    ShadowKyogre wrote:Which package is the Heltivicta font in? It's apparently missing from my computer.
    The packages, xorg-fonts-100dpi and xorg-fonts-75dpi install the bitmap version of helvetica.  These are probably what you're referring to as they are the core X fonts found on most GNU/Linux and BSD systems.
    You should be aware however that Fontconfig disables the rendering of these fonts by default.  You'll need to tweak your system settings in order to view them (otherwise substitution will occur).  The easiest way to do this is to remove the offending symlink from /etc/fonts/conf.d:
    $ sudo rm /etc/fonts/conf.d/29-replace-bitmap-fonts.conf
    Should you ever wish to restore this rule, you can do so with:
    $ sudo ln -s /etc/fonts/conf.avail/29-replace-bitmap-fonts.conf /etc/fonts/conf.d/29-replace-bitmap-fonts.conf
    Hope this helps.

  • How to reinstall all packages in the system?

    I accidentaly remove whole /usr directory, so all installed apps are gone. I then installed the basic system from the install CD, all user and system configuration leave untouched. pacman even remember what packages were installed, when i try install some of the previously installed packages pacman says: this package is up to date, upgrade anyway Y/n? So all I must do to get my system up and running again is reinstall all previsously installed packages. Is there any way how to do this by a single command? Or some script? I don't want to reinstall all the packages one by one ...
    Last edited by kotyz (2007-07-03 18:27:21)

    Mefju wrote:
    If you're pacman database is not removed, you could use something like this
    #! /bin/sh
    for pkg in $(pacman -Q | cut -d' ' -f1); do
    pacman -S --noconfirm $pkg
    done
    pacman would error out if he's using any non-repo pkgs (like stuff from unsuported AUR)
    working on a script now, will edit when i get it working.
    #!/bin/bash
    pacman -Q | awk '{ print $1 }' > installed.tmp
    for i in $(pacman -Qm | awk '{ print $1 }'); do
    cat installed.tmp | sed "s/^$i\$//;" > installed.tmp.1
    mv installed.tmp.1 installed.tmp
    done
    pacman -S --noconfirm `cat installed.tmp`
    rm installed.tmp
    i think that'll do the trick... just make sure you backup your /etc before hand, it might overwrite stuff.
    Last edited by kano (2007-07-03 19:47:07)

  • [SOLVED] yaourt. packages taken from aur that are from core or extra

    Hi! i have a couple of days ago strange yaourt-pacman behaviour, i mean, when i do -Syu --aur, i get strange
    [aleyscha@aleyscha ~]$ yaourt -S screen
    warning: screen-4.0.3-5 is up to date -- reinstalling
    resolving dependencies...
    looking for inter-conflicts...
    Targets: screen-4.0.3-5
    Total Download Size: 0.45 MB
    Proceed with installation? [Y/n]
    :: Retrieving packages from extra...
    error: failed retrieving file 'screen-4.0.3-5-i686.pkg.tar.gz' from ftp.archlinux.org : Connection timed out
    warning: failed to retrieve some files from extra
    error: failed to commit transaction (unexpected error)
    and in yaourt -Syu --aur for example, i get a lot of packages newer in local than in aur, and some packages i know not even are in aur... for example unshield alsa-plugins and tuxcmd
    ==> Searching for new version on AUR
    alsa-plugins: (local=1.0.15-1 aur=1.0.11-1)
    amidi-plug: (local=0.7-3 aur=0.5-1)
    amule-cvs: up to date
    any2dvd: (local=0.34-3 aur=0.30-2)
    archlinux-xdg-menu: not found on AUR
    archmage: up to date
    aria: (local=1.0.0-4 aur=1.0.0_1.fc8-1)
    astromenace: up to date
    audio-convert: (local=0.3.1.1-2 aur=0.3.1.1-1)
    aumix-gtk: (local=2.8-2 aur=2.8-1)
    aurvote: up to date
    avifile: not found on AUR
    bashburn: (local=2.1.2-3 aur=2.1.2-1)
    bfcommander: up to date
    bin2iso: up to date
    bitefusion: up to date
    bkhive2: up to date
    briquolo: up to date
    tuxcmd: not found on AUR
    tuxcube: up to date
    uif2iso: up to date
    unace: (local=2.5-5 aur=2.5-4)
    units: (local=1.87-1 aur=1.85-1)
    unshield: not found on AUR
    uqm: (local=0.6.2-2 aur=0.5.0-1)
    my /etc/pacman.d/core for example:
    # core: Arch Linux core repository
    # United States
    Server = ftp://ftp.archlinux.org/core/os/i686
    Server = ftp://ftp.nethat.com/pub/linux/archlinux/core/os/i686
    Server = ftp://locke.suu.edu/linux/dist/archlinux/core/os/i686
    Server = ftp://mirrors.unixheads.org/archlinux/core/os/i686
    Server = ftp://ftp-linux.cc.gatech.edu/pub/linux/distributions/archlinux/core/o$
    Server = ftp://mirror.cs.vt.edu/pub/ArchLinux/core/os/i686
    Server = http://mirrors.easynews.com/linux/archlinux/core/os/i686
    Server = ftp://ftp.ibiblio.org/pub/linux/distributions/archlinux/core/os/i686
    # South America
    # - Brazil
    Server = http://archlinux.c3sl.ufpr.br/core/os/i686
    Last edited by leo2501 (2008-03-09 11:16:17)

    What are the versions of your pacman and yaourt?
    There are some updates to all the pacman, yaourt and AUR web pages,
    so can you try this:
    1. upgrade pacman itself first
    2. upgrade yaourt itself, then
    3. and last, try full system upgrade.
    These errors seem familiar, but I have no idea how it disappeared.

  • [Solved] Removing package installed by AUR

    I installed digikam and would like to remove it.
    [burt@bobland ~]$ sudo pacman -Qs digikam
    local/digikam-beta 1.0.0-7
    Digital photo management application for kde
    [burt@bobland ~]$ sudo pacman -Qi digikam
    error: package "digikam" not found
    Because the package is not found, I can't remove it.  But the files are still there.
    [burt@bobland ~]$ sudo pacman -R digikam
    digikam not found, searching for group...
    error: 'digikam': not found in local db
    [burt@bobland ~]$ which digikam
    /usr/bin/digikam
    Last edited by bobland (2009-10-11 23:04:45)

    Read your system's output more carefully. Your pacman -Qs command above shows that the package is called digikam-beta.

  • The "nvidia-beta-ck" aur package and the "linux-ck" package issue?

    I use the linux-ck unofficail repo to install the BFQ scheduler enabled kernel.  Today it upgraded to the 3.8.8 and it updated fine but the 319 nvidia beta drivers weren't installed after the update.  So I reinstalled the nvidia-beta aur package and everything was fine.  Is there a way for it to automatically hook the nvidia drivers into the kernel -- say with dkms or will I need to re-install the drivers everytime the kernel updates.

    I think there's an nvidia-all package in the AUR no?  You can probably modify that to work with the beta package.

  • [SOLVED] Unable to build package Intel-OpenCL-SDK from the AUR

    Good morning,
    I am having some issues in regards to building a package from the AUR: https://aur.archlinux.org/packages/intel-opencl-sdk/
    If I understand correctly this is a 64 bit package, so I made sure that my processor has the LM flag. Also I have checked which kernel I am running:
    >$ uname -m
    x86_64
    When I start building the package it comes up with an error saying:
    ==> ERROR: intel-opencl-sdk is not available for the 'i686' architecture.
    Note that many packages may need a line added to their PKGBUILD
    such as arch=('i686').
    So I went in to the PKGBUILD and changed the line x86_64 to i686. This seemed to started the build, but it does stop working rather soon, giving me the following error:
    ==> Tidying install...
    -> Purging unwanted files...
    -> Compressing man and info pages...
    -> Stripping unneeded symbols from binaries and libraries...
    strip:./opt/intel/opencl-sdk/libOclCpuBackEnd.so: File format not recognized
    /usr/bin/fakeroot: line 181: 846 User defined signal 1 FAKEROOTKEY=$FAKEROOTKEY LD_LIBRARY_PATH="$PATHS" LD_PRELOAD="$LIB" "$@"
    So I do not know where it is going wrong, although it also sounds that my install of Arch might be a bit dodgy as he does not want to build the package with the x86_64 setting ...
    Could somebody shed some light on this matter?
    Last edited by ruurdkrekt (2013-04-04 11:09:00)

    Scimmia wrote:No, it's going to need 64 bit versions of the libs it links to. If you want to use this package, you're going to have to reinstall all of your packages. Probably easiest to start from scratch, to be honest.
    So is it possible to update the dependencies to 64bit and then build this package?
    When I change /etc/pacman.conf to take x86_64 architecture packages:
    Architecture = x86_64
    And I change the flags of /etc/makepkg.conf to x86_64:
    CARCH="x86_64"
    CHOST="x86_64-unknown-linux-gnu"
    CFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2"
    CXXFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2"
    Then when I do pacman -S llvm then it will say:
    error: failed to prepare transaction (package architecture is not valid)
    :: package llvm-3.2-5-i686 does not have a valid architecture
    However I did put everything to x86_64, so where does he get the i686 from?

Maybe you are looking for

  • MacBookPro cannot find my HP wireless printer.

    I have a HP8600 Plus wireless printer. I recently bought a new airport extreme, which is working ok. When I try to reconfigure my printer, my Mac cannot find it. Report says I should disable MAC address. How do I do this?

  • How to read the 'full resolution composite' from a .psd file?

    I'm working with 16-bit .psd files and have the "maximize compatibility" switch turned on in CS2. When a file is saved, a message box appears indicating that PS is generating a "full resolution composite." I'd guess this is stored in the .psd file so

  • Rotating moniters

    I just had an old HP monitor dies on me so I took it in to BBY and they were going to swap it out for me under black tie but you guys don't have one that will rotate from portrait to landscape.   Does anyone know why BBY doesn't have these anymore? d

  • Geography Markup Language

    Is there some api like XSU for XML that allows to obtain the result of a spatial query in GML directly? thank you for your help, null

  • Added security for JSP

    My problem is that I have a JSP page that I do not want the user being able to access without first going through the login process. I do not want them to be able to bookmark the page and then get back there without logging in by clicking on the book