Commit Graph

8719 Commits

Author SHA1 Message Date
Po-Chuan Hsieh eb3d95247c
japanese/rubygem-mail-iso-2022-jp: Fix gemspec for rubygem-mail 2.8.0 update
- Bump PORTREVISION for package change
2023-01-30 21:02:30 +08:00
MANTANI Nobutaka a2d5d78319 japanese/anthy: Fix runtime error of anthy.el with editors/emacs-devel 2023-01-28 21:37:59 +09:00
Dimitry Andric bb59375ae0 japanese/kakasi: fix build with clang 15
During an exp-run for llvm 15 (see bug 265425), it turned out that
japanese/kakasi failed to build with clang 15:

  kanjiio.c:1083:11: error: incompatible integer to pointer conversion assigning to 'iconv_t' (aka 'struct __tag_iconv_t *') from 'int' [-Wint-conversion]
          fromutf8 = -1;
                   ^ ~~
  kanjiio.c:1087:9: error: incompatible integer to pointer conversion assigning to 'iconv_t' (aka 'struct __tag_iconv_t *') from 'int' [-Wint-conversion]
          toutf8 = -1;
                 ^ ~~

This is because 'fromutf8' and 'toutf8' are of pointer type, not int.
Add a cast to silence the warning.

PR:		268815
Approved by:	portmgr (tcberner)
MFH:		2023Q1
2023-01-16 20:04:47 +01:00
Muhammad Moinur Rahman 2d00178fd4 */*: Fix some ports conversion from USE_RUBY to USES=ruby
In my previous commit 18c6e18 I missed some ports where RUBY was
optional. This commit fixes those missing ports and fixes INDEX build.

Approved by:	portmgr
Fixes: 18c6e18 Mk/**ruby.mk: Switch from USE_RUBY=yes to USES=ruby
2023-01-14 20:45:23 -06:00
Muhammad Moinur Rahman 18c6e18276 Mk/**ruby.mk: Switch from USE_RUBY=yes to USES=ruby
Switch from Mk/bsd.ruby.mk to Mk/Uses/ruby.mk

Notable changes are.

- Mk/bsd.ruby.mk is moved to Mk/Uses/ruby.mk.
- USE_RUBY=yes is replaced with USES=ruby.
- USE_RUBY_EXTCONF is replaced with USES=ruby:extconf.
- USE_RUBY_RDOC is replaced with USES=ruby:rdoc.
- USE_RUBY_SETUP is replaces with USES=ruby:setup.
- RUBY_NO_BUILD_DEPENDS and RUBY_NO_RUN_DEPENDS are replaced with
  USES=ruby:{build,none,run}.
- RUBY_REQUIRE isn't used anywhere, so removed.
- USES=gem now implies USES=ruby.

This is mainly the work of yasu@ at https://reviews.freebsd.org/D27863

I have just made some cosmetic changes and ran exp-run to test that the
tree is not in a BROKEN state.

Approved by:	portmgr
Differential Revision:	https://reviews.freebsd.org/D37925
2023-01-14 17:08:33 -06:00
Dima Panov 82776dcceb */libreoffice*: update to 7.4.4.release (+)
Please welcome latest Community release of LibreOffice Suite, 7.4.4!

Read more:	https://blog.documentfoundation.org/blog/2023/01/12/libreoffice-7-4-4-community/
2023-01-14 17:00:19 +03:00
Dmitry Marakasov 77d68471ad */*: rename CHEESESHOP to PYPI in MASTER_SITES
PR:			267994
Differential revision:	D37518
Approved by:		bapt
2023-01-11 18:58:34 +03:00
Hiroki Sato 501c761ccc
japanese/mozc-server: Update zipcode dictionary 2023-01-08 22:29:57 +09:00
Hiroki Sato 5ee357d401
japanese/zipcodes: Update to 20221228
Take maintainership and fix minor style issues.
2023-01-08 22:06:44 +09:00
Hiroki Sato b11dd138c3
japanese/FreeWnn-server: Add LICENSE and update WWW 2023-01-08 02:35:41 +09:00
Hiroki Sato 46c141df55
japanese/FreeWnn-lib: Add LICENSE and update WWW
Minor style fix:
- USE_LDCONFIG is applicable to -lib, not -server.
2023-01-08 02:35:41 +09:00
Hiroki Sato d0a5831ec7
japanese/FreeWnn-lib: Strip the shared libraries 2023-01-08 02:35:40 +09:00
Dimitry Andric fa63f46a75
japanese/FreeWnn-lib: fix build with clang 15
During an exp-run for llvm 15 (see bug 265425), it turned out that
japanese/FreeWnn-lib failed to build with clang 15:

  js.c:1029:28: error: incompatible pointer to integer conversion returning 'void *' from a function with result type 'int' [-Wint-conversion]
    handler_of_jserver_dead (NULL);
                                 ^~~~
  /usr/include/sys/_null.h:34:14: note: expanded from macro 'NULL'
  #define NULL    ((void *)0)
                      ^~~~~~~~~~~
  js.c:150:24: note: expanded from macro 'handler_of_jserver_dead'
                  return err_val; \
                             ^~~~~~~

This is because the js_disconnect() function should return an integer,
not a pointer. Use the error value -1 instead.

PR:	268816
2023-01-08 02:35:40 +09:00
Tobias C. Berner 19093fd0dd KDE: Update KDE Gear to 22.12.1 2023-01-05 18:28:33 +01:00
Hiroki Sato 06c71031f8
japanese/ja-tex-xdvik: Remove this variant in favor of tex-xdvik 2023-01-03 01:37:13 +09:00
Hajimu UMEMOTO 881215d474 japanese/font-plemoljp{,-nf,-ns}: update to 1.4.0. 2023-01-01 11:12:55 +09:00
Hajimu UMEMOTO cfcc30523a japanese/font-udev-gothic{,-nf}: update to 1.1.0. 2023-01-01 10:52:41 +09:00
Muhammad Moinur Rahman 721e5776c9 Mk/**tex.mk: Convert bsd.tex.mk to USES=tex
- Update all the consumers to use USES=tex
- USE_TEX=yes is the old way of writing USES=tex which has been removed
  and replaced in all ports
- Almost all of the USE_TEX features remains unchanged
- Some consumers had the same variables defined both in the mk
  infrastructure and also in the ports which have been removed from the
  ports as those are redundant.

In case any of the consumers are failing to build please make sure that
the nexessary USES=tex is there. Unlike previous USE_TEX=yes will no
longer load the required VARS for tex and related dependencies.

Reviewed by:	portmgr
Approved by:	portmgr (blanket)
2022-12-19 08:44:58 -06:00
Hajimu UMEMOTO bbc6bf9a77 japanese/font-hackgen{,-nf}: update to 2.8.0. 2022-12-19 20:22:44 +09:00
Dimitry Andric d5e379f660 japanese/canna-lib: fix build with clang 15
During an exp-run for llvm 15 (see bug 265425), it turned out that
japanese/canna-lib failed to build with clang 15:

  crxgram.c:421:33: error: incompatible integer to pointer conversion passing 'int' to parameter of type 'char *' [-Wint-conversion]
                  alert("unknown operation %c", op);
                                                ^~
  rkc.c:2741:38: error: incompatible integer to pointer conversion passing 'int' to parameter of type 'unsigned char *' [-Wint-conversion]
    nkanji = _RkwGetSimpleKanji(cxnum, dicname, cbuf, len,
                                       ^~~~~~~

This is mostly expected as canna-lib is very old K&R code, and clang 15
has -Wint-conversion as an error by default.

Pass -Wno-error=int-conversion in CCOPTIONS to make the warning
non-fatal. This should work for both clang and gcc.

PR:		268256
Approved by:	portmgr (tcberner)
MFH:		2022Q4
2022-12-18 18:27:33 +01:00
Tobias C. Berner 727562b175 KDE: Update KDE Gear to 22.12
KDE Gear 22.12 is Here!

Thursday, 8 December 2022

KDE Gear ⚙️ is back with exciting new features, performance boosts, and
bugfixes for all your favorite KDE apps!

In this release: Kate extends a warm welcome, Dolphin offers you more
choices, and a lot of apps serve up hamburgers galore!

Announcement: https://kde.org/announcements/gear/22.12.0/
2022-12-10 08:46:22 +01:00
Yasuhiro Kimura ea66012756 editors/emacs-devel: Update to 2022-11-28 snapshot
Bump PORTREVISION of consumers as EMACS_VER is changed to 30.0.50.

Changes:	51589f81...7939184f
2022-11-30 16:06:37 +09:00
Jochen Neumeister 6ed8ddae0c */wordpress*: Update to 6.1.1
Changlog: https://wordpress.org/news/2022/11/wordpress-6-1-1-maintenance-release/

Sponsored by:	Netzkommune GmbH
2022-11-28 19:16:17 +01:00
Koichiro Iwao a5252c86d9 japanese/mecab-ipadic: Do not set LICENSE for metaport
as metaport itself does not any LICENSE.

PR:		266476
2022-11-28 21:55:45 +09:00
Dima Panov cf6cf5ee1c */libreoffice: update LibreOffice suite to 7.4.3 release (+)
LibreOffice 7.4.3 is now available, with bugfixes and compatibility improvements.

Read more: https://blog.documentfoundation.org/blog/2022/11/24/libreoffice-7-4-3-community/
2022-11-28 13:52:42 +03:00
MANTANI Nobutaka c78791131f textproc/uim: Update to the snapshot on 2022-09-27
Bump PORTREVISION of the ports that depend on textproc/uim port.
2022-11-27 23:34:17 +09:00
Hajimu UMEMOTO 1e606be454 japanese/font-plemoljp{,-nf,-nfj,-ns}: update to 1.3.0. 2022-11-05 23:01:15 +09:00
Tobias C. Berner 1a35c26cf2 KDE: Update KDE Gear to 22.08.3
Thursday, 3 November 2022

Over 120 individual programs plus dozens of programmer libraries and
feature plugins are released simultaneously as part of KDE Gear.

Today they all get new bugfix source releases with updated translations,
including:

   * dolphin: Fix opening unnecessary new windows (Commit, fixes bug
     #440663)
   * konsole: Fix a crash when extending the selection (Commit, fixes
     bug #398320 and bug #458822)

Announcement:	https://kde.org/announcements/gear/22.08.3/
Changelog:	https://kde.org/announcements/changelogs/gear/22.08.3/
2022-11-04 23:12:06 +01:00
Jochen Neumeister c783ffdd63 */wordpress*: Update to 6.0.3
Sponsored by:	Netzkommune GmbH
2022-10-28 14:42:32 +02:00
Dmitry Marakasov 96bfe9e4cd japanese/mh: remove my mirror which does not host this distfile
Approved by:	portmgr blanket
2022-10-19 22:15:05 +03:00
Dima Panov 8b857ccb4b editors/libreoffice: update to 7.4.2 release (+)
LibreOffice Community release 7.4.2 is now available, with 80+ bugfixes and improvements.

Read more:	https://blog.documentfoundation.org/blog/2022/10/13/libreoffice-7-4-2-community/

MFH:	2022Q4
2022-10-14 16:12:24 +03:00
Tobias C. Berner aecaafb00a KDE: Update KDE Gear to 22.08.2
KDE Gear 22.08.2

Thursday, 13 October 2022

Over 120 individual programs plus dozens of programmer libraries and
feature plugins are released simultaneously as part of KDE Gear.

Today they all get new bugfix source releases with updated translations, including:

 * ark: Fix incompatibility with original 7-Zip (Commit, fixes bug
   #456797)
 * kdeconnect: Prevent a crash if there’s no audio devices (Commit,
   fixes bug #454917)
 * kio-extras: Compatibility with Samba >= 4.16 (Commit, fixes bug
   #453090)

Announcement:	https://kde.org/announcements/gear/22.08.2/
2022-10-14 11:20:32 +02:00
Po-Chuan Hsieh 05e7a8b8e1
devel/protobuf: Update to 3.21.7
- Bump PORTREVISION of dependent ports for shlib change

Changes:	https://github.com/protocolbuffers/protobuf/releases
2022-10-09 23:37:51 +08:00
Yasuhiro Kimura 164249e867 editors/emacs: Update to 28.2
* Remove FCITXPATCH option as extra-patch-src_xfns.c can't be applied
  since 28.1.
* Tidy up Makefile with portfmt.
* Bump PORTREVISION of consumers.

ChangeLog:	https://www.gnu.org/software/emacs/news/NEWS.28.2

PR:		266454
Exp-run by:	antoine
Reviewed by:	ashish, jrm
Differential Revision:	https://reviews.freebsd.org/D36613
2022-09-21 16:48:19 +09:00
Dima Panov 1eed3ce417 editors/libreoffice: update to 7.4.1 release (+)
LibreOffice 7.4.1 Community release is available for FreeBSD users!

Read more:	https://blog.documentfoundation.org/blog/2022/09/15/libreoffice-741-community/
Release notes:	https://wiki.documentfoundation.org/ReleaseNotes/7.4
2022-09-18 12:37:31 +03:00
Jochen Neumeister f716c18b2e */wordpress*: Update to 6.0.2
Changelog: https://wordpress.org/news/2022/08/wordpress-6-0-2-security-and-maintenance-release/

Sponsored by:	Netzkommune GmbH
2022-09-17 22:25:43 +02:00
Jochen Neumeister 3ae94f9fed */wordpress*: Update to 6.0.1
Changelog: https://wordpress.org/news/2022/07/wordpress-6-0-1-maintenance-release/

Sponsored by:	Netzkommune GmbH
2022-09-17 10:01:46 +02:00
Hajimu UMEMOTO 0e3d69414f japanese/font-plemoljp{,-nf,-ns}: update to 1.2.7. 2022-09-12 19:59:09 +09:00
Hajimu UMEMOTO 94816849ab japanese/font-hackgen{,-nf}: update to 2.7.1. 2022-09-12 19:49:09 +09:00
TAKATSU Tomonari 17c0958ebf japanese/R-cran-zipangu: Update to 0.3.1 2022-09-11 14:45:15 +00:00
Felix Palmen ddae4e92d8 Mk/Uses: always use colon for build/run suffix
Most USES use a colon for build/run(/test) suffixes. Change kde.mk,
qt.mk and pyqt.mk to do the same, and update all ports using that.

Document in CHANGES.

PR:			266034
Exp-run by:		antoine
Approved by:		tcberner (mentor)
Differential Revision:	https://reviews.freebsd.org/D36349
2022-09-11 12:20:14 +02:00
Rainer Hurling 3bf6447d32 japanese/tex-ptex: Fix stale WWW entry
PR:		266354
2022-09-11 10:09:42 +02:00
Tobias Kortkamp e79fe1aabc Fix WWW in parent/child ports
Many of the WWW are overwritten later which means the wrong value
is used. This did not happen before where the children were either
 a) just using the pkg-descr from the parents
 b) or had their own separate pkg-descr with custom WWW

Use WWW?= in parents when the child's WWW is different.

Children that use the same WWW as the parent can just inherit it,
i.e., the child WWW can be removed.

Approved by:	portmgr (implicit)
2022-09-10 19:41:16 +02:00
Stefan Eßer e55c81cf37 Change remaining "WWW:" into "See also:"
Approved by:	portmgr (implicit)
2022-09-08 18:53:02 +02:00
Stefan Eßer ade2a047e0 Remove WWW lines that have been moved into Makefiles
Approved by:	portmgr (implicit)
2022-09-08 17:46:38 +02:00
Stefan Eßer 986beaaabc Move more WWW entries from pkg-descr files into Makefiles
The WWW: lines in the pkg-descr files of these ports where not at the
end of those files and have been missed in prior conversion runs.

Approved by:	portmgr (implicit)
2022-09-08 17:43:21 +02:00
Tobias C. Berner b83e197d31 KDE: Update KDE Gear to 22.08.1
Thursday, 8 September 2022

Over 120 individual programs plus dozens of programmer libraries and
feature plugins are released simultaneously as part of KDE Gear.

Today they all get new bugfix source releases with updated translations,
including:

 *  kmail: Searching for messages does work again (Commit, fixes bugs
    #458202 and #458245).
 *  kate: Fix a crash when there are no search results (Commit)
 *  krdc: Access dates are displayed properly now (Commit, fixes bug
    #458587)

Announcement: https://kde.org/announcements/gear/22.08.1/
2022-09-08 14:20:03 +02:00
Stefan Eßer fb16dfecae Remove WWW entries moved into port Makefiles
Commit b7f05445c0 has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.

This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.

Approved by:		portmgr (tcberner)
2022-09-07 23:58:51 +02:00
Stefan Eßer b7f05445c0 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)
2022-09-07 23:10:59 +02:00
Tobias C. Berner d9b0d9ac4e framework: switch tree to using vala.mk
PR:		249940
2022-08-26 19:02:25 +02:00