summaryrefslogtreecommitdiff
path: root/japanese (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Exit from main() function properly on success to fix weird installationAlexey Dokuchaev2018-01-223-7/+21
| | | | | | | problem observed on sparc64. Notes: svn path=/head/; revision=459643
* Fix build with clang 6Antoine Brodin2018-01-211-0/+20
| | | | | | | | | | | | trainer.cpp:106:18: error: no matching function for call to 'make_pair' x_.push_back(std::make_pair<std::string, FeatureNode *>(y, fn)); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ PR: 224669 Reported by: pkg-fallout Notes: svn path=/head/; revision=459583
* Securityupdate to 4.9.2:Jochen Neumeister2018-01-192-4/+4
| | | | | | | | | | | | | Changelog: https://codex.wordpress.org/Version_4.9.2 https://wordpress.org/news/2018/01/wordpress-4-9-2-security-and-maintenance-release/ Approved by: mentors (implicit) MFH: 2018Q1 Security: c04dc18f-fcde-11e7-bdf6-00e04c1ea73d Notes: svn path=/head/; revision=459400
* Remove superfluous linefeeds and fix some other minor whitespace bugs.Alexey Dokuchaev2018-01-112-4/+1
| | | | Notes: svn path=/head/; revision=458755
* - Update to 20171228.Jun Kuriyama2018-01-094-12/+12
| | | | Notes: svn path=/head/; revision=458503
* Bump PORTREVISION due upgrade of devel/boehm-gc to 7.6.2Carlos J. Puga Medina2018-01-082-0/+2
| | | | | | | Approved by: portmgr (antoine) Notes: svn path=/head/; revision=458427
* - Update to 0.20180104Danilo Egea Gondolfo2018-01-052-4/+4
| | | | Notes: svn path=/head/; revision=458164
* - Update to 0.20171201Danilo Egea Gondolfo2017-12-262-4/+4
| | | | Notes: svn path=/head/; revision=457326
* japanese/egg-canna: Remove expired portJoseph Mingrone2017-12-254-59/+0
| | | | | | | Approved by: ume@FreeBSD.org (maintainer) Notes: svn path=/head/; revision=457251
* Convert to USES=autoreconf.Tijl Coosemans2017-12-241-2/+2
| | | | Notes: svn path=/head/; revision=457194
* Remove non-functional post-configure.Tijl Coosemans2017-12-231-8/+0
| | | | Notes: svn path=/head/; revision=457084
* Switch to swig 3.0Baptiste Daroussin2017-12-201-1/+2
| | | | Notes: svn path=/head/; revision=456792
* Switch to swig 3.0Baptiste Daroussin2017-12-201-1/+1
| | | | Notes: svn path=/head/; revision=456787
* Also broken on recent aarch64 and mips builds.Mark Linimon2017-12-181-2/+4
| | | | Notes: svn path=/head/; revision=456575
* Mark BROKEN: unfetchableAntoine Brodin2017-12-141-0/+2
| | | | | | | Reported by: pkg-fallout Notes: svn path=/head/; revision=456277
* - Those ports fail to build with python3Antoine Brodin2017-12-121-1/+1
| | | | | | | - Add some explicit FLAVOR to dependencies where needed Notes: svn path=/head/; revision=456181
* Update devel/protobuf to 3.5.0Sunpoet Po-Chuan Hsieh2017-12-111-1/+1
| | | | | | | | | - Bump PORTREVISION for shlib change Changes: https://github.com/google/protobuf/releases Notes: svn path=/head/; revision=456058
* Mark more ports broken that fail on both armv6 and armv7.Mark Linimon2017-12-091-0/+3
| | | | | | | Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=455813
* Fix configure options for gnustep-makeDavid Chisnall2017-12-031-1/+1
| | | | | | | | | | We were not setting the flag to select the GNUstep ABI, so were defaulting to using the GCC-compatible version, which was likely to trigger a lot of subtle bugs. This was noticed when C++ exceptions thrown through Objective-C stack frames caused segfaults. Notes: svn path=/head/; revision=455401
* Securityupdate to 4.9.1:Jochen Neumeister2017-12-022-6/+6
| | | | | | | | | | | | | | | | | | | | | | | www/wordpress russian/wordpress [1] chinese/wordpress-zh_CN japanese/wordpress german/wordpress french/wordpress Changelog: https://codex.wordpress.org/Version_4.9.1 https://wordpress.org/news/2017/11/wordpress-4-9-1-security-and-maintenance-release/ PR: 223982 [1] Submitted by: Mikhail Timofeev <9267096@gmail.com> (maintainer) [1] Approved by: tcberner (mentor) MFH: 2017Q4 Security: a2589511-d6ba-11e7-88dd-00e04c1ea73d Differential Revision: https://reviews.freebsd.org/D13337 Notes: svn path=/head/; revision=455354
* Convert Python ports to FLAVORS.Mathieu Arnold2017-11-308-10/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ports using USE_PYTHON=distutils are now flavored. They will automatically get flavors (py27, py34, py35, py36) depending on what versions they support. There is also a USE_PYTHON=flavors for ports that do not use distutils but need FLAVORS to be set. A USE_PYTHON=noflavors can be set if using distutils but flavors are not wanted. A new USE_PYTHON=optsuffix that will add PYTHON_PKGNAMESUFFIX has been added to cope with Python ports that did not have the Python PKGNAMEPREFIX but are flavored. USES=python now also exports a PY_FLAVOR variable that contains the current python flavor. It can be used in dependency lines when the port itself is not python flavored. For example, deskutils/calibre. By default, all the flavors are generated. To only generate flavors for the versions in PYTHON2_DEFAULT and PYTHON3_DEFAULT, define BUILD_DEFAULT_PYTHON_FLAVORS in your make.conf. In all the ports with Python dependencies, the *_DEPENDS entries MUST end with the flavor so that the framework knows which to build/use. This is done by appending '@${PY_FLAVOR}' after the origin (or @${FLAVOR} if in a Python module with Python flavors, as the content will be the same). For example: RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} PR: 223071 Reviewed by: portmgr, python Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D12464 Notes: svn path=/head/; revision=455210
* - Add LICENSEWen Heping2017-11-302-0/+4
| | | | | | | | | PR: 222324 Submitted by: yasu@utahime.org Approved by: maintainer(timeout, > 60 days) Notes: svn path=/head/; revision=455195
* For ports that are marked BROKEN on armv6, and also fail to build onMark Linimon2017-11-301-0/+1
| | | | | | | | | | | | | armv7, mark them so. This is part two of a multipart commit to bring armv7 ports to parity with armv6. Approved by: portmgr (tier-2 blanket) Obtained from: lonesome.com -exp run Notes: svn path=/head/; revision=455167
* Don't use MASTER_SITE_SUBDIR when it is not needed.Mathieu Arnold2017-11-245-10/+5
| | | | | | | Sponsored by: Absolight Notes: svn path=/head/; revision=454828
* Update to 4.9Jochen Neumeister2017-11-242-4/+4
| | | | | | | | | | | Changelog: https://codex.wordpress.org/Version_4.9 https://wordpress.org/news/2017/11/tipton/ Approved by: mentors (implicit) Notes: svn path=/head/; revision=454827
* - Update to 20171031.Jun Kuriyama2017-11-124-12/+12
| | | | Notes: svn path=/head/; revision=454033
* Fix the context of some patches so that they apply with stricter patch(1)Antoine Brodin2017-11-091-7/+2
| | | | | | | | PR: 223545 With hat: portmgr Notes: svn path=/head/; revision=453865
* - Update to 0.20171002Danilo Egea Gondolfo2017-11-083-4/+5
| | | | Notes: svn path=/head/; revision=453714
* Fix whitespace issues (mixed tab/spaces, alignment) in a few ports.Jimmy Olgeni2017-11-021-1/+1
| | | | | | | This round is @FreeBSD.org residents except teams. Notes: svn path=/head/; revision=453381
* Update to 5.3.7.Jung-uk Kim2017-11-021-5/+5
| | | | Notes: svn path=/head/; revision=453378
* */wordpress: update to 4.8.3Jochen Neumeister2017-11-012-4/+4
| | | | | | | | | | | Changelog: https://wordpress.org/news/2017/10/wordpress-4-8-3-security-release/ Approved by: mentors (implicit) MFH: 2017Q4 Security: cee3d12f-bf41-11e7-bced-00e04c1ea73d Notes: svn path=/head/; revision=453318
* Fix whitespace issues (mixed tab/spaces, alignment) in a few ports.Jimmy Olgeni2017-10-311-1/+1
| | | | Notes: svn path=/head/; revision=453238
* Remove options to compile these ports against net/asterisk11 inGuido Falsi2017-10-241-10/+2
| | | | | | | | | | | preparation for port expiration. asterisk 11.x will EOL on 2017-10-25 and is scheduled for removal. Please use the net/asterisk13 port. Notes: svn path=/head/; revision=452780
* Remove dead mirrorsBaptiste Daroussin2017-10-131-2/+1
| | | | Notes: svn path=/head/; revision=451987
* japanese/jd: remove port on request of maintainerKurt Jaeger2017-10-085-59/+0
| | | | | | | | | | | | - port is marked BROKEN since april or so - port is a browser for 2ch.net - 2ch.net changed their API, so even if fixed, it would no longer work PR: 218650 Submitted by: townwear@gmail.com (maintainer) Notes: svn path=/head/; revision=451552
* Canonicalize a few LICENSE_PERMSAntoine Brodin2017-09-291-2/+2
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=450932
* - Update to 4.8.2Jochen Neumeister2017-09-272-4/+4
| | | | | | | | | | - Changelog: https://wordpress.org/news/2017/09/wordpress-4-8-2-security-and-maintenance-release/ Approved by: mentors (implicit) MFH: 2017Q3 Notes: svn path=/head/; revision=450786
* Fix kde4-l10n packages after sysutils/filelight's updateTobias C. Berner2017-09-162-2/+1
| | | | | | | | | | | | | | | | | | I chose filelight-17.* as it contains its own localization, which is good, as kde4-l10n is very outdated, and may not match modern filelight anymore. Unfortunately this lead to conflicts with the kde4-l10n. So strip the filelight parts from kde4-l10n-*. Reported by: VVD (via IRC) Reviewed by: rakuco Pointyhat to: tcberner Differential Revision: https://reviews.freebsd.org/D12393 Notes: svn path=/head/; revision=449969
* Fix license information for portgs that use "the same license as Perl".Mathieu Arnold2017-09-1510-10/+10
| | | | | | | Sponsored by: Absolight Notes: svn path=/head/; revision=449893
* Update LICENSESunpoet Po-Chuan Hsieh2017-09-155-14/+11
| | | | | | | | | | | - Add LICENSE_FILE - Regenerate patch files with makepatch: PR: 222302 Submitted by: Yasuhiro KIMURA <yasu@utahime.org> (maintainer) Notes: svn path=/head/; revision=449884
* Update LICENSESunpoet Po-Chuan Hsieh2017-09-152-4/+5
| | | | | | | | | | | | | | - Add LICENSE_FILE - While I'm here: - Convert to options target helper - Fix typo - Fix WWW PR: 222299 Submitted by: Yasuhiro KIMURA <yasu@utahime.org> (maintainer) Notes: svn path=/head/; revision=449883
* Add LICENSE_FILESunpoet Po-Chuan Hsieh2017-09-152-4/+2
| | | | | | | | | | | - Pet portlint: move DIST_SUBDIR upward - Remove outdated WWW from pkg-descr PR: 222297 Submitted by: Yasuhiro KIMURA <yasu@utahime.org> (maintainer) Notes: svn path=/head/; revision=449882
* Regenerate patch files with makepatch:Sunpoet Po-Chuan Hsieh2017-09-152-5/+5
| | | | | | | | PR: 222296 Submitted by: Yasuhiro KIMURA <yasu@utahime.org> (maintainer) Notes: svn path=/head/; revision=449881
* Chase Emacs updateAshish SHUKLA2017-09-129-6/+9
| | | | Notes: svn path=/head/; revision=449697
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2017-09-105-5/+5
| | | | | | | | | | | | | | | | | (via Mk/bsd.default-versions.mk and lang/gcc) which has moved from GCC 5.4 to GCC 6.4 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++11-lang, c++14-lang, c++0x, c11, or gcc-c++11-lib. PR: 219275 Notes: svn path=/head/; revision=449591
* - Update to 20170831.Jun Kuriyama2017-09-104-12/+12
| | | | Notes: svn path=/head/; revision=449577
* Update to 5.3.6.Jung-uk Kim2017-09-051-5/+5
| | | | Notes: svn path=/head/; revision=449308
* - japanese/wordpress: Update from 4.8 to 4.8.1Jochen Neumeister2017-09-012-4/+4
| | | | | | | | | | - Changelog: https://codex.wordpress.org/Version_4.8.1#List_of_Files_Revised Approved by: tz (mentor) Differential Revision: https://reviews.freebsd.org/D12168 Notes: svn path=/head/; revision=449091
* Update GNUstep core libraries.David Chisnall2017-08-211-1/+1
| | | | | | | | | | | | | Update the default Objective-C compiler. Fix various build failures in GNUstep ports from newer versions of the GNUstep core libraries and from changes to GNUstep Make. Update various ports that use GNUstep and bump the portrevision of the ones that haven't had a new release. Notes: svn path=/head/; revision=448472
* japanese/nethack34: Fix the BROKEN_FreeBSD_12 flagSteve Wills2017-08-182-4/+2
| | | | | | | | | | Pass maintainership to submitter PR: 220595 Submitted by: WATANABE Kazuhiro <CQG00620@nifty.ne.jp> Notes: svn path=/head/; revision=448262