Gleb Popov

Results 148 comments of Gleb Popov

Bumped into this when porting libblst to FreeBSD. For now I just added my own `.pc` file to the downstream package, so it'd be great to have this PR merged...

Hum. I'm running tests with `stack test`, but I'll try out `tasty`/`hspec`, thanks.

FreeBSD 14 imported OpenSSL 3 into its base and now I can't get HsOpenSSL working. When building without any additional defines I get `undefined reference to DSA_generate_parameters` and with `--gcc-option=-DOPENSSL_NO_DEPRECATED`...

I took a quick look on the FreeBSD plugin and it is extremely out of sync with the rest of the code base. Would you accept a PR that at...

The `libpkg` API does support this: ``` pkg_repo* repo = NULL; while (pkg_repos(&repo) == EPKG_OK) { const char* id = pkg_repo_name (repo); const char* descr = pkg_repo_url (repo); bool enabled...

Isn't it just the same as `pkg remove foo && pkg autoremove`?

After a bit of thinking, no it isn't. Imagine we already have some auto packages that can be removed by `autoremove`. If we run `pkg delete -A pkgname` it will...

PackageKit has the ability to cancel jobs and I want our backend to support it as much as it can. At least we should be able to cancel during downloading....

Another case - cancelling during multiple packages removal after receiving `PKG_EVENT_DEINSTALL_FINISHED`.

I think this can be closed now.