|
View:
New views
20 Messages
—
Rating Filter:
Alert me
|
| < Prev | 1 - 2 | Next > |
|
|
gspcav1-fbcondecor package installation errorsHoy there, gang.
I am trying to install the gspcav1-fbcondecor package so that I can use my Creative NX web cam, but I am receiving installation errors that I do not know how to tackle (I am not very knowledgable yet on packages and installation problems in Linux). Here is the PKGBUILD file that I am using; I had to edit it because the maintainer of this package has not yet changed the dependencies to kernel26-fbcondecor 2.6.30.1-1: # $Id: PKGBUILD,v 1.3 2008/01/26 15:48:21 tpowa Exp $ # Maintainer: Varun Acharya <varun@...> # Contributor: Giovanni Scafora <linuxmania@...> # Contributor: Daniel Isenmann <daniel.isenmann@...> # # This PKGBUILD is based on the PKGBUILD of gspcav1 in ABS. # The _kernver was changed to make use of gspca1 drivers for kernel26-fbcondecor. # Contributor: Ning Bao <phabulosa@...> _kernver=2.6.30-fbcondecor pkgname=gspcav1-fbcondecor pkgver=1.00.20 pkgrel=3 pkgdesc="gspcav1 for kernel26-fbcondecor - A kernel module with support to 260 USB webcams" arch=('i686' 'x86_64') url="http://mxhaard.free.fr" license=('GPL2') depends=('kernel26-fbcondecor>=2.6.30' 'kernel26-fbcondecor<=2.6.31') install=gspcav1.install source=(http://mxhaard.free.fr/spca50x/Download/gspcav1-20071224.tar.gz) md5sums=('14853ba1f4edc1e685039fca56e5ebf2') build() { cd $startdir/src/gspcav1-20071224 sed -i -e "s/KERNEL_VERSION = .*/KERNEL_VERSION = ${_kernver}/" Makefile make || return 1 #Install kernel module install -D -m644 gspca.ko $startdir/pkg/lib/modules/$_kernver/kernel/drivers/media/video/usbvideo/gspca.ko sed -i -e "s/KERNEL_VERSION='.*'/KERNEL_VERSION='${_kernver}'/" $startdir/*.install } Here is the gspcav1.install file that I am using; again, I have edited it for dependencies: # arg 1: the new package version post_install() { KERNEL_VERSION='2.6.30-fbcondecor' /sbin/depmod -ae -v $KERNEL_VERSION > /dev/null 2>&1 } # arg 1: the new package version # arg 2: the old package version post_upgrade() { KERNEL_VERSION='2.6.30-fbcondecor' /sbin/depmod -ae -v $KERNEL_VERSION > /dev/null 2>&1 } # arg 1: the old package version pre_remove() { /sbin/rmmod gspca > /dev/null 2>&1 } # arg 1: the old package version post_remove() { KERNEL_VERSION='2.6.30-fbcondecor' /sbin/depmod -ae -v $KERNEL_VERSION > /dev/null 2>&1 } op=$1 shift $op $* Here is the log of my attempted installation: [aaron@betabeta gspcav1-fbcondecor]$ makepkg -cs ==> Making package: gspcav1-fbcondecor 1.00.20-3 i686 (Wed Jul 8 12:06:56 EDT 2009) ==> Checking Runtime Dependencies... ==> Checking Buildtime Dependencies... ==> Retrieving Sources... -> Found gspcav1-20071224.tar.gz in build dir ==> Validating source files with md5sums... gspcav1-20071224.tar.gz ... Passed ==> Extracting Sources... -> bsdtar -x -f gspcav1-20071224.tar.gz ==> Removing existing pkg/ directory... ==> Entering fakeroot environment... ==> Starting build()... make -C /lib/modules/2.6.30-fbcondecor/build SUBDIRS=/home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224 CC=cc modules make[1]: Entering directory `/usr/src/linux-2.6.30-fbcondecor' CC [M] /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/gspca_core.o /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/gspca_core.c:54:27: error: asm/semaphore.h: No such file or directory In file included from /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/gspca_core.c:845: /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/utils/spcausb.h: In function ?spca5xxRegRead?: /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/utils/spcausb.h:95: error: implicit declaration of function ?info? /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/utils/spcausb.h: In function ?spca_set_interface?: /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/utils/spcausb.h:278: error: implicit declaration of function ?warn? In file included from /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/gspca_core.c:853: /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/Sunplus-jpeg/sp5xxfw2.h: In function ?sp5xxfw2_init?: /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/Sunplus-jpeg/sp5xxfw2.h:122: error: called object ?info? is not a function /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/Sunplus-jpeg/sp5xxfw2.h:136: error: called object ?info? is not a function /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/Sunplus-jpeg/sp5xxfw2.h:141: error: called object ?info? is not a function /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/Sunplus-jpeg/sp5xxfw2.h:148: error: called object ?info? is not a function /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/Sunplus-jpeg/sp5xxfw2.h:176: error: called object ?info? is not a function /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/Sunplus-jpeg/sp5xxfw2.h: In function ?sp5xxfw2_start?: /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/Sunplus-jpeg/sp5xxfw2.h:214: error: called object ?info? is not a function /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/Sunplus-jpeg/sp5xxfw2.h:230: error: called object ?info? is not a function /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/gspca_core.c: In function ?spca5xx_ioctl?: /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/gspca_core.c:2463: error: implicit declaration of function ?video_usercopy? /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/gspca_core.c: At top level: /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/gspca_core.c:2609: error: unknown field ?owner? specified in initializer /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/gspca_core.c:2609: warning: initialization from incompatible pointer type /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/gspca_core.c:2611: error: unknown field ?type? specified in initializer /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/gspca_core.c:2615: warning: initialization from incompatible pointer type /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/gspca_core.c: In function ?spca50x_create_sysfs?: /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/gspca_core.c:2769: error: implicit declaration of function ?video_device_create_file? /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/gspca_core.c:2780: error: implicit declaration of function ?video_device_remove_file? /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/gspca_core.c: In function ?spca5xx_probe?: /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/gspca_core.c:4301: error: incompatible types when assigning to type ?struct device? from type ?struct device *? make[2]: *** [/home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/gspca_core.o] Error 1 make[1]: *** [_module_/home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224] Error 2 make[1]: Leaving directory `/usr/src/linux-2.6.30-fbcondecor' make: *** [default] Error 2 ==> ERROR: Build Failed. Aborting... So, any advice that any one has to offer would be greatly appreciated. -Aaron |
|
|
Re: gspcav1-fbcondecor package installation errorsHi Aaron,
> Here is the log of my attempted installation: > > [aaron@betabeta gspcav1-fbcondecor]$ makepkg -cs > ==> Making package: gspcav1-fbcondecor 1.00.20-3 i686 (Wed Jul 8 > 12:06:56 EDT 2009) > ==> Checking Runtime Dependencies... > ==> Checking Buildtime Dependencies... > ==> Retrieving Sources... > -> Found gspcav1-20071224.tar.gz in build dir > ==> Validating source files with md5sums... > gspcav1-20071224.tar.gz ... Passed > ==> Extracting Sources... > -> bsdtar -x -f gspcav1-20071224.tar.gz > ==> Removing existing pkg/ directory... > ==> Entering fakeroot environment... > ==> Starting build()... > make -C /lib/modules/2.6.30-fbcondecor/build > SUBDIRS=/home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224 CC=cc > modules > make[1]: Entering directory `/usr/src/linux-2.6.30-fbcondecor' > CC > [M] /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/gspca_core.o /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/gspca_core.c:54:27: > error: asm/semaphore.h: No such file or directory This is an upstream issue. It seems, that gspcav1 1.00.20 doesn't work with kernels > 2.6.26, as I've just read in a German forum. The file semaphore.h is now located in /usr/src/linux-2.6.30-fbcondecor/include/linux. So the file gspca_core.c in the gspcav1-fbcondecor package needs to be patched and "asm/semaphore.h" needs to be changed to "linux/semaphore.h". As a workaround you can add this line to your PKGBUILD: sed -i "s:asm\/semaphore.h:linux\/semaphore.h" gspca_core.c But you should also file a bug report to upstream, so that the gspca developers can update the software, so that it compiles with kernel 2.6.27 and above. Cheers, Heiko |
|
|
Re: gspcav1-fbcondecor package installation errorsHello Heiko,
> This is an upstream issue. It seems, that gspcav1 1.00.20 doesn't work > with kernels > 2.6.26, as I've just read in a German forum. > > The file semaphore.h is now located > in /usr/src/linux-2.6.30-fbcondecor/include/linux. > > So the file gspca_core.c in the gspcav1-fbcondecor package needs to be > patched and "asm/semaphore.h" needs to be changed to > "linux/semaphore.h". > > As a workaround you can add this line to your PKGBUILD: > sed -i "s:asm\/semaphore.h:linux\/semaphore.h" gspca_core.c > > But you should also file a bug report to upstream, so that the gspca > developers can update the software, so that it compiles with kernel > 2.6.27 and above. I tried adding that line: build() { cd $startdir/src/gspcav1-20071224 sed -i -e "s/KERNEL_VERSION = .*/KERNEL_VERSION = ${_kernver}/" Makefile sed -i "s:asm\/semaphore.h:linux\/semaphore.h" gspca_core.c <----- HERE make || return 1 #Install kernel module install -D -m644 gspca.ko $startdir/pkg/lib/modules/$_kernver/kernel/drivers/media/video/usbvideo/gspca.ko sed -i -e "s/KERNEL_VERSION='.*'/KERNEL_VERSION='${_kernver}'/" $startdir/*.install } I still recieved the same installation error messages. Forgive me if I just put it in the wrong place, but like I said before, I am new to package workings and installations, so please avoid ambiguity if it is based on the assumption of my knowledge. I started poking around in gspca_core.c, and I noticed several inclusions that look like they should be changed from the asm directory to the linux directory (I think one actually had a typo as well), but I do not know how to work around the md5sums validity checker. |
|
|
Re: gspcav1-fbcondecor package installation errorsAm Wed, 8 Jul 2009 14:52:24 -0400
schrieb Aaron Lane <aarondrewlane@...>: > I tried adding that line: > > build() { > cd $startdir/src/gspcav1-20071224 > sed -i -e "s/KERNEL_VERSION = .*/KERNEL_VERSION = ${_kernver}/" > Makefile sed -i "s:asm\/semaphore.h:linux\/semaphore.h" gspca_core.c > <----- HERE make || return 1 I just see, that I made a few typos in the sed command. Maybe that's why you still get the same error. This is the correct one: sed -i "s:asm\/semaphore\.h:linux\/semaphore\.h:g" gspca_core.c The position of the sed command looks correct. > I started poking around in gspca_core.c, and I noticed several > inclusions that look like they should be changed from the asm > directory to the linux directory (I think one actually had a typo as > well), but I do not know how to work around the md5sums validity > checker. To look for the existence and location of kernel header files just run this command on the console: find /usr/src/linux-2.6.30-fbcondecor -iname "*semaphore*" Replace semaphore with parts of the other file names. Then you can add more sed commands as you need. To generate new md5sums just run this command: makepkg -g Cheers, Heiko |
|
|
Re: gspcav1-fbcondecor package installation errorsI have reduced the amount of errors by changing paths:
#include <linux/io.h> #include <linux/semaphore.h> #include <asm-generic/page.h> #include </usr/src/linux-2.6.30-fbcondecor/arch/x86/include/asm/uaccess.h> #include <asm-generic/atomic.h> This is what I am left with: make -C /lib/modules/2.6.30-fbcondecor/build SUBDIRS=/home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224 CC=cc modules make[1]: Entering directory `/usr/src/linux-2.6.30-fbcondecor' CC [M] /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/gspca_core.o In file included from /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/gspca_core.c:845: /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/utils/spcausb.h: In function ‘spca5xxRegRead’: /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/utils/spcausb.h:95: error: implicit declaration of function ‘info’ /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/utils/spcausb.h: In function ‘spca_set_interface’: /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/utils/spcausb.h:278: error: implicit declaration of function ‘warn’ In file included from /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/gspca_core.c:853: /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/Sunplus-jpeg/sp5xxfw2.h: In function ‘sp5xxfw2_init’: /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/Sunplus-jpeg/sp5xxfw2.h:122: error: called object ‘info’ is not a function /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/Sunplus-jpeg/sp5xxfw2.h:136: error: called object ‘info’ is not a function /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/Sunplus-jpeg/sp5xxfw2.h:141: error: called object ‘info’ is not a function /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/Sunplus-jpeg/sp5xxfw2.h:148: error: called object ‘info’ is not a function /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/Sunplus-jpeg/sp5xxfw2.h:176: error: called object ‘info’ is not a function /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/Sunplus-jpeg/sp5xxfw2.h: In function ‘sp5xxfw2_start’: /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/Sunplus-jpeg/sp5xxfw2.h:214: error: called object ‘info’ is not a function /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/Sunplus-jpeg/sp5xxfw2.h:230: error: called object ‘info’ is not a function /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/gspca_core.c: In function ‘spca5xx_ioctl’: /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/gspca_core.c:2463: error: implicit declaration of function ‘video_usercopy’ /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/gspca_core.c: At top level: /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/gspca_core.c:2609: error: unknown field ‘owner’ specified in initializer /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/gspca_core.c:2609: warning: initialization from incompatible pointer type /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/gspca_core.c:2611: error: unknown field ‘type’ specified in initializer /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/gspca_core.c:2615: warning: initialization from incompatible pointer type /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/gspca_core.c: In function ‘spca50x_create_sysfs’: /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/gspca_core.c:2769: error: implicit declaration of function ‘video_device_create_file’ /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/gspca_core.c:2780: error: implicit declaration of function ‘video_device_remove_file’ /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/gspca_core.c: In function ‘spca5xx_probe’: /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/gspca_core.c:4301: error: incompatible types when assigning to type ‘struct device’ from type ‘struct device *’ make[2]: *** [/home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/gspca_core.o] Error 1 make[1]: *** [_module_/home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224] Error 2 make[1]: Leaving directory `/usr/src/linux-2.6.30-fbcondecor' make: *** [default] Error 2 ==> ERROR: Build Failed. Aborting... Any more advice? Heiko Baums wrote: > Am Wed, 8 Jul 2009 14:52:24 -0400 > schrieb Aaron Lane <aarondrewlane@...>: > > >> I tried adding that line: >> >> build() { >> cd $startdir/src/gspcav1-20071224 >> sed -i -e "s/KERNEL_VERSION = .*/KERNEL_VERSION = ${_kernver}/" >> Makefile sed -i "s:asm\/semaphore.h:linux\/semaphore.h" gspca_core.c >> <----- HERE make || return 1 >> > > I just see, that I made a few typos in the sed command. Maybe that's why > you still get the same error. > > This is the correct one: > sed -i "s:asm\/semaphore\.h:linux\/semaphore\.h:g" gspca_core.c > > The position of the sed command looks correct. > > >> I started poking around in gspca_core.c, and I noticed several >> inclusions that look like they should be changed from the asm >> directory to the linux directory (I think one actually had a typo as >> well), but I do not know how to work around the md5sums validity >> checker. >> > > To look for the existence and location of kernel header files just run > this command on the console: > find /usr/src/linux-2.6.30-fbcondecor -iname "*semaphore*" > > Replace semaphore with parts of the other file names. > > Then you can add more sed commands as you need. > > To generate new md5sums just run this command: > makepkg -g > > Cheers, > Heiko > > |
|
|
Re: gspcav1-fbcondecor package installation errorsAm Wed, 08 Jul 2009 18:20:50 -0400
schrieb Aaron Lane <aarondrewlane@...>: > I have reduced the amount of errors by changing paths: > #include <linux/io.h> > #include <linux/semaphore.h> > #include <asm-generic/page.h> > #include > </usr/src/linux-2.6.30-fbcondecor/arch/x86/include/asm/uaccess.h> > #include <asm-generic/atomic.h> > > This is what I am left with: > make -C /lib/modules/2.6.30-fbcondecor/build > SUBDIRS=/home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224 CC=cc > modules > make[1]: Entering directory `/usr/src/linux-2.6.30-fbcondecor' > CC > [M] /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/gspca_core.o > In file included > from /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/gspca_core.c:845: /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/utils/spcausb.h: > In function ‘spca5xxRegRead’: > /home/aaron/src/gspcav1-fbcondecor/src/gspcav1-20071224/utils/spcausb.h:95: > error: implicit declaration of function ‘info’ Well, this is definitively an upstream bug. If you can't or don't want to program, the only thing you can do is filing a bug report to upstream. Cheers, Heiko |
|
|
Package search for community repoThis message is on the AUR home page now:
"The AUR no longer manages the community repo. Entries on this site may be out of date." Principally a good idea. But will community be integrated into the package search on http://www.archlinux.org/packages/ or is such a package database on a separate location, so that community packages could be flagged out-of-date e.g.? Heiko |
|
|
Re: Package search for community repoHeiko Baums wrote:
> This message is on the AUR home page now: > "The AUR no longer manages the community repo. Entries on this site may > be out of date." > > Principally a good idea. But will community be integrated into the > package search on http://www.archlinux.org/packages/ or is such a > package database on a separate location, so that community packages > could be flagged out-of-date e.g.? > > Heiko > > if a package is out of date or broken. -- Daniel J Griffiths (Ghost1227) griffithsdj@... http://ghost1227.com |
|
|
Re: Package search for community repoOn July 22, 2009 06:58:31 pm Daniel J Griffiths wrote:
> Community has a bugtracker, which should (ideally) be used to notify us > if a package is out of date or broken. Right now the Flyspray for [community] has a rather clear notice that says: "Do NOT report bugs when a package is just outdated, or it is in Unsupported. Use the 'flag out of date' link on the package page, or the Mailing List. REPEAT: Do NOT report bugs for outdated packages!". Shouldn't that notice be updated to reflect current changes. What would be the recommended way of notifying TU's of an outdated package (mailing list or bugtracker?). |
|
|
Re: Package search for community repoOn Wed, Jul 22, 2009 at 5:51 PM, Heiko Baums<lists@...> wrote:
> This message is on the AUR home page now: > "The AUR no longer manages the community repo. Entries on this site may > be out of date." > > Principally a good idea. But will community be integrated into the > package search on http://www.archlinux.org/packages/ or is such a > package database on a separate location, so that community packages > could be flagged out-of-date e.g.? Actually, I'm still not sure on what we want to do here. I'd like input from the TUs as to what they'd prefer.... Right now I'm thinking we may just integrate community into the main site search, and give the TUs access to the dev website... but we need to play with permissions to make sure people can only do what they're supposed to |
|
|
Re: Package search for community repoRonuk Raval wrote:
> On July 22, 2009 06:58:31 pm Daniel J Griffiths wrote: > >> Community has a bugtracker, which should (ideally) be used to notify us >> if a package is out of date or broken. >> > Right now the Flyspray for [community] has a rather clear notice that says: > "Do NOT report bugs when a package is just outdated, or it is in Unsupported. > Use the 'flag out of date' link on the package page, or the Mailing List. > > REPEAT: Do NOT report bugs for outdated packages!". > > Shouldn't that notice be updated to reflect current changes. What would be the > recommended way of notifying TU's of an outdated package (mailing list or > bugtracker?). > > > out of date' option for community anymore, use bugtracker for anything related to community packages. The TUs as a whole need to use the bugtracker more anyway. (Wonder, back me up here) -- Daniel J Griffiths (Ghost1227) griffithsdj@... http://ghost1227.com |
|
|
Re: Package search for community repoOn Wed, Jul 22, 2009 at 7:11 PM, Aaron Griffin<aaronmgriffin@...> wrote:
> On Wed, Jul 22, 2009 at 5:51 PM, Heiko Baums<lists@...> wrote: >> This message is on the AUR home page now: >> "The AUR no longer manages the community repo. Entries on this site may >> be out of date." >> >> Principally a good idea. But will community be integrated into the >> package search on http://www.archlinux.org/packages/ or is such a >> package database on a separate location, so that community packages >> could be flagged out-of-date e.g.? > > Actually, I'm still not sure on what we want to do here. I'd like > input from the TUs as to what they'd prefer.... > > Right now I'm thinking we may just integrate community into the main > site search, and give the TUs access to the dev website... but we need > to play with permissions to make sure people can only do what they're > supposed to > I'm in favour of this idea. It would simplify things for dev or TU/dev who maintain packages in both core/extra and community. And for users to search for binary packages. |
|
|
Re: Package search for community repoOn Wed, Jul 22, 2009 at 7:32 PM, Daniel J
Griffiths<ghost1227@...> wrote: > Ronuk Raval wrote: >> >> On July 22, 2009 06:58:31 pm Daniel J Griffiths wrote: >> >>> >>> Community has a bugtracker, which should (ideally) be used to notify us >>> if a package is out of date or broken. >>> >> >> Right now the Flyspray for [community] has a rather clear notice that >> says: >> "Do NOT report bugs when a package is just outdated, or it is in >> Unsupported. Use the 'flag out of date' link on the package page, or the >> Mailing List. >> >> REPEAT: Do NOT report bugs for outdated packages!". >> >> Shouldn't that notice be updated to reflect current changes. What would be >> the recommended way of notifying TU's of an outdated package (mailing list >> or bugtracker?). >> >> >> > > Personal opinion... Update the bugtracker to reflect the lack of a 'flag out > of date' option for community anymore, use bugtracker for anything related > to community packages. The TUs as a whole need to use the bugtracker more > anyway. (Wonder, back me up here) > The 'flag out of date' option for community still works (unless it was disabled). Users just need to check the package version in the repo instead of the version displayed in AUR to know if a package is out-of-date or not. |
|
|
Re: Package search for community repoAm Wed, 22 Jul 2009 19:46:45 -0400
schrieb Eric Bélanger <snowmaniscool@...>: > The 'flag out of date' option for community still works (unless it was > disabled). Users just need to check the package version in the repo > instead of the version displayed in AUR to know if a package is > out-of-date or not. I understood the message on the AUR homepage so, that the community packages shall be removed from AUR (in the future). Or did I misinterpret it? This would at least make sense. Heiko |
|
|
Re: Package search for community repoEric Bélanger wrote:
> On Wed, Jul 22, 2009 at 7:32 PM, Daniel J > Griffiths<ghost1227@...> wrote: > >> Ronuk Raval wrote: >> >>> On July 22, 2009 06:58:31 pm Daniel J Griffiths wrote: >>> >>> >>>> Community has a bugtracker, which should (ideally) be used to notify us >>>> if a package is out of date or broken. >>>> >>>> >>> Right now the Flyspray for [community] has a rather clear notice that >>> says: >>> "Do NOT report bugs when a package is just outdated, or it is in >>> Unsupported. Use the 'flag out of date' link on the package page, or the >>> Mailing List. >>> >>> REPEAT: Do NOT report bugs for outdated packages!". >>> >>> Shouldn't that notice be updated to reflect current changes. What would be >>> the recommended way of notifying TU's of an outdated package (mailing list >>> or bugtracker?). >>> >>> >>> >>> >> Personal opinion... Update the bugtracker to reflect the lack of a 'flag out >> of date' option for community anymore, use bugtracker for anything related >> to community packages. The TUs as a whole need to use the bugtracker more >> anyway. (Wonder, back me up here) >> >> > > The 'flag out of date' option for community still works (unless it was > disabled). Users just need to check the package version in the repo > instead of the version displayed in AUR to know if a package is > out-of-date or not. > It works only the first time as updating does not reset it... Allan |
|
|
Re: Package search for community repoAaron Griffin wrote:
> On Wed, Jul 22, 2009 at 5:51 PM, Heiko Baums<lists@...> wrote: > >> This message is on the AUR home page now: >> "The AUR no longer manages the community repo. Entries on this site may >> be out of date." >> >> Principally a good idea. But will community be integrated into the >> package search on http://www.archlinux.org/packages/ or is such a >> package database on a separate location, so that community packages >> could be flagged out-of-date e.g.? >> > > Actually, I'm still not sure on what we want to do here. I'd like > input from the TUs as to what they'd prefer.... > > Right now I'm thinking we may just integrate community into the main > site search, and give the TUs access to the dev website... but we need > to play with permissions to make sure people can only do what they're > supposed to > That would be best, in my opinion. It would be quite practical to put [community] alongside with the other repos. Additionally, if the permission system in use allows it, we (TUs) could use [testing] (instead of the proposed [community-testing]) for [community] packages as well. The benefits of the above points would be that: 1) People having the [testing] repo enabled would also get to test [community] packages. 2) It would simplify the move of packages between [extra] and [community]. At the very least, the following things should become available to people: 1) Being able to search for a package from the home and /packages/ pages. 2) Flag a package as out-of-date via the web interface. |
|
|
Re: Package search for community repo2009/7/23 Evangelos Foutras <foutrelis@...>:
[snip] > That would be best, in my opinion. It would be quite practical to put > [community] alongside with the other repos. Additionally, if the permission > system in use allows it, we (TUs) could use [testing] (instead of the > proposed [community-testing]) for [community] packages as well. > Setting permissions on a per-package basis is harder than setting permissions on a whole repository; this was discussed in the original thread for moving [community] to devtools. -- Abhishek |
|
|
Re: Package search for community repo2009/7/23 Heiko Baums <lists@...>:
> Am Wed, 22 Jul 2009 19:46:45 -0400 > schrieb Eric Bélanger <snowmaniscool@...>: > >> The 'flag out of date' option for community still works (unless it was >> disabled). Users just need to check the package version in the repo >> instead of the version displayed in AUR to know if a package is >> out-of-date or not. > > I understood the message on the AUR homepage so, that the community > packages shall be removed from AUR (in the future). Or did I > misinterpret it? > I think it's best to remove the list of [community] packages from the AUR instead of keeping them in a frozen state. http://archlinux.de has updated information for [community]. That could be used till [community] is integrated into the main website or some other solution is found. -- Abhishek |
|
|
Re: Package search for community repoDaniel J Griffiths wrote:
> > Personal opinion... Update the bugtracker to reflect the lack of a 'flag > out of date' option for community anymore, use bugtracker for anything > related to community packages. The TUs as a whole need to use the > bugtracker more anyway. (Wonder, back me up here) > personally i wouldn't want to get out of date notification via bugtracker. i prefer that community should be moved on the front page. -- Ionut |
|
|
Re: Package search for community repoOn Thu, Jul 23, 2009 at 02:32, Daniel J Griffiths<ghost1227@...> wrote:
> Ronuk Raval wrote: >> >> On July 22, 2009 06:58:31 pm Daniel J Griffiths wrote: >> >>> >>> Community has a bugtracker, which should (ideally) be used to notify us >>> if a package is out of date or broken. >>> >> >> Right now the Flyspray for [community] has a rather clear notice that >> says: >> "Do NOT report bugs when a package is just outdated, or it is in >> Unsupported. Use the 'flag out of date' link on the package page, or the >> Mailing List. >> >> REPEAT: Do NOT report bugs for outdated packages!". >> >> Shouldn't that notice be updated to reflect current changes. What would be >> the recommended way of notifying TU's of an outdated package (mailing list >> or bugtracker?). > > Personal opinion... Update the bugtracker to reflect the lack of a 'flag out > of date' option for community anymore, use bugtracker for anything related > to community packages. The TUs as a whole need to use the bugtracker more > anyway. (Wonder, back me up here) This is absolutely no-go because this way bugtracker will be flooded with out-of date messages that have no useful information. +1 for complete merging community into main website (with limited permissions for TUs) and removing community-related part of AUR (with a notice that if there was some important info in comments - it should be reported as bugs or it will be lost) (if there would be possibility to limit permissions per category then I would love to merge Community Packages bugtracker project as well, but that's not an option at this time). -- Roman Kyrylych (Роман Кирилич) |
| < Prev | 1 - 2 | Next > |
| Free embeddable forum powered by Nabble | Forum Help |