aboutsummaryrefslogtreecommitdiff
path: root/converters
Commit message (Collapse)AuthorAgeFilesLines
* New port: converters/osm2pgrouting: Import OSM data into pgRouting databaseYuri Victorovich2018-01-158-0/+120
| | | | | | | | | | PR: 221810 Submitted by: lbartoletti <lbartoletti@tuxfamily.org> Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D13882 Notes: svn path=/head/; revision=459138
* Update to 2.97001Sunpoet Po-Chuan Hsieh2018-01-132-4/+5
| | | | | | | | | | Changes: http://search.cpan.org/dist/JSON/Changes PR: 224681 Submitted by: sunpoet (myself) Approved by: maintainer (timeout, 14 days) Notes: svn path=/head/; revision=458897
* Return kevlo's ports to the pool, he handed in his commit bit.Rene Ladan2018-01-121-1/+1
| | | | | | | With hat: portmgr-secretary Notes: svn path=/head/; revision=458818
* Update to 2.94Sunpoet Po-Chuan Hsieh2018-01-102-4/+4
| | | | | | | Changes: http://search.cpan.org/dist/Encode/Changes Notes: svn path=/head/; revision=458627
* Bump PORTREVISION on *-sbcl ports after lang/sbcl upgrade.Kirill Ponomarev2018-01-081-1/+1
| | | | Notes: svn path=/head/; revision=458423
* - Unsilence installation commandsDmitry Marakasov2017-12-274-13/+13
| | | | | | | - Regenerate patches Notes: svn path=/head/; revision=457357
* - Add mutual runtime conflicts between hs-dataenc and hs-sandiDmitry Marakasov2017-12-252-0/+4
| | | | | | | | | | | | | If these both are installed, haskell fails to use modules from any of them: Ambiguous interface for `Codec.Binary.Base64': it was found in multiple packages: dataenc-0.14.0.7 sandi-0.4.0 PR: 224192 Approved by: portmgr blanket Notes: svn path=/head/; revision=457241
* Update to 2.97001Sunpoet Po-Chuan Hsieh2017-12-252-5/+5
| | | | | | | Changes: http://search.cpan.org/dist/JSON-PP/Changes Notes: svn path=/head/; revision=457228
* Update to 2.0.0Antoine Brodin2017-12-232-5/+4
| | | | Notes: svn path=/head/; revision=457107
* - Switch to USES=tarDmitry Marakasov2017-12-231-5/+7
| | | | | | | | | | - Add LICENSE - Unsilence installation commands Approved by: portmgr blanket Notes: svn path=/head/; revision=457028
* - Add LICENSEDmitry Marakasov2017-12-181-2/+9
| | | | | | | | | | - Switch to options helpers - Unsilence installation commands Approved by: portmgr blanket Notes: svn path=/head/; revision=456603
* - Add LICENSEDmitry Marakasov2017-12-171-3/+5
| | | | | | | | - Add NO_ARCH - Unsilence installation commands Notes: svn path=/head/; revision=456525
* Update to 2.2.1Sunpoet Po-Chuan Hsieh2017-12-152-4/+4
| | | | | | | | Changes: https://github.com/ruby-rdf/json-ld/releases https://github.com/ruby-rdf/json-ld/commits/develop Notes: svn path=/head/; revision=456431
* - Fix WWWDmitry Marakasov2017-12-151-1/+1
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=456385
* Update to 2.2.3Sunpoet Po-Chuan Hsieh2017-12-142-5/+5
| | | | | | | Changes: https://github.com/ruby-rdf/json-ld-preloaded/commits/master Notes: svn path=/head/; revision=456361
* Update to 2.2.0Sunpoet Po-Chuan Hsieh2017-12-142-4/+4
| | | | | | | | Changes: https://github.com/ruby-rdf/json-ld/releases https://github.com/ruby-rdf/json-ld/commits/develop Notes: svn path=/head/; revision=456360
* Add missing IGNORE_WITH_PHP for various pecl-ports.Torsten Zuehlsdorff2017-12-141-1/+1
| | | | | | | | | | | | | After testing every pecl-* port with PHP 5.6, 7.0, 7.1 and 7.2 i set the IGNORE_WITH_PHP accordingly to the fallout. PR: 222165 Reported by: brnd Approved by: portmgr (blanket) Differential Revision: https://reviews.freebsd.org/D13476 Notes: svn path=/head/; revision=456296
* Bump PORTREVISION on *-sbcl ports after lang/sbcl upgrade.Kirill Ponomarev2017-12-111-1/+1
| | | | Notes: svn path=/head/; revision=456036
* Update to 2.97000Sunpoet Po-Chuan Hsieh2017-12-112-5/+4
| | | | | | | Changes: http://search.cpan.org/dist/JSON-PP/Changes Notes: svn path=/head/; revision=455953
* Convert Python ports to FLAVORS.Mathieu Arnold2017-11-304-8/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* 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
* - Fix WWW:Dmitry Marakasov2017-11-231-1/+1
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=454750
* converters/bibtexconv: Update to 1.1.11 [1]Danilo G. Baio2017-11-183-11/+14
| | | | | | | | | | | | | Update MASTER_SITES and WWW. [1] Improve LICENSE. Switch to options helper (EXAMPLES). Include script ietf2bibtex (Python 3 dependency) and USES=ssl. PR: 223328 Submitted by: dreibh@iem.uni-due.de (maintainer) [1] Notes: svn path=/head/; revision=454431
* Add PHP 7.2 RC6Torsten Zuehlsdorff2017-11-165-0/+81
| | | | | | | | | | | | | | | | Notable changes: - mcrypt module was removed - sodium module was added - sybase_ct artifacts removed Also many PECL ports will not work with this version since some files got renamed. Reviewed by: mat, ale, Rainer Duffner <rainer@ultra-secure.de> Differential Revision: https://reviews.freebsd.org/D12980 Notes: svn path=/head/; revision=454302
* Chase upgrade of lang/sbclJoseph Mingrone2017-11-151-1/+1
| | | | | | | | | | | | All ports with SBCL fasl files must be rebuilt when the lang/sbcl package changes. Also, add a note to lang/sbcl/Makefile as a reminder of the required PORTREVISION bumps to prevent future breakage. Approved by: krion, olgeni Differential Revision: https://reviews.freebsd.org/D13087 Notes: svn path=/head/; revision=454222
* Update to 0.58Sunpoet Po-Chuan Hsieh2017-11-132-4/+4
| | | | | | | Changes: http://search.cpan.org/dist/JSON-Tiny/Changes Notes: svn path=/head/; revision=454134
* Update to 4.004Adam Weinberger2017-11-126-12/+14
| | | | | | | | | | | | | | | | | | 4.004 Sun Nov 12 * Fix build issues from C++ style comments * Fixup build_requires 4.003 Sun Nov 12 * Fixup Devel::CheckLib usage * Do not compress using Snappy if the buffer is larger 2**32 * Build fixes 4.001_001 Mon Feb 6 11:13:40 CEST 2017 * Sereal v4 release with Zstandard compression support https://github.com/facebook/zstd Notes: svn path=/head/; revision=454090
* Update to 0.57Sunpoet Po-Chuan Hsieh2017-11-122-4/+4
| | | | | | | Changes: http://search.cpan.org/dist/JSON-Tiny/Changes Notes: svn path=/head/; revision=454065
* Update to 2.0.5Sunpoet Po-Chuan Hsieh2017-11-052-4/+4
| | | | | | | Changes: https://pecl.php.net/package-changelog.php?package=igbinary Notes: svn path=/head/; revision=453564
* Update to 5.6.32 release.Alex Dupre2017-11-011-2/+0
| | | | | | | | PR: 223319 Submitted by: Dani <i.dani@outlook.com> Notes: svn path=/head/; revision=453277
* Cleanup dead master_sitesBaptiste Daroussin2017-10-133-6/+3
| | | | Notes: svn path=/head/; revision=452014
* Mark as broken ports with invalid checksum or no public distfilesBaptiste Daroussin2017-10-132-0/+3
| | | | Notes: svn path=/head/; revision=452013
* - Update to 0.94.0Dmitry Marakasov2017-10-094-31/+5
| | | | Notes: svn path=/head/; revision=451615
* - Mark architecture neutralAntoine Brodin2017-10-071-0/+6
| | | | | | | - Add regression tests Notes: svn path=/head/; revision=451475
* Update py-bencode 1.0 to py-bencode.py 1.2.0, this is a fork that worksAntoine Brodin2017-10-075-7/+10
| | | | | | | with both python2 and python3 Notes: svn path=/head/; revision=451474
* Update to 2.93Sunpoet Po-Chuan Hsieh2017-10-072-4/+4
| | | | | | | Changes: http://search.cpan.org/dist/Encode/Changes Notes: svn path=/head/; revision=451434
* Update to 2.1.7Sunpoet Po-Chuan Hsieh2017-10-062-4/+4
| | | | | | | | | | - Add LICENSE_FILE Changes: https://github.com/ruby-rdf/json-ld/releases https://github.com/ruby-rdf/json-ld/commits/develop Notes: svn path=/head/; revision=451368
* - Update MASTER_SITES for my portsAlex Kozlov2017-10-051-1/+1
| | | | | | | - Update WWW for jwasm Notes: svn path=/head/; revision=451301
* converters/p5-Bencode: Update to 1.500Mark Felder2017-09-292-5/+5
| | | | Notes: svn path=/head/; revision=450893
* Update to 2.1.6Sunpoet Po-Chuan Hsieh2017-09-282-6/+7
| | | | | | | | | | - Add LICENSE_FILE Changes: https://github.com/ruby-rdf/json-ld/releases https://github.com/ruby-rdf/json-ld/commits/develop Notes: svn path=/head/; revision=450826
* Update to 2.0.4Sunpoet Po-Chuan Hsieh2017-09-272-4/+4
| | | | | | | Changes: https://pecl.php.net/package-changelog.php?package=igbinary Notes: svn path=/head/; revision=450742
* Update to 2.0.3Sunpoet Po-Chuan Hsieh2017-09-262-4/+4
| | | | | | | Changes: https://pecl.php.net/package-changelog.php?package=igbinary Notes: svn path=/head/; revision=450676
* Define ICONV_GET_ILSEQ_INVALID and ICONV_SET_ILSEQ_INVALID when mimickingTijl Coosemans2017-09-252-4/+10
| | | | | | | base system iconv.h. Notes: svn path=/head/; revision=450634
* Update to 2.0.2Sunpoet Po-Chuan Hsieh2017-09-252-4/+4
| | | | | | | Changes: https://pecl.php.net/package-changelog.php?package=igbinary Notes: svn path=/head/; revision=450599
* devel/boost-*: update to 1.65.1Jan Beich2017-09-251-1/+1
| | | | | | | | | | | | Changes: http://www.boost.org/users/history/version_1_65_1.html PR: 218835 Approved by: maintainer timeout (1.65.1: 2 weeks; 1.65.0: 1 month) Tested by: jhibbits (on powerpc64, earlier version) Exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D11582 Notes: svn path=/head/; revision=450560
* devel/boost-*: enable C++11 featuresJan Beich2017-09-251-1/+1
| | | | | | | | | | | PR: 218835 Obtained from: https://github.com/DragonFlyBSD/DeltaPorts/pull/690 Approved by: maintainer timeout (2 months) Exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D11582 Notes: svn path=/head/; revision=450557
* Update LICENSESunpoet Po-Chuan Hsieh2017-09-241-1/+2
| | | | | | | - Add LICENSE_FILE Notes: svn path=/head/; revision=450501
* New ports, converters/rubygem-json-ld-preloaded andJoseph Mingrone2017-09-157-0/+64
| | | | | | | | | | converters/rubygem-json-ld: New net-im/mastodon dependencies. WWW: http://github.com/ruby-rdf/json-ld-preloaded WWW: https://github.com/ruby-rdf/json-ld Notes: svn path=/head/; revision=449909
* Fix license information for portgs that use "the same license as Perl".Mathieu Arnold2017-09-1530-30/+30
| | | | | | | Sponsored by: Absolight Notes: svn path=/head/; revision=449893
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2017-09-101-1/+1
| | | | | | | | | | | | | | | | | (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