[arch-general] Cannot install mlpack from AUR

2014-10-29 Thread Thorsten Jolitz

Hi List, 

I cannot install the mlpack package from AUR

,
| ID  : 105550
| Name: mlpack
| Version : 1.0.9-1
| Maintainer  : govg
| : https://aur.archlinux.org/account/govg
| Description : a scalable c++ machine learning library
| Home Page   : http://www.mlpack.org
| AUR Page: https://aur.archlinux.org/packages/mlpack
| Package Base: https://aur.archlinux.org/pkgbase/mlpack
| License : LGPLv3
| Category: science
| Votes   : 2
| Out Of Date : No
| Submitted   : 2012-07-19 00:54:26
| Last Modified   : 2014-08-27 13:14:07
`

because as the final step of makepkg it runs like 400+ tests, which is
very timeconsuming, and makes the package build fail since there are not
only a lot of warnings but also 3 failing tests. 

Did others face the same problem?

-- 
cheers,
Thorsten


Re: [arch-general] Cannot install mlpack from AUR

2014-10-29 Thread Anatol Pomozov
Hi

On Wed, Oct 29, 2014 at 1:10 PM, Thorsten Jolitz tjol...@gmail.com wrote:

 Hi List,

 I cannot install the mlpack package from AUR

 ,
 | ID  : 105550
 | Name: mlpack
 | Version : 1.0.9-1
 | Maintainer  : govg
 | : https://aur.archlinux.org/account/govg
 | Description : a scalable c++ machine learning library
 | Home Page   : http://www.mlpack.org
 | AUR Page: https://aur.archlinux.org/packages/mlpack
 | Package Base: https://aur.archlinux.org/pkgbase/mlpack
 | License : LGPLv3
 | Category: science
 | Votes   : 2
 | Out Of Date : No
 | Submitted   : 2012-07-19 00:54:26
 | Last Modified   : 2014-08-27 13:14:07
 `

 because as the final step of makepkg it runs like 400+ tests, which is
 very timeconsuming, and makes the package build fail since there are not
 only a lot of warnings but also 3 failing tests.

You can skip the tests by 'makepkg --nocheck'


 Did others face the same problem?

 --
 cheers,
 Thorsten


Re: [arch-general] Cannot install mlpack from AUR

2014-10-29 Thread Temlin Olivér
On Wed, Oct 29, 2014 at 9:10 PM, Thorsten Jolitz tjol...@gmail.com wrote:
 I cannot install the mlpack package from AUR
Since AUR is officially unsupported on arch, you are probably either
looking for the aur-general list or the package comments at [1].
I'd recommend the comments, since it bothers less people, but beware
that usually only the maintainer is subscribed, so it might take a few
days to get an answer.
[1] https://aur.archlinux.org/packages/mlpack

--
Oliver Temlin


Re: [arch-general] Cannot install mlpack from AUR

2014-10-29 Thread Ralf Mardorf
On Wed, 2014-10-29 at 21:43 +0100, Temlin Olivér wrote:
 I'd recommend the comments, since it bothers less people, but beware
 that usually only the maintainer is subscribed, so it might take a few
 days to get an answer.

Assumed there are issue, it would be good to report the issues as
comment, by quoting the important output, so perhaps not all warnings,
but everything that is related to errors. By doing this, the maintainer
could use the information to fix the PKGBUILD.

However, for general questions and discussions
https://lists.archlinux.org/listinfo/aur-general .


[arch-general] stunnel 5.06-1 vs systemd

2014-10-29 Thread Genes Lists
I noticed this today after the systemd update and after I rebooted - 
stunnel package fails to create /run/stunnel and so stunnel.service 
won't start as it cannot chroot to /var/run/stunnel.


stunnel was updated for me on 10/21 from 5.03 to 5.06. Machine has been 
rebooted since then - so it -seems- like a change happened in systemd 
which triggered this, but I'm not sure.



Work around is to add these 2 lines to /etc/systemd/system/stunnel.conf 
before the ExecStart line:


ExecStartPre=-/usr/bin/mkdir /run/stunnel
ExecStartPre=/usr/bin/chown -R stunnel:stunnel /run/stunnel

Probably just a minor package bug.

gene


Re: [arch-general] stunnel 5.06-1 vs systemd

2014-10-29 Thread Patrick Burroughs (Celti)
On Wed, Oct 29, 2014 at 8:08 PM, Genes Lists li...@sapience.com wrote:
 Work around is to add these 2 lines to /etc/systemd/system/stunnel.conf
 before the ExecStart line:

 ExecStartPre=-/usr/bin/mkdir /run/stunnel
 ExecStartPre=/usr/bin/chown -R stunnel:stunnel /run/stunnel


Shouldn't that rather be handled by a tmpfiles.d snippet, and not in
the service file?

Regards,
~Celti