notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

Finally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combination for a given watch list. This is what FreshPorts will look for.

non port: x11/eww/distinfo

Number of commits found: 3

Monday, 11 Sep 2023
06:49 Mikael Urankar (mikael) search for other commits by this committer
x11/eww: Fix build with rust 1.72.0

Approved by:	portmgr (build fix blanket)
commit hash: 185d84b7d0a20a033c5f36a54635a17939a3bf99 commit hash: 185d84b7d0a20a033c5f36a54635a17939a3bf99 commit hash: 185d84b7d0a20a033c5f36a54635a17939a3bf99 commit hash: 185d84b7d0a20a033c5f36a54635a17939a3bf99 185d84b
Sunday, 11 Jun 2023
13:22 Jan Beich (jbeich) search for other commits by this committer
x11/eww: unbreak build after 6b9789547d5e

error[E0557]: feature has been removed
 --> crates/simplexpr/src/lib.rs:3:12
  |
3 | #![feature(box_syntax)]
  |            ^^^^^^^^^^ feature has been removed
  |
  = note: replaced with `#[rustc_box]`

error: `box_syntax` has been removed
  --> crates/simplexpr/src/eval.rs:72:58
   |
72 |             BinOp(span, box a, op, box b) => BinOp(span, box
a.try_map_var_refs(f)?, op, box b.try_map_var_refs(f)?),
   |                                                         
^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
help: use `Box::new()` instead
   |
72 |             BinOp(span, box a, op, box b) => BinOp(span,
Box::new(a.try_map_var_refs(f)?), op, box b.try_map_var_refs(f)?),
   |                                                         
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

error: `box_syntax` has been removed
  --> crates/simplexpr/src/eval.rs:72:90
   |
72 |             BinOp(span, box a, op, box b) => BinOp(span, box
a.try_map_var_refs(f)?, op, box b.try_map_var_refs(f)?),
   |                                                                            
             ^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
help: use `Box::new()` instead
   |
72 |             BinOp(span, box a, op, box b) => BinOp(span, box
a.try_map_var_refs(f)?, op, Box::new(b.try_map_var_refs(f)?)),
   |                                                                            
             ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

error: `box_syntax` has been removed
  --> crates/simplexpr/src/eval.rs:74:59
   |
74 |             UnaryOp(span, op, box a) => UnaryOp(span, op, box
a.try_map_var_refs(f)?),
   |                                                          
^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
help: use `Box::new()` instead
   |
74 |             UnaryOp(span, op, box a) => UnaryOp(span, op,
Box::new(a.try_map_var_refs(f)?)),
   |                                                          
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

error: `box_syntax` has been removed
  --> crates/simplexpr/src/eval.rs:76:30
   |
76 |                 IfElse(span, box a.try_map_var_refs(f)?, box
b.try_map_var_refs(f)?, box c.try_map_var_refs(f)?)
   |                              ^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
help: use `Box::new()` instead
   |
76 |                 IfElse(span, Box::new(a.try_map_var_refs(f)?), box
b.try_map_var_refs(f)?, box c.try_map_var_refs(f)?)
   |                              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

error: `box_syntax` has been removed
  --> crates/simplexpr/src/eval.rs:76:58
   |
76 |                 IfElse(span, box a.try_map_var_refs(f)?, box
b.try_map_var_refs(f)?, box c.try_map_var_refs(f)?)
   |                                                         
^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
help: use `Box::new()` instead
   |
76 |                 IfElse(span, box a.try_map_var_refs(f)?,
Box::new(b.try_map_var_refs(f)?), box c.try_map_var_refs(f)?)
   |                                                         
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

error: `box_syntax` has been removed
  --> crates/simplexpr/src/eval.rs:76:86
   |
76 |                 IfElse(span, box a.try_map_var_refs(f)?, box
b.try_map_var_refs(f)?, box c.try_map_var_refs(f)?)
   |                                                                            
         ^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
help: use `Box::new()` instead
   |
76 |                 IfElse(span, box a.try_map_var_refs(f)?, box
b.try_map_var_refs(f)?, Box::new(c.try_map_var_refs(f)?))
   |                                                                            
         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

error: `box_syntax` has been removed
  --> crates/simplexpr/src/eval.rs:78:64
   |
78 |             JsonAccess(span, box a, box b) => JsonAccess(span, box
a.try_map_var_refs(f)?, box b.try_map_var_refs(f)?),
   |                                                               
^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
help: use `Box::new()` instead
   |
78 |             JsonAccess(span, box a, box b) => JsonAccess(span,
Box::new(a.try_map_var_refs(f)?), box b.try_map_var_refs(f)?),
   |                                                               
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

error: `box_syntax` has been removed
  --> crates/simplexpr/src/eval.rs:78:92
   |
78 |             JsonAccess(span, box a, box b) => JsonAccess(span, box
a.try_map_var_refs(f)?, box b.try_map_var_refs(f)?),
   |                                                                            
               ^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
help: use `Box::new()` instead
   |
78 |             JsonAccess(span, box a, box b) => JsonAccess(span, box
a.try_map_var_refs(f)?, Box::new(b.try_map_var_refs(f)?)),
   |                                                                            
               ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Reported by:	pkg-fallout
commit hash: 41c988ba8e81ac7a42d41d8e8f4e456a73cb1559 commit hash: 41c988ba8e81ac7a42d41d8e8f4e456a73cb1559 commit hash: 41c988ba8e81ac7a42d41d8e8f4e456a73cb1559 commit hash: 41c988ba8e81ac7a42d41d8e8f4e456a73cb1559 41c988b
Monday, 26 Sep 2022
02:51 Jan Beich (jbeich) search for other commits by this committer Author: Jesús Daniel Colmenares Oviedo
x11/eww: New port: ElKowars wacky widgets

Elkowars Wacky Widgets is a standalone widget system made in Rust
that allows you to implement your own, custom widgets in any window
manager.

WWW: https://elkowar.github.io/eww

PR:		266564
commit hash: 34cd5e3b86cdab8b62afa9579993f5d78628d0b7 commit hash: 34cd5e3b86cdab8b62afa9579993f5d78628d0b7 commit hash: 34cd5e3b86cdab8b62afa9579993f5d78628d0b7 commit hash: 34cd5e3b86cdab8b62afa9579993f5d78628d0b7 34cd5e3

Number of commits found: 3