[aur-general] Missing Packages
Missing i686 Packages: No new package supplied for cherokee 0.99.10-1! No new package supplied for cherokee 0.99.10-1! -- This is an automated message. If you wish to stop receiving it twice a day, fix the package(s).
Re: [aur-general] Integrity Check community x86_64 10-04-2009
On Fri, Apr 10, 2009 at 4:15 PM, wrote: > > Missing PKGBUILDs > --- > /srv/abs/rsync/x86_64//community/CVS > /srv/abs/rsync/x86_64//community/daemons/CVS > /srv/abs/rsync/x86_64//community/devel/CVS > /srv/abs/rsync/x86_64//community/editors/CVS > /srv/abs/rsync/x86_64//community/emulators/CVS > /srv/abs/rsync/x86_64//community/games/CVS > /srv/abs/rsync/x86_64//community/gnome/CVS > /srv/abs/rsync/x86_64//community/i18n/CVS > /srv/abs/rsync/x86_64//community/kde/CVS > /srv/abs/rsync/x86_64//community/lib/CVS > /srv/abs/rsync/x86_64//community/lib/haskell-cabal/CVS > /srv/abs/rsync/x86_64//community/lib32/CVS > /srv/abs/rsync/x86_64//community/modules/CVS > /srv/abs/rsync/x86_64//community/multimedia/CVS > /srv/abs/rsync/x86_64//community/multimedia/brasero/CVS > /srv/abs/rsync/x86_64//community/network/CVS > /srv/abs/rsync/x86_64//community/office/CVS > /srv/abs/rsync/x86_64//community/science/CVS > /srv/abs/rsync/x86_64//community/system/CVS > /srv/abs/rsync/x86_64//community/x11/CVS > /srv/abs/rsync/x86_64//community/xfce/CVS > > Duplicate PKGBUILDs > - > /srv/abs/rsync/x86_64//extra/mod_dnssd vs. > /srv/abs/rsync/x86_64//community/devel/mod_dnssd > Fixed for both arches.
[aur-general] obsoleted devicekit AUR packages
Now are in extra. http://aur.archlinux.org/packages.php?ID=23864 http://aur.archlinux.org/packages.php?ID=24101 -- Gerardo Exequiel Pozzi ( djgera ) http://www.djgera.com.ar KeyID: 0x1B8C330D Key fingerprint = 0CAA D5D4 CD85 4434 A219 76ED 39AB 221B 1B8C 330D
[aur-general] obsoleted libcap packages in AUR
http://aur.archlinux.org/packages.php?ID=23368 libcap2 (now in extra) http://aur.archlinux.org/packages.php?ID=14200 lib32-libcap need to be updated to version 2 -- Gerardo Exequiel Pozzi ( djgera ) http://www.djgera.com.ar KeyID: 0x1B8C330D Key fingerprint = 0CAA D5D4 CD85 4434 A219 76ED 39AB 221B 1B8C 330D
Re: [aur-general] obsoleted libcap packages in AUR
Gerardo Exequiel Pozzi wrote: > http://aur.archlinux.org/packages.php?ID=23368 libcap2 (now in extra) > http://aur.archlinux.org/packages.php?ID=14200 lib32-libcap need to be > updated to version 2 > > I adopted and updated the lib32-libcap. -- Gerardo Exequiel Pozzi ( djgera ) http://www.djgera.com.ar KeyID: 0x1B8C330D Key fingerprint = 0CAA D5D4 CD85 4434 A219 76ED 39AB 221B 1B8C 330D
[aur-general] Missing Packages
Missing i686 Packages: No new package supplied for sysstat 9.0.2-3! No new package supplied for sysstat 9.0.2-3! Missing x86_64 Packages: No new package supplied for poweriso 1.3-1! -- This is an automated message. If you wish to stop receiving it twice a day, fix the package(s).
Re: [aur-general] python-apsw package
2009/4/13 Juan Miguel Cejuela : > To Abhishek, > > Thank you for answering. However, I can't make $srcdir/LICENSE since the > license is not included in their source. I made it copying it from their > web. > > *Then, how I can move LICENSE without using $startdir?* > > I can do ../$srcdir but that seems even worse > > I see in some packages that in their source array include simply LICENSE > plus the real source. I guess the file LICENSE located in the package > tarball is fetched and then included in the src, but I don't see any > documentation about this in the wiki. > You should keep LICENSE in the source array. All files in the source array are symlinked in $srcdir, so you'll be able to use $srcdir/LICENSE. The current PKGBUILD does work, but I guess you manually made a tarball and uploaded it. If you'd used makepkg --source then LICENSE would not have been included in the src.tar.gz produced. -- Abhishek
Re: [aur-general] python-apsw package
Juan Miguel Cejuela wrote: To Abhishek, Thank you for answering. However, I can't make $srcdir/LICENSE since the license is not included in their source. I made it copying it from their web. *Then, how I can move LICENSE without using $startdir?* I can do ../$srcdir but that seems even worse $srcdir = $startdir/src so you would just do something like: install -Dm644 $srcdir/LICENSE $pkgdir/usr/share/licenses Allan
Re: [aur-general] python-apsw package
To Abhishek, Thank you for answering. However, I can't make $srcdir/LICENSE since the license is not included in their source. I made it copying it from their web. *Then, how I can move LICENSE without using $startdir?* I can do ../$srcdir but that seems even worse I see in some packages that in their source array include simply LICENSE plus the real source. I guess the file LICENSE located in the package tarball is fetched and then included in the src, but I don't see any documentation about this in the wiki. 2009/4/12 Abhishek Dasgupta > 2009/4/12 Juan Miguel Cejuela : > > I have just updated and started to maintain the python-apsw package (the > > current version in AUR was from Oct 2007, when the last version is from > Feb > > 2009) > > > > This package is needed for the tribler package (bittorrent client) > > > > Please let me know if you use this library and therefore whether the > package > > is useful. > > > > And of course, give me any suggestion for the PKGBUILD since this is my > > first package I submit. > > > > Have a good day!! > > The PKGBUILD looks OK, just use $srcdir and $pkgdir since > $startdir is not guaranteed to remain around. > > So the build() function would be: > build() { > cd $srcdir/apsw-3.6.11-r1 > python setup.py install --root=$pkgdir/ > > install -D -m644 $srcdir/LICENSE > $pkgdir/usr/share/licenses/$pkgname/LICENSE > } > > -- > Abhishek > -- Juan Miguel Cejuela ~http://www.ashrentum.net [My Homepage] ~http://www.ashrentum.net/lachanza [Colección de Chistes en Español]