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: chinese/c2t/Makefile

Number of commits found: 11

Thursday, 22 Feb 2024
14:02 Muhammad Moinur Rahman (bofh) search for other commits by this committer
chinese/c2t: Moved man to share/man

Approved by:    portmgr (blanket)
commit hash: 54e21d698897bdc02a86cad826460fa5f7f4644b commit hash: 54e21d698897bdc02a86cad826460fa5f7f4644b commit hash: 54e21d698897bdc02a86cad826460fa5f7f4644b commit hash: 54e21d698897bdc02a86cad826460fa5f7f4644b 54e21d6
Wednesday, 20 Jul 2022
14:21 Tobias C. Berner (tcberner) search for other commits by this committer
chinese: remove 'Created by' lines

A big Thank You to the original contributors of these ports:

  *  <intron@intron.ac>
  *  Bo-Yi Wu <appleboy.tw@gmail.com>
  *  Chih-Hsin Chang <chihhsin@cs.nctu.edu.tw>
  *  Ching-Hong Wu <woju@freebsd.ntu.edu.tw>
  *  David O'Brien (obrien@FreeBSD.org)
  *  David O'Brien (obrien@cs.ucdavis.edu)
  *  Eric L. Camachat <eric@camachat.org>
  *  Foxfair Hu <foxfair@FreeBSD.org>
  *  G. Adam Stanislav <adam@whizkidtech.net>
  *  Gasol Wu <gasol.wu@gmail.com>
  *  Gea-Suan Lin <gslin@gslin.org>
  *  Henry Hu <henry.hu.sh@gmail.com>
  *  Jie Gao <gaoj@cpsc.ucalgary.ca>
  *  Jing-Tang Keith Jang <keith@FreeBSD.org>
  *  Joe Horn <joehorn@gmail.com>
  *  Ka Ho Ng <khng300@gmail.com>
  *  Kuang-che Wu <kcwu@csie.org>
  *  Michael C . Wu <keichii@iteration.net>
  *  Michael C. Wu
  *  Ming-I Hseh <PA@FreeBSD.Ntu.edu.TW>
  *  Rong-En Fan <rafan@FreeBSD.org>
  *  Satoshi TAOKA <taoka@FreeBSD.org>
  *  Shell Hung <shell@shellhung.org>
  *  Shen Chuan-Hsing
  *  Shen Chuan-Hsing <statue@freebsd.sinica.edu.tw>
  *  Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
  *  Yen-Ming Lee <leeym@FreeBSD.org>
  *  Yen-Shuo Su <yssu@CCCA.NCTU.edu.tw>
  *  Yin-Jieh Chen <yinjieh@csie.nctu.edu.tw>
  *  Yinghong Liu <relaxbsd@gmail.com>
  *  Zhang Shu
  *  Zhihao Yuan <lichray@gmail.com>
  *  blubee <hello@blubee.me>
  *  buganini@gmail.com
  *  chinsan
  *  chinsan <chinsan.tw@gmail.com>
  *  clive
  *  clsung
  *  clsung@dragon2.net
  *  gugod@gugod.org
  *  hrs
  *  ijliao
  *  vanilla@

With hat:	portmgr
commit hash: 25fe59a33ef000c1e61b9135490822d4b5069764 commit hash: 25fe59a33ef000c1e61b9135490822d4b5069764 commit hash: 25fe59a33ef000c1e61b9135490822d4b5069764 commit hash: 25fe59a33ef000c1e61b9135490822d4b5069764 25fe59a
Saturday, 2 Oct 2021
11:19 Dimitry Andric (dim) search for other commits by this committer
chinese/c2t: fix "error: address of register variable requested"

During an exp-run for llvm 13 (see bug 258209), it turned out that
chinese/c2t fails to build with clang 13:

cc -O2 -pipe  -fstack-protector-strong -fno-strict-aliasing 
-DCHINDICT=\"/usr/local/share/chinese/gb/TONEPY.tit\" -c c2t.c
c2t.c:99:3: error: address of register variable requested
  hz[2] = '\0';
  ^~
c2t.c:107:7: error: address of register variable requested
      hz[0] = (char)eka;
      ^~
c2t.c:108:7: error: address of register variable requested
      hz[1] = (char)toka;
      ^~
c2t.c:113:8: error: address of register variable requested
          if (hz[0] != (*pipo)[i] || hz[1] != (*pipo)[i+1]) continue;
              ^~
c2t.c:113:31: error: address of register variable requested
          if (hz[0] != (*pipo)[i] || hz[1] != (*pipo)[i+1]) continue;
                                     ^~
c2t.c:133:36: error: address of register variable requested
                fprintf(miss_chars, "%c", hz[0]);
                                          ^~
c2t.c:134:30: error: address of register variable requested
                fprintf(miss_chars, "%c ", hz[1]);
                                           ^~
c2t.c:143:17: error: address of register variable requested
                        printf("%c", hz[0]);
                                     ^~
c2t.c:144:18: error: address of register variable requested
                        printf("%c ", hz[1]);
                                      ^~
9 errors generated.

As indicated, arrays shouldn't be register variables as they don't have
addresses. In general, the register keyword is deprecated and should no
longer be used.

To fix this, use a command line flag to define "register" to empty.

PR:		258465
Approved by:	maintainer timeout (2 weeks)
MFH:		2021Q4
commit hash: 0efce95397d4b53be14448a803902191ab8c1df3 commit hash: 0efce95397d4b53be14448a803902191ab8c1df3 commit hash: 0efce95397d4b53be14448a803902191ab8c1df3 commit hash: 0efce95397d4b53be14448a803902191ab8c1df3 0efce95
Tuesday, 6 Apr 2021
14:31 Mathieu Arnold (mat) search for other commits by this committer
Remove # $FreeBSD$ from Makefiles.
commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb 305f148
Thursday, 3 Oct 2013
06:40 sunpoet search for other commits by this committer
- Remove unnecessary slash after STAGEDIR
Original commitRevision:329142 
Thursday, 26 Sep 2013
14:35 vanilla search for other commits by this committer
Support stage.
Original commitRevision:328366 
Friday, 20 Sep 2013
16:01 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
chinese)
Original commitRevision:327713 
Thursday, 6 Oct 2005
06:23 linimon search for other commits by this committer
Remove obsolete mastersites.

Source:         distfile survey
Original commit
Tuesday, 4 Oct 2005
22:31 fenner search for other commits by this committer
Use grouping to stop trying to fetch the wrong file from the wrong site.

Inspired by:    http://people.freebsd.org/~fenner/portsurvey/groups/group.html
Original commit
Thursday, 20 Feb 2003
16:56 knu search for other commits by this committer
De-pkg-comment.
Original commit
Tuesday, 5 Nov 2002
03:38 obrien search for other commits by this committer
The community as a whole can maintain these better than I can at the moment.
Original commit

Number of commits found: 11