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) combinatio for a given watch list. This is what FreshPorts will look for.

non port: Mk/Scripts/cargo-crates-git-common.awk

Number of commits found: 3

Monday, 2 Oct 2023
11:33 Tobias Kortkamp (tobik) search for other commits by this committer
cargo.mk: Strip vV from GitHub tags only when followed by a digit

Fixes the following in games/veloren-weekly when iced crates have a tag
similar to veloren-winit-0.28

$ cd games/veloren-weekly
$ make cargo-crates-merge
$ make
[...]
===>  Configuring for veloren-weekly-s20230830
===>   Cargo config:
find:
/usr/ports/games/veloren-weekly/work/egui_winit_platform-eloren-winit-0.28: No
such file or directory
find: /usr/ports/games/veloren-weekly/work/iced-eloren-winit-0.28: No such file
or directory
find: /usr/ports/games/veloren-weekly/work/iced-eloren-winit-0.28: No such file
or directory
find: /usr/ports/games/veloren-weekly/work/iced-eloren-winit-0.28: No such file
or directory
find: /usr/ports/games/veloren-weekly/work/iced-eloren-winit-0.28: No such file
or directory
find: /usr/ports/games/veloren-weekly/work/iced-eloren-winit-0.28: No such file
or directory
find: /usr/ports/games/veloren-weekly/work/iced-eloren-winit-0.28: No such file
or directory
[...]
[patch.'https://gitlab.com/Imbris/keyboard-keynames.git']
keyboard-keynames = { path =
'/usr/ports/games/veloren-weekly/work/keyboard-keynames-veloren-winit-0.28-fca4bbdfa51bf054b155a455935b3792975c989d'
}
[...]
[patch.'https://github.com/Imberflur/egui_winit_platform.git']
egui_winit_platform = { path =
'/usr/ports/games/veloren-weekly/work/egui_winit_platform-eloren-winit-0.28' }
[...]
[patch.'https://github.com/Imberflur/iced']
iced_core = { path =
'/usr/ports/games/veloren-weekly/work/iced-eloren-winit-0.28' }
iced_futures = { path =
'/usr/ports/games/veloren-weekly/work/iced-eloren-winit-0.28' }
iced_graphics = { path =
'/usr/ports/games/veloren-weekly/work/iced-eloren-winit-0.28' }
iced_native = { path =
'/usr/ports/games/veloren-weekly/work/iced-eloren-winit-0.28' }
iced_style = { path =
'/usr/ports/games/veloren-weekly/work/iced-eloren-winit-0.28' }
iced_winit = { path =
'/usr/ports/games/veloren-weekly/work/iced-eloren-winit-0.28' }
[...]
===>   Updating Cargo.lock
error: failed to load source for dependency `iced_core`

Caused by:
  Unable to update /usr/ports/games/veloren-weekly/work/iced-eloren-winit-0.28

Caused by:
  failed to read
`/usr/ports/games/veloren-weekly/work/iced-eloren-winit-0.28/Cargo.toml`

Caused by:
  No such file or directory (os error 2)
*** Error code 101

Stop.
make[1]: stopped in /usr/ports/games/veloren-weekly

PR:		273468
Reported by:	jbeich
commit hash: 6b1b157425932c2977c10a53c090101215c8ad5e commit hash: 6b1b157425932c2977c10a53c090101215c8ad5e commit hash: 6b1b157425932c2977c10a53c090101215c8ad5e commit hash: 6b1b157425932c2977c10a53c090101215c8ad5e 6b1b157
Saturday, 8 Oct 2022
12:21 Tobias Kortkamp (tobik) search for other commits by this committer
Uses/cargo: Fix invalid WRKSRC for crates fetched from GitLab with tag

When using tags the archive fetched from GitLab has the
corresponding commit hash appended to the directory root too.

snui@git+https://gitlab.com/snakedye/snui.git?tag=v0.1.4\#83873f1e148a9c84471c10f166c9a945a44d3e64

would result in

WRKSRC_crate_snui=	${WRKDIR}/snui-v0.1.4

but it must be

WRKSRC_crate_snui=	${WRKDIR}/snui-v0.1.4-83873f1e148a9c84471c10f166c9a945a44d3e64

PR:		266724
Reported by:	jbeich
commit hash: 18052912af5ddbea5d2008e750c568dda0d97b43 commit hash: 18052912af5ddbea5d2008e750c568dda0d97b43 commit hash: 18052912af5ddbea5d2008e750c568dda0d97b43 commit hash: 18052912af5ddbea5d2008e750c568dda0d97b43 1805291
Monday, 25 Oct 2021
08:49 Tobias Kortkamp (tobik) search for other commits by this committer
Uses/cargo: Rework git source support based on patch-in-config sections

Git sources from `Cargo.lock` are added to `CARGO_CRATES` through
the normal mechanism of `make cargo-crates` by the porter.  They
are used to populate `MASTER_SITES`, `DISTFILES` with static
git-archive(1) tarballs a la `USE_GITHUB`, `USE_GITLAB`.  In the
configure phase we generate `[patch]` sections in the config file
which will cause `cargo update` to auto-update `Cargo.lock` to point
to the appropriate extraction directories.

Normally `cargo update` would connect to the network to update all
Git sources but since rust-1.55.0 our cargo has been patched to
skip this when `CARGO_FREEBSD_PORTS_SKIP_GIT_UPDATE` is set in the
environment.
(Only the first 15 lines of the commit message are shown above View all of this commit message)
commit hash: 2bad8d171afe848ac88585270964342a55d504ce commit hash: 2bad8d171afe848ac88585270964342a55d504ce commit hash: 2bad8d171afe848ac88585270964342a55d504ce commit hash: 2bad8d171afe848ac88585270964342a55d504ce 2bad8d1

Number of commits found: 3