forked from opnsense/ports
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Taken from: HardenedBSD
- Loading branch information
Showing
339 changed files
with
2,921 additions
and
1,573 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
TIMESTAMP = 1567266301 | ||
SHA256 (pysam-0.15.3.tar.gz) = a98dd0a164aa664b1ab30a36f653752f00e93c13deeb66868597f4b2a30f7265 | ||
SIZE (pysam-0.15.3.tar.gz) = 3221249 | ||
TIMESTAMP = 1579747726 | ||
SHA256 (pysam-0.15.4.tar.gz) = a535e15cbd6e27f4ab74cabca30ca1df7eea283cb91d3b536d47fe113fee066f | ||
SIZE (pysam-0.15.4.tar.gz) = 1605385 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
TIMESTAMP = 1577502634 | ||
SHA256 (calculix/cgx_2.16.all.tar.bz2) = 8389dbe31aa2d371f45f921743f39e91979e8bebb6cf43d5e645331c2f036ca1 | ||
SIZE (calculix/cgx_2.16.all.tar.bz2) = 5500475 | ||
SHA256 (calculix/cgx_2.16.exa.tar.bz2) = 3dedf12eefa72604144229bdda533b29235bbe6dea66a92b2e0127eee52d9dca | ||
SIZE (calculix/cgx_2.16.exa.tar.bz2) = 3927640 | ||
SHA256 (calculix/cgx_2.16.htm.tar.bz2) = 3755d29c1975c99c575efc64453a6641039831733ffe940d1ba2b48794961177 | ||
SIZE (calculix/cgx_2.16.htm.tar.bz2) = 370067 | ||
TIMESTAMP = 1579642636 | ||
SHA256 (calculix/cgx_2.16.1.all.tar.bz2) = 0125efb8dfe47c920b266d8c6a326677eae3967a113a75c079405c1d9415cb54 | ||
SIZE (calculix/cgx_2.16.1.all.tar.bz2) = 5574753 | ||
SHA256 (calculix/cgx_2.16.1.exa.tar.bz2) = 3bf64df5cc63eef1c2f3bc4a8fed292fe76c5fe2e035857bf51ef8578a04d57f | ||
SIZE (calculix/cgx_2.16.1.exa.tar.bz2) = 3914261 | ||
SHA256 (calculix/cgx_2.16.1.htm.tar.bz2) = ed0107b6aa6a020ae616a9ffee8f02115a587d9482e6c599d8ab914bc68b4524 | ||
SIZE (calculix/cgx_2.16.1.htm.tar.bz2) = 369390 | ||
SHA256 (calculix/cgx_2.16.pdf) = b6d63ec1cddd1901de758eb18a68e1f123270cf0257042b10a0f364106e509f7 | ||
SIZE (calculix/cgx_2.16.pdf) = 1426769 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
--- pdf-backend.cc.orig 2019-06-10 17:06:44 UTC | ||
+++ pdf-backend.cc | ||
@@ -103,7 +103,7 @@ static void poppler_error_handler(void *data, ErrorCat | ||
|
||
pdf::Environment::Environment() | ||
{ | ||
- globalParams = new GlobalParams(); | ||
+ globalParams = std::unique_ptr<GlobalParams>(new GlobalParams); | ||
setErrorCallback(poppler_error_handler, nullptr); | ||
} | ||
|
||
@@ -499,12 +499,11 @@ bool pdf::get_glyph(splash::Splash *splash, splash::Fo | ||
void pdf::Renderer::convert_path(pdf::gfx::State *state, splash::Path &splash_path) | ||
{ | ||
/* Source was copied from <poppler/SplashOutputDev.c>. */ | ||
- pdf::gfx::Subpath *subpath; | ||
- pdf::gfx::Path *path = state->getPath(); | ||
+ auto path = state->getPath(); | ||
int n_subpaths = path->getNumSubpaths(); | ||
for (int i = 0; i < n_subpaths; i++) | ||
{ | ||
- subpath = path->getSubpath(i); | ||
+ auto subpath = path->getSubpath(i); | ||
if (subpath->getNumPoints() > 0) | ||
{ | ||
double x1, y1, x2, y2, x3, y3; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# $FreeBSD$ | ||
|
||
PORTNAME= igbinary | ||
PORTVERSION= 3.1.1 | ||
PORTVERSION= 3.1.2 | ||
CATEGORIES= converters | ||
|
||
MAINTAINER= [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
TIMESTAMP = 1579273462 | ||
SHA256 (PECL/igbinary-3.1.1.tgz) = a81e0c4d61854c5f148018ebf62b66f9610c0ada923de3b80c09f51aecb1c128 | ||
SIZE (PECL/igbinary-3.1.1.tgz) = 71897 | ||
TIMESTAMP = 1579684142 | ||
SHA256 (PECL/igbinary-3.1.2.tgz) = e78b327dad5397ed42f7b0c6fe017eddcde8c3c24ab8b59562cb691c411fa90b | ||
SIZE (PECL/igbinary-3.1.2.tgz) = 71862 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
TIMESTAMP = 1564904679 | ||
SHA256 (tds-fdw-tds_fdw-v2.0.0-alpha.3_GH0.tar.gz) = fcba4722171631332e06a91f22e0c22fbfd088e00abaf735be4d8c5512b14aa2 | ||
SIZE (tds-fdw-tds_fdw-v2.0.0-alpha.3_GH0.tar.gz) = 58656 | ||
TIMESTAMP = 1579684136 | ||
SHA256 (tds-fdw-tds_fdw-v2.0.1_GH0.tar.gz) = 031147a980ed502b3e095fda449e3eed65ef1bb97b2bb445217559d10bc0bdc5 | ||
SIZE (tds-fdw-tds_fdw-v2.0.1_GH0.tar.gz) = 62848 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,13 @@ | ||
Tds_fdw is a PostgreSQL foreign data wrapper that can connect to databases that | ||
use the Tabular Data Stream (TDS) protocol, such as Sybase databases and | ||
Microsoft SQL server. The current version does not yet support JOIN push-down, | ||
or write operations. It does support WHERE and column pushdowns when | ||
match_column_names is enabled. | ||
Microsoft SQL server. | ||
|
||
This foreign data wrapper requires a library that implements the DB-Library | ||
interface, such as FreeTDS. This has been tested with FreeTDS, but not the | ||
proprietary implementations of DB-Library. | ||
|
||
The current version does not yet support JOIN push-down, or write operations. | ||
|
||
It does support WHERE and column pushdowns when match_column_names is enabled. | ||
|
||
WWW: https://github.com/tds-fdw/tds_fdw |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
PORTNAME= cfiles | ||
DISTVERSIONPREFIX= v | ||
DISTVERSION= 1.8 | ||
PORTREVISION= 1 | ||
CATEGORIES= deskutils | ||
|
||
MAINTAINER= [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
PORTNAME= gourmet | ||
PORTVERSION= 0.17.4 | ||
PORTREVISION= 7 | ||
PORTREVISION= 8 | ||
CATEGORIES= deskutils gnome | ||
|
||
MAINTAINER= [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
PORTNAME= lumina-pdf | ||
DISTVERSION= 1.5.0 | ||
PORTREVISION= 2 | ||
PORTREVISION= 3 | ||
CATEGORIES= deskutils | ||
|
||
MAINTAINER= [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.