10 lines
298 B
R
10 lines
298 B
R
### Scope: Show last processed pkgs and timestamp by platform/OS
|
|
library(dplyr)
|
|
library(bincraftR)
|
|
|
|
### Show last processed package by each platform/arch
|
|
query_metadata_table() |>
|
|
group_by(platform, arch) |>
|
|
arrange(desc(timestamp)) |>
|
|
select(name, timestamp) |>
|
|
filter(row_number()==1)
|