Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Libreboot workshop at LibrePlanet 2019 | Leah Rowe | 2019-03-19 | 1 | -0/+1 |
| | |||||
* | news post about freenode 2018 libreboot workshop | Leah Rowe | 2018-11-02 | 1 | -0/+1 |
| | | | | | | | | PR would have been unwise for this, because it's urgent that this is merged right away swiftgeek and and_who: if you disapprove, feel free to revert this commit and I'll put it to pull request instead | ||||
* | add news post about Gender Reassignment Surgery fundraiser for Leah Rowe | Leah Rowe | 2018-04-22 | 1 | -0/+1 |
| | |||||
* | News post about Libreboot installation workshop at FSF LibrePlanet 2018 | Leah Rowe | 2018-03-21 | 1 | -0/+1 |
| | |||||
* | news article asking people to help with release testing | Leah Rowe | 2017-12-21 | 1 | -0/+1 |
| | |||||
* | add missing entry in MANIFEST for recent News entry (no PR needed) | Leah Rowe | 2017-09-21 | 1 | -0/+1 |
| | | | | PR not needed for this. Just a simple fix | ||||
* | www/news: announcement of Alyssa's resignation | Leah Rowe | 2017-09-01 | 1 | -0/+1 |
| | |||||
* | News post for TALOS II, and add TALOS II to the suppliers page | Leah Rowe | 2017-08-15 | 1 | -0/+1 |
| | |||||
* | www/index.sh: Fix OpenBSD touch(1) incompatibility, take #2 | Michael Reed | 2017-07-10 | 1 | -0/+5 |
When running index.sh on OpenBSD, the following error happens for each item in the news/ directory (output is from "bash -x"): + touch -d '4 Jun 2017' news/andrew-robbins-new-maintainer.md touch: out of range or illegal time specification: YYYY-MM-DDThh:mm:ss[.frac][Z] This is because OpenBSD's touch(1) requires that the "d" flag's argument be in ISO 8601 format, that is, "YYYY-MM-DDThh:mm:ss[.frac][Z]". This could have been dealt with by converting the article date (determined by "sed -n 3p $f | sed -e 's/^..//g'") to ISO 8601 format, then passing the date to touch(1). That would have required even more code, so was discarded as a possible solution. Instead, we solve this by keeping a MANIFEST file under news/, which is read to determine (a) which articles should be added to news/index.md, and (b) in which order. This avoids the need for touch(1) altogether, finally making the whole libreboot website build properly on OpenBSD. This also allows a minor simplification in the Makefile. |