Laurent Declercq

Results 36 comments of Laurent Declercq

@weierophinney > some people swear by them We are one of them. You should really avoid opinionated implementations. This was the mistake you have made with your MVC implementation. Zend...

Could be related to https://github.com/mika/jenkins-debian-glue/issues/204

@vchrizz This cannot work out-of-box normally as the reprepro is provisioned only with adm64, i386 and source architectures... Maybe you reprepro (conf/distributions) was already setup for other architectures? By default,...

@Centuriondan It is not more a debootstrap issue? What the purpose of providing your own pbuilderrc file exactly? Overriding mirror and components for Devuan?

@Centuriondan > that and other settings we find are neccesary for building devuan like setting additional hooks and PBUILDERSATISFYDEPENDS=classic (it's more reliable then aptitude) and other variables. I see. I...

@mika @vchrizz I'm also fighting with that problem ATM... The `trustedkeys.kbx` file is the default file searched by `gpgv` but when it is run through `dpkg-source` (what is done during...

@mika @vchrizz I think, I did figured out... So, by default, dpkg-source is run as self-created `pbuilder` user and of course, that user cannot access the `/var/lib/jenkins/.gnupg` directory: ```shell jenkins@jenkins:~$...

@vchrizz @mika **Solution** Assuming that your GPG key is owned by the `jenkins` user. **1.** Create the `pbuilder` user: ``` jenkins@jenkins:~$ su -c "useradd -c 'Pbuilder build user' -m -U...

@CaptTofu Such a big issue as this one not addressed yet? How can it be possible? Does doing something like: ```perl eval { local $dbh->{'AutoCommit'} = 0; }; ... ```...

@CaptTofu My previous workaround doesn't work. The following monkey patch work, even through that not the best to do... ```perl { no warnings qw/ once redefine /; *DBD::_::db::begin_work = sub...