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/Makefile

Number of commits found: 21

Saturday, 23 Mar 2024
09:41 Mikael Urankar (mikael) search for other commits by this committer
lang/rust: Bump revisions after 1.77.0

PR:		277786
commit hash: d632fbe55e45559d03a0bef7211913964aeba45a commit hash: d632fbe55e45559d03a0bef7211913964aeba45a commit hash: d632fbe55e45559d03a0bef7211913964aeba45a commit hash: d632fbe55e45559d03a0bef7211913964aeba45a d632fbe
Monday, 19 Feb 2024
11:59 Mikael Urankar (mikael) search for other commits by this committer
lang/rust: Bump revisions after 1.76.0

PR:		276920
commit hash: 7f5a7b0e524c8d32727681a4324905e350dc433c commit hash: 7f5a7b0e524c8d32727681a4324905e350dc433c commit hash: 7f5a7b0e524c8d32727681a4324905e350dc433c commit hash: 7f5a7b0e524c8d32727681a4324905e350dc433c 7f5a7b0
Friday, 2 Feb 2024
21:51 Yuri Victorovich (yuri) search for other commits by this committer
x11/eww: Broken on powerpc64le

Reported by:	fallout
commit hash: b40f58a980ac0a77f06f8fb028c5892c1ec35c49 commit hash: b40f58a980ac0a77f06f8fb028c5892c1ec35c49 commit hash: b40f58a980ac0a77f06f8fb028c5892c1ec35c49 commit hash: b40f58a980ac0a77f06f8fb028c5892c1ec35c49 b40f58a
Tuesday, 9 Jan 2024
12:15 Mikael Urankar (mikael) search for other commits by this committer
lang/rust: Bump revisions after 1.75.0

PR:		276033
commit hash: 109c3d4629b84972e660b689d169ac0761c1a519 commit hash: 109c3d4629b84972e660b689d169ac0761c1a519 commit hash: 109c3d4629b84972e660b689d169ac0761c1a519 commit hash: 109c3d4629b84972e660b689d169ac0761c1a519 109c3d4
Saturday, 23 Dec 2023
18:14 Nuno Teixeira (eduardo) search for other commits by this committer
*/*: Bump consumers of x11-toolkits/gtk30

New version of gtk3 in tree
commit hash: 3572ca3e01dedf1fe5b3776bd164e123252f5ef5 commit hash: 3572ca3e01dedf1fe5b3776bd164e123252f5ef5 commit hash: 3572ca3e01dedf1fe5b3776bd164e123252f5ef5 commit hash: 3572ca3e01dedf1fe5b3776bd164e123252f5ef5 3572ca3
Friday, 8 Dec 2023
15:04 Mikael Urankar (mikael) search for other commits by this committer
lang/rust: Bump revisions after 1.74.1

PR:		275243
commit hash: b2afd89fb26437c5d9810b131370525352e63f71 commit hash: b2afd89fb26437c5d9810b131370525352e63f71 commit hash: b2afd89fb26437c5d9810b131370525352e63f71 commit hash: b2afd89fb26437c5d9810b131370525352e63f71 b2afd89
Tuesday, 24 Oct 2023
10:22 Mikael Urankar (mikael) search for other commits by this committer
lang/rust: Bump revisions after 1.73.0

PR:		274499
commit hash: dd10dc88a7cf54f9aa164bf40cc5e481021401d6 commit hash: dd10dc88a7cf54f9aa164bf40cc5e481021401d6 commit hash: dd10dc88a7cf54f9aa164bf40cc5e481021401d6 commit hash: dd10dc88a7cf54f9aa164bf40cc5e481021401d6 dd10dc8
Friday, 8 Sep 2023
09:06 Mikael Urankar (mikael) search for other commits by this committer
lang/rust: Bump revisions after 1.72.0

PR:		273331
commit hash: aba8da2be191461126505c67726fa87345ae63f8 commit hash: aba8da2be191461126505c67726fa87345ae63f8 commit hash: aba8da2be191461126505c67726fa87345ae63f8 commit hash: aba8da2be191461126505c67726fa87345ae63f8 aba8da2
Monday, 17 Jul 2023
15:58 Mikael Urankar (mikael) search for other commits by this committer
lang/rust: Bump revisions after 1.71.0

PR:		272449
commit hash: cdf28617b49d6e4a3b049746d3754fbc36ef7892 commit hash: cdf28617b49d6e4a3b049746d3754fbc36ef7892 commit hash: cdf28617b49d6e4a3b049746d3754fbc36ef7892 commit hash: cdf28617b49d6e4a3b049746d3754fbc36ef7892 cdf2861
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
Friday, 9 Jun 2023
11:38 Mikael Urankar (mikael) search for other commits by this committer
lang/rust: Bump revisions after 1.70.0

PR:		271797
commit hash: e1d1045bc7a57cb26a07750a25c7b8bdd94b7175 commit hash: e1d1045bc7a57cb26a07750a25c7b8bdd94b7175 commit hash: e1d1045bc7a57cb26a07750a25c7b8bdd94b7175 commit hash: e1d1045bc7a57cb26a07750a25c7b8bdd94b7175 e1d1045
Sunday, 23 Apr 2023
13:14 Mikael Urankar (mikael) search for other commits by this committer
lang/rust: Bump revisions after 1.69.0

PR:		270953
commit hash: 3db55c4e97489e0f34fd7d35be6be0a4d0599061 commit hash: 3db55c4e97489e0f34fd7d35be6be0a4d0599061 commit hash: 3db55c4e97489e0f34fd7d35be6be0a4d0599061 commit hash: 3db55c4e97489e0f34fd7d35be6be0a4d0599061 3db55c4
Thursday, 16 Mar 2023
11:11 Mikael Urankar (mikael) search for other commits by this committer
lang/rust: Bump revisions after 1.68.0

PR:		270080
commit hash: ebf29acc6ce4942cbc6ee75d81b6b97391e4371f commit hash: ebf29acc6ce4942cbc6ee75d81b6b97391e4371f commit hash: ebf29acc6ce4942cbc6ee75d81b6b97391e4371f commit hash: ebf29acc6ce4942cbc6ee75d81b6b97391e4371f ebf29ac
Thursday, 2 Mar 2023
05:23 Tobias C. Berner (tcberner) search for other commits by this committer
accessibility/at-spi2-core: update to 2.46.0

What's new in at-spi2-core 2.46.0:
* Fix GetInterfaces documentation on org.a11y.atspi.Accessible
  interface.

What's new in at-spi2-core 2.45.91:
* Send device event controller events using the same signature as other
  events.
* Document the Accessible, Action, and Cache dbus interfaces.
* Fix license of atspi-gmain.c (#87).

What's new in at-spi2-core 2.45.90:
* xml: Add some documentation.
* xml: Fix event arguments.
* xml: Add some missing DeviceEventController methods.
* Bind the AT-SPI bus to the graphical session.
* Mark bus service as belonging to the session slice.
* Add ATSPI_ROLE_PUSH_BUTTON_MENU.
* Add an "announcement" event/signal to allow objects to send
  notifications (!63).
* Various code clean-ups and test improvements.

What's new in at-spi2-core 2.45.1:
* Atk and at-spi2-atk are now merged into this project.
* Now requires meson 0.56.2 and glib 2.67.4.
* at-spi2-atk: Expose the accessible hierarchy via dbus introspection.
* Properly escape the AT-SPI bus address; fixes warnings about the address
  not containing a colon (!55).
* Add a text value to AtspiValue, so that a value can expose a textual
  description, as in the new Atk value API.
* Add atspi_event_listener_register_with_app, to allow an event listener
  to be registered only for a given application (!52).

- accessibility/atk and accessibility/at-spi2-atk have been merged into
  accessibility/at-spi2-core

- accessibility/at-spi2-core: bump consumers of removed ports atk and
at-spi2-atk

PR:		269704
Exp-run by:	antoine
---
commit hash: fa81a4f5f8ed2bc2104eca4ebbb1b69731bae2e8 commit hash: fa81a4f5f8ed2bc2104eca4ebbb1b69731bae2e8 commit hash: fa81a4f5f8ed2bc2104eca4ebbb1b69731bae2e8 commit hash: fa81a4f5f8ed2bc2104eca4ebbb1b69731bae2e8 fa81a4f
Monday, 13 Feb 2023
14:52 Mikael Urankar (mikael) search for other commits by this committer
lang/rust: Bump revisions after 1.67.1

PR:		269336
commit hash: 109e35fd592baffe0d7ece384d16e243468dcc42 commit hash: 109e35fd592baffe0d7ece384d16e243468dcc42 commit hash: 109e35fd592baffe0d7ece384d16e243468dcc42 commit hash: 109e35fd592baffe0d7ece384d16e243468dcc42 109e35f
Saturday, 7 Jan 2023
19:24 Daniel Engberg (diizzy) search for other commits by this committer
*/*: Bump rust (cargo) ports to reflect on WITH_LTO

Bump ports in tree so they get rebuilt with new default settings
for cargo ports
commit hash: 12f1c627d4a26e8098339900303640f7520b6673 commit hash: 12f1c627d4a26e8098339900303640f7520b6673 commit hash: 12f1c627d4a26e8098339900303640f7520b6673 commit hash: 12f1c627d4a26e8098339900303640f7520b6673 12f1c62
Tuesday, 20 Dec 2022
17:37 Mikael Urankar (mikael) search for other commits by this committer
lang/rust: Bump revisions after 1.66.0

PR:		268415
commit hash: ba14e01a5249ee9d2f51183587dde36067be000f commit hash: ba14e01a5249ee9d2f51183587dde36067be000f commit hash: ba14e01a5249ee9d2f51183587dde36067be000f commit hash: ba14e01a5249ee9d2f51183587dde36067be000f ba14e01
Thursday, 17 Nov 2022
07:06 Mikael Urankar (mikael) search for other commits by this committer
lang/rust: Bump revisions after 1.65.0

PR:		267622
commit hash: 9bf6a9996323c016eb295bd6190b0e47ad76fdf4 commit hash: 9bf6a9996323c016eb295bd6190b0e47ad76fdf4 commit hash: 9bf6a9996323c016eb295bd6190b0e47ad76fdf4 commit hash: 9bf6a9996323c016eb295bd6190b0e47ad76fdf4 9bf6a99
Sunday, 30 Oct 2022
12:07 Mikael Urankar (mikael) search for other commits by this committer
lang/rust: Bump revisions after 1.64.0

PR:		267173
commit hash: afe651cf62deb08500a44cde90296a818effe5ae commit hash: afe651cf62deb08500a44cde90296a818effe5ae commit hash: afe651cf62deb08500a44cde90296a818effe5ae commit hash: afe651cf62deb08500a44cde90296a818effe5ae afe651c
Thursday, 20 Oct 2022
20:50 Fernando Apesteguía (fernape) search for other commits by this committer Author: Jesús Daniel Colmenares Oviedo
x11/eww: Mark BROKEN on armv7

PR:		267194
Reported by:	DtxdF@disroot.org (maintainer)
commit hash: bb0e622ee4e93fd9a90578210e304ec04387789b commit hash: bb0e622ee4e93fd9a90578210e304ec04387789b commit hash: bb0e622ee4e93fd9a90578210e304ec04387789b commit hash: bb0e622ee4e93fd9a90578210e304ec04387789b bb0e622
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: 21