Skip to content

Commit

Permalink
Add (still minimal) 'Deadline' reporter / printer
Browse files Browse the repository at this point in the history
  • Loading branch information
eddelbuettel committed Jun 12, 2024
1 parent bf0c3d4 commit 0f7e684
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2024-06-12 Dirk Eddelbuettel <edd@debian.org>

* inst/examples/deadliners.r: Minimal 'Deadline' field printer

2024-06-10 Dirk Eddelbuettel <edd@debian.org>

* inst/examples/tttl.r: Support load_package argument switch
Expand Down
12 changes: 12 additions & 0 deletions inst/examples/deadliners.r
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/usr/bin/env r
#
# Minimal 'Deadline' field printer from CRAN db
#
# Copyright (C) 2024 Dirk Eddelbuettel
#
# Released under GPL (>= 2)

db <- as.data.frame(tools::CRAN_package_db())
dd <- with(db, db[!is.na(Deadline), c("Package", "Version", "Deadline")])
dd <- with(dd, dd[order(Deadline, Package), ])
print(dd, row.names=FALSE)

0 comments on commit 0f7e684

Please sign in to comment.