I guess this is caused by uploading new packages using the burp tool. I'll fix my packages in a little bit. I'm chenxiaolong on the AUR.
Sent from my T-Mobile Samsung Galaxy S4
-------- Original message --------
From: Diego Principe <cdprincipe(a)gmail.com>
Date: 06/26/2013 13:44 (GMT-05:00)
To: "Discussion about the Arch User Repository (AUR)" <aur-general(a)archlinux.org>
Subject: Re: [aur-general] packages without category
Ok, I'll fix my packages.
I'm "Diego" on AUR
*Diego*
2013/6/26 Rob Til Freedmen <rob.til.freedman(a)gmail.com>
> There are 828 packages from 299 maintainers where category is set to 'none'
> - another 209 packages are orphaned.
>
> orphan - Buce
> https://aur.archlinux.org/packages/?C=1&PP=250&SB=m&SO=a&O=0
>
> buhman - gtmanfred
> https://aur.archlinux.org/packages/?C=1&PP=250&SB=m&SO=a&O=250
>
> gtmanfred - Perberos
> https://aur.archlinux.org/packages/?C=1&PP=250&SB=m&SO=a&O=500
>
> Perberos - yhager
> https://aur.archlinux.org/packages/?C=1&PP=250&SB=m&SO=a&O=750
>
> yhager - zosodk69
> https://aur.archlinux.org/packages/?C=1&PP=250&SB=m&SO=a&O=1000
>
> full csv list of packages with category=none (no orphaned listed)
> http://sprunge.us/Necd
>
> This top-20 list counting for nearly 50% of the packages
> 8 masterkorp
> 9 Huulivoide
> 9 zootboy
> 10 spider-mario
> 11 buhman
> 11 kevku
> 11 nbryskin
> 12 eworm
> 13 demonicmaniac
> 15 crocowhile
> 16 Mizuchi
> 16 t-8ch
> 18 taylorchu
> 21 chenxiaolong
> 27 Diego
> 32 gtmanfred
> 33 yhager
> 34 StefanHusmann
> 35 Perberos
> 43 Morfeo
>
> full csv list maintainers with a count of packages with category=none
> http://sprunge.us/BDFD
>
> I think this has no priority but should be fixed nevertheless.
>
Oops, wrong email address.
-------- Forwarded Message --------
From: Ralf Mardorf <ralf mardorf alice-dsl net>
To: aur-general(a)archlinux.org
Subject: Re: [aur-general] How to contribute to AUR?
Date: Wed, 26 Jun 2013 20:08:00 +0200
Thank you :)
On Wed, 2013-06-26 at 19:55 +0200, Chris “Kwpolska” Warrick wrote:
> Where did you get this PKGBUILD template from?
As templates I used
https://aur.archlinux.org/packages/ja/jack-rack-git/PKGBUILD
and
https://aur.archlinux.org/packages/xf/xfce4-whiskermenu-plugin/PKGBUILD
FWIW there's
https://aur.archlinux.org/packages/xf/xfce4-whiskermenu-plugin-git/PKGBUILD
too, but I haven't seen it and I anyway won't contribute with this
PKGBUILD, but maybe audio packages.
> Moreover, you need a closing brace at the end of
> package()
I've done this for the original PKGBUILD, it get's lost during copy,
paste and editing the email. The original PKGBUILD does work.
Regards,
Ralf
Hi :)
I'm new to this list. I'm uncertain, but perhaps I'll maintain audio
packages, however, I've to learn how to do it, so I started with a test
PKGBUILD for a non-audio app I wanted to test.
IIUC what's written at
https://wiki.archlinux.org/index.php/Arch_Packaging_Standards the below
example needs just the following changes to become a valid PKGBUILD:
- I need to remove the # text lines, or should add useful text
- remove # Contributor and add # Maintainer with my real name
- should add an URL
- if it shouldn't build from git/svn... I need to add a checksum
*?*
Regards,
Ralf
$ cat /usr/src/whiskermenu/PKGBUILD
# text : ###############################################################
# text : PKGBUILD for the first time edited on my tablet PC
# text : ###############################################################
# Contributor : Batpackager <info.mardorf(a)rocketmail.com>
pkgname=xfce4-whiskermenu-plugin-git
pkgver=20130626
pkgrel=1
pkgdesc="Alternate Xfce menu"
arch=('i686' 'x86_64')
license=('GPL2')
makedepends=('git' 'cmake')
depends=('xfce4-panel')
provides=('xfce4-whiskermenu-plugin')
conflicts=('xfce4-whiskermenu-plugin')
_gitroot="https://github.com/gottcode/xfce4-whiskermenu-plugin.git"
_gitname="xfce4-whiskermenu-plugin"
build() {
cd "$srcdir"
msg "Connecting to https://github.com/gottcode..."
if [ -d $_gitname ] ; then
cd $_gitname && git pull origin
msg "The local files are updated."
else
git clone --depth 1 $_gitroot
fi
msg "GIT checkout done or server timeout"
msg "Starting make..."
rm -rf "$srcdir/$_gitname-build"
cp -R "$srcdir/$_gitname" "$srcdir/$_gitname-build"
cd "$srcdir/$_gitname-build"
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr
make
}
package() {
cd "$srcdir/$_gitname-build"
make DESTDIR=${pkgdir} install