Re: [aur-general] How to depend a pkg on two alternative packages?

2015-03-14 Thread Xyne
On 2015-03-14 21:48 +0100 Uwe Koloska wrote: The app (BTW it's EdWare http://meetedison.com/robot-programming-software/) needs audio and if I understand it correctly, was developed with pyaudio (a python binding to portaudio) and then enhanced with an alternative binding to the audio part of

Re: [aur-general] How to depend a pkg on two alternative packages?

2015-03-14 Thread Uwe Koloska
Hello, thanks for your answers and input. Am 14.03.2015 um 21:06 schrieb Troy Engel: On Sat, Mar 14, 2015 at 10:09 AM, Uwe Koloska kol...@koloro.de wrote: I want to create a package for an app that needs either pyaudio or (as an alternative) pygame. How can I write this in the PKGBUILD?

Re: [aur-general] How to depend a pkg on two alternative packages?

2015-03-14 Thread Troy Engel
On Sat, Mar 14, 2015 at 10:09 AM, Uwe Koloska kol...@koloro.de wrote: I want to create a package for an app that needs either pyaudio or (as an alternative) pygame. How can I write this in the PKGBUILD? Mauro's reply is the technically correct one - however, I'm questioning your logic. The

Re: [aur-general] Conflicting contents of different packages

2015-03-14 Thread gt
On 2 March 2015 17:35:10 GMT+05:30, LoneVVolf lonew...@xs4all.nl wrote: On 02-03-15 10:54, Florian Bruhin wrote: * gt notf...@gmx.com [2015-03-02 15:11:45 +0530]: Hi guys, I maintain a package dex-editor-git in the AUR. It was recently reported to me that it conflicts with a package named dex

[aur-general] Signoff report for [community-testing]

2015-03-14 Thread Arch Website Notification
=== Signoff report for [community-testing] === https://www.archlinux.org/packages/signoffs/ There are currently: * 0 new packages in last 24 hours * 0 known bad packages * 0 packages not accepting signoffs * 0 fully signed off packages * 23 packages missing signoffs * 5 packages older than 14

Re: [aur-general] AUR Package linsmith + AUR packages (un)maintained by Speps

2015-03-14 Thread Muflone
Before sending this request I made some seach about Speps inactivity but I wasn't able to find any. On IRC the last access was almost one year ago (May 02 15:25:35 2014). The package linsmith [1] maintained by speps is actually out of date since many years, last update was on 2011-03-21.

[aur-general] How to depend a pkg on two alternative packages?

2015-03-14 Thread Uwe Koloska
Hello, I want to create a package for an app that needs either pyaudio or (as an alternative) pygame. How can I write this in the PKGBUILD? And what's more: The main dependency pyaudio is only in AUR but the alternative pygame is part of the official repos. For now, I don't know when the app

Re: [aur-general] How to depend a pkg on two alternative packages?

2015-03-14 Thread Mateusz Lemusisk
I have never seen something like alternative dependencies so I suppose that you make pygame the non optional dependency. Is there an advantage from using pyaudio over pygame ? Mateusz -- Sent from my toaster

Re: [aur-general] How to depend a pkg on two alternative packages?

2015-03-14 Thread Damian Nowak
If you maintain pyaudio package, you could add provides=(pygame) to it. Then the package that you're now creating would just need to have depends=(pygame).