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: math/readstat/Makefile

Number of commits found: 7

Monday, 12 Feb 2024
00:55 Jason E. Hale (jhale) search for other commits by this committer
math/readstat: Update to 1.1.9

MFH:		2024Q1
Security:	388eefc0-c93f-11ee-92ce-4ccc6adda413
commit hash: 013b958d94ac91a14d3d6b2b3db24c1ce88ee7ed commit hash: 013b958d94ac91a14d3d6b2b3db24c1ce88ee7ed commit hash: 013b958d94ac91a14d3d6b2b3db24c1ce88ee7ed commit hash: 013b958d94ac91a14d3d6b2b3db24c1ce88ee7ed 013b958
Tuesday, 2 May 2023
14:25 Adriaan de Groot (adridg) search for other commits by this committer
math/readstat: fix build with clang15

.. continuing story of missing prototypes.
commit hash: b94d1e58ddfa03e1162339e81a8465899249d0c5 commit hash: b94d1e58ddfa03e1162339e81a8465899249d0c5 commit hash: b94d1e58ddfa03e1162339e81a8465899249d0c5 commit hash: b94d1e58ddfa03e1162339e81a8465899249d0c5 b94d1e5
Thursday, 20 Apr 2023
22:01 Adriaan de Groot (adridg) search for other commits by this committer
math/readstat: another attempt at getting clang16 on FreeBSD14 to compile this
commit hash: a4f61b09f6f15e3570652acb9c24200072878845 commit hash: a4f61b09f6f15e3570652acb9c24200072878845 commit hash: a4f61b09f6f15e3570652acb9c24200072878845 commit hash: a4f61b09f6f15e3570652acb9c24200072878845 a4f61b0
Sunday, 26 Mar 2023
21:31 Adriaan de Groot (adridg) search for other commits by this committer
math/readstat: repair build (missing prototype in modern C)
commit hash: ccb492f209b57055e2e5456b48d5d3cce809734f commit hash: ccb492f209b57055e2e5456b48d5d3cce809734f commit hash: ccb492f209b57055e2e5456b48d5d3cce809734f commit hash: ccb492f209b57055e2e5456b48d5d3cce809734f ccb492f
Sunday, 19 Feb 2023
13:07 Adriaan de Groot (adridg) search for other commits by this committer
math/readstat: fix build on 14-CURRENT

In 14-CURRENT, the system compiler is more strict; it looks like

  In file included from src/readstat_bits.c:9:
    src/readstat_bits.h:10:29: error: a function declaration without
    a prototype is deprecated in all versions of C
    [-Werror,-Wstrict-prototypes]
  int machine_is_little_endian();

Apply the stricter flags in all builds, then fix the source so
that the prototypes are explicitly (void) -- this is a subtlely
of C semantics where (void) means "no arguments" and () means
"arguments unspecified" that rarely matters. Except now.
commit hash: a46fb43e0e75b4099d7ea35b7072a3c2ca9362b1 commit hash: a46fb43e0e75b4099d7ea35b7072a3c2ca9362b1 commit hash: a46fb43e0e75b4099d7ea35b7072a3c2ca9362b1 commit hash: a46fb43e0e75b4099d7ea35b7072a3c2ca9362b1 a46fb43
Wednesday, 7 Sep 2022
21:10 Stefan Eßer (se) search for other commits by this committer
Add WWW entries to port Makefiles

It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.

Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.

There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.

This commit implements such a proposal and moves one of the WWW: entries
of each pkg-descr file into the respective port's Makefile. A heuristic
attempts to identify the most relevant URL in case there is more than
one WWW: entry in some pkg-descr file. URLs that are not moved into the
Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr
files in order to preserve them.

There are 1256 ports that had no WWW: entries in pkg-descr files. These
ports will not be touched in this commit.

The portlint port has been adjusted to expect a WWW entry in each port
Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as
deprecated.

Approved by:		portmgr (tcberner)
commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 b7f0544
Friday, 26 Aug 2022
13:48 Tobias C. Berner (tcberner) search for other commits by this committer
math/readstat: new port - ead (and write) data sets from SAS, Stata, and SPSS

Originally developed for Wizard, ReadStat is a command-line tool and
MIT-licensed C library for reading files from popular stats packages. Supported
data formats include:

 * SAS: SAS7BDAT (binary file) and XPORT (transport file)
 * Stata: DTA (binary file) versions 104-119
 * SPSS: POR (portable file), SAV (binary file), and ZSAV (compressed binary)

Supported metadata formats include:

 * SAS: SAS7BCAT (catalog file) and .sas (command file)
 * Stata: .dct (dictionary file)
 * SPSS: .sps (command file)

There is also write support for all the data formats, but not the metadata
formats. The produced SAS7BDAT files still cannot be read by SAS, but feel free
to contribute your binary-format expertise here.

WWW: https://github.com/WizardMac/ReadStat
commit hash: 58df67cee573cda430507ec9a02b46793bf4e4bb commit hash: 58df67cee573cda430507ec9a02b46793bf4e4bb commit hash: 58df67cee573cda430507ec9a02b46793bf4e4bb commit hash: 58df67cee573cda430507ec9a02b46793bf4e4bb 58df67c

Number of commits found: 7