Compare commits

...

320 Commits
main ... 2018Q3

Author SHA1 Message Date
Jan Beich 20f7d7640b devel/google{test,mock}: back out r480988, r480990, r480991
The ports still build fine with GCC 4.2 as 2018Q3 lacks r478607.

PR:		231835
Approved by:	ports-secteam blanket
2018-10-01 01:59:34 +00:00
Jan Beich 36cb5b1b1b MFH: r480991
devel/googlemock: unbreak on GCC architectures

In file included from /usr/local/include/gtest/gtest.h:59,
                 from ./include/gmock/internal/gmock-internal-utils.h:47,
                 from ./include/gmock/gmock-actions.h:47,
                 from ./include/gmock/gmock.h:59,
                 from src/gmock_main.cc:32:
/usr/local/include/gtest/internal/gtest-internal.h:657: error: expected ',' or '...' before '>' token
/usr/local/include/gtest/internal/gtest-internal.h:657: error: parse error in template argument list
/usr/local/include/gtest/internal/gtest-internal.h:657: error: default argument missing for parameter 7 of 'static bool testing::internal::TypeParameterizedTest<Fixture, TestSel, Types>::Register(const char*, const testing::internal::CodeLocation&, const char*, const char*, int, const std::vector<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::basic_string<char, std::char_traits<char>, std::allocator<char> > > >&, Types)'

PR:		231835
Approved by:	ports-secteam blanket
2018-10-01 00:37:28 +00:00
Jan Beich f2b0912b91 MFH: r480989
devel/googletest: oops, builds fine with clang++ -stdlib=libstdc++ -std=gnu++03

FreeBSD 9.x defaulted to GCC 4.2 but could use Clang, so c++11-lang
used Clang while c++11-lib use lang/gcc* bun nowadays the difference
no longer exists. While testing previous change I forgot to account
that newer Clang versions have switched to C++14 by default while
libstdc++ 4.2 doesn't support C++11 or newer.

PR:		231835
Approved by:	ports-secteam blanket
2018-10-01 00:31:43 +00:00
Jan Beich 7c956b7a8b MFH: r480987
devel/googletest: unbreak on GCC architectures after r478607

In file included from ./include/gtest/gtest.h:59,
                 from src/gtest_main.cc:31:
./include/gtest/internal/gtest-internal.h:657: error: expected ',' or '...' before '>' token
./include/gtest/internal/gtest-internal.h:657: error: parse error in template argument list
./include/gtest/internal/gtest-internal.h:657: error: default argument missing for parameter 7 of 'static bool testing::internal::TypeParameterizedTest<Fixture, TestSel, Types>::Register(const char*, const testing::internal::CodeLocation&, const char*, const char*, int, const std::vector<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::basic_string<char, std::char_traits<char>, std::allocator<char> > > >&, Types)'

In file included from src/gtest_main.cc:31:
In file included from ./include/gtest/gtest.h:59:
./include/gtest/internal/gtest-internal.h:947:44: error: no member named 'declval' in namespace 'std'
          class Iterator = decltype(::std::declval<const C&>().begin()),
                                    ~~~~~~~^
./include/gtest/internal/gtest-internal.h:947:52: error: expected expression
          class Iterator = decltype(::std::declval<const C&>().begin()),
                                                   ^
./include/gtest/internal/gtest-internal.h:948:35: error: no member named 'declval' in namespace 'std'
          class = decltype(::std::declval<const C&>().end()),
                           ~~~~~~~^
./include/gtest/internal/gtest-internal.h:948:43: error: expected expression
          class = decltype(::std::declval<const C&>().end()),
                                          ^
./include/gtest/internal/gtest-internal.h:949:37: error: no member named 'declval' in namespace 'std'
          class = decltype(++::std::declval<Iterator&>()),
                             ~~~~~~~^
./include/gtest/internal/gtest-internal.h:949:45: error: 'Iterator' does not refer to a value
          class = decltype(++::std::declval<Iterator&>()),
                                            ^
./include/gtest/internal/gtest-internal.h:947:17: note: declared here
          class Iterator = decltype(::std::declval<const C&>().begin()),
                ^
./include/gtest/internal/gtest-internal.h:949:54: error: expected expression
          class = decltype(++::std::declval<Iterator&>()),
                                                     ^
./include/gtest/internal/gtest-internal.h:949:56: error: expected expression
          class = decltype(++::std::declval<Iterator&>()),
                                                       ^
./include/gtest/internal/gtest-internal.h:950:36: error: no member named 'declval' in namespace 'std'
          class = decltype(*::std::declval<Iterator>()),
                            ~~~~~~~^
./include/gtest/internal/gtest-internal.h:950:44: error: 'Iterator' does not refer to a value
          class = decltype(*::std::declval<Iterator>()),
                                           ^
./include/gtest/internal/gtest-internal.h:947:17: note: declared here
          class Iterator = decltype(::std::declval<const C&>().begin()),
                ^
./include/gtest/internal/gtest-internal.h:950:54: error: expected expression
          class = decltype(*::std::declval<Iterator>()),
                                                     ^

PR:		231835
Submitted by:	Piotr Kubaj (based on)
Approved by:	ports-secteam blanket
2018-10-01 00:17:59 +00:00
Jan Beich 46cf3b569a MFH: r480912
gecko: whitelist where DTRACE is enabled by default

Userland probes are only supported on Tier1 architectures. Even though
powerpc* should support dtrace -G may crash on C++ files built by GCC.
DTRACE option is still exposed as long as dtrace(1) binary is present
for easier debugging of libdtrace.

PR:		221641 224271
Approved by:	ports-secteam blanket
2018-09-29 18:59:24 +00:00
Niclas Zeising 27ba44fa29 MFH: r480763
mail/spamassassin: Update to 3.4.2

Update mail/spamassassin to 3.4.2.  This update includes security fixes.
For complete changelog and upgrade notes, see:
https://mail-archives.apache.org/mod_mbox/spamassassin-announce/201809.mbox/%3cc44ca0f1-cba9-b129-20b2-ba59816cfd13@apache.org%3e

Big thanks to Larry Rosenman (ler) for help with testing!

PR:		231412
Reported by:	dewayne@heuristicsystems.com.au
Tested by:	ler
Security:	613193a0-c1b4-11e8-ae2d-54e1ad3d6335

Approved by:	ports-secteam (miwi)
2018-09-28 19:13:04 +00:00
Jochen Neumeister 1f4aa2d0f5 MFH: r480688
www/apache24: Update to 2.4.35

Changelog:

  *) http: Enforce consistently no response body with both 204 and 304
     statuses.  [Yann Ylavic]

  *) mod_status: Cumulate CPU time of exited child processes in the
     "cu" and "cs" values. Add CPU time of the parent process to the
     "c" and "s" values.
     [Rainer Jung]

  *) mod_proxy: Improve the balancer member data shown in mod_status when
     "ProxyStatus" is "On": add "busy" count and show byte counts in
     auto mode always in units of kilobytes.  [Rainer Jung]

  *) mod_status: Add cumulated response duration time in milliseconds.
     [Rainer Jung]

  *) mod_status: Complete the data shown for async MPMs in "auto" mode.
     Added number of processes, number of stopping processes and number
     of busy and idle workers.  [Rainer Jung]

  *) mod_ratelimit: Don't interfere with "chunked" encoding, fixing regression
     introduced in 2.4.34.  PR 62568.  [Yann Ylavic]

  *) mod_proxy: Remove load order and link dependency between mod_lbmethod_*
     modules and mod_proxy. PR 62557. [Ruediger Pluem, William Rowe]

  *) Allow the argument to <IfFile>, <IfDefine>, <IfSection>, <IfDirective>,
     and <IfModule> to be quoted.  This is primarily for the benefit of
     <IfFile>. [Eric Covener]

  *) mod_watchdog: Correct some log messages.  [Rainer Jung]

  *) mod_md: When the last domain name from an MD is moved to another one,
     that now empty MD gets moved to the store archive. PR 62572.
     [Stefan Eissing]

  *) mod_ssl: Fix merging of SSLOCSPOverrideResponder.  [Jeff Trawick,
     [Frank Meier <frank meier ergon.ch>]

  *) mod_proxy_balancer: Restore compatibility with APR 1.4.  [Joe Orton]

With hat:	apache

Approved by:	ports-secteam (miwi)
2018-09-26 16:27:39 +00:00
Jan Beich f819b03f91 MFH: r480744
www/firefox: document e10s instability

PR:		225233 228855
Approved by:	ports-secteam blanket
2018-09-26 16:06:49 +00:00
Tobias Kortkamp bbfa09f684 MFH: r479187 r480664
databases/mantis: Update to 2.17.0

Changes:	https://mantisbt.org/bugs/changelog_page.php?project=mantisbt&version=2.17.0

databases/mantis: Update to 2.17.1

Changes:	https://mantisbt.org/bugs/changelog_page.php?project=mantisbt&version=2.17.1
Security:	6bf71117-c0c9-11e8-b760-6023b685b1ee

Approved by:	ports-secteam (miwi)
2018-09-26 07:35:13 +00:00
Palle Girgensohn 6f53ecd1f7 MFH: r476819
The PostgreSQL Global Development Group has released an update to all supported
versions of our database system, including 10.5, 9.6.10, 9.5.14, 9.4.19,
9.3.24.  This release fixes two security issues as well as bugs reported over
the last three months.

If you have untrusted users accessing your system and you are either running
PostgreSQL 9.5 or a newer version OR have installed the "dblink" or
"postgres_fdw" extensions, you must apply this update as soon as possible. All
other users can upgrade at the next convenient downtime.

Please note that PostgreSQL changed its versioning scheme with the release of
version 10.0, so updating to version 10.5 from any 10.x release is considered a
minor update.

The PostgreSQL Global Development Group also announces that the third beta
release of PostgreSQL 11 is now available for download. This release contains
previews of all features that will be available in the final release of
PostgreSQL 11 (though some details of the release could change before then) as
well as bug fixes that were reported during the second beta.

This release also changes the default option for the server packages to *not*
include XML support per default. If you need this, please check the XML option
knob and build the port.

Releasenotes:	https://www.postgresql.org/about/news/1878/
PR:		229523, 198588
Security:	96eab874-9c79-11e8-b34b-6cc21735f730
Security:	CVE-2018-10915, CVE-2018-10925

Approved by:	ports-secteam
2018-09-25 15:57:06 +00:00
Mark Felder eff261da93 MFH: r480668
www/varnish6: Add patch to fix output of varnishhist

Obtained from:	https://github.com/varnishcache/varnish-cache/issues/2780
2018-09-25 15:41:48 +00:00
Marc Fonvieille f2fdc67b23 MFH: r474056 r477650 r480481
Mark the freebsd-doc-* ports broken on aarch64 and powerpc64 due to various
problems with the Java runtime.

Approved by:	portmgr (tier-2 blanket)

Update to r52155 from the FreeBSD docset.

Approved by:	doceng (implicit)

Update to r52287 from the FreeBSD docset (a.k.a. 12.0-R version)

Approved by:	doceng (implicit)

Approved by:	portmgr (blanket)
2018-09-24 16:44:01 +00:00
Guido Falsi f18fcf8f62 MFH: r474540 r479103 r480266
- Update asterisk13 to 13.22.0
- Update asterisk15 to 15.5.0

- Update asterisk13 to 13.23.0
- Update asterisk15 to 15.6.0

- Update asterisk13 to 13.23.1
- Update asterisk15 to 15.6.1

Security:	77f67b46-bd75-11e8-81b6-001999f8d30b

Approved by:	ports-secteam (miwi)
2018-09-24 07:02:16 +00:00
Sunpoet Po-Chuan Hsieh 4c4d9a474d MFH: r480419
Update to 0.2.1

Changes:	https://github.com/theforeman/smart_proxy_dynflow/commits/master
Security:	2d6de6a8-fb78-4149-aeda-77fc8f140f06

Approved by:	ports-secteam (riggs)
2018-09-24 05:36:03 +00:00
Jan Beich 59b7cd5047 MFH: r480533
print/harfbuzz: unbreak on GCC archs after r477696

/usr/local/lib/libgraphite2.so: undefined reference to `__cxa_throw_bad_array_new_length@CXXABI_1.3.8'

PR:		231544
Submitted by:	Piotr Kubaj
Approved by:	ports-secteam blanket
2018-09-23 21:16:17 +00:00
Jan Beich a92fa4b430 MFH: r480329
www/firefox-esr: update to 60.2.1

Changes:	https://www.mozilla.org/firefox/60.2.1/releasenotes/
Approved by:	ports-secteam blanket
2018-09-21 23:05:11 +00:00
Jan Beich a23f5373ca MFH: r480254
www/firefox: update to 62.0.2

Changes:	https://www.mozilla.org/firefox/62.0.2/releasenotes/
PR:		229168
Approved by:	portmgr blanket
2018-09-21 11:54:59 +00:00
Mark Felder 16e7c79662 MFH: r477242
- Security update to to 1.4.50
PR:		230595
Submitted by:	Piotr Kubaj
Security:	https://www.lighttpd.net/2018/8/13/1.4.50/
2018-09-20 15:57:10 +00:00
Emanuel Haupt 55332f9c0b MFH: r480155
- Add missing run dependency
- While here pacify portlint

PR:		231217
Submitted by:	0mp
Approved by:	ports-secteam (blanket)
2018-09-20 08:05:38 +00:00
Antoine Brodin f531059e5b MFH: r480095
security/lockdown: mark FORBIDDEN as it renders the system unbootable

By inspection I see that the port sets the obsolete 'nodev' flag in
/etc/fstab, and it really needs careful review for use with contemporary
FreeBSD; upstream is gone.

Reported by:	Jeffrey Bouquet on -current
2018-09-19 21:56:44 +00:00
Thomas Zander 32d7b113e6 MFH: r480029
Fix runtime error: remove -march=native as optimisation target

Details:
The upstream Makefile contains -march=native as optimisation which leads
to unconditional use of AVX instructions if built on a machine that has
AVX support. Subsequently this causes SIGILL on processors without AVX,
including latest-generation Atom descendants.

PR:		225922
Reported by:	arthur@qeng-ho.org
Approved by:	hsw@bitmark.com (maintainer, implicit)

Approved by:	ports-secteam (riggs)
2018-09-18 15:10:04 +00:00
Wen Heping 4aa6477026 MFH: r479510
- Update moodle to 3.5.2, 3.4.5, 3.3.8 and 3.1.14
  (include security fix)

Approved by:	ports-secteam@(miwi@)
2018-09-18 10:59:21 +00:00
Jochen Neumeister 088bca3637 MFH: r479837
Update to 7.1.22

Changelog: http://www.php.net/ChangeLog-7.php#7.1.22

Approved by:	tz (implicit)
Sponsored by:	Netzkommune GmbH

Approved by:	ports-secteam (miwi)
2018-09-17 15:44:52 +00:00
Larry Rosenman f17a8c1c91 MFH: r474655 r477360 r479846
www/joomla3: upgrade to 3.8.10
Release Announcement: https://www.joomla.org/announcements/release-news/5737-joomla-3-8-10-release.html

Moved to using the official distribution tarball.  This shrinks the package significantly.

www/joomla3: update to 3.8.11.

Joomla 3.8.11 addresses several bugs and improvements, including:

Fix for the Missing "Select Type" field in the Extensions Manager #20881
Replace the URL parameter "limitstart=0" by "start=0" when SEF is enabled #19452
Remove non callable array items from field categories #20093
Articles - Category Module: New showon attribute for form fields #20950
Fix OpenSearch implementation #20937
Fix for tag filtering in Featured Articles view in administrator #21138
Fix for filtering Featured Articles by access level in administrator #21168
Media manager: relative paths for video files #21156
Com_menus: removal of useglobal attribute #21095
Multilingual Associations Component: fix associations in sidebyside view for contact and newsfeeds #21180

www/joomla3: update to 3.8.12.

Joomla 3.8.12 includes three security vulnerability fixes, several bug fixes and improvements:

Security Issues Fixed
Low Priority - Core -  Hardening the InputFilter for phar stubs (affecting Joomla 1.5.0 through 3.8.11) More information
Low Priority - Core - Stored XSS vulnerability in the frontend profile (affecting Joomla 1.5.0 through 3.8.11) More information
Low Priority - Core - ACL Violation in custom fields (affecting Joomla 3.7.0 through 3.8.11) More information
Bug fixes and Improvements
mod_articles_latest and mod_articles_news: fix to show featured articles #21336
Tags in com_content: fix to display tags when other item info are set to hidden #21275
com_tags: All Tags default layout #21031
Allows filtering by the archived state in the redirect component #21673
Visit GitHub for the full list of bug fixes.

Approved by:	ports-secteam (eadler)
Security: CVE-2018-15860
Security: CVE-2018-15881
Security: CVE-2018-15882
2018-09-16 00:00:25 +00:00
Jochen Neumeister 19692e431f MFH: r479757
Update to 1.8.19

Changelog: https://blog.mybb.com/2018/09/11/mybb-1-8-19-released-security-maintenance-release/

Security:	ab38d9f8-b787-11e8-8e7a-00e04c1ea73d
Sponsored by:	Netzkommune GmbH

Approved by:	portmgr (miwi)
2018-09-15 09:06:28 +00:00
Jochen Neumeister e9efc517f1 MFH: r479685
Update to 7.2.10

Changelog: http://www.php.net/ChangeLog-7.php#7.2.10

Approved by:	tz (implicit)
Sponsored by:	Netzkommune GmbH

Approved by:	portmgr (miwi)
2018-09-15 09:05:34 +00:00
Jochen Neumeister b2a372e5b0 MFH: r479680
Update to 7.0.32

Changelog: http://www.php.net/ChangeLog-7.php#7.0.32

Approved by:	tz (implicit)

Approved by:	portmgr (miwi)
2018-09-15 09:04:13 +00:00
Jan Beich d77a64deca MFH: r479823
www/waterfox: update to 56.2.3

Changes:	https://blog.waterfoxproject.org/waterfox-56.2.3-release-download
Changes:	https://github.com/MrAlex94/Waterfox/compare/56.2.2...56.2.3
Approved by:	ports-secteam blanket
2018-09-15 08:50:01 +00:00
Gerald Pfeifer ffb513f63d MFH: r479746
Remove gcc.skazkaforyou.com from MASTER_SITE_GCC.  It's gone rogue and
is up for sale, and does not provide mirror service any longer.

Approved by:	portmgr (miwi)
2018-09-15 08:46:03 +00:00
Baptiste Daroussin a93c00adbd MFH: r479508 r479817
update to 5.6.1
Update to 5.6.2
2018-09-15 06:03:26 +00:00
Mark Felder 5e5969f47b MFH: r479615
www/varnish4: Update to 4.1.10

Changelog:	https://github.com/varnishcache/varnish-cache/blob/4.1/doc/changes.rst
2018-09-12 17:16:08 +00:00
Mark Felder b4845f9d1d MFH: r479609
www/varnish6: Update to 6.0.1

Changelog:	https://github.com/varnishcache/varnish-cache/blob/master/doc/changes.rst#varnish-cache-601-2018-08-29
2018-09-12 15:04:33 +00:00
Jung-uk Kim 27a8b2b278 MFH: r479539, r479540
- Update www/linux-flashplayer to 31.0.0.108.
- Update www/flashplayer to 31.0 to catch up with www/linux-flashplayer.

https://helpx.adobe.com/security/products/flash-player/apsb18-31.html

Approved by:	ports-secteam (blanket)
2018-09-11 18:47:07 +00:00
Jochen Neumeister 58396d69cf MFH: r479518
www/mybb: Update to 1.8.18

Changelog: https://blog.mybb.com/2018/08/22/mybb-1-8-18-released-security-maintenance-release/

Security:	db2acdac-b5a7-11e8-8f6f-00e04c1ea73d
Sponsored by:	Netzkommune GmbH

Approved by:	ports-secteam (miwi)
2018-09-11 10:22:49 +00:00
Tijl Coosemans ad3cc2cb49 MFH: r478951 r479032 r479243
r478951:
- Update print/ghostscript9-agpl-base and print/ghostscript9-agpl-x11 to
  9.24.
- Set USE_CSTD=gnu99 and eliminate a patch.
- Add cpe string.
- Patch configure to respect CFLAGS.

r479032:
Add a patch to give Ghostscript read permission on
/usr/local/share/ghostscript/9.24/iccprofiles/* in -dSAFER mode.

r479243:
Add some upstream patches for regressions in 9.24.

patch-010-bc3df07
For ICC profile validation, have cups id iteself as DeviceN.

patch-020-c8c01f8, patch-030-1341854
Add the ICCProfilesDir to the PermitReading list.

patch-040-9528102
Fix ps2epsi /undefined in --setpagedevice--.

PR:		231148
Approved by:	ports-secteam (eadler)
Security:	https://www.kb.cert.org/vuls/id/332928
2018-09-11 07:23:26 +00:00
Cy Schubert 9d1847c108 MFH: r479190
Catch up to the latest krb5 port commits.

Approved by:	portmgr (miwi@)
2018-09-11 03:21:44 +00:00
Jan Beich 39e3047ebb MFH: r479492
emulators/citra: update to s20180909

Changes:	ca701e261...9df1461ce
Approved by:	ports-secteam (swills, implicit for snapshots)
2018-09-11 00:35:32 +00:00
Kirill Ponomarev d24b6b534b MFH: r479144
dns/powerdns: update to 4.1.4

PR:		231170
Submitted by:	Ralf van der Enden <tremere@cainites.net> (maintainer)

Approved by:	ports-secteam (blanket)
2018-09-10 08:13:39 +00:00
Jan Beich 1378e213e4 MFH: r479224
emulators/citra: update to s20180906

Changes:	22e172946...ca701e261
Approved by:	ports-secteam (swills, implicit for snapshots)
2018-09-08 00:54:23 +00:00
Mathieu Arnold 2fa3864585 MFH: r479194
Fix service munin-asyncd status.

PR:		231056
Reported by:	gerrit kuehn aei mpg de
2018-09-07 14:47:48 +00:00
Sunpoet Po-Chuan Hsieh 3c275daefb MFH: r479050
Update to 7.61.1

Changes:	https://curl.haxx.se/changes.html
Security:	f4d638b9-e6e5-4dbe-8c70-571dbc116174

Approved by:	ports-secteam (miwi)
2018-09-06 19:24:28 +00:00
Cy Schubert 93c59bcee2 MFH: r478512 r478840 r479083
r478512:
Add a package message instructing the user how to use ports ntp
instead of base ntp.

Reported by:	adamw

r478840:
Fix a typo.

Reported by:	Herbert J. Skuhra <herbert@gojira.at>

r479083:
Also tell people how to enable ntpd and ntpdate from ports using
sysrc.

mat@ suggested this however as I'm not enamoured with sysrc, it has
been added as annother approach to add/edit rc.conf variables.

Reported by:	mat@

Approved by:	portmgr (miwi@)
2018-09-06 19:22:47 +00:00
Yuri Victorovich 2a303f3310 MFH: r479089
www/links: Update 2.14 -> 2.16
Fix CVE-2017-11114.

PR:		230849
Submitted by:	Dmitri Goutnik <dg@syrec.org>
Approved by:	portmaster@BSDforge.com (maintainer's timeout; 14 days)

Approved by:	ports-secteam miwi
2018-09-06 15:55:14 +00:00
Jan Beich 85de9fe1b6 MFH: r479075
emulators/citra: update to s20180905

Changes:	ae6007bf9...ffd78b635
Approved by:	ports-secteam (swills, implicit for snapshots)
2018-09-06 01:00:01 +00:00
Baptiste Daroussin 5785844e1a MFH: r479010 2018-09-05 07:29:04 +00:00
TAKATSU Tomonari b6f128f255 MFH: r478435
- Apply CVE-2018-13796 patch

PR:		230183
Submitted by:	Yasuhito FUTATSUKI
Security:	CVE-2018-13796
Approved by:	ports-secteam (miwi@)
2018-09-04 03:01:22 +00:00
Jan Beich 80cbf99496 MFH: r478919
emulators/citra: update to s20180904

Changes:	ffd78b635...ae6007bf9
Approved by:	ports-secteam (swills, implicit for snapshots)
2018-09-04 00:57:19 +00:00
Jan Beich f64590b752 MFH: r478867
www/firefox-esr: switch to rc2

Changes:	https://hg.mozilla.org/releases/mozilla-esr60/pushloghtml?startdate=2018-08-31&enddate=2018-09-04
Approved by:	ports-secteam blanket
2018-09-03 13:02:21 +00:00
Jan Beich 9037f375d2 MFH: r478724
www/firefox-esr-i18n: unbreak fetch after r478507

=> ach.xpi doesn't seem to exist in /portdistfiles/xpi/firefox-60.2.0.
=> Attempting to fetch https://download.cdn.mozilla.net/pub/firefox/releases/60.2.0esr/linux-i686/xpi/ach.xpi
fetch: https://download.cdn.mozilla.net/pub/firefox/releases/60.2.0esr/linux-i686/xpi/ach.xpi: Not Found
=> Attempting to fetch https://archive.mozilla.org/pub/firefox/releases/60.2.0esr/linux-i686/xpi/ach.xpi
fetch: https://archive.mozilla.org/pub/firefox/releases/60.2.0esr/linux-i686/xpi/ach.xpi: Not Found
=> Attempting to fetch https://download.cdn.mozilla.net/pub/firefox/candidates/60.2.0esr-candidates/build2/linux-i686/xpi/ach.xpi
fetch: https://download.cdn.mozilla.net/pub/firefox/candidates/60.2.0esr-candidates/build2/linux-i686/xpi/ach.xpi: Not Found
=> Attempting to fetch https://archive.mozilla.org/pub/firefox/candidates/60.2.0esr-candidates/build2/linux-i686/xpi/ach.xpi
fetch: https://archive.mozilla.org/pub/firefox/candidates/60.2.0esr-candidates/build2/linux-i686/xpi/ach.xpi: Not Found
=> Attempting to fetch http://distcache.FreeBSD.org/ports-distfiles/xpi/firefox-60.2.0/ach.xpi
fetch: http://distcache.FreeBSD.org/ports-distfiles/xpi/firefox-60.2.0/ach.xpi: Not Found
=> Couldn't fetch it - please try to retrieve this
=> port manually into /portdistfiles/xpi/firefox-60.2.0 and try again.
*** Error code 1

Reported by:	pkg-fallout
Approved by:	ports-secteam blanket
2018-09-01 20:33:05 +00:00
Mark Felder 92b8643613 MFH: r478685
lang/mono: Update to 5.10.1.57
2018-09-01 19:59:56 +00:00
Carlos J. Puga Medina ab578e3de9 MFH: r478691
- USE_GNOME also requires USES=gnome
- Switch to USES=localbase:ldflags
- Revert Makefile.tests and include more *_unittests
- Update patch file with missing WEBRTC_BSD macro
- Apply several patches from devel/googletest (thanks to jbeich@)
- Bump PORTREVISION

Approved by:	ports-secteam (blanket)
2018-09-01 13:27:48 +00:00
Thomas Zander 0a00a601b6 MFH: r478658
Fix memleak, update MAINTAINER

Details:
- Fix a memory leak in ZXID caused by using system hexdump() function
  instead of the one included in ZXID.
- Set MAINTAINER'ship to admins@perceptyx.com

PR:		230978
Submitted by:	amontalban@gmail.com (new maintainer)

Approved by:	ports-secteam (riggs)
2018-09-01 07:40:28 +00:00
Jan Beich bfa1f8faef MFH: r478637
emulators/rpcs3: update to 0.0.5.816

Changes:	685eaedbf...cd6bf37d0
Approved by:	ports-secteam (junovitch, implicit for snapshots)
2018-09-01 00:21:23 +00:00
Jan Beich 01a075c667 MFH: r478636
emulators/citra: update to s20180831

Changes:	05118a232...ffd78b635
Approved by:	ports-secteam (swills, implicit for snapshots)
2018-09-01 00:20:53 +00:00
Jan Beich cfb3052010 MFH: r478268 r478506
www/firefox: update to 62.0

Changes:	https://www.mozilla.org/firefox/62.0/releasenotes/
PR:		229168
Security:	c96d416a-eae7-4d5d-bc84-40deca9329fb
Approved by:	ports-secteam (miwi)
Differential Revision:	https://reviews.freebsd.org/D15913
2018-08-31 20:41:15 +00:00
Jan Beich 2e70373982 MFH: r478507
www/firefox-esr: update to 60.2.0

Changes:	https://www.mozilla.org/firefox/60.2.0/releasenotes/
Approved by:	ports-secteam blanket
2018-08-31 20:38:40 +00:00
Jan Beich be82d2eeee MFH: r478585
security/nss: update to 3.39

Changes:	https://developer.mozilla.org/docs/Mozilla/Projects/NSS/NSS_3.39_release_notes
Changes:	https://hg.mozilla.org/projects/nss/shortlog/NSS_3_39_RTM
ABI:		https://abi-laboratory.pro/tracker/timeline/nss/
Approved by:	ports-secteam blanket (required by Firefox 63)
2018-08-31 14:46:36 +00:00
Jan Beich e6ef22de41 MFH: r478508
devel/nspr: update to 4.20

Changes:	http://mozilla.6506.n7.nabble.com/ANNOUNCE-NSPR-4-20-Release-td377043.html
ABI:		https://abi-laboratory.pro/tracker/timeline/nspr/
Approved by:	ports-secteam blanket (required by Firefox 63)
2018-08-31 14:45:57 +00:00
Matthias Fechner a4e492092d MFH: r476329 r477216 r478496
Update gitlab to 11.1.4.
Fixed dependency problem for security/doorkeeper.
The currently used doorkeeper43 version has a security vulnerability, this problem was reported upstream to gitlab here:
https://gitlab.com/gitlab-org/gitlab-ce/issues/49940

PR:		230306
Approved by:	mentors (implicit)

www/gitlab-ce add a check after the build process to verify all used gems matching the requirements.
This should make it easier to see gem updates that are breaking the gitlab-ce port.

Approved by:	mentors (implicit)

www/gitlab-ce security update to version 11.1.6.
Details about vulnerabilities can be found here:
https://about.gitlab.com/2018/08/28/security-release-gitlab-11-dot-2-dot-2-released/

Approved by:	mentors (implicit)
MFC after:	1 d
Security:	ffeb25d0-ac94-11e8-ab15-d8cb8abf62dd

Approved by:	ports-secteam (miwi)
2018-08-31 12:28:56 +00:00
Matthias Fechner 9d5e088622 MFH: r476328
Change dependency to unbreak www/gitlab-ce port which was broken by commit 476092.

Approved by:	mentors (implicit)

Approved by:	ports-secteam (miwi)
2018-08-31 12:26:44 +00:00
Matthias Fechner a30d4de639 MFH: r476298
Copied port security/rubygem-doorkeeper and fix it to version 4.3.x which is required by gitlab.

PR:		230306
Approved by:	mentors (implicit)

Approved by:	ports-secteam (miwi)
2018-08-31 12:25:38 +00:00
Craig Leres e00110b575 MFH: r478427
Update to 2.5.5 which addresses security issues:

    - Fix array bounds checking in BinPAC: for arrays that are
      fields within a record, the bounds check was based on a pointer
      to the start of the record rather than the start of the array
      field, potentially resulting in a buffer over-read.

    - Fix SMTP command string comparisons: the number of bytes
      compared was based on the user-supplied string length and can
      lead to incorrect matches. e.g. giving a command of "X"
      incorrectly matched "X-ANONYMOUSTLS" (and an empty commands
      match anything).

    - Weird" events are now generally suppressed/sampled by default
      according to some tunable parameters.

    - Improved handling of empty lines in several text protocol
      analyzers that can cause performance issues when seen in long
      sequences.

    - Add `smtp_excessive_pending_cmds' weird which serves as a
      notification for when the "pending command" queue has reached
      an upper limit and been cleared to prevent one from attempting
      to slowly exhaust memory.

Approved by: ler (mentor, implicit)
Security: d0be41fe-2a20-4633-b057-4e8b25c41780

Approved by:	ports-secteam (miwi), ler (mentor, implicit)
2018-08-30 22:26:48 +00:00
Thomas Zander a41bcec8a2 MFH: r478468
Update to upstream version 1.6.6

Details:
- Mostly bug and doc fixes, detailed upstream log:
  https://github.com/containous/traefik/releases/tag/v1.6.6

Approved by:	ports-secteam (riggs)
2018-08-30 15:38:56 +00:00
Thomas Zander 799f6d4802 MFH: r478461
Update to upstream version 26.0.0

Approved by:	ports-secteam (riggs)
2018-08-30 15:01:22 +00:00
Tobias Kortkamp 83c2d5f8d6 MFH: r477954 r477984 r478349
databases/mantis: Revert fake update from r475644

The checksums and sizes from 2.9.0 and 2.15.0 are identical because
GH_TAGNAME was not updated as well, so the update to 2.15.0 never
actually happened.

PR:		229880
Pointy hat:	joneum
Security:	0822a4cf-9318-11e8-8d88-00e04c1ea73d

Take maintainership of databases/mantis

databases/mantis: Update to 2.16.0

- Use upstream release tarball instead of doing our own vendoring
- Add missing PHP extensions
- Flavorize
- Update plugins and install them by default
- Add LICENSE
- Improve pkg-descr

Changes:	https://mantisbt.org/bugs/changelog_page.php?project=mantisbt&version=2.16.0
PR:		229880
Reviewed by:	dvl, mat, ndowens@yahoo.com
Security:	0822a4cf-9318-11e8-8d88-00e04c1ea73d
Differential Revision:	https://reviews.freebsd.org/D16890

Approved by:	ports-secteam (miwi)
2018-08-30 05:59:03 +00:00
Jan Beich 9cac58f32c MFH: r478424
emulators/rpcs3: update to 0.0.5.810

Changes:	4c1459534...685eaedbf
Approved by:	ports-secteam (junovitch, implicit for snapshots)
2018-08-29 22:25:50 +00:00
Jan Beich cf27b7b63d MFH: r478416
emulators/rpcs3: update to 0.0.5.808

Changes:	23f5cee65...4c1459534
Approved by:	ports-secteam (junovitch, implicit for snapshots)
2018-08-29 20:33:51 +00:00
Bradley T. Hughes b30ffcb8f4 MFH: r478194
www/node: Update 10.7.0_1 -> 10.9.0

This is a security release addressing multiple vulnerabilities. Users
are recommended to upgrade as soon as possible.

https://nodejs.org/en/blog/vulnerability/august-2018-security-releases/
https://nodejs.org/en/blog/release/v10.9.0/

While here, refresh patches with `make makepatch`

Security:	0904e81f-a89d-11e8-afbb-bc5ff4f77b71
Sponsored by:	Miles AS

Approved by:	ports-secteam (miwi)
2018-08-29 14:13:45 +00:00
Bradley T. Hughes 77ef1dd922 MFH: r478193
www/node8: Update 8.11.3_2 -> 8.11.4

This is a security release addressing multiple vulnerabilities. Users
are recommended to upgrade as soon as possible.

https://nodejs.org/en/blog/vulnerability/august-2018-security-releases/
https://nodejs.org/en/blog/release/v8.11.4/

Security:	0904e81f-a89d-11e8-afbb-bc5ff4f77b71
Sponsored by:	Miles AS

Approved by:	ports-secteam (miwi)
2018-08-29 14:08:16 +00:00
Bradley T. Hughes 008f3a0d19 MFH: r478192
www/node6: Update 6.14.3_2 -> 6.14.4

This is a security release addressing multiple vulnerabilities. Users
are recommended to upgrade as soon as possible.

https://nodejs.org/en/blog/vulnerability/august-2018-security-releases/
https://nodejs.org/en/blog/release/v6.14.4/

Security:	0904e81f-a89d-11e8-afbb-bc5ff4f77b71
Sponsored by:	Miles AS

Approved by:	ports-secteam (miwi)
2018-08-29 13:59:37 +00:00
Jan Beich 8e13572ce6 MFH: r478311
emulators/rpcs3: drop GCC < 6 after r478266/r475856

USES=compiler:c++17-lang defines USE_GCC=yes but anything older than
lang/gcc7 have incomplete C++17 support. As this port is amd64-only
supporting old GCC is of little value.

https://gcc.gnu.org/projects/cxx-status.html

Approved by:	ports-secteam blanket
2018-08-28 13:07:17 +00:00
Jan Beich 95b3507d50 MFH: r478309
emulators/rpcs3: unbreak on FreeBSD 10.4/11.1

Utilities/types.h:94:13: error: no member named 'byte' in namespace 'std'
        using std::byte;
              ~~~~~^
Utilities/types.h:773:18: error: no type named 'byte' in namespace 'std'
        alignas(A) std::byte data[S];
                   ~~~~~^
rpcs3/Emu/RSX/rsx_utils.h:9:10: fatal error: 'optional' file not found
 #include <optional>
          ^~~~~~~~~~
rpcs3/Emu/RSX/Overlays/overlay_controls.h:1354:20: error: no member named 'clamp' in namespace 'std'
                                m_value = std::clamp(value, 0.f, m_limit);
                                          ~~~~~^

Reported by:	pkg-fallout
Pointy hat to:	jbeich
Approved by:	ports-secteam blanket
2018-08-28 12:47:59 +00:00
Matthias Andree e51d685917 MFH: r478261
Update sysutils/e2fsprogs to new upstream release 1.44.4.

This is a bug fixing release.

Full release notes:
<http://e2fsprogs.sourceforge.net/e2fsprogs-release.html#1.44.4>

Approved by:	ports-secteam@ (miwi@)
2018-08-28 06:19:13 +00:00
Tobias Kortkamp 59eea2cc80 MFH: r478228
dns/void-zones-tools: Respect CFLAGS and avoid using -march=native

It currently compiles with -march=native which breaks on some
machines

cc  -march=native -mssse3 -ffast-math -std=c11 -g0 -Ofast -fstrict-aliasing -Wno-parentheses binutils.c -c -o binutils.o
error: unknown target CPU 'k6-3'

Given that the build is currently targeting the build host CPU,
existing binary packages on pkg.FreeBSD.org (or elsewhere) might
be broken on many machines too, so bump PORTREVISION to trigger a
rebuild.

PR:		230899
Submitted by:	tobik
Reported by:	Marco Beishuizen <mbeis@xs4all.nl>
Approved by:	Vidar Karlsen <vidar@karlsen.tech> (maintainer)

Approved by:	ports-secteam (miwi)
2018-08-28 04:53:11 +00:00
Jan Beich c81d47a7a4 MFH: r478267
emulators/citra: update to s20180826

Changes:	0a5621faf...05118a232
Approved by:	ports-secteam (swills, implicit for snapshots)
2018-08-28 00:35:28 +00:00
Jan Beich 59a16ebf6a MFH: r478266
emulators/rpcs3: update to 0.0.5.794

Changes:	21e191111...23f5cee65
Approved by:	ports-secteam (junovitch, implicit for snapshots)
2018-08-28 00:33:39 +00:00
Jan Beich 3b34e5a77b MFH: r478237 r478238 r478239
games/keeperrl: unbreak with libc++ 7, GCC and on FreeBSD 10

Approved by:	ports-secteam blanket
2018-08-27 17:31:44 +00:00
Jan Beich 5bc14a7c96 MFH: r477244 r477245 r477246 r477248 r477247
devel/android-tools-{adb,fastboot}: update to 9.0.0.r3

Changes:	https://android.googlesource.com/platform/system/core/+log/android-8.1.0_r2..android-9.0.0_r3/adb
Changes:	https://android.googlesource.com/platform/system/core/+log/android-8.1.0_r2..android-9.0.0_r3/fastboot
Approved by:	ports-secteam (riggs)
2018-08-27 11:00:10 +00:00
Thomas Zander 1db7df8051 MFH: r478129
Update to upstream version 0.8.2

PR:		230853
Submitted by:	sikmir@gmail.com (maintainer)

Approved by:	ports-secteam (riggs)
2018-08-26 15:51:15 +00:00
Kubilay Kocak 01ea716953 MFH: r477627 devel/git: Add missing (send-email) dependency
The send-email command uses (require's) IO:Socket:SSL directly, and the
devel/git port previously depended on mail/p5-Net-SMTP-SSL, which depended on
and brought in the security/p5-IO-Socket-SSL port to satisfy it.

ports r431794 [1] removed the dependency on p5-Net-SMTP-SSL due to deprecation
which prevented the (direct) dependency from being installed (via another
dependency), resulting in breaking function for encrypted/secured mail
destinations.

This change adds a direct dependency on IO::Socket::SSL as it ought to have
been originally.

[1] https://svnweb.freebsd.org/changeset/ports/431794

Reported by:	ns5 (via IRC)
Approved by:	portmgr (blanket: broken dependencies)

Approved by:	ports-secteam (riggs)
2018-08-26 00:26:22 +00:00
Thomas Zander 9617697dcd MFH: r478020
Update to upstream release 1.0.1, fix build on 11.2

Detailed submitter log:
- Update to 1.0.1
- Switched to Github
  - Has newest sources
- Updated WWW in pkg-desc
  - Current www doesn't exist
- Removed doc depends/build
  - Does not build/install
- Removed doxygen dir
  - Not needed/used

PR:		230833 [1], 230674 [2]
Submitted by:	ndowens@yahoo.com [1]
Reported by:	lantw44@gmail.com [2]

Approved by:	ports-secteam (riggs)
2018-08-25 10:18:55 +00:00
Jan Beich 0f7ed2719b MFH: r477986
emulators/citra: update to s20180824

Changes:	47025552c...0a5621faf
Approved by:	ports-secteam (swills, implicit for snapshots)
2018-08-24 22:40:20 +00:00
Jan Beich 69c08e1954 MFH: r477985
emulators/rpcs3: update to 0.0.5.774

Changes:	f3d3a1a4a...21e191111
Approved by:	ports-secteam (junovitch, implicit for snapshots)
2018-08-24 22:38:36 +00:00
Mathieu Arnold 5d8f7e39f4 MFH: r477957
Permit using allow-new-zones, LMDB, and a chrooted environment.

Fixes this obscure and not at all helpful message:
mdb_env_open of '_default.nzd' failed: No such file or directory

PR:		229125
Reported by:	Tomáš Čiernik
2018-08-24 11:50:32 +00:00
Matthew Seaman 1c46d513a0 MFH: r477843
Update to 4.8.3; includes a security update for PMASA-2018-5

Security:	9e205ef5-a649-11e8-b1f6-6805ca0b3d42

Approved by:	ports-secteam (miwi)
2018-08-23 08:15:57 +00:00
Niclas Zeising e8bdb3aa57 MFH: r477818
x11/libX11: Update to 1.6.6

This is a security update

Changelog:
https://lists.x.org/archives/xorg-announce/2018-August/002916.html

Note:	I had to hand-merge Makefile a little because of differences in
        portrevision.

Security:	fe99d3ca-a63a-11e8-a7c6-54e1ad3d6335

Approved by:	ports-secteam (miwi)
2018-08-23 07:48:39 +00:00
Jan Beich 84cc0615bd MFH: r477844
emulators/citra: update to s20180821

Changes:	7279335fc...47025552c
Approved by:	ports-secteam (swills, implicit for snapshots)
2018-08-22 23:57:54 +00:00
Steve Wills 088341a093 MFH: r477825
devel/gogs: Fix open redirect vulnerability

PR:		230800
Submitted by:	Dmitri Goutnik <dg@syrec.org> (maintainer)
Security:	e53a908d-a645-11e8-8acd-10c37b4ac2ea

Approved by:	ports-secteam (implicit)
2018-08-22 21:17:28 +00:00
Jan Beich 382e2c76e7 MFH: r477814
emulators/rpcs3: update to 0.0.5.769

Changes:	d1d1b2eff...f3d3a1a4a
Approved by:	ports-secteam (junovitch, implicit for snapshots)
2018-08-22 19:41:49 +00:00
Steve Wills 6d8817428e MFH: r477449
security/botan2: update to 2.7.0

While here, bump PORTREVISION on dependent ports

PR:		230666
Submitted by:	Ralf van der Enden <tremere@cainites.net> (maintainer
Security:	7762d7ad-2e38-41d2-9785-c51f653ba8bd

Approved by:	ports-secteam (implicit)
2018-08-22 18:18:44 +00:00
Olivier Cochard c4e5e5e5de MFH: r474490
Remove compile-time-bomb code (#if CONFDATE > 20180828) and backport patches
fixing crash with tunnel interfaces

Reported by:	pkg-fallout
Sponsored by:	Orange

Approved by:	ports-secteam blanket
2018-08-22 13:37:09 +00:00
Bernard Spil 3be77ee8fb MFH: r477321
databases/mariadb102-server: Security update to 10.2.17

Security:	909be51b-9b3b-11e8-add2-b499baebfeaf

Approved by:	ports-secteam (miwi)
2018-08-22 12:12:46 +00:00
Carlos J. Puga Medina 948e7eaa71 MFH: r477781
- Add more useful comments to make Makefile more readable
- Fix TEST option allow running basic tests and skip tests that must be verified
  if they are supported before being added back to TEST_TARGETS
- Add patches that fixes crash with non-MESA drivers fall back to scanning PCI
  devices. Ideally, we'd like to use libpci but the current version calculates
  device class wrong for non-root users (patch submitted to libpci author), so
  a workaround would be messy. Instead, use direct access to /dev/pci. Once the
  upstream fixes the bug generic libpci code can be used [1]

  Tested by: Oleh Hushchenkov <gor@clogic.com.ua>, Jonathan Chen <jonc@chen.org.nz>

- Bump PORTREVISION

PR:		230450 [1]
Submitted by:	gonzo [1]
Reported by:	Oleh Hushchenkov, Jonathan Chen [1]

Approved by:	ports-secteam (blanket)
2018-08-22 10:01:02 +00:00
Kubilay Kocak 5ad7df4918 MFH: r476488 security/py-cryptography: Update to 2.3
This version update fixes builds with libressl >= 2.7.

Builds with openssl-devel are broken due to an underlying lang/python* port
issue [1].

Changelog:

  https://github.com/pyca/cryptography/blob/2.3/CHANGELOG.rst

[1] https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=229223

PR:             226906
Submitted by:   Charli Li <ml+freebsd vishwin info>
Reported by:    many
Security:	9e2d0dcf-9926-11e8-a92d-0050562a4d7b

Approved by:	ports-secteam (miwi)
2018-08-22 02:15:05 +00:00
Antoine Brodin 177783db53 Revert r477626, it fails to build in the quarterly branch
Reported by:	pkg-fallout
With hat:	portmgr
2018-08-21 21:55:30 +00:00
Antoine Brodin b1039f0f9b Revert r477279, it fails to build in the quarterly branch
Reported by:	pkg-fallout
With hat:	portmgr
2018-08-21 21:54:18 +00:00
Cy Schubert 59932ee61c MFH: r477703
Update 4.2.8p11 --> 4.2.8p12

Approved by:	portmgr (delphij)
2018-08-21 11:45:34 +00:00
Kubilay Kocak 2c8b4e2376 MFH: r476826 sysutils/dvd+rw-tools: Fix issue appending more than 25gb on BD-R DL discs
While burning ISO Multisession BD-R 50G growisofs reports no space left while
24G+ are available.

Backport a fix from Debian [1] to address the issue.

While I'm here, document description and origins of both patches [1][2] that
apply to same source file, for our future selves, and to avoid confusion
as both chunks reference the same variable.

[1] https://bugs.debian.org/615978
[2] https://bugs.debian.org/713016

PR:		230493
Submitted by:	Masachika ISHIZUKA <ish amail plala or jp>
Approved by:	portmgr (implicit, unmaintained port)
Obtained from:	Debian [1]

Approved by:	miwi (ports-secteam)
2018-08-21 07:18:28 +00:00
Kubilay Kocak 3fc373df77 MFH: r476722 x11-wm/blackbox: Fix build with Clang 6, Fix TOOLS_ONLY option
Clang 6 (on 12-CURRENT) reports the following error during build:

EWMH.cc:250:7: error: non-constant-expression cannot be narrowed from type
'long' to 'unsigned long' in initializer list [-Wc++11-narrowing]
    { static_cast<long>(x), static_cast<long>(y) };
      ^~~~~~~~~~~~~~~~~~~~

There was also a bug introduced 4 years ago which removed the MAN1 variable a
later INSTALL_MAN macro relied on [1]. This caused a build/install failure
when the TOOLS_ONLY option was enabled.

This change fixes those two issues.

While I'm here level up port compliance:

  - Add LICENSE_FILE
  - Convert to OPTIONS helpers
  - Regenerate patches

[1] http://svnweb.freebsd.org/changeset/ports/346174
[2] https://lists.freebsd.org/pipermail/freebsd-ports/2018-August/114039.html

PR:		226708
Submitted by:	<Trond Endrestol ximalas info> (Clang 6 fix)
Approved by:	Andrew J. Caines <A J Caines halplant com> (technically)
Approved by:	portmgr (implicit, build fixes, framework compliance)
Reported by:	Erich Dollansky <freebsd ed lists sumeritec com> [2]

Approved by:	miwi (ports-secteam)
2018-08-21 07:16:14 +00:00
Jan Beich 43cc904301 MFH: r477696
graphics/graphite2: update to 1.3.12

Changes:	https://sourceforge.net/p/silgraphite/mailman/message/36392530/
Changes:	https://github.com/silnrsi/graphite/compare/1.3.11...1.3.12
ABI:		https://abi-laboratory.pro/tracker/timeline/graphite/
Security:	CVE-2018-7999
Approved by:	ports-secteam blanket (required by Firefox 63)
2018-08-21 00:52:44 +00:00
Jan Beich 4cbd90de02 MFH: r477689
emulators/citra: update to s20180820

Changes:	96c025e4c...7279335fc
Approved by:	ports-secteam (swills, implicit for snapshots)
2018-08-21 00:21:53 +00:00
Jan Beich 26a1aefafd MFH: r477688
emulators/rpcs3: update to 0.0.5.764

Changes:	23b52e1b1...d1d1b2eff
Approved by:	ports-secteam (junovitch, implicit for snapshots)
2018-08-21 00:20:41 +00:00
Richard Gallamore a3e39b7d29 MFH: r477620
Removed fastcgi, this is no longer supported in seafile 6.3+
and previous installs 6.3+ prior to this revision are broken
when using the seahub_fastcgi option.

Approved by:	portmgr (miwi@)
2018-08-20 20:39:48 +00:00
Larry Rosenman 595ce6fdc3 MFH: r474275 r477601
mail/dovecot: upgrade to 2.3.2.1.
v2.3.2 still had a few unexpected bugs:

- SSL/TLS servers may have crashed during client disconnection
- lmtp: With lmtp_rcpt_check_quota=yes mail deliveries may have
   sometimes assert-crashed.
- v2.3.2: "make check" may have crashed with 32bit systems

mail/dovecot, mail/dovecot22: suppress harmless error message when the symlink in /var/run/dovecot
to the config file doesn't exist.

PR:		225078
Reported by:	pkubaj@anongoth.pl
Reviewed by:	adamw

Approved by:	ports-secteam (miwi)
2018-08-20 13:26:09 +00:00
Thomas Zander 657bff19ea MFH: r477647
Fix build on aarch64

PR:		230438
Submitted by:	mikael.urankar@gmail.com

Approved by:	ports-secteam (riggs)
2018-08-20 10:37:38 +00:00
Yuri Victorovich afa3640296 MFH: r477608
x11-toolkits/wxgtk30 and x11-toolkits/wxgtk31: Fix the problem that TLS is broken on armv6/7

ftp/filezilla was dumping core

PR:		229396
Submitted by:	Ulrich Grey <usenet@ulrich-grey.de>
Approved by:	ports-secteam (miwi@FreeBSD.org)
2018-08-20 05:01:25 +00:00
Thomas Zander 3edf376787 MFH: r477320 r477568
Fix OPENAL option when using lld as the default linker

While on it: Replace LIB_DEPENDS by USES for OPENAL

PR:		230593
Submitted by:	tobik

Update to upstream version 0.20.21

Details:
- Upstream changelog see:
  https://raw.githubusercontent.com/MusicPlayerDaemon/MPD/v0.20.21/NEWS

Approved by:	ports-secteam (riggs)
2018-08-19 17:15:23 +00:00
Carlos J. Puga Medina d196ed4de1 MFH: r477504
- Cosmetic fix in Makefile
- Allow chromium to use the Linux GPU access setup implementation by default since it works correctly
- Add missing file for DEBUG option in pkg-plist
- Sort pkg-plist
- Bump PORTREVISION

Approved by:	ports-secteam (blanket)
2018-08-18 14:46:19 +00:00
Jochen Neumeister 43c620fa00 MFH: r477443
revert php-7.1.x-mail-header.patch into distinfo

Point hat: joneum

Approved by:	ports-secteam (miwi)
2018-08-18 04:31:22 +00:00
Jochen Neumeister b141252a09 MFH: r477442
Update to 7.1.21

Changelog: http://www.php.net/ChangeLog-7.php#7.1.21

Approved by:	tz (implicit)

Approved by:	ports-secteam (miwi)
2018-08-18 04:29:53 +00:00
Jan Beich 5f8a82cc78 MFH: r477453
emulators/citra: update to s20180816

Changes:	20cb8f66d...96c025e4c
Approved by:	ports-secteam (swills, implicit for snapshots)
2018-08-17 23:01:59 +00:00
Jan Beich 7f4f79b2e3 MFH: r477452
emulators/rpcs3: update to 0.0.5.735

Changes:	9d8c9c246...23b52e1b1
Approved by:	ports-secteam (junovitch, implicit for snapshots)
2018-08-17 23:01:23 +00:00
Cy Schubert fd73d258fe MFH: r477402 r477403
r477402:
In preparation for applying security patches, switch to grouping of
patches per site as suggested by mat@.

Suggested by:	mat@
Differential Revision:	https://reviews.freebsd.org/D16718

r477402 needs to be merged as well in order for r477403 to merge
properly.

r477403:
Chase net/wpa_supplicant r477202 and base contrib/wpa r337819.

WPA: Ignore unauthenticated encrypted EAPOL-Key data

Though hostapd is technically not vulnerable, the mitigation for
CVE-2018-14526 does apply cleanly, therefore it is applied to maintain
consistency with net/wpa_supplicant and wpa in base.

Approved by:	leres@
Differential Revision:	https://reviews.freebsd.org/D16718

Approved by:	portmgr (miwi@)
2018-08-17 19:26:39 +00:00
Sunpoet Po-Chuan Hsieh a87fd4b0ca MFH: r477008
Update to 1.3.30

Changes:	http://www.graphicsmagick.org/NEWS.html
Security:	e714b7d2-39f6-4992-9f48-e6b2f5f949df

Approved by:	ports-secteam (miwi)
2018-08-16 22:40:05 +00:00
Li-Wen Hsu a736f35767 MFH: r477286
- Update to 2.121.3

Approved by:	swills (maintainer, implicitly)
Security:	6905f05f-a0c9-11e8-8335-8c164535ad80
Sponsored by:	The FreeBSD Foundation

Approved by:	ports-secteam (miwi)
2018-08-16 14:56:25 +00:00
Li-Wen Hsu 27128cc25b MFH: r477285
- Update to 2.138

Security:	6905f05f-a0c9-11e8-8335-8c164535ad80
Sponsored by:	The FreeBSD Foundation

Approved by:	ports-secteam (miwi)
2018-08-16 14:54:34 +00:00
Carlos J. Puga Medina 299ef26fb5 MFH: r477294
www/chromium: Update to 68.0.3440.106

- Update amount of free disk space required to build chromium
- Implement GPU access set up for FreeBSD [1]
- Remove the incorrect sugestion in pkg-message and remove the fix-hanging-tabs.sh script because the bug of hanging tabs has been fixed in r337328 improving the chromium stability. Thanks to markj@ [2]

PR:		230450 [1], 212812 [2]
Reported by:	Oleh Hushchenkov <gor@clogic.com.ua>

Approved by:	ports-secteam (miwi)
2018-08-16 06:57:23 +00:00
Jan Beich 4b950c06d2 MFH: r477302
emulators/rpcs3: update to 0.0.5.731

Changes:	6c62f42d8...9d8c9c246
Approved by:	ports-secteam (junovitch, implicit for snapshots)
2018-08-16 00:44:33 +00:00
Jan Beich a066bdc649 MFH: r477192
print/harfbuzz: update to 1.8.8

Changes:	https://github.com/harfbuzz/harfbuzz/blob/1.8.8/NEWS
ABI:		https://abi-laboratory.pro/tracker/timeline/harfbuzz/
Approved by:	ports-secteam blanket (required by Firefox 63)
2018-08-16 00:38:02 +00:00
Jan Beich c204e5ac5e MFH: r477288
emulators/citra: update to s20180814

Changes:	6a1fa3c84...20cb8f66d
Approved by:	ports-secteam (swills, implicit for snapshots)
2018-08-15 21:22:14 +00:00
Jan Beich f4a1d3649e MFH: r477287
emulators/rpcs3: update to 0.0.5.729

Changes:	57ba9d393...6c62f42d8
Approved by:	ports-secteam (junovitch, implicit for snapshots)
2018-08-15 21:20:42 +00:00
Kurt Jaeger b1ecc5de8b MFH: r477052
dns/knot-resolver: update 2.3.0 -> 2.4.1

- CVE-2018-10920: Improper input validation bug in DNS resolver component

PR:		229485
Reported by:	freebsd-vheg@riseup.net,
Approved by:	freebsd@dns.company (maintainer timeout)
Relnotes:	https://www.knot-resolver.cz/2018-07-03-knot-resolver-2.4.0.html
		https://www.knot-resolver.cz/2018-08-02-knot-resolver-2.4.1.html
Security:	CVE-2018-10920
Approved by:	ports-secteam (miwi)
2018-08-15 19:35:15 +00:00
Cy Schubert f2b30c34eb MFH: r476960
Avoid $nut_upsshut is not set properly messages by defining a default.

Suggested by:	Dan Mahoney <dmahoney@isc.org>
Approved by:	portmgr (miwi)
2018-08-15 19:31:14 +00:00
Tobias Kortkamp 74877542d2 MFH: r477236
lang/chicken: Update to 4.13.0

- Respect LDFLAGS
- Take maintainership

Changes:	https://code.call-cc.org/releases/4.13.0/NEWS
PR:		230535
Approved by:	maintainer
Security:	5a771686-9e33-11e8-8b2d-9cf7a8059466

Approved by:	ports-secteam (miwi)
2018-08-15 18:25:46 +00:00
Jung-uk Kim 95f5d83d1c MFH: r477195
Update to 30.0.0.154.

https://helpx.adobe.com/security/products/flash-player/apsb18-25.html

Approved by:	ports-secteam (blanket)
2018-08-14 19:07:17 +00:00
Mahdi Mokhtari 4858c5d946 MFH: r476016 r476944 r477036 r477063 r477105
databases/mysql80-client: Unbreak patching

Broken after patch(1) changes in r326084

PR:	228788
Submitted by:	curtis@ipv6.occnc.com
Approved by:	tcberner (mentor) mmokhi (maintainer)
Differential Revision:	https://reviews.freebsd.org/D16532

databases/mysql80-{client, server}: Update ports to 8.0.12
This update includes Oracle Critical Patch Advisory published on July 2018
More info:
http://www.oracle.com/technetwork/security-advisory/cpujul2018-4258247.html#AppendixMSQL
Also:
Delete upstreamed hunks of patches.
Change local patches regarding upstream changes.

PR:		229861
Reported by:	Markus Kohlmeyer <rootservice@gmail.com>
Sponsored by:	The FreeBSD Foundation

databases/mysql80-server: Fix build on default Clang of 10.4-base
Add sse4.2 flag to CXXFLAGS on 10.4 case.
The build-script needs it when using intrin lib on crc32

Sponsored by:	The FreeBSD Foundation

databases/mysql80-server: Use c++14-lang instead of `msse-4.2 in CXXFLAG`
As suggested via replies to r477036 using `-msse-4.2` may break build on other
platforms.

Reported by:	linimon danfe jbeich
Sponsored by:	The FreeBSD Foundation

databases/mysql80-server: Delete no-longer-needed patch for sse4.2

Reported by:	jbeich
Sponsored by:	The FreeBSD Foundation

Approved by:	ports-secteam (feld)
2018-08-14 14:44:29 +00:00
Mahdi Mokhtari fcd023ff25 MFH: r476852 r476934
mysql57-{client, server}: Update ports to 5.7.23
This update includes Oracle Critical Patch Advisory published on July 2018
More info:
http://www.oracle.com/technetwork/security-advisory/cpujul2018-4258247.html#AppendixMSQL

PR:		229860
Submitted by:	Dani <i.dani@outlook.com<
Reported by:	Markus Kohlmeyer <rootservice@gmail.com>
Reviewed by:	brnrd , koobs
Sponsored by:	The FreeBSD Foundation

mysql57-server: Fix build with LibreSSL 2.7

PR:		230527
Submitted by:	Markus Kohlmeyer <rootservice@gmail.com>
Reported by:	Markus Kohlmeyer <rootservice@gmail.com>
Sponsored by:	The FreeBSD Foundation

Approved by:	ports-secteam (feld)
2018-08-14 14:20:29 +00:00
Mahdi Mokhtari 5948335763 MFH: r469311 r476853
databases/mysql56-server: Fix build with LibreSSL

PR:		227178
Approved by:	mmokhi (maintainer)

mysql56-{client, server}: Update ports to 5.6.41
This update includes Oracle Critical Patch Advisory published on July 2018
More info:
http://www.oracle.com/technetwork/security-advisory/cpujul2018-4258247.html#AppendixMSQL

Sponsored by:	The FreeBSD Foundation

Approved by:	ports-secteam (feld)
2018-08-14 14:15:02 +00:00
Cy Schubert 6452ec8931 MFH: r476803
Ensure that slapd starts before kdc, as the kdc may be configured to
require LDAP services. If it is configured to require LDAP and the
slapd server is not yet started, the kdc will fail to start.

PR:		229939
Approved by:	delphij@ (maintainer)
Differential Revision:	https://reviews.freebsd.org/D16602
Approved by:	portmgr (miwi@)
2018-08-14 12:42:43 +00:00
Jan Beich 8ff0b5a13b MFH: r477123
emulators/rpcs3: update to 0.0.5.722

Changes:	451b3f3c9...57ba9d393
Approved by:	ports-secteam (junovitch, implicit for snapshots)
2018-08-14 00:31:56 +00:00
Jan Beich 892e412242 MFH: r477122
emulators/citra: update to s20180812

Changes:	84fc8eaab...6a1fa3c84
Approved by:	ports-secteam (swills, implicit for snapshots)
2018-08-14 00:30:40 +00:00
Mark Felder d5d05e0f0e MFH: r477077
databases/xtrabackup: Update to 2.4.12

- Disable version check functionality which is an information disclosure
vulnerability as it posts system information and hostnames to
https://v.percona.com

PR:		230417
Approved by:	maintainer
Differential Revision:	https://reviews.freebsd.org/D16609
2018-08-13 16:52:40 +00:00
Vasil Dimov 253bf150b5 MFH: r476744
misc/ossp-uuid: Bump PORTREVISION after r476743

Approved by:	ports-secteam
2018-08-13 14:05:51 +00:00
Vasil Dimov 6dde555a1f MFH: r476743
misc/ossp-uuid: Fix pkg-config linker flags

PR:		ports/230282
Submitted by:	Dmitri Goutnik <dg@syrec.org>

Approved by:	ports-secteam
2018-08-13 14:04:49 +00:00
Thomas Zander d6e51f51cb MFH: r474007 r474079 r474827 r477003
- Update included git to 2.17.1

PR:		227536

devel/cgit: Fix patch

PR:		227536

devel/cgit: update 1.1 -> 1.2

- among other things, update to git 2.18

PR:		229841
Submitted by:	Yasuhiro KIMURA <yasu@utahime.org>
Approved by:	Marko Turk <mt@markoturk.info> (maintainer)
Relnotes:	https://lists.zx2c4.com/pipermail/cgit/2018-July/004160.html

Update to upstream release 1.2.1 (Fixes CVE-2018-14912)

PR:		230361
Submitted by:	yasu@utahime.org
Approved by:	mt@markoturk.info (maintainer)
Security:	CVE-2018-14912

Approved by:	ports-secteam (riggs)
2018-08-12 17:50:11 +00:00
Martin Wilke acd8a89567 MFH: r474004 r476918
- Update to 1.2.2

PR:	229515
Submitted by:	maintainer

- Update to 1.2.3

PR:		230500
Submitted by:	maintainer
Sponsored by:	iXsystems Inc.

Approved by:	ports-secteam (miwi)
2018-08-11 14:30:53 +00:00
Fukang Chen b6aa182510 MFH: r476860
mail/bincimap: Fix build with Clang 6.0.0

Reviewed by:	koobs
Approved by:	koobs (mentor)
Differential Revision:	https://reviews.freebsd.org/D16658

Approved by:	ports-secteam (miwi)
2018-08-11 09:04:30 +00:00
Jan Beich cc9d23bf15 MFH: r476829
devel/codeblocks-devel: unbreak with libc++ 5

In file included from sqvm.cpp:5:
In file included from /usr/include/c++/v1/math.h:310:
/usr/include/c++/v1/limits:148:85: error: expected expression
    _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type min() _NOEXCEPT {return type();}
                                                                                    ^
../../../../src/include/scripting/squirrel/sqobject.h:99:24: note: expanded from macro 'type'
 #define type(obj) ((obj)._type)
                        ^

Submitted by:	Michael Butler (based on)
Approved by:	ports-secteam blanket
2018-08-10 13:01:51 +00:00
Jan Beich 5189c56069 MFH: r476608 r476724
print/harfbuzz: update to 1.8.7

Changes:	https://github.com/harfbuzz/harfbuzz/blob/1.8.7/NEWS
ABI:		https://abi-laboratory.pro/tracker/timeline/harfbuzz/
Approved by:	ports-secteam blanket (required by Firefox 63)
2018-08-09 16:56:22 +00:00
Bernard Spil c3377fd5f8 MFH: r476659
databases/mariadb101-server: Security update to 10.1.35

Security:	909be51b-9b3b-11e8-add2-b499baebfeaf

Approved by:	ports-secteam (miwi)
2018-08-09 16:51:34 +00:00
Bernard Spil 46a3a47bc7 MFH: r476677
databases/mariadb55-server: Security update to 5.5.61

Security:	909be51b-9b3b-11e8-add2-b499baebfeaf

Approved by:	ports-secteam (miwi)
2018-08-09 16:39:11 +00:00
Bernard Spil d9ebfe17ee MFH: r476674
databases/mariadb100-server: Security update to 10.0.36

Security:	909be51b-9b3b-11e8-add2-b499baebfeaf

Approved by:	ports-secteam (miwi)
2018-08-09 16:38:05 +00:00
Jan Beich 1969d4448c MFH: r476635
www/firefox: update to 61.0.2

Changes:	https://www.mozilla.org/firefox/61.0.2/releasenotes/
PR:		227850
Approved by:	ports-secteam blanket
2018-08-09 11:44:28 +00:00
Mathieu Arnold edc8b0b10a Update to 9.11.4-P1 and 9.12.2-P1.
Security:	CVE-2018-5740
Sponsored by:	Absolight
2018-08-08 21:28:53 +00:00
Jan Beich ab66be88c9 MFH: r476681
emulators/citra: update to s20180808

Changes:	0233f3286...84fc8eaab
Approved by:	ports-secteam (swills, implicit for snapshots)
2018-08-08 21:08:42 +00:00
Jan Beich 144737404d MFH: r476680
emulators/rpcs3: update to 0.0.5.703

Changes:	69af60749...451b3f3c9
Approved by:	ports-secteam (junovitch, implicit for snapshots)
2018-08-08 21:07:40 +00:00
Carlos J. Puga Medina 88a06b3a04 MFH: r476675
www/chromium: minor fix in pkg-message

%%DATADIR%% is not being expanded in pkg-message, and it shows up like this:

--II--
Chromium has a known problem of hanging tabs. The workaround
for this problem is to mount ~/.cache/chromium as memory-fs.
In order to do this, before you run Chromium, please run the
following script as root once for each user who uses Chromium
(replace {user}/{group} with your user/group names):

# %%DATADIR%%/fix-hanging-tabs.sh {user} {group}

- Add DATADIR to SUB_LIST to correctly be replaced with its value and move pkg-message to FILESDIR.
- Bump PORTREVISION

Reported by:	olgeni via mail

Approved by:	ports-secteam (blanket)
2018-08-08 20:31:45 +00:00
Mark Felder eda128cfc4 MFH: r476650
databases/xtrabackup: Revert depdendency removal

There is a perl script embedded in the binary which can be found at
storage/innobase/xtrabackup/src/version_check.pl. This script can be
ignored if you pass the argument --no-version-check. It could be
possible to replace this with a simple shell script to achieve the same
results and eliminate the dependency on a specific external
libmysqlclient library inherited from DBD::MySQL. This will be
investigated to eliminate this issue.

Pointyhat:	me
2018-08-08 17:44:05 +00:00
Carlos J. Puga Medina 1fa6743c8a MFH: r476599
www/chromium: Update to 68.0.3440.84

Changelog: https://chromium.googlesource.com/chromium/src/+log/67.0.3396.87..68.0.3440.84?pretty=fuller&n=10000

At the moment pkg-message says that in order to work around the hanging tabs problem the user may wish to run the following commands:

# [ -d ~{user}/.cache/chromium ] || mkdir ~{user}/.cache/chromium
# echo "md $(echo ~{user})/.cache/chromium mfs rw,late,-w{user}:{group},-s300m 2 0" >> /etc/fstab
# mount ~{user}/.cache/chromium

Add fix-hanging-tabs.sh script to the DATADIR [1], which simplifies the process to just running

/usr/local/share/chromium/fix-hanging-tabs.sh $user $group

PR:		230264 [1]
Submitted by:	0mp [1]
Security:	http://vuxml.freebsd.org/freebsd/b9c525d9-9198-11e8-beba-080027ef1a23.html

Approved by:	ports-secteam (miwi)
2018-08-08 07:08:42 +00:00
Jan Beich fa32953d6e MFH: r476552
emulators/citra: update to s20180804

Changes:	5bc72cca6...0233f3286
Approved by:	ports-secteam (swills, implicit for snapshots)
2018-08-06 22:45:10 +00:00
Mark Felder 3a25649151 MFH: r476547
databases/xtrabackup: Remove unnecessary depdendency

DBD::mysql has not been required since version 2.3.0

Approved by:	portmgr (with hat)
2018-08-06 20:53:42 +00:00
Jan Beich 1fa1c9ad0f MFH: r474766 r474915 r475212 r475921 r476205 r476325
www/py-flexget: update to 2.14.14

Changes:	https://github.com/Flexget/Flexget/compare/2.14.3...2.14.14
Approved by:	ports-secteam (riggs)
2018-08-06 18:50:00 +00:00
Jason E. Hale 0faf4e13e1 MFH: r476485
Fix build with Perl >= 5.26 - regular expression match was failing with
newer MakeMaker which caused the objects to be written to the wrong location

Add LICENSE - the README says it is licensed the same as Perl

Approved by:	ports-secteam (blanket)
2018-08-06 03:06:12 +00:00
Ryan Steinmetz 93d78fcb80 MFH: r476313
- Fix auto-resize code
- Bump PORTREVISION

Approved by:	ports-secteam (with hat)
2018-08-05 21:47:03 +00:00
Ryan Steinmetz 20f74ab401 MFH: r476232
- Bump PORTREVISION
- Fix rc script errors
- Fix config file location

Approved by:	ports-secteam (with hat)
2018-08-05 21:46:39 +00:00
Ryan Steinmetz a2176bdc81 MFH: r476024
- Update to 18.3
- Take MAINTAINERship

Approved by:	ports-secteam (with hat)
2018-08-05 21:46:14 +00:00
Thomas Zander 15f5b3b79a MFH: r476405
Update to upstream version 2.2.1

PR:		230340
Submitted by:	freebsd@felix.flornet.de
Approved by:	freebsd@code-mesa.com (maintainer)

Approved by:	ports-secteam (riggs)
2018-08-05 11:29:22 +00:00
Jan Beich 1936e93105 MFH: r476371
multimedia/mpc-qt: track PORTEPOCH since r331464

Approved by:	ports-secteam blanket
2018-08-04 17:04:36 +00:00
Sunpoet Po-Chuan Hsieh d551cf2d00 MFH: r476041 r476127 r476138
Update to 2.0.3

Changes:	https://github.com/sinatra/sinatra/blob/master/CHANGELOG.md

Update to 2.0.3

Changes:	https://github.com/sinatra/sinatra/blob/master/CHANGELOG.md
		https://github.com/sinatra/sinatra/commits/master/rack-protection

Update to 2.0.3

Changes:	https://github.com/sinatra/sinatra/blob/master/CHANGELOG.md
		https://github.com/sinatra/sinatra/commits/master
Security:	ca05d9da-ac1d-4113-8a05-ffe9cd0d6160

Approved by:	ports-secteam (miwi)
2018-08-04 16:13:02 +00:00
Jan Beich 401be75838 MFH: r476324
emulators/citra: update to s20180803

Changes:	ba6eee71fb...5bc72cca6
Approved by:	ports-secteam (swills, implicit for snapshots)
2018-08-03 22:46:07 +00:00
Jan Beich b43c1d0152 MFH: r476323
emulators/rpcs3: update to 0.0.5.701

Changes:	8cb749110...69af60749
Approved by:	ports-secteam (junovitch, implicit for snapshots)
2018-08-03 22:45:10 +00:00
Jan Beich a0a6a97b6f MFH: r476207
print/harfbuzz: update to 1.8.5

Changes:	https://github.com/harfbuzz/harfbuzz/blob/1.8.5/NEWS
ABI:		https://abi-laboratory.pro/tracker/timeline/harfbuzz/
Approved by:	ports-secteam blanket (required by Firefox 63)
2018-08-03 15:14:45 +00:00
Sunpoet Po-Chuan Hsieh 21d6334fd5 MFH: r476092 r476093 r476094
Update to 4.4.1

Changes:	https://github.com/doorkeeper-gem/doorkeeper/releases
Security:	e309a2c7-598b-4fa6-a398-bc72fbd1d167

Approved by:	ports-secteam (miwi)
2018-08-02 19:43:34 +00:00
Mathieu Arnold ab669c2f5c MFH: r476224
Fix spurious errors.

PR:		230287
Sponsored by:	Absolight
Differential Revision:	https://reviews.freebsd.org/D16440
2018-08-02 08:38:38 +00:00
Bradley T. Hughes 1f5a414a5a MFH: r476200
security/py-gssapi: Fix builds against non-base GSSAPI

Patch setup.py so location of krb5-config is configurable

PR:		229639
Submitted by:	john@saltant.com (maintainer)
Sponsored by:	Miles AS

Approved by:	ports-secteam (miwi)
2018-08-02 07:30:28 +00:00
Jan Beich 2a7aec6bed MFH: r476204
emulators/citra: update to s20180801

Changes:	05eb0ccb0...ba6eee71f
Approved by:	ports-secteam (swills, implicit for snapshots)
2018-08-01 22:25:10 +00:00
Renato Botelho d0dd2e50b9 MFH: r476170
Update devel/libhtp to 0.5.27

Approved by:	ports-secteam (delphij), koobs (maintainer)
Obtained from:	pfSense
Security:	CVE-2018-10243
Sponsored by:	Rubicon Communications, LLC (Netgate)
Differential Revision:	https://reviews.freebsd.org/D16365
2018-08-01 10:38:51 +00:00
Kurt Jaeger e2a2624305 MFH: r476009
mail/roundcube-contextmenu: unbreak: upstream distsite moved inside github

PR:		228020
Submitted by:	Alexander Moiseev <moiseev@mezonplus.ru> (maintainer)
Reported by:	dewayne@heuristicsystems.com.au
Approved by:	ports-secteam (miwi)
2018-08-01 04:24:02 +00:00
Kurt Jaeger 747fb0e258 MFH: r476008
mail/roundcube-thunderbird_labels: unbreak: distsite moved inside github

PR:		228020
Submitted by:	Alexander Moiseev <moiseev@mezonplus.ru> (maintainer)
Reported by:	dewayne@heuristicsystems.com.au
Approved by:	ports-secteam (miwi)
2018-08-01 04:23:12 +00:00
Jason E. Hale 71d691f01b MFH: r476022
The webservice that audio/libmusicbrainz3 interfaces with will cease operation
on 2018-08-01. Add upstream patch to use audio/libmusicbrainz5 for track lookup
operations instead.

Reviewed by:	rakuco
Obtained from:	KDE git repo
Differential Revision:	https://reviews.freebsd.org/D16536

Approved by:	ports-secteam (blanket)
2018-07-31 21:17:37 +00:00
Matthias Andree c07014ca2a MFH: r475991
Security upgrade Mailman to 2.1.29

Changelog:
<https://bazaar.launchpad.net/~mailman-coders/mailman/2.1/view/head:/NEWS#L8>

Release announcements:
2.1.28:
<https://mail.python.org/pipermail/mailman-announce/2018-July/000241.html>
2.1.29: (a regression fix release over 2.1.28)
<https://mail.python.org/pipermail/mailman-announce/2018-July/000242.html>

Security:	b4f0ad36-94a5-11e8-9007-080027ac955c
Security:	CVE-2018-13796
Security:	https://bugs.launchpad.net/mailman/+bug/1780874

Approved by:	ports-secteam@ (miwi@)
2018-07-31 16:32:16 +00:00
Jean-Sébastien Pédron c422aa7de7 MFH: r475871
lang/erlang-runtime{20,21}: Add patch to fix build on i386

Those two ports fail to build on FreeBSD/i386 (all versions) for quite
some time. The Erlang/OTP team provided a patch after Dewayne Geraghty
reported the issue upstream.

Here is the entry in the Erlang/OTP bug tracker:
https://bugs.erlang.org/browse/ERL-677

The patch was successfully tested on FreeBSD 10.4 and 11.1, both i386
and amd64. Dewayne also confirmed success on FreeBSD 11.2.

PR:		229600
Reported by:	Dewayne Geraghty <dewayne@heuristicsystems.com.au>
Obtained from:	https://bugs.erlang.org/browse/ERL-677

Approved by:	portmgr (riggs)
2018-07-31 14:50:06 +00:00
Ruslan Makhmatkhanov 2d60bd3c4b MFH: r475992 r475993
www/py-notebook: add missing dependencies

Fix runtime by adding missing dependencies: prometheus-client is required for
all versions and ipaddress is required for python 2.7. Bump PORTREVISION to
chase a dependency change.

With hat:   python

www/py-notebook: correct typo

Approved by:	portmgr (miwi)
2018-07-31 12:39:07 +00:00
Jan Beich e47005ec7b MFH: r475919
emulators/citra: update to s20180730

Changes:	be193869c...05eb0ccb0
Approved by:	ports-secteam (swills, implicit for snapshots)
2018-07-30 22:45:59 +00:00
Jan Beich 61009bf99d MFH: r475918
emulators/rpcs3: update to 0.0.5.694

Changes:	b0f464d11...8cb749110
Approved by:	ports-secteam (junovitch, implicit for snapshots)
2018-07-30 22:44:34 +00:00
Kurt Jaeger adbc2d3237 MFH: r475393
net/owamp: Unconditionally define a private timespecadd

net/owamp assumes that if timespecadd is defined, it's identical
to the two-argument version found in the FreeBSD kernel.  However,
the three argument version found in NetBSD and OpenBSD is actually
more common.  An upcoming commit to head will replace FreeBSD's
version with the NetBSD version.  So net/owamp shouldn't assume
that if FreeBSD defines timespecadd, it's defining the 2-argument
version.

PR:		230059
Submitted by:	asomers
Approved by:	portmgr (bapt)
2018-07-30 08:12:24 +00:00
TAKATSU Tomonari 50c11a3131 MFH: r475623
- Rename patches
  * extra-patch-Mailman-Cgi-private.py to extra-patch-Mailman_Cgi_private.py
  * patch-CVE-2015-2775 to patch-Mailman_Utils.py
  * patch-CVE-2018-5950 to patch-Mailman_Cgi_options.py
- Apply CVE-2018-0618 patches [1]

PR:		229351 [1]
Submitted by:	Yasuhito FUTATSUKI
Security:	CVE-2018-0618
Approved by:	ports-secteam (miwi@)
2018-07-30 03:10:34 +00:00
Antoine Brodin 78c981b501 MFH: r475661
Metasploit database requires rubygem-pg version 0.2x

PR:		228722
Reported and tested by:	Marco Beishuizen
2018-07-29 15:20:18 +00:00
Jochen Neumeister 03dabf30c1 MFH: r475644
databases/mantis: Update to 2.15.0

Changelog: https://mantisbt.org/bugs/changelog_page.php?project=mantisbt&version=2.15.0

PR:		229880
Submitted by:	Nathan <ndowens.fbsd@yandex.com>
Security:	0822a4cf-9318-11e8-8d88-00e04c1ea73d

Approved by:	ports-secteam (miwi)
2018-07-29 12:28:46 +00:00
Jochen Neumeister 7c1c7964c0 MFH: r475605
databases/pspg: Update to 1.2.2

Changelog:
 - https://github.com/okbob/pspg/releases/tag/1.2.1
 - https://github.com/okbob/pspg/releases/tag/1.2.2

PR:		229910
Submitted by:	Dmitri Goutnik <dg@syrec.org> (maintainer)

Approved by:	ports-secteam (miwi)
2018-07-29 12:25:51 +00:00
Matthias Fechner 03dd42fe9d MFH: r475377 r475417
- Update to 11.1.1, for more details please check:
  https://about.gitlab.com/2018/07/22/gitlab-11-1-released/
- Fixed a typo in config/gitlab.yml.example that was introduced by the prefix update.

Approved by:	mentors (implicit)

Security update to 11.1.2.

For more info see here:
https://about.gitlab.com/2018/07/26/security-release-gitlab-11-dot-1-dot-2-released/

Approved by:	mentors (implicit)
Security:	2da838f9-9168-11e8-8c75-d8cb8abf62dd

Approved by:	ports-secteam (miwi)
2018-07-28 20:07:53 +00:00
Matthias Fechner 15ae8e8085 MFH: r475376
Update to 1.0.0 which is required for gitlab 11.1.1.

Approved by:	mentors (implicit)

Approved by:	ports-secteam (miwi)
2018-07-28 19:09:53 +00:00
Matthias Fechner 981cd0a10e MFH: r475375
Update to 5.0.0 which is required for gitlab 11.1.1.

Approved by:	mentors (implicit)

Approved by:	ports-secteam (miwi)
2018-07-28 18:51:37 +00:00
Matthias Fechner d17cba23e5 MFH: r475374
Update to 1.6.4 which is required for gitlab 11.1.1.
Take maintainer.
Made portlint happy.

Approved by:	mentors (implicit)

Approved by:	ports-secteam (miwi)
2018-07-28 18:33:15 +00:00
Matthias Fechner 061f795b62 MFH: r475373
Update to 1.5.0 which is required for gitlab 11.1.1.
Take maintainer.

Approved by:	mentors (implicit)

Approved by:	ports-secteam (miwi)
2018-07-28 18:07:17 +00:00
Matthias Fechner 5ec8e21693 MFH: r475372
Update to 0.105.0 which is required for gitlab 11.1.1.

Approved by:	mentors (implicit)

Approved by:	ports-secteam (miwi)
2018-07-28 17:51:05 +00:00
Matthias Fechner 088c9ce187 MFH: r475371
Update to 0.111.2 which is required for gitlab 11.1.1.

Approved by:	mentors (implicit)

Approved by:	ports-secteam (miwi)
2018-07-28 17:40:21 +00:00
Dima Panov 5d83fce8b9 MFH: r475063
- Update to 2.2.0 release
- Pass linker flags to LDFLAGS

Reported by:	antoine via exp-run

Approved by:	ports-secteam (miwi)
2018-07-28 13:02:19 +00:00
Dima Panov 56658facca MFH: r475483
lang/ruby2[4|5]: Use internal RUBY_DLDFLAGS right way, get rid of unescaped macro '$@' in the pkg-config template

lang/ruby23 is already fixed same way, port it to newer releases

By the way, this unbreak ninja builds with any port relied on libruby.so

PR:		229898
Submitted by:	fluffy
Reviewed by:	ruby (miwi)
Approved by:	ruby (miwi)
Exp-run by:	antoine
Differential Revision:	D16341

Approved by:	ports-secteam (miwi)
2018-07-28 03:37:53 +00:00
Jan Beich 28f7ccc2bb MFH: r475472
emulators/citra: update to s20180727

Changes:	4a3c4f5f6...be193869c
Approved by:	ports-secteam (swills, implicit for snapshots)
2018-07-27 23:07:06 +00:00
Jan Beich 0992e8659e MFH: r475471
emulators/rpcs3: update to 0.0.5.678

Changes:	c5c0f68b3...b0f464d11
Approved by:	ports-secteam (junovitch, implicit for snapshots)
2018-07-27 23:05:49 +00:00
Steve Wills b8bb396a81 MFH: r475392
net-mgmt/nstat: don't assume timespecadd is undefined

PR:		230058
Submitted by:	asomers

Approved by:	ports-secteam (implicit)
2018-07-27 20:59:02 +00:00
Steve Wills 068c004ff1 MFH: r475433
ftp/curl: Update to 7.61.0

PR:		229753
Submitted by:	Yasuhiro KIMURA <yasu@utahime.org>
Approved by:	maintainer timeout (sunpoet, >2 weeks)
Security:	3849e28f-8693-11e8-9610-9c5c8e75236a
Approved by:	ports-ecteam (implicit)
2018-07-27 12:39:54 +00:00
Torsten Zuehlsdorff f202b1203a MFH: r475415
graphics/gd: Update from 2.2.4 to 2.2.5

This update fixes 2 security issues:
- Double-free in gdImagePngPtr(). (CVE-2017-6362)
- Buffer over-read into uninitialized memory. (CVE-2017-7890)

Full Changelog:
https://github.com/libgd/libgd/blob/gd-2.2.5/CHANGELOG.md

PR:		229707
Submitted by:	Mikhail Teterin <mi@FreeBSD.org>
Approved by:	maintainer timeout (dinoex, 2 weeks)
Security:	CVE-2017-6362
Security:	CVE-2017-7890

Approved by:	ports-secteam (miwi)
2018-07-27 12:35:21 +00:00
Danilo Egea Gondolfo 730900139e MFH: r475381
- Update to 8.6.5

Fix a buffer overflow in the tiff reader.

Approved by:	ports-secteam (swills)
2018-07-26 17:12:47 +00:00
Jochen Neumeister f57d21fa4e MFH: r475029
revert php-7.0.x-mail-header.patch into distinfo

Point hat: joneum

Approved by:	ports-secteam (miwi)
2018-07-26 16:47:07 +00:00
Jochen Neumeister 4be322094d MFH: r475028
Update to 7.0.31

Changelog: http://www.php.net/ChangeLog-7.php#7.0.31

Approved by:	tz (implicit)

Approved by:	ports-secteam (miwi)
2018-07-26 16:46:18 +00:00
Dima Panov b2adc855d7 MFH: r475345
- Use corresponded luasocket while SOCKET option enabled

No PORTREVISION bump 'cause option was always broken due to lua52 is default

PR:		229685
Submitted by:	fluffy
Approved by:	maintainer timeout (2 weeks)

Approved by:	portmgr (miwi)
2018-07-26 09:34:16 +00:00
Jan Beich e65e3bdce2 MFH: r475337
emulators/citra: update to s20180725

Changes:	14878a17d...4a3c4f5f6
Approved by:	ports-secteam (swills, implicit for snapshots)
2018-07-25 21:34:58 +00:00
Fernando Apesteguía 2c0ff8bd75 MFH: r475268
devel/libsixel: update to 1.8.2

Fixes:

* CVE-2018-14072
* CVE-2018-14073

PR:	229975
Submitted by:	sue@iwmt.org (maintainer)
Approved by:	tcberner (mentor)
Differential Revision:	  https://reviews.freebsd.org/D16421

Approved by:	ports-secteam (swills)
2018-07-25 16:08:08 +00:00
Bryan Drewery 3b6e8c2990 MFH: r475282
vboxheadless: Fix start of specific machine after base r291770.

The vboxheadless rc script has its own pid checking, so the rc.subr
version in run_rc_command is not needed.

PR:		212074

Approved by:	portmgr (implicit)
2018-07-24 23:23:58 +00:00
Carlos J. Puga Medina cefb018c00 MFH: r475280
Put the git dependency in the right place. Now chromedriver needs git dependency at build time.

Don't bump PORTREVISION because DRIVER option is enabled by default and does not affect to the generated package.

Reported by:	Claude Buisson <clbuisson@orange.fr>

Approved by:	ports-secteam (blanket)
2018-07-24 23:17:08 +00:00
Niclas Zeising f031da51ee MFH: r474016 r475192
graphics/mesa: update to 18.1.3

Obtained from:	https://github.com/FreeBSDDesktop/freebsd-ports/tree/feature/mesa-18.1

graphics/mesa: Update to 18.1.4

Obtained from:	https://github.com/FreeBSDDesktop/freebsd-ports/tree/feature/mesa-18.1
X-MFH-with:	r474016

Approved by:	ports-secteam (swills)
2018-07-24 15:54:00 +00:00
Hans Petter Selasky b7483dfb7f MFH: r475237
Update jack_umidi to version 1.0.9

Fix for long device names.

Approved by: ports-secteam (swills)
2018-07-24 12:40:50 +00:00
Torsten Zuehlsdorff f6e857a5e8 MFH: r475184
devel/php71-intl and devel/php72-intl

Commit missed resets of PORTREVISION after updates of lang/php71 and lang/php72

Approved by:	ports-secteam (miwi)
2018-07-24 08:51:34 +00:00
Torsten Zuehlsdorff 062502a87e MFH: r475183
lang/php72: Update from 7.2.7 to 7.2.8

Changelog: http://www.php.net/ChangeLog-7.php#7.2.8

Also patch out MySQL 8 auth changes, which makes the hash
extension mandatory instead of optional and introduce further
bugs:
d6e81f0bfd

Approved by:	ports-secteam (miwi)
2018-07-24 08:50:37 +00:00
Torsten Zuehlsdorff 4d3f701370 MFH: r475181
Update PHP 7.1 from 7.1.19 to 7.1.20

Changelog: http://www.php.net/ChangeLog-7.php#7.1.20

Also patch out MySQL 8 auth changes, which makes the hash
extension mandatory instead of optional and introduce further
bugs:
d6e81f0bfd

Approved by:	ports-secteam (miwi)
2018-07-24 08:49:41 +00:00
Jan Beich f43e2ece44 MFH: r475211
emulators/citra: update to s20180723

Changes:	78685065c...14878a17d
Approved by:	ports-secteam (swills, implicit for snapshots)
2018-07-24 00:27:09 +00:00
Jan Beich c34326d6c1 MFH: r475210
emulators/rpcs3: update to 0.0.5.663

Changes:	6caffd0e3...c5c0f68b3
Approved by:	ports-secteam (junovitch, implicit for snapshots)
2018-07-24 00:26:37 +00:00
Jan Beich 52588a9b23 MFH: r475191
www/seamonkey: regen distfile (nop after r474292)

Changes:	https://hg.mozilla.org/releases/comm-esr52/rev/8a9f075930d3
Approved by:	ports-secteam blanket
2018-07-23 17:28:29 +00:00
Renato Botelho e66ee4f3a2 MFH: r475180
Update security/suricata to 4.0.5

PR:		229904
Approved by:	maintainer
Security:	CVE-2018-10242 CVE-2018-10244
Differential Revision:	https://reviews.freebsd.org/D16366
Approved by:	ports-secteam (miwi via irc)
2018-07-23 15:06:14 +00:00
Renato Botelho 2590cda0c4 MFH: r475177
devel/libslang2: Add missing LDFLAGS

Without linking libslang2.so.2.3.2 against libncurses a dependant binary
is going to file with `Undefined symbol "tgetent"` error.

PR:		229126
Submitted by:	olevole@olevole.ru
Sponsored by:	Rubicon Communications, LLC (Netgate)
Approved by:	ports-secteam (miwi)
2018-07-23 14:58:57 +00:00
Carlos J. Puga Medina 1a3c107985 MFH: r475101
www/chromium: update to 67.0.3396.87

Changelog: https://chromium.googlesource.com/chromium/src/+log/65.0.3325.181..67.0.3396.87?pretty=fuller&n=10000

Security:	https://vuxml.freebsd.org/freebsd/36ff7a74-47b1-11e8-a7d6-54e1ad544088.html
Security:	https://vuxml.freebsd.org/freebsd/006bee4e-4c49-11e8-9c32-54ee754af08e.html
Security:	https://vuxml.freebsd.org/freebsd/e457978b-5484-11e8-9b85-54ee754af08e.html
Security:	https://vuxml.freebsd.org/freebsd/427b0f58-644c-11e8-9e1b-e8e0b747a45a.html
Security:	https://vuxml.freebsd.org/freebsd/4cb49a23-6c89-11e8-8b33-e8e0b747a45a.html

Approved by:	ports-secteam (miwi)
2018-07-23 08:59:43 +00:00
Thomas Zander 8b35960b5b MFH: r475054
Update to upstream version 1.6.5

Details:
- Mostly bug and doc fixes, detailed upstream log:
  https://github.com/containous/traefik/releases/tag/v1.6.5

Approved by:	ports-secteam (riggs)
2018-07-21 08:52:56 +00:00
Jan Beich 06aa651db6 MFH: r474044
sysutils/android-file-transfer: update to 3.4

Changes:	https://github.com/whoozle/android-file-transfer-linux/releases/tag/v3.4
Changes:	https://github.com/whoozle/android-file-transfer-linux/compare/v3.3...v3.4
Approved by:	ports-secteam (miwi)
2018-07-21 00:33:36 +00:00
Jan Beich a28b95e0ce MFH: r475041
emulators/rpcs3: update to 0.0.5.651

Changes:	a19113025...6caffd0e3
Approved by:	ports-secteam (junovitch, implicit for snapshots)
2018-07-20 23:56:01 +00:00
Jan Beich 7a9c362b30 MFH: r475040
emulators/citra: update to s20180719

Changes:	610acf282...78685065c
Approved by:	ports-secteam (swills, implicit for snapshots)
2018-07-20 23:55:19 +00:00
Fernando Apesteguía b5828e35e0 MFH: r474967
mail/mutt: update to 1.10.1

PR:	229809
Submitted by:	dereks@lifeofadishwasher.com (maintainer)
Approved by:	tcberner (mentor)
Differential Revision:	https://reviews.freebsd.org/D16321

Approved by:	ports-secteam (delphij)
2018-07-20 15:36:30 +00:00
Jochen Neumeister 6c0db38c29 MFH: r475018
www/apache24: Update to 2.4.34

 - fixes vulns in mod_http2 and mod_md
 - include SSL_* options in alphabetic ordering
 - Remove unneeded SSL_CFLAGS and _LDFLAGS
 - Remove WITH_HTTP_PORT and WITH_SSL_PORT
 - Remove trailing whitespace
 - Fix build with HTTP2 but without SSL [1]

PR:		229802, 227944 [1]
With hat:	apache
Approved by:	brnrd (apache)
Security:	8b1a50ab-8a8e-11e8-add2-b499baebfeaf
Differential Revision:	https://reviews.freebsd.org/D16294

Approved by:	ports-secteam (miwi)
2018-07-20 14:34:23 +00:00
Jochen Neumeister d075c0a54f MFH: r475014
www/piwigo: update to 2.9.4www/piwigo: update to 2.9.4

Changelog:
- security fixes,
- bug fixes,
- compatibility with PHP 7.2 (also no longer compatible with PHP 5.2) and
- language updates

PR:		229843
Submitted by:	Ralf van der Enden <tremere@cainites.net> (maintainer)

Approved by:	ports-secteam (miwi)
2018-07-20 14:30:50 +00:00
Michael Gmelin 86af9fd1e9 MFH: r474979
Fix runtime null pointer dereference (undefined behavior)

PR:		229888
Approved by:	maintainer
Obtained from:	https://github.com/boostorg/filesystem/pull/71

Approved by:	ports-secteam (runtime fix blanket)
2018-07-19 21:16:02 +00:00
Antoine Brodin 35837d6ce2 MFH: r474200
devel/libmatheval: Fix missing library dependency

Flex lib used to be called 'fl_pic', but now it is called 'fl'.

PR:		229516
Reported by:	Michael Danilov <mike.d.ft402@gmail.com>
2018-07-19 20:40:55 +00:00
Baptiste Daroussin ffd4e64a62 MFH: r473715 r474779
Update to 20180622
Update to 20180716

Latest release was a security fix release
2018-07-19 14:35:22 +00:00
Matthias Fechner 001884a211 MFH: r474929
Gitlab 11.0.4 security update, please see here for more details:
https://about.gitlab.com/2018/07/17/critical-security-release-gitlab-11-dot-0-dot-4-released/

Reviewed by:	swills (mentor)
Approved by:	swills (mentor)
Security:	8fc615cc-8a66-11e8-8c75-d8cb8abf62dd
Differential Revision:	https://reviews.freebsd.org/D16318

Approved by:	ports-secteam (miwi)
2018-07-19 11:57:00 +00:00
Matthias Fechner 70ccba0215 MFH: r473910 r473925 r474258 r474906
Updated gitlab to 11.0.2.
For detailed list of changes please see here:
https://about.gitlab.com/2018/06/22/gitlab-11-0-released/
Please make sure before you upgrade you read the entry in UPDATING.

Reviewed by:	swills (mentor)
Approved by:	swills (mentor)
Differential Revision:	https://reviews.freebsd.org/D16127

Renamed gitlab to gitlab-ce in Makefile.

PR:		229519
Reported by:	Trond.Endrestol@ximalas.info
Reviewed by:	swills (mentor)
Approved by:	swills (mentor)
Differential Revision:	https://reviews.freebsd.org/D16127

Upgrade gitlab to 11.0.3 and fix problem with sidekiq-cron reported by swills which requires rubygem-rufus-scheduler version 3.4.0, alle other newer versions are failing.

PR:		229557
Reported by:	swills
Reviewed by:	tz (mentor)
Approved by:	tz (mentor)
Differential Revision:	https://reviews.freebsd.org/D16160

Made it possible to use another PREFIX for gitlab-ce.

Reviewed by:	swills (mentor)
Approved by:	swills (mentor)
Differential Revision:	https://reviews.freebsd.org/D16266

Approved by:	ports-secteam (miwi)
2018-07-19 10:02:38 +00:00
Matthias Fechner f24fa7ef4e MFH: r473990
devel/rubygem-rufus-scheduler342: create port

This version is required by www/gitlab-ce

Approved by:	ports-secteam (miwi)
2018-07-19 09:57:52 +00:00
Matthias Fechner e1e8276433 MFH: r473950
Corrected path to license file.

Reported by:	pgk-fallout
Differential Revision:	https://reviews.freebsd.org/D16127

Approved by:	ports-secteam (miwi)
2018-07-19 09:56:29 +00:00
Matthias Fechner 360cc0bfba MFH: r473908
Update to 4.3.1 which is required for gitlab 11.0.2.

Reviewed by:	swills (mentor)
Approved by:	swills (mentor)
Differential Revision:	https://reviews.freebsd.org/D16127

Approved by:	ports-secteam (miwi)
2018-07-19 09:55:33 +00:00
Matthias Fechner 07be1d8c23 MFH: r473907
Update to 7.1.4 which is required for gitlab 11.0.2.

Reviewed by:	swills (mentor)
Approved by:	swills (mentor)
Differential Revision:	https://reviews.freebsd.org/D16127

Approved by:	ports-secteam (miwi)
2018-07-19 09:54:41 +00:00
Matthias Fechner a37d26e2e3 MFH: r473905 r474905
Update to 0.105.0 which is required for gitlab 11.0.2.

Reviewed by:	swills (mentor)
Approved by:	swills (mentor)
Differential Revision:	https://reviews.freebsd.org/D16127

Made it possible to use another PREFIX for gitlab-ce.

Reviewed by:	swills (mentor)
Approved by:	swills (mentor)
Differential Revision:	https://reviews.freebsd.org/D16266

Approved by:	ports-secteam (miwi)
2018-07-19 09:53:56 +00:00
Matthias Fechner 57493f0539 MFH: r473904 r474740
Update to 0.101.0 which is required for gitlab 11.0.2.

Reviewed by:	swills (mentor)
Approved by:	swills (mentor)
Differential Revision:	https://reviews.freebsd.org/D16127

Take maintainer as port is only used by gitlab-ce which I maintain, so I can sync the updates with the gitlab-ce updates.

Reviewed by:	tz (mentor)
Approved by:	sunpoet (maintainer by email), tz (mentor)
Differential Revision:	https://reviews.freebsd.org/D16267

Approved by:	ports-secteam (miwi)
2018-07-19 09:52:48 +00:00
Matthias Fechner 0c076f60ad MFH: r473903
Update to 3.7.2 which is required for gitlab 11.0.2.

Reviewed by:	swills (mentor)
Approved by:	swills (mentor)
Differential Revision:	https://reviews.freebsd.org/D16127

Approved by:	ports-secteam (miwi)
2018-07-19 09:51:34 +00:00
Matthias Fechner 04924f8413 MFH: r473902
Update to 1.0.0 which is required for gitlab 11.0.2.

Reviewed by:	swills (mentor)
Approved by:	swills (mentor)
Differential Revision:	https://reviews.freebsd.org/D16127

Approved by:	ports-secteam (miwi)
2018-07-19 09:50:32 +00:00
Matthias Fechner ba1d3aaa8e MFH: r473900
Update to 6.0.4 which is required for gitlab 11.0.2.

Reviewed by:	swills (mentor)
Approved by:	swills (mentor)
Differential Revision:	https://reviews.freebsd.org/D16127

Approved by:	ports-secteam (miwi)
2018-07-19 09:49:41 +00:00
Matthias Fechner 3bbe585b35 MFH: r473897
Created new ports required for gitlab 11.x.

Reviewed by:	swills (mentor)
Approved by:	swills (mentor)
Differential Revision:	https://reviews.freebsd.org/D16094

Approved by:	ports-secteam (miwi)
2018-07-19 09:48:28 +00:00
Jan Beich 3c19bb9f1c MFH: r474810
print/harfbuzz: update to 1.8.4

Changes:	https://github.com/harfbuzz/harfbuzz/blob/1.8.4/NEWS
ABI:		https://abi-laboratory.pro/tracker/timeline/harfbuzz/
Approved by:	ports-secteam blanket (required by Firefox 63)
2018-07-18 23:33:58 +00:00
Jan Beich 7b628713ec MFH: r474912
emulators/citra: update to s20180718

Changes:	3799b1620...7f1303a83
Approved by:	ports-secteam (swills, implicit for snapshots)
2018-07-18 22:54:25 +00:00
Jason Helfman 01fcb4ed10 MFH: r474899
- update to 5.55
- fix CLANG 6.0.0 compile issue [1]
- address DESTDIR and INSTALL_PROGRAM issues

PR:		225827
Submitted by:	tobik@ [1 (patch)]
Reported by:	ohartmann@walstatt.org [1]

Approved by:	ports-secteam
2018-07-18 20:41:56 +00:00
Li-Wen Hsu 9bc04638d0 MFH: r474878
- Update to 2.121.2

Approved by:	swills (maintainer, implicitly)
Security:	20a1881e-8a9e-11e8-bddf-d017c2ca229d
Sponsored by:	The FreeBSD Foundation

Approved by:	ports-secteam (swills)
2018-07-18 17:13:42 +00:00
Li-Wen Hsu 80d862cbfa MFH: r474877
- Update to 2.133

Security:	20a1881e-8a9e-11e8-bddf-d017c2ca229d
Sponsored by:	The FreeBSD Foundation

Approved by:	ports-secteam (swills)
2018-07-18 17:12:42 +00:00
Steve Wills 4a00e291b4 MFH: r474866
sysutils/py-google-compute-engine: fix default shell

PR:		229817
Submitted by:	Gustavo Serra Scalet <gustavo.scalet@collabora.com>
Approved by:	Helen Koike <helen.koike@collabora.com> (maintainer)
Approved by:	ports-secteam (implicit)
2018-07-18 16:35:30 +00:00
Bryan Drewery a2e0b572c4 MFH: r474869
irc/znc: Update to 1.7.1, Fix security vulnerabilities

Changes:	https://wiki.znc.in/ChangeLog/1.7.1

Reported by:	gordon
Security:	c6d1a8a6-8a91-11e8-be4d-005056925db4

Approved by:	portmgr (implicit)
2018-07-18 16:28:53 +00:00
Jochen Neumeister 05094d276c MFH: r474812
Update to 8.7.17

Changelog: https://typo3.org/article/typo3-931-8717-and-7630-security-releases-published/

PR:		229836
Submitted by:	Helmut Ritter <freebsd-ports@charlieroot.de> (maintainer)
Security:	Helmut Ritter <freebsd-ports@charlieroot.de>

Approved by:	ports-secteam (riggs)
2018-07-18 07:19:06 +00:00
Jochen Neumeister f559268df9 MFH: r474809
Update to 7.6.30

Changelog: https://typo3.org/article/typo3-931-8717-and-7630-security-releases-published/

PR:		229835
Submitted by:	Helmut Ritter <freebsd-ports@charlieroot.de> (maintainer)
Security:	ef013039-89cd-11e8-84e9-00e04c1ea73d

Approved by:	ports-secteam (riggs)
2018-07-18 07:18:19 +00:00
Jan Beich afcfb7f3ac MFH: r474832
graphics/mozjpeg: drop BROKEN_aarch64

PR:		229729
Submitted by:	Greg V
Approved by:	ports-secteam blanket
2018-07-18 03:15:30 +00:00
Jan Beich 51f139e5d0 MFH: r474830
games/dungeoncrawl: unbreak with Clang 6

direct.cc:47:32: error: constant expression evaluates to -1 which cannot be narrowed to type 'char' [-Wc++11-narrowing]
static const char xcomp[9] = { -1, 0, 1, -1, 0, 1, -1, 0, 1 };
                               ^~
describe.cc:216:28: warning: result of comparison of constant -2 with expression of type 'char' is always false [-Wtautological-constant-out-of-range-compare]
    if (proprt[ RAP_FIRE ] < -2)
        ~~~~~~~~~~~~~~~~~~ ^ ~~

PR:		229723
Submitted by:	Greg V
Reported by:	pkg-fallout
Approved by:	ports-secteam blanket
2018-07-18 02:56:42 +00:00
Kurt Jaeger 71a5e03c2c MFH: r474824
archivers/lzma: update 16.04 -> 18.05

- submitter becomes maintainer

PR:		229798
Submitted by:	Nathan <ndowens.fbsd@yandex.com>
Security:	CVE-2018-10115
Relnotes:	https://www.7-zip.org/history.txt
Approved by:	ports-secteam (riggs)
2018-07-17 20:10:05 +00:00
Roman Bogorodskiy ac8c1e0904 www/qutebrowser: fix CSRF vulnerability
Approved by:	ports-secteam (miwi)
Obtained from:	upstream
Security:	CVE-2018-10895
2018-07-17 17:11:12 +00:00
Jan Beich d2cd0d5c2b MFH: r474767
emulators/rpcs3: update to 0.0.5.644

Changes:	fa55a8072...a19113025
Approved by:	ports-secteam (junovitch, implicit for snapshots)
2018-07-17 00:30:13 +00:00
Jan Beich e14fa70c0c MFH: r474709
graphics/sekrit-twc-zimg: update to 2.7.5

Changes:	https://github.com/sekrit-twc/zimg/compare/release-2.7.4...release-2.7.5
ABI:		https://abi-laboratory.pro/tracker/timeline/z/
Approved by:	ports-secteam (miwi)
2018-07-16 21:35:10 +00:00
Thomas Zander 84ccb431e5 MFH: r474715
Update to upstream version 25.0.0

Details:
- Fixes and minor enhancements
- Details see upstream changelog
  https://mkvtoolnix.download/doc/NEWS.md

Approved by:	ports-secteam (riggs)
2018-07-16 05:28:42 +00:00
Eugene Grosbein 12d61bbf13 MFH: r474695
bouncycastle15: update to version 1.60

This release deals with two CVEs: one affecting RSA key pair generation
where the certainty value is being tweaked in the light-weight API,
and the other on properly validating an XMSS/XMSS^MT private key on reload.

In terms of improvements, the BCJSSE now supports SNI,
CMS now supports SHA-3 signatures, the Unified Model is now fully supported
for Diffie-Hellman with ephemeral keys, and PGP EC operations can support
a wider range of curves. Issues have also been fixed in EST,
CRMF request generation, and low-level support has been added for EdDSA.

Further details on other additions and bug fixes can be found in the
release notes at:

https://www.bouncycastle.org/releasenotes.html

Security:	CVE-2018-1000180
Security:	CVE-2018-1000613

Approved by:	ports-secteam (miwi)
2018-07-15 15:18:45 +00:00
Mark Felder a61e87cd53 MFH: r474691
lang/mono: Ensure NLS does not leak into the build if disabled but
gettext is installed

Reported by:	jbeich
2018-07-15 13:39:35 +00:00
Kurt Jaeger 169a2f3bde MFH: r474675
print/fig2dev: fix to build, needs some help to really use ghostscript

- GSEXE was not set during build, causing
  fig2dev -L pdf part.fig part.pdf
  to fail like this:
  sh: -q: not found
  Error in ghostcript command
  command was:  -q -sAutoRotatePages=None -dAutoFilterColorImages=false -dColorImageFilter=/DCTEncode -sDEVICE=pdfwrite -dPDFSETTINGS=/prepress -o 'part.pdf' -

Reported by:	Anton Shterenlikht <mexas@bristol.ac.uk>
Approved by:	portmgr	(runtime fix blanket approval)
2018-07-15 08:25:28 +00:00
Jan Beich b0d923a7fa MFH: r474311 r474659
www/waterfox: update to 56.2.2

- Apply some FF61 fixes

Changes:	https://github.com/MrAlex94/Waterfox/compare/6395bf177f76a...56.2.2
Approved by:	ports-secteam blanket
2018-07-15 04:39:55 +00:00
Jan Beich a3d2d1f782 MFH: r474545 r474546
www/firefox: switch to Clang 6.0.1 on FreeBSD 11.1

Clang 6 is already used on 10.4, 11.2 and -CURRENT. No need to expose
users to Clang 4.0.0 regressions fixed in 4.0.1 or later versions.

Approved by:	ports-secteam blanket
2018-07-15 04:38:41 +00:00
Jan Beich 7723b15003 MFH: r474604
emulators/rpcs3: update to 0.0.5.631

Changes:	c5dcef52f...fa55a8072
Approved by:	ports-secteam (junovitch, implicit for snapshots)
2018-07-13 20:44:25 +00:00
Jan Beich 6f25a05d19 MFH: r474603
emulators/citra: update to s20180712

Changes:	610acf282...47d283a1e
Approved by:	ports-secteam (swills, implicit for snapshots)
2018-07-13 20:39:47 +00:00
Jan Beich 431429c057 MFH: r474459
print/harfbuzz: update to 1.8.3

Changes:	https://github.com/harfbuzz/harfbuzz/blob/1.8.3/NEWS
ABI:		https://abi-laboratory.pro/tracker/timeline/harfbuzz/
Approved by:	ports-secteam blanket (required by Firefox 63)
2018-07-13 14:52:32 +00:00
Adam Weinberger 0bc691fa57 MFH: r474528
Update gnupg to 2.2.9

  * dirmngr: Fix recursive resolver mode and other bugs in the libdns
    code.  [#3374,#3803,#3610]

  * dirmngr: When using libgpg-error 1.32 or later a GnuPG build with
    NTBTLS support (e.g. the standard Windows installer) does not
    anymore block for dozens of seconds before returning data.  If you
    still have problems on Windows, please consider to use one of the
    options disable-ipv4 or disable-ipv6.

  * gpg: Fix bug in --show-keys which actually imported revocation
    certificates.  [#4017]

  * gpg: Ignore too long user-ID and comment packets.  [#4022]

  * gpg: Fix crash due to bad German translation.  Improved printf
    format compile time check.

  * gpg: Handle missing ISSUER sub packet gracefully in the presence of
    the new ISSUER_FPR.  [#4046]

  * gpg: Allow decryption using several passphrases in most cases.
    [#3795,#4050]

  * gpg: Command --show-keys now enables the list options
    show-unusable-uids, show-unusable-subkeys, show-notations and
    show-policy-urls by default.

  * gpg: Command --show-keys now prints revocation certificates. [#4018]

  * gpg: Add revocation reason to the "rev" and "rvs" records of the
    option --with-colons.  [#1173]

  * gpg: Export option export-clean does now remove certain expired
    subkeys; export-minimal removes all expired subkeys.  [#3622]

  * gpg: New "usage" property for the drop-subkey filters.  [#4019]

Approved by:	ports-secteam (miwi)
2018-07-13 14:23:28 +00:00
Antoine Brodin ea004205df MFH: r473843
lang/erlang-runtime21: I forgot to commit a removed file...
2018-07-13 08:55:53 +00:00
Antoine Brodin cd23e26e6e MFH: r474562
Mark BROKEN: unfetchable

Reported by:	pkg-fallout
2018-07-13 08:14:10 +00:00
Antoine Brodin e77dfbbfff MFH: r474560
Mark BROKEN: fails to build

/wrkdirs/usr/ports/audio/csound6/work/Csound6.06/Opcodes/linear_algebra.cpp: In member function 'int la_i_print_vr_t::init(CSOUND*)':
/wrkdirs/usr/ports/audio/csound6/work/Csound6.06/Opcodes/linear_algebra.cpp:631:12: error: no match for 'operator<<' (operand types are 'std::__1::ostringstream {aka std::__1::basic_ostringstream<char>}' and 'std::__1::vector<double>')
     stream << array->vr << std::endl;
     ~~~~~~~^~~~~~~~~~~~

Reported by:	pkg-fallout
2018-07-13 08:11:40 +00:00
Dave Cottlehuber 982809785e MFH: r474499
databases/couchdb: update 1.7.1 to 1.7.2

- addresses CVE referred to in https://blog.couchdb.org/2018/07/10/cve-2018-8007/

Reviewed by:	olgeni
Approved by:	jrm
Security:	CVE-2018-8007
Security:	CVE-2017-12636
Security:	CVE-2017-12635
Differential Revision:	https://reviews.freebsd.org/D16207

Approved by:	 ports-secteam
2018-07-13 05:52:30 +00:00
Mark Felder aa3b6b1bdb MFH: r474509
lang/mono: Add missing btls files to the plist

PR:		229247
2018-07-12 12:37:23 +00:00
Steve Wills b043d42cd4 MFH: r473923 r474440 r474507
MFH due to bug fixes in 208.0.1

net/google-cloud-sdk: update to 207.0.0

net/google-cloud-sdk: update to 208.0.0

net/google-cloud-sdk: update to 208.0.1

Approved by:	ports-secteam (implicit)
2018-07-12 12:27:09 +00:00
Matthias Fechner c3f8bd6377 MFH: r474463
Update to 0.27.3 which fixes some security vulnerabilities.

Reviewed by:	swills (mentor)
Approved by:	swills (mentor)
Security:	3c9b7698-84da-11e8-8c75-d8cb8abf62dd
Differential Revision:	https://reviews.freebsd.org/D16225

Approved by:	ports-secteam (swills)
2018-07-12 06:35:39 +00:00
Jan Beich 3dadf78c8e MFH: r473779 r474481
www/py-flexget: update to 2.14.3

Changes:	https://github.com/Flexget/Flexget/compare/2.14.1...2.14.3
Approved by:	ports-secteam (swills)
2018-07-12 02:06:00 +00:00
Jung-uk Kim 6d13046dc0 MFH: r474465
Update to 30.0.0.134.

https://helpx.adobe.com/security/products/flash-player/apsb18-24.html

Approved by:	ports-secteam (blanket)
2018-07-11 16:36:45 +00:00
Jung-uk Kim 7088c424ea MFH: r474458
Unbreak emulators/virtualbox-ose-additions and emulators/virtualbox-ose-kmod
on head after r335879.

Approved by:	ports-secteam (blanket)
2018-07-11 16:24:25 +00:00
Renato Botelho 8405696c29 MFH: r474443
- Fix build with PCRE using --with-pcre1 configure option since git moved
  default --with-pcre to use version 2
- Add a new OPTION PCRE2 to let it build with devel/pcre2
- Bump PORTREVISION

PR:		229366
Submitted by:	mat
Sponsored by:	Rubicon Communications, LLC (Netgate)
Approved by:	ports-secteam (miwi)
2018-07-11 14:22:46 +00:00
Diane Bruce 432539678a MFH: r473901
Remove debug attempt that kept this port from building on package builder
How has this managed to not be noticed?

Point Hat: db
Reported by:	[package - 104i386-quarterly][comms/wsjt] Failed for wsjt-10.r5745_7 in build

Approved by:	portmgr
2018-07-10 22:42:21 +00:00
Li-Wen Hsu 000ad13a9c MFH: r474381
Add devel/llvm40 as runtime dependency

Not bumping PORTREVISION because it is implicitly included by pkg qa scripts.

PR:		229274
Submitted by:	Iblis Lin <iblis@hs.ntnu.edu.tw> (maintainer)
Reported by:	Trond.Endrestol@ximalas.info

Approved by:	ports-secteam (riggs)
2018-07-10 22:24:04 +00:00
Mark Felder b8653a64b0 MFH: r474411
lang/mono: Fix NLS knob

OPTIONS_SUB required for %%NLS%% in pkg-plist

Pointyhat:	me
2018-07-10 20:56:12 +00:00
Matthias Andree 6947ab5638 MFH: r474369
Update to new upstream release 1.44.3.

* several features for debugfs added
* there is a new e2mmpstatus command
* there are several bug fixes, among them endianness fixes and robustness
  fixes against corrupted input.
* add hashmap.h header file, for libext2fs users
* a few type fixes for format strings,
  found while building for MIPS, ARM, or i386
* add new option SLOWTESTS which prevents skipping of slow tests
* add new option BASHTESTS which enables tests that require bash
  (currently affects only the test f_large_dir that is also marked
   as slow)

Full release notes:
<http://e2fsprogs.sourceforge.net/e2fsprogs-release.html#1.44.3>

Reset PORTREVISION in slave ports, e2fsprogs{-libss,-libuuid} now
that we have bumped PORTVERSION.

Approved by:	ports-secteam@ (riggs@)
2018-07-10 20:11:23 +00:00
Thomas Zander acb342d14e MFH: r474399
Update skins; add mirror

Details:
- Add mirror http://ftp.icm.edu.pl with releases archive
- Skin updates:
  Clearlooks 1.9 => 2.0
  Clearlooks-Multilingual 1.4 => 2.0.0
  Blue-Multilingual 1.5 => 1.13

PR:		229643
Submitted by:	fluffy

Approved by:	ports-secteam (riggs)
2018-07-10 18:40:38 +00:00
Mark Felder 398705dcce MFH: r474379
lang/mono: Add NLS port option

Differential Revision:	https://reviews.freebsd.org/D16104
2018-07-10 16:13:36 +00:00
Dima Panov 8e0abfc2f7 MFH: r474314
- Update GREETINGS, INITIALS, QUOTE and NNTP extrapatches to 1.10.0 release
- Remove NNTP_BROKEN as well

PR:		229646
Submitted by:	fluffy
Approved by:	maintainer

Approved by:	portmgr (miwi)
2018-07-10 13:53:02 +00:00
Jochen Neumeister 972ce00c5d MFH: r474362
Update to 2.5.13

unbreak for pkg-fallout:
=======================<phase: build          >============================
===>  Building for rslsync-2.5.13
/wrkdirs/usr/ports/net-p2p/rslsync/work/rslsync-2.5.13/rslsync --dump-sample-config > /wrkdirs/usr/ports/net-p2p/rslsync/work/rslsync-2.5.13/rslsync.conf.sample
[14:37:47.706] assert failed /home/jenkins/slave-root/workspace/Build-Sync-Manually/btlog.cpp:303

assert failed /home/jenkins/slave-root/workspace/Build-Sync-Manually/btlog.cpp:303 (33882125)
*** Signal 6

PR:		228559
Submitted by:	Volodymyr Kostyrko <arcade@b1t.name> (maintainer)

Approved by:	ports-secteam (miwi via irc)
2018-07-10 13:11:03 +00:00
Cy Schubert 3af17b7ff5 MFH: r474328
devel/e2fsprogs-libss has not conflicted with security/heimdal
since 1.4. Remove the conflict registration.

PR:		229464
Submitted by:	cy
Reported by:	cy
Approved by:	bjk (maintainer)
Approved by:	portmgr (miwi)
2018-07-10 12:51:47 +00:00
Jan Beich b6da0b2d74 MFH: r474310
emulators/citra: update to s20180708

Changes:	fd5f71bcf...610acf282
Approved by:	ports-secteam (swills, implicit for snapshots)
2018-07-10 00:42:05 +00:00
Jan Beich 407aac70e3 MFH: r474309
emulators/rpcs3: update to 0.0.5.627

Changes:	d856dc89a...c5dcef52f
Approved by:	ports-secteam (junovitch, implicit for snapshots)
2018-07-10 00:41:30 +00:00
Jan Beich a5917d9b8f MFH: r474307
mail/thunderbird: update to 52.9.1

Changes:	https://www.mozilla.org/thunderbird/52.9.1/releasenotes/
Approved by:	ports-secteam blanket
2018-07-09 23:38:16 +00:00
Jan Beich 28c2075465 MFH: r474292
mail/thunderbird: prevent mail corruption after r473670

PR:		229452
Obtained from:	upstream (Thunderbird 52.9.1)
Approved by:	ports-secteam blanket
2018-07-09 19:47:20 +00:00
Larry Rosenman 031002de8c MFH: r474287
security/clamav: update to 0.100.1

PR:	229651
Submitted by:	yasu@utahime.org
Security:	CVE-2017-16932
Security:	CVE-2018-0360
Security:	CVE-2018-0361

Approved by:	ports-secteam (feld)
2018-07-09 19:24:40 +00:00
Guido Falsi e16dd7f9b5 MFH: r474252
Fix plist when using python version different from 3.6.

Differential Revision:	https://reviews.freebsd.org/D16189

Approved by:	ports-secteam (miwi)
2018-07-09 15:09:37 +00:00
Michael Gmelin a205e4b29e MFH: r474176
Fix build with LibreSSL 2.7

PR:		229606

Approved by:	ports-secteam (build fix blanket)
2018-07-09 09:42:04 +00:00
Michael Gmelin ebfbb6a451 MFH: r474192
Fix build with LibreSSL 2.7

PR:		229608

Approved by:	ports-secteam (build fix blanket)
2018-07-09 09:40:10 +00:00
Bryan Drewery bc7cb75174 MFH: r474210
Upstream rerolled the tag to fix the version display

Approved by:	portmgr (implicit)
2018-07-08 23:05:24 +00:00
Bryan Drewery 3ba13feaf3 MFH: r474190
Update to 1.2.9

 - Fix zfs properties regression from 1.2.8 with new BE

Approved by:	portmgr (implicit)
2018-07-08 17:04:36 +00:00
Jochen Neumeister bc7ecf74af MFH: r474185
Update to 4.9.7

Changelog: https://wordpress.org/news/2018/07/wordpress-4-9-7-security-and-maintenance-release/

Security:	4740174c-82bb-11e8-a29a-00e04c1ea73d

Approved by:ports-secteam (miwi)
2018-07-08 15:55:37 +00:00
Jochen Neumeister 5a21232c16 MFH: r474155
www/mybb: Update to 1.8.16

Changelog: https://blog.mybb.com/2018/07/04/mybb-1-8-16-released-security-maintenance-release/

Security:	bfd5d004-81d4-11e8-a29a-00e04c1ea73d

Approved by:	ports-secteam (swills)
2018-07-08 15:18:26 +00:00
Mark Felder 0ed1e9dbbb MFH: r474122
net-p2p/sonarr: Update to 2.0.0.5228
2018-07-07 19:16:28 +00:00
Jan Beich 5263f2a958 MFH: r474090
www/seamonkey: update to 2.49.4

Changes:	https://www.seamonkey-project.org/releases/seamonkey2.49.4/
Security:	e3e68fe8-d9cb-4ba8-b09c-9e3a28588eb7
Security:	cd81806c-26e7-4d4a-8425-02724a2f48af
Approved by:	ports-secteam blanket
2018-07-07 14:29:24 +00:00
Thomas Zander e81d2a38a5 MFH: r474080
Fix build on several architectures (ensure __builtin_bswap16 is available)

PR:		229339
Submitted by:	tobik

Approved by:	ports-secteam (riggs)
2018-07-07 13:31:26 +00:00
Martin Wilke 16abc7a1f6 aMFH: r474059
- Fix build when textproc/xmlto is installed in a local env.
- Bump PORTREVISION

PR:		226491 229572
Sponsored by:	iXsystems Inc.

Approved by:	ports-secteam
2018-07-07 06:59:41 +00:00
Jan Beich 5fc8d49063 MFH: r474046
www/waterfox: apply some FF62 fixes

Approved by:	ports-secteam blanket
2018-07-07 00:53:44 +00:00
Jan Beich c79c735cdb MFH: r474045
emulators/rpcs3: update to 0.0.5.609

Changes:	3d8223fcc...d856dc89a
Approved by:	ports-secteam (junovitch, implicit for snapshots)
2018-07-07 00:41:47 +00:00
Christoph Moench-Tegeder f3e629e031 MFH: r474039
devel/avr-gcc: fix build with recent clang

PR:		227650
Submitted by:	dim@
Reported by:	 Kenji Rikitake
Approved by:	maintainer-timeout

Approved by:	portmgr (blanket: build fixes)
2018-07-06 21:59:12 +00:00
David Naylor 5f84ab9a62 MFH: r473845
lang/monodevelop: reroll distinfo

 - Update libgit2sharp: no changes to tarball
 - Github appears to sometimes change the output of the source tarballs

Approved by:	ports-secteam (miwi)
2018-07-06 18:56:00 +00:00
Martin Wilke 844279adad MFH: r474027 r474028
- Update to 0.13.68
- Security fixes for:
- CVE-2017-5974
- CVE-2017-5975
- CVE-2017-5976
- CVE-2017-5979
- CVE-2017-5980
- CVE-2017-5981
- CVE-2017-5977
- CVE-2018-6381
- CVE-2018-6484
- CVE-2018-6540
- CVE-2018-6541
- CVE-2018-6542
- CVE-2018-6869
- CVE-2018-7725
- CVE-2018-7726
- CVE-2018-7727

PR:	226491
Submitted by:	maintainer

- Added/RM missing patches

Approved by: ports-secteam
2018-07-06 18:05:50 +00:00
Danilo G. Baio 1f72d5f5d6 MFH: r473964
www/libwww: Update to 5.4.2, Fix security vulnerabilities

This a security release for libwww to take into account security advisories
CVE-2016-9063 and CVE-2017-9233.

In order to take into account current and future expat security advisories,
the expat source code was removed from the libwww tree. The makefiles were
modified so that libwww dynamically links against the system's expat library.

Patches removed were incorporated upstream.

Bump PORTREVISION of dependent ports due shlib change.

Changes:	https://raw.githubusercontent.com/w3c/libwww/5.4.2/ChangeLog

Security:	e375ff3f-7fec-11e8-8088-28d244aee256

Approved by:	ports-secteam (miwi)
2018-07-05 20:33:19 +00:00
Dave Cottlehuber b216f2829a MFH: r473979
www/py-graphite-api: clean up rc.d script

- fix ordering in rc.d script so that daemon doesn't hang on startup
- teach rc.d to behave when installing with multiple python & gunicorn versions
- clean up substitutions in SUB_LIST, pkg-list and *.in script
- ensure working directories are re-created on startup if required

PR:		 223264
Submitted by:	Horst Kapfenberger <horst.kapfenberger@agoracon.at>
Approved by:	jrm
Differential Revision:	https://reviews.freebsd.org/D13581

Approved by:	ports-secteam
2018-07-05 19:03:47 +00:00
Jan Beich cc66891187 MFH: r473956
devel/llvm*: apply r447281 and enable OPENMP on i386

PR:		229521
Approved by:	brooks (maintainer)
Approved by:	ports-secteam (miwi)
2018-07-05 18:52:19 +00:00
Jan Beich d7d6f22bce MFH: r473974
devel/icu: fix toLocaleLowerCase() after r473551

PR:		229359
Obtained from:	upstream (ICU 63.1)
Approved by:	ports-secteam blanket (required by Firefox and Chromium)
2018-07-05 16:14:57 +00:00
Jan Beich de6f99b4a4 MFH: r473938
emulators/citra: update to s20180704

Changes:	945b3413a...fd5f71bcf
Approved by:	ports-secteam (swills, implicit for snapshots)
2018-07-05 00:25:24 +00:00
Jan Beich 1a48643c2e MFH: r473937
www/waterfox: apply some FF61 fix

Approved by:	ports-secteam blanket
2018-07-05 00:24:04 +00:00
Jan Beich 90bc43f6e3 MFH: r473913
www/firefox: update to 61.0.1

Changes:	https://www.mozilla.org/firefox/61.0.1/releasenotes/
PR:		227850
Approved by:	ports-secteam blanket
2018-07-04 22:25:17 +00:00
Jan Beich 05143d2671 MFH: r473912
www/firefox: document missing feature frequently asked on IRC/BMO

about:crashes is not supported on most Tier3 platforms. Even if someone
adopts devel/breakpad patches while filling the gaps without reproducibility
debugging symbols uploaded to Mozilla may not match the package.

https://searchfox.org/mozilla-central/rev/403038737ba7/old-configure.in#2699-2718
https://developer.mozilla.org/docs/Mozilla/Developer_guide/Uploading_symbols_to_Mozillas_symbol_server

Approved by:	ports-secteam blanket
2018-07-04 22:23:58 +00:00
Larry Rosenman 72cc8d233a MFH: r473878 r473922
security/1password-client: Handle re-rolled distfiles.
apparently AgileBits re-rolled the dist files on 2018-06-01.

pkg-fallout notified me that it couldn't download the i386 version, but I
was able to.  Checking the distfiles checksums on directly downloaded files
showed the attached changes.

I did re-verify the included gpg signatures, and they are good.

I'm also adding a local mirror on general principles.

Reported by:	pkg-fallout

security/1password-client: bump PORTREVISION for last change.

Approved by:	ports-secteam (blanket, fix broken ports)
2018-07-04 21:20:41 +00:00
Dave Cottlehuber 83e173361f MFH: r473774
www/h2o: update 2.2.4 to 2.2.5

- fix buffer overflow CVE-2018-0608 #1775 (Frederik Deweerdt)
- LibreSSL and PicoTLS changes
- see https://github.com/h2o/h2o/blob/master/Changes

PR:		228762
Submitted by:	Max Kostikov <max@kostikov.co>
Approved by:	jrm
Security:	CVE-2018-0608

Approved by:	ports-secteam
2018-07-04 20:58:58 +00:00
Jan Beich f6a64d4c67 MFH: r473853
print/harfbuzz: update to 1.8.2

Changes:	https://github.com/harfbuzz/harfbuzz/blob/1.8.2/NEWS
ABI:		https://abi-laboratory.pro/tracker/timeline/harfbuzz/
Approved by:	ports-secteam blanket (required by Firefox 63)
2018-07-03 20:36:54 +00:00
Jan Beich aa0ac9f4e8 MFH: r473783
games/openbor: update to 6235

Changes:	5005b966...66ce9c7b
Approved by:	ports-secteam (feld, implicit for snapshots)
2018-07-03 00:29:25 +00:00
Jan Beich 84424c4732 MFH: r473782
emulators/citra: update to s20180703

Changes:	490b7ded0...945b3413a
Approved by:	ports-secteam (swills, implicit for snapshots)
2018-07-03 00:28:02 +00:00
Jan Beich 4b02e3bd81 MFH: r473781
emulators/rpcs3: update to 0.0.5.562

Changes:	345f92ab0...3d8223fcc
Approved by:	ports-secteam (junovitch, implicit for snapshots)
2018-07-03 00:27:18 +00:00
Jan Beich 6d7428930d MFH: r473780
www/waterfox: update to 56.2.1.55

- Apply some FF61 fixes

Changes:	7f6ff796ee...6395bf177f
Approved by:	ports-secteam blanket
2018-07-03 00:23:42 +00:00
Jan Beich 851f88fc8f MFH: r473768
gecko: drop PGO workaround after r454669

Approved by:	ports-secteam blanket (to avoid merge conflicts)
2018-07-02 23:44:17 +00:00
Jan Beich 29570fa05f MFH: r473775
multimedia/kvazaar: unbreak on powerpcspe

strategies/altivec/picture-altivec.c:1: error: AltiVec and E500 instructions cannot coexist

Approved by:	ports-secteam blanket
2018-07-02 23:43:20 +00:00
Bernhard Froehlich 0480061145 MFH: r473736
multimedia/kodi-addon-pvr-iptvsimple: Fix build error in configure

Reported by:	pkg-fallout
Pointyhat to:	myself
Approved by:	ports-secteam (zi)
2018-07-02 15:06:06 +00:00
Bernhard Froehlich 5c68a19b20 MFH: r473734
multimedia/kodi-addon-pvr-hts: Fix build error in configure

Reported by:	pkg-fallout
Pointyhat to:	myself
Approved by:	ports-secteam (zi)
2018-07-02 15:05:00 +00:00
984 changed files with 13423 additions and 53209 deletions

1
MOVED
View File

@ -10294,3 +10294,4 @@ www/libxul||2018-06-22|Has expired: NPAPI are no longer supported
mail/postfix211||2018-06-24|Has expired: Not supported anymore by vendor. Please choose a new one version
mail/postfix211-sasl||2018-06-24|Has expired: Not supported anymore by vendor. Please choose a new one version
devel/py-binplist||2018-06-26|Has expired: Not depended upon anymore, no longer maintained upstream
www/gitlab|www/gitlab-ce|2018-07-04|Port renamed to match name on gitlab.org

View File

@ -22,12 +22,12 @@ _GECKO_VERSION= ${gecko_ARGS:M[0-9][0-9]*}
.if ${gecko_ARGS:Mfirefox}
_GECKO_DEFAULT_VERSION= 60
_GECKO_VERSIONS= 60 61
_GECKO_VERSIONS= 60 62
_GECKO_TYPE= firefox
# Dependence lines for different Firefox versions
60_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:www/firefox-esr
61_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:www/firefox
62_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:www/firefox
.if exists(${LOCALBASE}/bin/firefox)
_GECKO_INSTALLED_VER!= ${PKG_QUERY} %v firefox firefox-esr

View File

@ -307,7 +307,8 @@ fix-perl-things:
${FIND} ${STAGEDIR}${SITE_MAN3} -name '*::README.3' -delete || :
# Starting at ExtUtils::MakeMaker 7.31_06 and Perl 5.27.1, the base README.pod is
# no longer installed. So remove any that can be there.
@${FIND} ${STAGEDIR}${PREFIX}/${SITE_PERL_REL} -name README.pod -delete || :
@[ -d "${STAGEDIR}${PREFIX}/${SITE_PERL_REL}" ] && \
${FIND} ${STAGEDIR}${PREFIX}/${SITE_PERL_REL} -name README.pod -delete || :
. if !target(do-test) && (!empty(USE_PERL5:Mmodbuild*) || !empty(USE_PERL5:Mconfigure))
TEST_TARGET?= test

View File

@ -92,7 +92,7 @@ CONFIGURE_OUTSOURCE= yes
BUNDLE_LIBS= yes
.if ${MOZILLA_VER:R:R} >= 49
USES+= compiler:c++14-lang
USES+= compiler:c++17-lang
CPPFLAGS+= -D_GLIBCXX_USE_C99 -D_GLIBCXX_USE_C99_MATH_TR1 \
-D_DECLARE_C99_LDBL_MATH # XXX ports/193528
.else
@ -114,7 +114,7 @@ BUILD_DEPENDS+= ${LOCALBASE}/bin/python${PYTHON3_DEFAULT}:lang/python${PYTHON3_D
MOZ_EXPORT+= PYTHON3="${LOCALBASE}/bin/python${PYTHON3_DEFAULT}"
.endif
.if ${OPSYS} == FreeBSD && ${OSREL} == 11.1
.if ${OPSYS} == FreeBSD && ${OSREL} == 11.1 && ${MOZILLA_VER:R:R} < 49
LLD_UNSAFE= yes
.endif
@ -265,8 +265,7 @@ MOZ_OPTIONS+= \
--enable-default-toolkit=${MOZ_TOOLKIT} \
--enable-update-channel=${MOZ_CHANNEL} \
--disable-updater \
--enable-pie \
--with-pthreads
--enable-pie
# others
MOZ_OPTIONS+= --with-system-zlib \
--with-system-bz2

View File

@ -165,7 +165,7 @@ RUBY23= "" # PLIST_SUB helpers
# Ruby 2.4
#
RUBY_RELVERSION= 2.4.4
RUBY_PORTREVISION= 0
RUBY_PORTREVISION= 1
RUBY_PORTEPOCH= 1
RUBY_PATCHLEVEL= 0
RUBY24= "" # PLIST_SUB helpers
@ -175,7 +175,7 @@ RUBY24= "" # PLIST_SUB helpers
# Ruby 2.5
#
RUBY_RELVERSION= 2.5.1
RUBY_PORTREVISION= 0
RUBY_PORTREVISION= 1
RUBY_PORTEPOCH= 1
RUBY_PATCHLEVEL= 0
RUBY25= "" # PLIST_SUB helpers

View File

@ -300,7 +300,6 @@ MASTER_SITE_FRUGALWARE+= \
MASTER_SITE_GCC+= \
https://mirrors.kernel.org/sourceware/gcc/%SUBDIR%/ \
http://gcc.parentingamerica.com/%SUBDIR%/ \
http://gcc.skazkaforyou.com/%SUBDIR%/ \
http://gcc.cybermirror.org/%SUBDIR%/ \
http://gcc-uk.internet.bs/%SUBDIR%/ \
http://www.netgull.com/gcc/%SUBDIR%/ \

View File

@ -5,6 +5,32 @@ they are unavoidable.
You should get into the habit of checking this file for changes each time
you update your ports collection, before attempting any port upgrades.
20180810:
AFFECTS: databases/postgresql??-server
AUTHOR: girgen@FreeBSD.org
The PostgreSQL server packages are no longer built with support for the XML
datatype per default. To retain support for the XML datatype you should build
the port and check the XML option in the option dialog. The reason for this
is the bad security reputation of libxml2.
20180704:
AFFECTS: users of www/gitlab
AUTHOR: mfechner@FreeBSD.org
The gitlab port uses the package from gitlab.org instead of github.org.
For this the port was renamed from gitlab to gitlab-ce.
Please follow the instructions very carefully to not lose your data!
Not only the package was renamed, also the directory name changed.
You can find the current instruction here:
https://gitlab.fechner.net/mfechner/Gitlab-docu/blob/master/update/10.8-11.0-freebsd.md
Please note the update was only tested for an update from 10.8.5 to 11.0.2.
If your version of gitlab was released before 2014-03-13 you cannot update
to this version. You need to make an intermediate update to an earlier
version before.
20180701:
AFFECTS: users of devel/bats
AUTHOR: lifanov@FreeBSD.org

View File

@ -2,12 +2,12 @@
# $FreeBSD$
PORTNAME= lzma
PORTVERSION= 16.04
PORTVERSION= 18.05
CATEGORIES= archivers
MASTER_SITES= SF/sevenzip/LZMA%20SDK/
DISTNAME= lzma${PORTVERSION:S/.//g}
MAINTAINER= ports@FreeBSD.org
MAINTAINER= ndowens.fbsd@yandex.com
COMMENT= High-ratio LZMA compressor
CONFLICTS= lzmautils-[0-9]* xz-[0-9]*

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1495744392
SHA256 (lzma1604.7z) = edf8690e9d5ae0dbe80751e3df247bb4e1b497b100c4af5b95fc50a5c2e5b04f
SIZE (lzma1604.7z) = 971074
TIMESTAMP = 1531703689
SHA256 (lzma1805.7z) = d4ad382070d20edde117a8e544e7149ab6c84fdedd220aafe75454056a924732
SIZE (lzma1805.7z) = 1073455

View File

@ -16,6 +16,8 @@ COMMENT= Sound synthesizer
LICENSE= LGPL21+
LICENSE_FILE= ${WRKSRC}/COPYING
BROKEN= fails to build
BUILD_DEPENDS= boost-libs>0:devel/boost-libs \
swig3.0:devel/swig30 \
gmm++>0:math/gmm++

View File

@ -13,10 +13,6 @@ COMMENT= MPEG-2 and MPEG-4 AAC audio decoder
LICENSE= GPLv2+
LICENSE_FILE= ${WRKSRC}/COPYING
BROKEN_mips= fails to build: mp4read.c:(.text+0x87c): undefined reference to '__builtin_bswap16'
BROKEN_mips64= fails to build: mp4read.c:(.text+0x87c): undefined reference to '__builtin_bswap16'
BROKEN_powerpc64= fails to build: mp4read.o:(.text+0x714): undefined reference to '__builtin_bswap16'
USES= autoreconf gmake libtool
INSTALL_TARGET= install-strip

View File

@ -0,0 +1,13 @@
Make sure WORDS_BIGENDIAN is available on big endian archs like
powerpc{,64}.
--- frontend/mp4read.c.orig 2018-06-26 06:56:37 UTC
+++ frontend/mp4read.c
@@ -24,6 +24,7 @@
#include <time.h>
#include <limits.h>
+#include "config.h"
#include "unicode_support.h"
#include "mp4read.h"

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= jack_umidi
PORTVERSION= 1.0.8
PORTVERSION= 1.0.9
CATEGORIES= audio
MASTER_SITES= http://www.selasky.org/hans_petter/distfiles/ \
http://home.selasky.org:8192/distfiles/

View File

@ -1,2 +1,3 @@
SHA256 (jack_umidi-1.0.8.tar.bz2) = 50c67696a43acf2c1d1ad1dcd06ceb484b18ad9867c5b1eb1850fa15aa617036
SIZE (jack_umidi-1.0.8.tar.bz2) = 6811
TIMESTAMP = 1532424996
SHA256 (jack_umidi-1.0.9.tar.bz2) = d15db3ad35f8469ca14d839d938300d0cd2d5f730946e9b162b13c80d4f57984
SIZE (jack_umidi-1.0.9.tar.bz2) = 6814

View File

@ -3,7 +3,7 @@
PORTNAME= kscd
PORTVERSION= ${KDE4_VERSION}
PORTREVISION= 4
PORTREVISION= 5
CATEGORIES= audio kde kde-kde4
MAINTAINER= kde@FreeBSD.org
@ -11,7 +11,8 @@ COMMENT= CD Player for KDE
LICENSE= GPLv2
LIB_DEPENDS= libmusicbrainz3.so:audio/libmusicbrainz3
LIB_DEPENDS= libdiscid.so:audio/libdiscid \
libmusicbrainz5.so:audio/libmusicbrainz5
USES= cmake:outsource kde:4 qt:4 tar:xz
USE_KDE= kdelibs automoc4

View File

@ -0,0 +1,563 @@
Use libmusicbrainz5 for track lookup since libmusicbrainz3 is deprecated.
From:
https://cgit.kde.org/kscd.git/commit/?id=536b679d8a0e4d3c470366b5bdfe142edb1c9307
https://cgit.kde.org/kscd.git/commit/?id=908815f9fc7a0d7ebeae68c14a02026464b6c935
https://cgit.kde.org/kscd.git/commit/?id=86128bdfef49d241e6aa71f968c614b8b07462de
--- CMakeLists.txt.orig 2014-07-16 08:24:20 UTC
+++ CMakeLists.txt
@@ -11,13 +11,15 @@ include_directories(${QT_INCLUDES} ${KDE4_INCLUDES})
find_package(Alsa)
alsa_configure_file(${CMAKE_CURRENT_BINARY_DIR}/config-alsa.h)
-find_package(MusicBrainz3 REQUIRED)
+find_package(MusicBrainz5 REQUIRED)
+find_package(DiscId REQUIRED)
include_directories(
${CMAKE_CURRENT_SOURCE_DIR}/gui
${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_CURRENT_BINARY_DIR}
- ${MUSICBRAINZ3_INCLUDE_DIR}
+ ${MUSICBRAINZ5_INCLUDE_DIR}
+ ${DISCID_INCLUDE_DIR}
)
add_subdirectory(tests)
########### next target ###############
@@ -115,7 +117,8 @@ target_link_libraries(kscd
${KDE4_KIO_LIBS}
${KDE4_SOLID_LIBS}
${KDE4_PHONON_LIBS}
- ${MUSICBRAINZ3_LIBRARIES}
+ ${MUSICBRAINZ5_LIBRARIES}
+ ${DISCID_LIBRARIES}
)
########### install files ###############
--- cmake/FindDiscId.cmake.orig 2014-07-16 08:24:20 UTC
+++ cmake/FindDiscId.cmake
@@ -0,0 +1,20 @@
+# Module to find the discid library
+# It can be found at http://musicbrainz.org/doc/libdiscid
+#
+# It defines
+# DISCID_INCLUDE_DIR - the include dir
+# DISCID_LIBRARIES - the required libraries
+# DISCID_FOUND - true if both of the above have been found
+
+# Copyright (c) 2006,2007 Laurent Montel, <montel@kde.org>
+# Copyright (c) 2010 Gerd Fleischer
+#
+# Redistribution and use is allowed according to the terms of the BSD license.
+
+FIND_PATH(DISCID_INCLUDE_DIR discid/discid.h)
+
+FIND_LIBRARY(DISCID_LIBRARIES NAMES discid)
+
+include(FindPackageHandleStandardArgs)
+find_package_handle_standard_args( DiscId DEFAULT_MSG
+ DISCID_INCLUDE_DIR DISCID_LIBRARIES)
--- cmake/FindMusicBrainz5.cmake.orig 2014-07-16 08:24:20 UTC
+++ cmake/FindMusicBrainz5.cmake
@@ -0,0 +1,33 @@
+# Module to find the musicbrainz-5 library
+#
+# It defines
+# MUSICBRAINZ5_INCLUDE_DIR - the include dir
+# MUSICBRAINZ5_LIBRARIES - the required libraries
+# MUSICBRAINZ5_FOUND - true if both of the above have been found
+
+# Copyright (c) 2006,2007 Laurent Montel, <montel@kde.org>
+#
+# Redistribution and use is allowed according to the terms of the BSD license.
+# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
+
+if(MUSICBRAINZ5_INCLUDE_DIR AND MUSICBRAINZ5_LIBRARIES)
+ set(MUSICBRAINZ5_FIND_QUIETLY TRUE)
+endif()
+
+find_path(MUSICBRAINZ5_INCLUDE_DIR musicbrainz5/Disc.h)
+
+find_library(MUSICBRAINZ5_LIBRARIES NAMES musicbrainz5cc)
+if (NOT MUSICBRAINZ5_LIBRARIES)
+ find_library(MUSICBRAINZ5_LIBRARIES NAMES musicbrainz5)
+endif()
+
+include(FindPackageHandleStandardArgs)
+find_package_handle_standard_args(MusicBrainz5 DEFAULT_MSG MUSICBRAINZ5_INCLUDE_DIR MUSICBRAINZ5_LIBRARIES)
+
+add_library(musicbrainz SHARED IMPORTED)
+set_target_properties(musicbrainz PROPERTIES
+ INTERFACE_INCLUDE_DIRECTORIES "${MUSICBRAINZ5_INCLUDE_DIR}"
+ IMPORTED_LOCATION "${MUSICBRAINZ5_LIBRARIES}"
+)
+
+mark_as_advanced(MUSICBRAINZ5_INCLUDE_DIR MUSICBRAINZ5_LIBRARIES)
--- kscd.cpp.orig 2014-07-16 08:24:20 UTC
+++ kscd.cpp
@@ -114,7 +114,7 @@ void KSCD::setupActions()
m_uploadAction = m_actions->addAction( QLatin1String( "Upload Info" ));
m_uploadAction->setText(i18n("Upload Info"));
addAction(m_uploadAction);
- connect(m_uploadAction, SIGNAL(triggered()), m_MBManager, SLOT(discUpload()));
+ connect(m_uploadAction, SIGNAL(triggered()), this, SLOT(discUpload()));
//play/pause
m_playPauseAction = m_actions->addAction( QLatin1String( "Play/Pause" ));
@@ -246,6 +246,11 @@ void KSCD::setupActions()
void KSCD::discLookup()
{
m_MBManager->discLookup(devices->getMedia()->currentSource().deviceName());
+}
+
+void KSCD::discUpload()
+{
+ m_MBManager->discUpload(devices->getMedia()->currentSource().deviceName());
}
void KSCD::discLookupFinished()
--- kscd.h.orig 2014-07-16 08:24:20 UTC
+++ kscd.h
@@ -131,6 +131,7 @@ public slots:
void configureKeys();
void discLookup();
+ void discUpload();
void discLookupFinished();
private:
--- mbmanager.cpp.orig 2014-07-16 08:24:20 UTC
+++ mbmanager.cpp
@@ -34,86 +34,239 @@
#include <ktoolinvocation.h>
-#include <musicbrainz3/musicbrainz.h>
-#include <musicbrainz3/query.h>
+#include <musicbrainz5/Query.h>
+#include <musicbrainz5/Artist.h>
+#include <musicbrainz5/ArtistCredit.h>
+#include <musicbrainz5/Disc.h>
+#include <musicbrainz5/HTTPFetch.h>
+#include <musicbrainz5/Medium.h>
+#include <musicbrainz5/NameCredit.h>
+#include <musicbrainz5/NameCreditList.h>
+#include <musicbrainz5/Recording.h>
+#include <musicbrainz5/Release.h>
+#include <musicbrainz5/Track.h>
MBManager::MBManager():m_validInfo(true)
{
-
+ m_discid = discid_new();
}
MBManager::~MBManager()
{
+ discid_free(m_discid);
+}
+static QString getTitle(MusicBrainz5::CRelease *release, MusicBrainz5::CMedium *medium)
+{
+ QString title;
+ if (!release)
+ {
+ return title;
+ }
+
+ title = QString::fromUtf8(release->Title().c_str());
+ if (medium && release->MediumList()->NumItems() > 1)
+ {
+ title = i18n("%1 (disc %2)", title, medium->Position());
+ }
+
+ return title;
}
-void MBManager::discLookup(const QString &device)
+static QString getArtistFromArtistCredit(MusicBrainz5::CArtistCredit *artistCredit)
{
- m_validInfo = true;
+ QString artist;
+ MusicBrainz5::CNameCreditList *artistList = artistCredit->NameCreditList();
- MusicBrainz::WebService* ws = new MusicBrainz::WebService();
+ if (!artistList)
+ {
+ return artist;
+ }
- // Set the proper server to use. Defaults to mm.musicbrainz.org:80
- if (!qgetenv("MB_SERVER").isNull())
+ for (int i = 0; i < artistList->NumItems(); i++)
{
- std::string server(qgetenv("MB_SERVER"));
- ws->setHost(server);
- //kDebug() << "!! set server !!" ;
+ MusicBrainz5::CNameCredit* name = artistList->Item(i);
+ MusicBrainz5::CArtist* itemArtist = name->Artist();
+
+ if (!name->Name().empty())
+ {
+ artist += QString::fromUtf8(name->Name().c_str());
+ }
+ else
+ {
+ artist += QString::fromUtf8(itemArtist->Name().c_str());
+ }
+
+ artist += QString::fromUtf8(name->JoinPhrase().c_str());
}
- else
+
+ return artist;
+}
+
+static QString getArtist(MusicBrainz5::CRelease *release)
+{
+ QString artist;
+ if (!release)
{
- //kDebug() << "no server";
+ return artist;
}
- // If you need to use a proxy, uncomment/edit the following line
- // as appropriate
- //ws->setProxyHost("proxy.mydomain.com");
- //ws->setProxyPort(80);
+ MusicBrainz5::CArtistCredit *artistCredit = release->ArtistCredit();
+ return getArtistFromArtistCredit(artistCredit);
+}
- try
+static QList<MBTrackInfo> unknownTracks(QString &discArtist, DiscId *m_discid)
+{
+ QList<MBTrackInfo> tracks;
+ MBTrackInfo track;
+ for (int j = 1; j < discid_get_first_track_num(m_discid); j++)
{
- MusicBrainz::Disc *disc = MusicBrainz::readDisc(qPrintable(device));
+ track.Title = i18n("Unknown title");
+ track.Artist = discArtist;
+ // Not an audio track
+ track.Duration = 0;
- MusicBrainz::Query q(ws);
- MusicBrainz::ReleaseResultList results;
+ tracks << track;
+ }
+ for (int j = discid_get_first_track_num(m_discid); j <= discid_get_last_track_num(m_discid); j++)
+ {
+ track.Title = i18n("Unknown title");
+ track.Artist = discArtist;
+ // time from mb library in sectors, 75 sectors = 1 second
+ track.Duration = discid_get_track_length(m_discid, j) * 1000 / 75;
- try
+ tracks << track;
+ }
+
+ return tracks;
+}
+
+static QList<MBTrackInfo> getTracks(MusicBrainz5::CMedium *medium, QString &discArtist, DiscId *m_discid)
+{
+ QList<MBTrackInfo> tracks;
+ if (!medium)
+ {
+ return tracks;
+ }
+
+ MusicBrainz5::CTrackList *trackList = medium->TrackList();
+ if (!trackList)
+ {
+ return unknownTracks(discArtist, m_discid);
+ }
+
+ MBTrackInfo track;
+ for (int i = 0; i < trackList->NumItems(); i++)
+ {
+ MusicBrainz5::CTrack *itemTrack = trackList->Item(i);
+ MusicBrainz5::CRecording *recording = itemTrack->Recording();
+ if (recording && !itemTrack->ArtistCredit())
{
- MusicBrainz::ReleaseFilter f = MusicBrainz::ReleaseFilter().discId(disc->getId());
- results = q.getReleases(&f);
+ track.Artist = getArtistFromArtistCredit(recording->ArtistCredit());
+ }
+ else
+ {
+ track.Artist = getArtistFromArtistCredit(itemTrack->ArtistCredit());
+ }
- // Check to see how many items were returned from the server
- if (!results.empty())
- {
- // TODO if multiple entries found
- if (results.size() > 1)
- {
- kDebug() << results.size() << " entries found";
- }
+ if(recording && itemTrack->Title().empty())
+ {
+ track.Title = QString::fromUtf8(recording->Title().c_str());
+ }
+ else
+ {
+ track.Title = QString::fromUtf8(itemTrack->Title().c_str());
+ }
- MusicBrainz::ReleaseResult *result = results.front();
- MusicBrainz::Release *release = q.getReleaseById(result->getRelease()->getId(),
- &MusicBrainz::ReleaseIncludes().tracks().artist());
- // Sets info
- m_discInfo.Title = QString::fromUtf8(release->getTitle().c_str());
- m_discInfo.Artist = QString::fromUtf8(release->getArtist()->getName().c_str());
+ track.Duration = itemTrack->Length();
- m_trackList.clear();
- MBTrackInfo track;
- for (MusicBrainz::TrackList::iterator j = release->getTracks().begin();
- j != release->getTracks().end(); j++)
- {
- MusicBrainz::Track *t = *j;
- MusicBrainz::Artist *artist = t->getArtist();
- if (!artist)
- artist = release->getArtist();
+ tracks << track;
+ }
- track.Title = QString::fromUtf8(t->getTitle().c_str());
- track.Artist = QString::fromUtf8(artist->getName().c_str());
- track.Duration = t->getDuration();
+ return tracks;
+}
- m_trackList << track;
- }
+static MusicBrainz5::CRelease *getRelease(MusicBrainz5::CQuery &query, std::string &discId, MusicBrainz5::CMetadata &metadata, MusicBrainz5::CMetadata &fullMetadata)
+{
+ metadata = query.Query("discid", discId);
+ // Check to see how many items were returned from the server
+ if (!metadata.Disc() || !metadata.Disc()->ReleaseList())
+ {
+ return 0;
+ }
+
+ MusicBrainz5::CReleaseList *results = metadata.Disc()->ReleaseList();
+
+ // TODO if multiple entries found
+ if (results->NumItems() > 1)
+ {
+ kDebug() << results->NumItems() << " entries found";
+ }
+
+ MusicBrainz5::CRelease *release;
+ for (int i = 0; i < results->NumItems(); i++)
+ {
+ MusicBrainz5::CRelease *result = results->Item(i);
+ MusicBrainz5::CQuery::tParamMap params;
+ params["inc"] = "artists labels recordings release-groups url-rels "
+ "discids artist-credits";
+ fullMetadata = query.Query("release", result->ID(), "", params);
+
+ release = fullMetadata.Release();
+ if (release)
+ {
+ break;
+ }
+ }
+
+ return release;
+}
+
+static MusicBrainz5::CMedium *getMedium(MusicBrainz5::CRelease *release, std::string &discId, MusicBrainz5::CMediumList &mediaList)
+{
+ if (!release)
+ {
+ return 0;
+ }
+
+ // Find the specific media in the release
+ mediaList = release->MediaMatchingDiscID(discId);
+ MusicBrainz5::CMedium* medium = 0;
+
+ for (int i = 0; i < mediaList.NumItems(); i++)
+ {
+ medium = mediaList.Item(i);
+ if (medium)
+ {
+ break;
+ }
+ }
+
+ return medium;
+}
+
+void MBManager::discLookup(const QString &device)
+{
+ m_validInfo = true;
+ MusicBrainz5::CQuery query("kscd");
+ int discid_ok = discid_read_sparse(m_discid, qPrintable(device), 0);
+ if (discid_ok)
+ {
+ std::string discId(discid_get_id(m_discid));
+ try
+ {
+ MusicBrainz5::CMetadata metadata, fullMetadata;
+ MusicBrainz5::CMediumList mediaList;
+ MusicBrainz5::CRelease *release = getRelease(query, discId, metadata, fullMetadata);
+ MusicBrainz5::CMedium *medium = getMedium(release, discId, mediaList);
+
+ if (release && medium)
+ {
+ // Sets info
+ m_discInfo.Title = getTitle(release, medium);
+ m_discInfo.Artist = getArtist(release);
+
+ m_trackList = getTracks(medium, m_discInfo.Artist, m_discid);
}
else
{
@@ -121,75 +274,57 @@ void MBManager::discLookup(const QString &device)
m_validInfo = false;
}
-
}
- catch (const MusicBrainz::WebServiceError &e)
- {
- kDebug() << "Error: " << e.what();
+ catch (MusicBrainz5::CExceptionBase& error)
+ {
+ kDebug() << "Connection Exception: '" << error.what() << "'";
+ kDebug() << "LastResult: " << query.LastResult();
+ kDebug() << "LastHTTPCode: " << query.LastHTTPCode();
+ kDebug() << "LastErrorMessage: " << QString::fromUtf8(query.LastErrorMessage().c_str());
+
m_validInfo = false;
- }
+ }
catch (...)
{
kDebug() << "Caught Unknown Exception:";
m_validInfo = false;
}
-
- if (!m_validInfo)
- {
- // If invalid data, fill the information with something
- // Sets info
- m_discInfo.Title = i18n("Unknown album");
- m_discInfo.Artist = i18n("Unknown artist");
-
- m_trackList.clear();
- MBTrackInfo track;
- for (MusicBrainz::Disc::TrackList::iterator j = disc->getTracks().begin(); j != disc->getTracks().end(); j++)
- {
- track.Title = i18n("Unknown title");
- track.Artist = m_discInfo.Artist;
- // time from mb library in sectors, 75 sectors = 1 second
- track.Duration = (*j).second*1000/75;
-
- m_trackList << track;
- }
- }
- delete disc;
}
- // FIXME Doesn't seem to get caught, why?
- catch (const MusicBrainz::DiscError &e)
- {
- kDebug() << "Error: " << e.what();
- m_discInfo.Title = i18n("Unknown album");
- m_discInfo.Artist = i18n("Unknown artist");
- m_discInfo.Artist = i18n( "No Disc" );
- m_trackList.clear();
- }
- catch(...)
+ else
{
+ m_validInfo = false;
+ }
+
+ if (!m_validInfo)
+ {
+ // If invalid data, fill the information with something
+ // Sets info
m_discInfo.Title = i18n("Unknown album");
m_discInfo.Artist = i18n("Unknown artist");
- m_discInfo.Artist = i18n( "No Disc" );
+
m_trackList.clear();
+ if (discid_ok)
+ {
+ m_trackList = unknownTracks(m_discInfo.Artist, m_discid);
+ }
}
-
+
emit discLookupFinished();
}
-void MBManager::discUpload()
+void MBManager::discUpload(const QString &device)
{
showArtistLabel(m_discInfo.Artist);
+ const char *discid_device = device.isEmpty()? NULL : qPrintable(device);
- try
+ int ok = discid_read_sparse(m_discid, discid_device, 0);
+ if (ok)
{
- MusicBrainz::Disc *disc = MusicBrainz::readDisc();
- std::string url = MusicBrainz::getSubmissionUrl(disc);
- delete disc;
-
- KToolInvocation::invokeBrowser(QString::fromUtf8(url.c_str()));
+ QString url = QString::fromUtf8(discid_get_submission_url(m_discid));
+ KToolInvocation::invokeBrowser(url);
}
- catch (MusicBrainz::DiscError &e)
+ else
{
- kDebug() << "Error: " << e.what();
+ kDebug() << "Error: " << discid_get_error_msg(m_discid);
}
}
-
--- mbmanager.h.orig 2014-07-16 08:24:20 UTC
+++ mbmanager.h
@@ -42,6 +42,9 @@
#include <qstring.h>
#include <qlist.h>
+// musicbrainz discid
+#include <discid/discid.h>
+
struct DiscInfo
{
QString Title;
@@ -64,6 +67,7 @@ class MBManager : public QObject (private)
QList <MBTrackInfo> m_trackList; /// List of tracks information
bool m_validInfo; /// Tells whether the lookup query succeeded
+ DiscId *m_discid;
public:
MBManager();
@@ -82,11 +86,11 @@ public slots:
void discLookup(const QString& device);
/** Uploads information */
- void discUpload();
+ void discUpload(const QString& device=QString());
signals:
void showArtistLabel(QString&);
-
+
void discLookupFinished();
};

View File

@ -1,8 +1,7 @@
# $FreeBSD$
PORTNAME= musicpd
PORTVERSION= 0.20.20
PORTREVISION= 2
PORTVERSION= 0.20.21
CATEGORIES= audio ipv6
MASTER_SITES= http://www.musicpd.org/download/mpd/${PORTVERSION:R}/
DISTNAME= mpd-${PORTVERSION}
@ -110,7 +109,8 @@ MPG123_LIB_DEPENDS=libmpg123.so:audio/mpg123
MUSEPACK_CONFIGURE_ENABLE=mpc
MUSEPACK_LIB_DEPENDS=libmpcdec.so:audio/musepack
OPENAL_CONFIGURE_ENABLE=openal
OPENAL_LIB_DEPENDS=libopenal.so:audio/openal
OPENAL_USES= openal
OPENAL_VARS= LLD_UNSAFE=yes # cf. PR 226980
OPUS_CONFIGURE_ENABLE=opus
OPUS_LIB_DEPENDS= libopus.so:audio/opus \
libogg.so:audio/libogg

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1527332444
SHA256 (mpd-0.20.20.tar.xz) = a9e458c6e07cdf62649de7722e1e5a7f13aa82eeb397bfbbebc07cf5cf273584
SIZE (mpd-0.20.20.tar.xz) = 793776
TIMESTAMP = 1534662491
SHA256 (mpd-0.20.21.tar.xz) = 8322764dc265c20f05c8c8fdfdd578b0722e74626bef56fcd8eebfb01acc58dc
SIZE (mpd-0.20.21.tar.xz) = 800476

View File

@ -4,7 +4,7 @@
PORTNAME= flowgrind
PORTVERSION= 0.8.0
DISTVERSIONPREFIX= ${PORTNAME}-
PORTREVISION= 3
PORTREVISION= 4
CATEGORIES= benchmarks
MAINTAINER= dbaio@FreeBSD.org

View File

@ -17,6 +17,7 @@ LICENSE_NAME= Molden
LICENSE_FILE= ${WRKSRC}/CopyRight
LICENSE_PERMS= auto-accept
BROKEN= unfetchable
RESTRICTED= free for academic, non profit usage; do not re-distribute source and executable.
WRKSRC= ${WRKDIR}/${PORTNAME}${PORTVERSION}

View File

@ -2,7 +2,7 @@
PORTNAME= wsjt
DISTVERSION= ${VERSION}.r${SVN_REV}
PORTREVISION= 7
PORTREVISION= 8
CATEGORIES= comms hamradio
MASTER_SITES= LOCAL/db
DISTNAME= wsjt-r${SVN_REV}

View File

@ -1,5 +1,5 @@
--- Makefile.in.orig 2015-01-08 12:33:18.000000000 -0500
+++ Makefile.in 2017-12-31 22:28:48.134978000 -0500
--- Makefile.in.orig 2015-01-08 17:33:18 UTC
+++ Makefile.in
@@ -6,7 +6,13 @@
# Prerequisites: Python 3.x, numpy-1.8.1, PIL, Pmw-2.0.0+
@ -14,7 +14,7 @@
MKDIR ?= mkdir
RM ?= @RM@
INSTALL = install
@@ -51,7 +57,7 @@
@@ -51,7 +57,7 @@ FC = @FC@
FCV = @FCV@
FC_LIB_PATH += @FC_LIB_PATH@
@ -23,19 +23,18 @@
OBJS1 = a2d.o abc441.o alignmsg.o ana932.o analytic.o astro.o \
avecho.o avemsg4.o avemsg65.o avemsg6m.o avesp2.o azdist.o \
@@ -97,12 +103,12 @@
@@ -97,12 +103,11 @@ F2PYSRCS = ftn_init.f90 ftn_quit.f90 audio_init.f90 sp
azdist0.f90 astro0.f90 chkt0.f90
WsjtMod/Audio.so: libjt.a ${F2PYSRCS}
- ${F2PY} -c -I. --fcompiler=gnu95 --f77exec=gfortran --f90exec=gfortran \
- --opt="-cpp -fbounds-check -O2" ${LDFLAGS} \
+ ktrace -d -f /tmp/ktrace.out ${F2PY} -c -I. --fcompiler=${FCV} --f77exec=${FC} --f90exec=${FC} \
+ ${F2PY} -c -I. --fcompiler=${FCV} --f77exec=${FC} --f90exec=${FC} \
+ --opt="-cpp -fbounds-check" ${LDFLAGS} \
${LIBS} libjt.a -m Audio ftn_init.f90 ftn_quit.f90 \
audio_init.f90 spec.f90 getfile.f90 azdist0.f90 \
astro0.f90 chkt0.f90
-
+ ktrace -C
${MV} Audio*.so WsjtMod/Audio.so
.PHONY : clean

View File

@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= couchdb
DISTVERSION= 1.7.1
PORTREVISION= 3
DISTVERSION= 1.7.2
PORTEPOCH= 2
CATEGORIES= databases
MASTER_SITES= APACHE/couchdb/source/${DISTVERSION}

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1510617171
SHA256 (apache-couchdb-1.7.1.tar.gz) = 91200aa6fbc6fa5e2f3d78ef40e39d8c1ec7c83ea1c2cd730d270658735b2cad
SIZE (apache-couchdb-1.7.1.tar.gz) = 9963069
TIMESTAMP = 1531177411
SHA256 (apache-couchdb-1.7.2.tar.gz) = 7b7c0db046ded544a587a8935d495610dd10f01a9cae3cd42cf88c5ae40bc431
SIZE (apache-couchdb-1.7.2.tar.gz) = 10009424

View File

@ -2,163 +2,84 @@
# $FreeBSD$
PORTNAME= mantis
PORTVERSION= 2.6.0
PORTVERSION= 2.17.1
PORTEPOCH= 1
CATEGORIES= databases www
MASTER_SITES= SF/mantisbt/mantis-stable/${PORTVERSION}
PKGNAMESUFFIX= ${PHP_PKGNAMESUFFIX}
DISTNAME= mantisbt-${PORTVERSION}
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}
MAINTAINER= ports@FreeBSD.org
MAINTAINER= tobik@FreeBSD.org
COMMENT= Bug tracking system written in PHP
LICENSE= GPLv2
USES= php:flavors
USE_GITHUB= nodefault
USE_PHP= fileinfo filter hash pcre session xml
NO_ARCH= yes
NO_BUILD= yes
USE_PHP= hash pcre session xml
USE_GITHUB= yes
GH_ACCOUNT= mantisbt:DEFAULT \
mantisbt:api_swaggerui \
mantisbt:lib_adodb \
mantisbt:lib_disposable \
mantisbt:lib_parsedown \
mantisbt:lib_phpmailer \
mantisbt:lib_securimage
GH_PROJECT= mantisbt:DEFAULT \
swagger-ui:api_swaggerui \
ADOdb:lib_adodb \
disposable_email_checker:lib_disposable \
parsedown:lib_parsedown \
PHPMailer:lib_phpmailer \
securimage:lib_securimage
GH_TAGNAME= 063cce6182568cf2eba81e3ca59cdd67606e7bab:DEFAULT \
0beaf61f94c3e6359ee0cdaf7b23ad4b365d761f:api_swaggerui \
cc2c13e337f1441e3aa1e17497722c1cd98b281b:lib_adodb \
6a7ddc0598810bdb91d270b489cec2e1033e047f:lib_disposable \
20ff8bbb57205368b4b42d094642a3e52dac85fb:lib_parsedown \
e066a6277ad41fcfdb8d3b8536aaa55ec9b6399b:lib_phpmailer \
65d446e137db4fe84e7f7edb9e7b06fce521a63b:lib_securimage
GH_SUBDIR= library/adodb:lib_adodb \
library/disposable:lib_disposable \
library/parsedown:lib_parsedown \
library/phpmailer:lib_phpmailer \
library/securimage:lib_securimage
OPTIONS_MULTI= DB
OPTIONS_MULTI_DB= MYSQL PGSQL
OPTIONS_GROUP= PLUGINS
OPTIONS_GROUP_PLUGINS= ACTIVITY ANNOUNCE COLORIZED CUSTOMREPORTER \
EMAILREP EVENTLOG FLTBUGLST JQUERYCHOSEN \
EMAILREP EVENTLOG FLTBUGLST GAUGE JQUERYCHOSEN \
JQUERYUI LIGHTBOX PIWIK SAMPLEAUTH SLACK \
SNIPPETS SI TASKODROME TIMETRACKING
OPTIONS_DEFAULT= MYSQL
OPTIONS_DEFAULT= MYSQL ${OPTIONS_GROUP_PLUGINS}
OPTIONS_SUB= yes
# XXX: All of these should probably be either separate ports or at
# least subpackages...
ACTIVITY_DESC= Shows bug notes by creation date
ACTIVITY_GH_ACCOUNT= mantisbt-plugins:activity
ACTIVITY_GH_PROJECT= Activity:activity
ACTIVITY_GH_TAGNAME= 99cf873396ebc3fec431c6746dae1a604768f322:activity
ACTIVITY_GH_SUBDIR= plugins/Activity:activity
ANNOUNCE_DESC= Announcements
ANNOUNCE_GH_ACCOUNT= mantisbt-plugins:announce
ANNOUNCE_GH_PROJECT= Announce:announce
ANNOUNCE_GH_TAGNAME= b9459924d88b8a9503d6ee9c37045d857d7da57e:announce
ANNOUNCE_GH_SUBDIR= plugins/Announce:announce
COLORIZED_DESC= Colorized Theme
COLORIZED_GH_ACCOUNT= mantisbt-plugins:colorized
COLORIZED_GH_PROJECT= MantisBT-Colorized:colorized
COLORIZED_GH_TAGNAME= f43dc4cc36e8851f8df1797116f904ccf5f1689d:colorized
COLORIZED_GH_SUBDIR= css/themes/colorized:colorized
CUSTOMREPORTER_DESC= Allows the selection of a Reporter from a list
CUSTOMREPORTER_GH_ACCOUNT= mantisbt-plugins:customreporter
CUSTOMREPORTER_GH_PROJECT= CustomReporter:customreporter
CUSTOMREPORTER_GH_TAGNAME= e9658eac2aa6c7e37609578e1d8bd676d22a3770:customreporter
CUSTOMREPORTER_GH_SUBDIR= plugins/CustomReporter:customreporter
EMAILREP_DESC= Allows to report an issue by sending an email
EMAILREP_GH_ACCOUNT= mantisbt-plugins:emailrep
EMAILREP_GH_PROJECT= EmailReporting:emailrep
EMAILREP_GH_TAGNAME= bcee020b3ce4bf91678a3f48d213660cf9902968:emailrep
EMAILREP_GH_SUBDIR= plugins/EmailReporting:emailrep
EVENTLOG_DESC= Allows MantisBT components to log data
EVENTLOG_GH_ACCOUNT= mantisbt-plugins:eventlog
EVENTLOG_GH_PROJECT= EventLog:eventlog
EVENTLOG_GH_TAGNAME= 74fd03cf85a32088a0206bc73bb14ddbd148aed2:eventlog
EVENTLOG_GH_SUBDIR= plugins/EventLog:eventlog
FLTBUGLST_DESC= Allowing to filter by a set of bug IDs
FLTBUGLST_GH_ACCOUNT= mantisbt-plugins:fltbuglst
FLTBUGLST_GH_PROJECT= FilterBugList:fltbuglst
FLTBUGLST_GH_TAGNAME= 4de5242dcf3ced656cffbf14776ce41089c07e49:fltbuglst
FLTBUGLST_GH_SUBDIR= plugins/FilterBugList:fltbuglst
JQUERYCHOSEN_DESC= Support the Library Chosen to MantisBT
JQUERYCHOSEN_GH_ACCOUNT= mantisbt-plugins:jquerychosen
JQUERYCHOSEN_GH_PROJECT= JqueryChosen:jquerychosen
JQUERYCHOSEN_GH_TAGNAME= dc305e987ea3693bb92d22545ba23f3fc44d04c3:jquerychosen
CUSTOMREPORTER_DESC= Allow the selection of a Reporter from a list
EMAILREP_DESC= Allow to report an issue by sending an email
EVENTLOG_DESC= Allow MantisBT components to log data
FLTBUGLST_DESC= Allow to filter by a set of bug IDs
GAUGE_DESC= Voting for tickets
JQUERYCHOSEN_DESC= Support the Library Chosen to MantisBT
JQUERYUI_DESC= jQuery UI library + Combobox
JQUERYUI_GH_ACCOUNT= mantisbt-plugins:jqueryui
JQUERYUI_GH_PROJECT= jQuery-UI:jqueryui
JQUERYUI_GH_TAGNAME= ca77afa51166658b469dd11bfff7713485935bda:jqueryui
LIGHTBOX_DESC= Plugin to open attachments using Lightbox
LIGHTBOX_GH_ACCOUNT= mantisbt-plugins:lightbox
LIGHTBOX_GH_PROJECT= Lightbox:lightbox
LIGHTBOX_GH_TAGNAME= f8220ba689378054ca433f718d909dc41a803def:lightbox
LIGHTBOX_GH_SUBDIR= plugins/Lightbox:lightbox
PIWIK_DESC= Paste print screens directly
PIWIK_GH_ACCOUNT= mantisbt-plugins:piwik
PIWIK_GH_PROJECT= piwik:piwik
PIWIK_GH_TAGNAME= a2dba46836bdc07a80b8040e889ba0606f97415e:piwik
SAMPLEAUTH_DESC= A sample authentication plugin
SAMPLEAUTH_GH_ACCOUNT= mantisbt-plugins:sampleauth
SAMPLEAUTH_GH_PROJECT= SampleAuth:sampleauth
SAMPLEAUTH_GH_TAGNAME= 34856715f49a5c273f33e094c759c0e0b52b3912:sampleauth
SAMPLEAUTH_GH_SUBDIR= plugins/SampleAuth:sampleauth
SLACK_DESC= Slack integration
SLACK_GH_ACCOUNT= mantisbt-plugins:slack
SLACK_GH_PROJECT= Slack:slack
SLACK_GH_TAGNAME= b054ea2446f7ac8cf9487cf72a9d9b7bca46f350:slack
SLACK_GH_SUBDIR= plugins/Slack:slack
SNIPPETS_DESC= Slack integration
SNIPPETS_GH_ACCOUNT= mantisbt-plugins:snippets
SNIPPETS_GH_PROJECT= snippets:snippets
SNIPPETS_GH_TAGNAME= ae08cb9845ad8a206dff7b4cad8c3dd7ffe611a5:snippets
SNIPPETS_GH_SUBDIR= plugins/Snippets:snippets
SNIPPETS_DESC= Text snippets that can be pasted into text fields
SI_DESC= Source control integration
SI_GH_ACCOUNT= mantisbt-plugins:si
SI_GH_PROJECT= source-integration:si
SI_GH_TAGNAME= 5aec11023a9c242a67f2255e24b4377d28c6a4f4:si
SI_USE= php=curl
TASKODROME_DESC= Interactive scrum board
TASKODROME_GH_ACCOUNT= mantisbt-plugins:taskodrome
TASKODROME_GH_PROJECT= Taskodrome:taskodrome
TASKODROME_GH_TAGNAME= c9bc06c0d7fcf8683f2534263a117970ee4e418d:taskodrome
TIMETRACKING_DESC= Time Tracking
TIMETRACKING_GH_ACCOUNT=mantisbt-plugins:timetracking
TIMETRACKING_GH_PROJECT=timetracking:timetracking
TIMETRACKING_GH_TAGNAME=990ce27aba9a6f79fdfbe10f71c7b60c7b8cbe26:timetracking
MYSQL_DESC= MySQL support
ACTIVITY_GH_TUPLE= mantisbt-plugins:Activity:99cf873396ebc3fec431c6746dae1a604768f322:activity/plugins/Activity
ANNOUNCE_GH_TUPLE= mantisbt-plugins:Announce:v2.3.0:announce/plugins/Announce
COLORIZED_GH_TUPLE= mantisbt-plugins:MantisBT-Colorized:f43dc4cc36e8851f8df1797116f904ccf5f1689d:colorized/css/themes/colorized
CUSTOMREPORTER_GH_TUPLE= mantisbt-plugins:CustomReporter:v2.0.0:customreporter/plugins/CustomReporter
EMAILREP_GH_TUPLE= mantisbt-plugins:EmailReporting:EmailReporting_0.10.1:emailrep/plugins/EmailReporting
EVENTLOG_GH_TUPLE= mantisbt-plugins:EventLog:74fd03cf85a32088a0206bc73bb14ddbd148aed2:eventlog/plugins/EventLog
FLTBUGLST_GH_TUPLE= mantisbt-plugins:FilterBugList:v2.1.0:fltbuglist/plugins/FilterBugList
GAUGE_GH_TUPLE= mantisbt-plugins:GaugeSupport:5fd657c713c6ee5ff2ae8bfbedb30a700d38f2db:gauge/plugins/GaugeSupport
JQUERYCHOSEN_GH_TUPLE= mantisbt-plugins:JqueryChosen:dc305e987ea3693bb92d22545ba23f3fc44d04c3:jquerychosen
JQUERYUI_GH_TUPLE= mantisbt-plugins:jQuery-UI:ca77afa51166658b469dd11bfff7713485935bda:jqueryui
LIGHTBOX_GH_TUPLE= mantisbt-plugins:Lightbox:f8220ba689378054ca433f718d909dc41a803def:lightbox/plugins/Lightbox
PIWIK_GH_TUPLE= mantisbt-plugins:piwik:a2dba46836bdc07a80b8040e889ba0606f97415e:piwik
SAMPLEAUTH_GH_TUPLE= mantisbt-plugins:SampleAuth:34856715f49a5c273f33e094c759c0e0b52b3912:sampleauth/plugins/SampleAuth
SLACK_GH_TUPLE= mantisbt-plugins:Slack:0e00367057a46171cb17b8eb8ff9bf6138b24525:slack/plugins/Slack
SNIPPETS_GH_TUPLE= mantisbt-plugins:Snippets:v2.2.5:snippets/plugins/Snippets
SI_GH_TUPLE= mantisbt-plugins:source-integration:v2.1.3:si
SI_USE= php=curl
TASKODROME_GH_TUPLE= mantisbt-plugins:Taskodrome:0491fa47062cdfa7bf03c01bd286986c75a18453:taskodrome
TIMETRACKING_GH_TUPLE= mantisbt-plugins:timetracking:3a560673d85e17651fc1994f5e09e2ae9df62336:timetracking
MYSQL_USE= php=mysqli
PGSQL_DESC= PostgreSQL support
PGSQL_USE= php=pgsql
SUB_FILES= pkg-message
PLIST_SUB= WWWOWN=${WWWOWN} WWWGRP=${WWWGRP}
post-extract:
@${MV} ${WRKSRC_api_swaggerui}/dist/* ${WRKSRC}/api/rest/swagger/
@${MV} ${WRKSRC}/api/rest/swagger/index.html ${WRKSRC}/api/rest/swagger/index.php
post-extract-COLORIZED-on:
@${MV} ${WRKSRC_colorized}/colorized.css ${WRKSRC_colorized}/default.css
@${CP} ${WRKSRC_colorized}/assets/screenshot-1.png ${WRKSRC_colorized}/colorized.png
@ -173,18 +94,7 @@ post-extract-PIWIK-on:
@${MV} ${WRKSRC_piwik}/Piwik ${WRKSRC}/plugins/
post-extract-SI-on:
@${MV} ${WRKSRC_si}/Source ${WRKSRC}/plugins/
@${MV} ${WRKSRC_si}/SourceBitBucket ${WRKSRC}/plugins/
@${MV} ${WRKSRC_si}/SourceCgit ${WRKSRC}/plugins/
@${MV} ${WRKSRC_si}/SourceGithub ${WRKSRC}/plugins/
@${MV} ${WRKSRC_si}/SourceGitlab ${WRKSRC}/plugins/
@${MV} ${WRKSRC_si}/SourceGitphp ${WRKSRC}/plugins/
@${MV} ${WRKSRC_si}/SourceGitweb ${WRKSRC}/plugins/
@${MV} ${WRKSRC_si}/SourceHgWeb ${WRKSRC}/plugins/
@${MV} ${WRKSRC_si}/SourceSFSVN ${WRKSRC}/plugins/
@${MV} ${WRKSRC_si}/SourceSVN ${WRKSRC}/plugins/
@${MV} ${WRKSRC_si}/SourceViewVC ${WRKSRC}/plugins/
@${MV} ${WRKSRC_si}/SourceWebSVN ${WRKSRC}/plugins/
@${MV} ${WRKSRC_si}/Source* ${WRKSRC}/plugins
post-extract-TASKODROME-on:
@${MV} ${WRKSRC_taskodrome}/Taskodrome ${WRKSRC}/plugins/

View File

@ -1,15 +1,39 @@
TIMESTAMP = 1506987384
SHA256 (mantisbt-mantisbt-2.6.0-063cce6182568cf2eba81e3ca59cdd67606e7bab_GH0.tar.gz) = 22c221478380f3cafc9d5ccdaa3916b7826327750ebf75b746b324b77df40855
SIZE (mantisbt-mantisbt-2.6.0-063cce6182568cf2eba81e3ca59cdd67606e7bab_GH0.tar.gz) = 4523391
SHA256 (mantisbt-swagger-ui-0beaf61f94c3e6359ee0cdaf7b23ad4b365d761f_GH0.tar.gz) = 5c67f724da6d2daa8931920b82f92319098badc47b57848c385a942a1420bdf4
SIZE (mantisbt-swagger-ui-0beaf61f94c3e6359ee0cdaf7b23ad4b365d761f_GH0.tar.gz) = 1401641
SHA256 (mantisbt-ADOdb-cc2c13e337f1441e3aa1e17497722c1cd98b281b_GH0.tar.gz) = a9334857b2dfefb42273f5296ef89166e6d65fcca26857702bce579ba1add102
SIZE (mantisbt-ADOdb-cc2c13e337f1441e3aa1e17497722c1cd98b281b_GH0.tar.gz) = 342578
SHA256 (mantisbt-disposable_email_checker-6a7ddc0598810bdb91d270b489cec2e1033e047f_GH0.tar.gz) = a2df1d7eb889ee175abb9c9d7a698260416bdb9c8d768262f68ca2050563921f
SIZE (mantisbt-disposable_email_checker-6a7ddc0598810bdb91d270b489cec2e1033e047f_GH0.tar.gz) = 9205
SHA256 (mantisbt-parsedown-20ff8bbb57205368b4b42d094642a3e52dac85fb_GH0.tar.gz) = a5fa28b2c0a546e34679ea78a9dbd811820351bd9b64df97d0b1fd29eb94f26b
SIZE (mantisbt-parsedown-20ff8bbb57205368b4b42d094642a3e52dac85fb_GH0.tar.gz) = 17633
SHA256 (mantisbt-PHPMailer-e066a6277ad41fcfdb8d3b8536aaa55ec9b6399b_GH0.tar.gz) = 61ef72758060af029320478343f70250aea6cf3434e526283c0911ba907ba1ab
SIZE (mantisbt-PHPMailer-e066a6277ad41fcfdb8d3b8536aaa55ec9b6399b_GH0.tar.gz) = 92355
SHA256 (mantisbt-securimage-65d446e137db4fe84e7f7edb9e7b06fce521a63b_GH0.tar.gz) = 490a47dd550e20de5a8f1f4841e55803232ab5716e502cc1e292cdc7dc52af30
SIZE (mantisbt-securimage-65d446e137db4fe84e7f7edb9e7b06fce521a63b_GH0.tar.gz) = 7590715
TIMESTAMP = 1537882484
SHA256 (mantisbt-2.17.1.tar.gz) = f4e4b8cfe09bd1126511ed126da59ec800e9673053e48a5709cbc15d0da9f118
SIZE (mantisbt-2.17.1.tar.gz) = 16693064
SHA256 (mantisbt-plugins-Activity-99cf873396ebc3fec431c6746dae1a604768f322_GH0.tar.gz) = 7c9a2d08d98854c40e53ec5ae90aa84ea3849843e5dec8fceefd4cbfba6d4c88
SIZE (mantisbt-plugins-Activity-99cf873396ebc3fec431c6746dae1a604768f322_GH0.tar.gz) = 42861
SHA256 (mantisbt-plugins-Announce-v2.3.0_GH0.tar.gz) = 08e22564618d4a867db87c35d2117781631ae6c58e805b74a1c61e065edb189d
SIZE (mantisbt-plugins-Announce-v2.3.0_GH0.tar.gz) = 151559
SHA256 (mantisbt-plugins-MantisBT-Colorized-f43dc4cc36e8851f8df1797116f904ccf5f1689d_GH0.tar.gz) = d4ca823fdcef233f041a2ab590d7b2c9e7e9209d2f92f07749967b564b128418
SIZE (mantisbt-plugins-MantisBT-Colorized-f43dc4cc36e8851f8df1797116f904ccf5f1689d_GH0.tar.gz) = 260775
SHA256 (mantisbt-plugins-CustomReporter-v2.0.0_GH0.tar.gz) = 91c97236e56899a79bcc84f7f0f1ab7f9e1176c8687cefbf3c9cc31a6e1d7022
SIZE (mantisbt-plugins-CustomReporter-v2.0.0_GH0.tar.gz) = 15691
SHA256 (mantisbt-plugins-EmailReporting-EmailReporting_0.10.1_GH0.tar.gz) = 86825713dc8efb9174d47db45b4aeaa30d9a3a3c5441ea144d86e4f1a829a0f2
SIZE (mantisbt-plugins-EmailReporting-EmailReporting_0.10.1_GH0.tar.gz) = 171999
SHA256 (mantisbt-plugins-EventLog-74fd03cf85a32088a0206bc73bb14ddbd148aed2_GH0.tar.gz) = ee0d3fccfce3cc63b597d59e46067dd8f511014cee8b308763e5ed900753673d
SIZE (mantisbt-plugins-EventLog-74fd03cf85a32088a0206bc73bb14ddbd148aed2_GH0.tar.gz) = 264064
SHA256 (mantisbt-plugins-FilterBugList-v2.1.0_GH0.tar.gz) = b9d01f61eff18ccaa5186ffd5520ed7fa7e1918438d82f1e33816eb5066b4788
SIZE (mantisbt-plugins-FilterBugList-v2.1.0_GH0.tar.gz) = 3171
SHA256 (mantisbt-plugins-GaugeSupport-5fd657c713c6ee5ff2ae8bfbedb30a700d38f2db_GH0.tar.gz) = 393b7fa2300c0c6e027bbb97c5432e89c6c363bef066f5df5056ff8ff36d03ac
SIZE (mantisbt-plugins-GaugeSupport-5fd657c713c6ee5ff2ae8bfbedb30a700d38f2db_GH0.tar.gz) = 6440
SHA256 (mantisbt-plugins-JqueryChosen-dc305e987ea3693bb92d22545ba23f3fc44d04c3_GH0.tar.gz) = 070cadc956689e6357af43a251e1d6fd703fa2612c8dee45c61e6e29e456d15e
SIZE (mantisbt-plugins-JqueryChosen-dc305e987ea3693bb92d22545ba23f3fc44d04c3_GH0.tar.gz) = 50254
SHA256 (mantisbt-plugins-jQuery-UI-ca77afa51166658b469dd11bfff7713485935bda_GH0.tar.gz) = 39281ee9847ae9100c7fcfe9453e3ce860983c2de2f4a549f10117ab3e0d2be5
SIZE (mantisbt-plugins-jQuery-UI-ca77afa51166658b469dd11bfff7713485935bda_GH0.tar.gz) = 127397
SHA256 (mantisbt-plugins-Lightbox-f8220ba689378054ca433f718d909dc41a803def_GH0.tar.gz) = 4ad7f432feffb9f793781b06465fe63e84997b5665a73e15d423b0b45bafa925
SIZE (mantisbt-plugins-Lightbox-f8220ba689378054ca433f718d909dc41a803def_GH0.tar.gz) = 29920
SHA256 (mantisbt-plugins-piwik-a2dba46836bdc07a80b8040e889ba0606f97415e_GH0.tar.gz) = b0ea772a6779bba9f94560d6eb3cb4169484446bf10fdcde4292706e6798b2f1
SIZE (mantisbt-plugins-piwik-a2dba46836bdc07a80b8040e889ba0606f97415e_GH0.tar.gz) = 2898
SHA256 (mantisbt-plugins-SampleAuth-34856715f49a5c273f33e094c759c0e0b52b3912_GH0.tar.gz) = 0b469ad79ffb792e4fc9cbcc5d48266c686be20de3f0cd6986bf43893deca1c3
SIZE (mantisbt-plugins-SampleAuth-34856715f49a5c273f33e094c759c0e0b52b3912_GH0.tar.gz) = 197029
SHA256 (mantisbt-plugins-source-integration-v2.1.3_GH0.tar.gz) = 07b4e941f7d478f1b14b040efd3a47fe5623d32aea8bd2c195b2bc390463fefb
SIZE (mantisbt-plugins-source-integration-v2.1.3_GH0.tar.gz) = 109541
SHA256 (mantisbt-plugins-Slack-0e00367057a46171cb17b8eb8ff9bf6138b24525_GH0.tar.gz) = f0eaea1bb42bf0f02956c0995c0e74b3832c479632d226af1fd3996b30ecd806
SIZE (mantisbt-plugins-Slack-0e00367057a46171cb17b8eb8ff9bf6138b24525_GH0.tar.gz) = 27139
SHA256 (mantisbt-plugins-Snippets-v2.2.5_GH0.tar.gz) = 7efa4d1635789fde24d1aa5385f0fee100578c5c1f730c6fcf9228304b059aa0
SIZE (mantisbt-plugins-Snippets-v2.2.5_GH0.tar.gz) = 35287
SHA256 (mantisbt-plugins-Taskodrome-0491fa47062cdfa7bf03c01bd286986c75a18453_GH0.tar.gz) = b990e8a91ef8842e2a4a8a140f3f8d3505fb04797f7359cd7b27220d721d4a9b
SIZE (mantisbt-plugins-Taskodrome-0491fa47062cdfa7bf03c01bd286986c75a18453_GH0.tar.gz) = 14528816
SHA256 (mantisbt-plugins-timetracking-3a560673d85e17651fc1994f5e09e2ae9df62336_GH0.tar.gz) = 99f13d9d4cef6aa9875dcd2b122dcd48b33dbd1e51439d455ea850b59bf7f14a
SIZE (mantisbt-plugins-timetracking-3a560673d85e17651fc1994f5e09e2ae9df62336_GH0.tar.gz) = 13128

View File

@ -1,20 +0,0 @@
--- api/rest/swagger/index.php 2017-06-18 00:46:15.000000000 +0300
+++ api/rest/swagger/index.php 2017-02-24 08:29:06.000000000 +0300
@@ -1,3 +1,8 @@
+<?php
+$g_bypass_headers = true;
+require_once( __DIR__ . '/../../../core.php' );
+$t_path = config_get( 'path' );
+?>
<!DOCTYPE html>
<html>
<head>
@@ -38,7 +43,7 @@
if (url && url.length > 1) {
url = decodeURIComponent(url[1]);
} else {
- url = "http://petstore.swagger.io/v2/swagger.json";
+ url = '<?php echo $t_path . 'api/rest/swagger.json' ?>';
}
hljs.configure({

View File

@ -1,22 +1,2 @@
=============================================================
Everything has been installed to:
%%WWWDIR%%
To make Mantis available through your web site, I suggest
that you add something like the following to httpd.conf:
Alias /mantis/ "%%WWWDIR%%/"
<Directory "%%WWWDIR%%/">
Options None
AllowOverride None
Order Allow,Deny
Allow from all
</Directory>
Also be sure to read %%WWWDIR%%/doc/INSTALL
=============================================================
Please see %%WWWDIR%%/doc/en-US/Admin_Guide
on how to setup Mantis.

View File

@ -1,13 +1,10 @@
Mantis is a web-based bugtracking system. It is in active development
and is no longer considered beta.
MantisBT is a web based open source issue tracker that provides a
delicate balance between simplicity and power. Users are able to
get started in minutes and start managing their projects while
collaborating with their teammates and clients effectively.
It is written in the PHP scripting language and requires the MySQL
database and a webserver. Mantis has been installed on Windows,
MacOS, OS/2, and a variety of Unix operating systems. Any web browser
should be able to function as a client. It is released under the
terms of the GNU General Public License (GPL).
Mantis is free to use and modify. It is free to redistribute as
long as you abide by the distribution terms of the GPL.
It is written in the PHP scripting language and works with the MySQL
(or one of its forks), and PostgreSQL databases and a web server.
Almost any web browser should be able to function as a client.
WWW: http://www.mantisbt.org/

File diff suppressed because it is too large Load Diff

View File

@ -1,78 +0,0 @@
--- scripts/CMakeLists.txt.orig 2017-01-12 01:45:19 UTC
+++ scripts/CMakeLists.txt
@@ -73,6 +73,7 @@ IF(UNIX)
)
ENDIF()
+IF(FALSE)
INSTALL(FILES
${CMAKE_CURRENT_SOURCE_DIR}/mysql_system_tables.sql
${CMAKE_CURRENT_SOURCE_DIR}/mysql_system_tables_data.sql
@@ -82,6 +83,7 @@ INSTALL(FILES
${FIX_PRIVILEGES_SQL}
DESTINATION ${INSTALL_MYSQLSHAREDIR} COMPONENT Server
)
+ENDIF()
# TCMalloc hacks
IF(MALLOC_LIB)
@@ -134,6 +136,7 @@ ENDIF()
SET(HOSTNAME "hostname")
SET(MYSQLD_USER "mysql")
+IF(FALSE)
# Required for mysqlbug until autotools are deprecated, once done remove these
# and expand default cmake variables
SET(CC ${CMAKE_C_COMPILER})
@@ -168,6 +171,7 @@ INSTALL_SCRIPT(${CMAKE_CURRENT_BINARY_DI
DESTINATION ${INSTALL_BINDIR}
COMPONENT Server
)
+ENDIF()
ENDIF(UNIX)
@@ -192,6 +196,7 @@ ELSE()
SET(localstatedir ${MYSQL_DATADIR})
ENDIF()
+IF()
IF(UNIX)
CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/mysql_install_db.sh
${CMAKE_CURRENT_BINARY_DIR}/mysql_install_db ESCAPE_QUOTES @ONLY)
@@ -207,6 +212,7 @@ INSTALL_SCRIPT(
COMPONENT Server
)
ENDIF()
+ENDIF()
SET(prefix "${CMAKE_INSTALL_PREFIX}")
IF(INSTALL_SYSCONFDIR)
@@ -269,6 +275,8 @@ MACRO(EXTRACT_LINK_LIBRARIES target var)
STRING(REGEX REPLACE "^lib" "" lib "${lib}")
SET(${var} "${${var}}-l${lib} " )
ENDIF()
+ ELSEIF(lib STREQUAL "-pthread")
+ SET(${var} "${${var}}-pthread " )
ELSE()
SET(${var} "${${var}}-l${lib} " )
ENDIF()
@@ -327,18 +335,8 @@ ELSE()
SET(BIN_SCRIPTS
msql2mysql
mysql_config
- mysql_fix_extensions
- mysql_setpermission
- mysql_secure_installation
- mysql_zap
mysqlaccess
- mysql_convert_table_format
mysql_find_rows
- mytop
- mysqlhotcopy
- mysqldumpslow
- mysqld_multi
- mysqld_safe
)
FOREACH(file ${BIN_SCRIPTS})
IF(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${file}.sh)

View File

@ -1,48 +0,0 @@
--- support-files/CMakeLists.txt.orig 2017-01-12 01:45:23 UTC
+++ support-files/CMakeLists.txt
@@ -41,15 +41,18 @@ ELSE()
SET(inst_location ${INSTALL_SUPPORTFILESDIR})
ENDIF()
+IF(FALSE)
FOREACH(inifile my-huge my-innodb-heavy-4G my-large my-medium my-small)
CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/${inifile}.cnf.sh
${CMAKE_CURRENT_BINARY_DIR}/${inifile}.${ini_file_extension} @ONLY)
INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/${inifile}.${ini_file_extension}
DESTINATION ${inst_location} COMPONENT IniFiles)
ENDFOREACH()
+ENDIF()
IF(UNIX)
SET(prefix ${CMAKE_INSTALL_PREFIX})
+ IF(FALSE)
FOREACH(script mysqld_multi.server mysql-log-rotate binary-configure)
CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/${script}.sh
${CMAKE_CURRENT_BINARY_DIR}/${script} @ONLY )
@@ -69,8 +72,10 @@ IF(UNIX)
INSTALL(FILES magic DESTINATION ${inst_location} COMPONENT SupportFiles)
ADD_SUBDIRECTORY(SELinux)
ENDIF()
+ ENDIF()
INSTALL(FILES mysql.m4 DESTINATION ${INSTALL_SHAREDIR}/aclocal COMPONENT Development)
+ IF(FALSE)
CONFIGURE_FILE(MySQL-shared-compat.spec.sh ${CMAKE_CURRENT_BINARY_DIR}/MySQL-shared-compat.spec @ONLY)
CONFIGURE_FILE(mysql.spec.sh ${CMAKE_CURRENT_BINARY_DIR}/mysql.spec @ONLY)
@@ -94,6 +99,7 @@ IF(UNIX)
DESTINATION ${inst_location} COMPONENT SupportFiles
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ
GROUP_EXECUTE WORLD_READ WORLD_EXECUTE)
+
IF (INSTALL_SYSCONFDIR)
INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/mysql-log-rotate DESTINATION ${INSTALL_SYSCONFDIR}/logrotate.d
@@ -103,6 +109,7 @@ IF(UNIX)
RENAME mysql COMPONENT SupportFiles
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ
GROUP_EXECUTE WORLD_READ WORLD_EXECUTE)
+ ENDIF()
INSTALL(FILES rpm/my.cnf DESTINATION ${INSTALL_SYSCONFDIR}
COMPONENT Common)

View File

@ -102,3 +102,12 @@ man/man1/mysqldump.1.gz
man/man1/mysqlimport.1.gz
man/man1/mysqlshow.1.gz
man/man1/mysqlslap.1.gz
@comment bin/mytop
@comment %%DATADIR%%/SELinux/mariadb.te
@comment %%DATADIR%%/SELinux/rhel4-mysql.fc
@comment %%DATADIR%%/SELinux/rhel4-mysql.te
@comment %%DATADIR%%/binary-configure
@comment %%DATADIR%%/magic
@comment %%DATADIR%%/mysql-log-rotate
@comment %%DATADIR%%/mysql.server
@comment %%DATADIR%%/mysqld_multi.server

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME?= mariadb
PORTVERSION= 10.0.35
PORTVERSION= 10.0.36
PORTREVISION?= 0
CATEGORIES= databases ipv6
MASTER_SITES= http://ftp.osuosl.org/pub/${SITESDIR}/ \

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1524825442
SHA256 (mariadb-10.0.35.tar.gz) = 401edb2c1e6be0badb94813b3db606ce8e57b6751a7e89f41127b943195ea828
SIZE (mariadb-10.0.35.tar.gz) = 66551964
TIMESTAMP = 1533756534
SHA256 (mariadb-10.0.36.tar.gz) = edf5c73b171ebdd0ef1d847c16f6702e831c351662515bf570bdf025d727f1ce
SIZE (mariadb-10.0.36.tar.gz) = 66577105

View File

@ -1,72 +0,0 @@
--- storage/connect/tabjson.cpp.orig 2018-04-26 19:47:48 UTC
+++ storage/connect/tabjson.cpp
@@ -195,7 +195,7 @@ int JSONDISC::GetColumns(PGLOBAL g, PCSZ
tdp->Fn = GetStringTableOption(g, topt, "Filename", NULL);
if (!(tdp->Database = SetPath(g, db)))
- return NULL;
+ return 0;
tdp->Objname = GetStringTableOption(g, topt, "Object", NULL);
tdp->Base = GetIntegerTableOption(g, topt, "Base", 0) ? 1 : 0;
@@ -243,14 +243,14 @@ int JSONDISC::GetColumns(PGLOBAL g, PCSZ
tjsp = new(g) TDBJSON(tdp, new(g) MAPFAM(tdp));
if (tjsp->MakeDocument(g))
- return NULL;
+ return 0;
jsp = (tjsp->GetDoc()) ? tjsp->GetDoc()->GetValue(0) : NULL;
} else {
if (!(tdp->Lrecl = GetIntegerTableOption(g, topt, "Lrecl", 0)))
if (!mgo) {
sprintf(g->Message, "LRECL must be specified for pretty=%d", tdp->Pretty);
- return NULL;
+ return 0;
} else
tdp->Lrecl = 8192; // Should be enough
@@ -261,7 +261,7 @@ int JSONDISC::GetColumns(PGLOBAL g, PCSZ
tjnp = new(g)TDBJSN(tdp, new(g) UNZFAM(tdp));
#else // !ZIP_SUPPORT
sprintf(g->Message, MSG(NO_FEAT_SUPPORT), "ZIP");
- return NULL;
+ return 0;
#endif // !ZIP_SUPPORT
} else if (tdp->Uri) {
if (tdp->Driver && toupper(*tdp->Driver) == 'C') {
@@ -269,14 +269,14 @@ int JSONDISC::GetColumns(PGLOBAL g, PCSZ
tjnp = new(g) TDBJSN(tdp, new(g) CMGFAM(tdp));
#else
sprintf(g->Message, "Mongo %s Driver not available", "C");
- return NULL;
+ return 0;
#endif
} else if (tdp->Driver && toupper(*tdp->Driver) == 'J') {
#if defined(JAVA_SUPPORT)
tjnp = new(g) TDBJSN(tdp, new(g) JMGFAM(tdp));
#else
sprintf(g->Message, "Mongo %s Driver not available", "Java");
- return NULL;
+ return 0;
#endif
} else { // Driver not specified
#if defined(CMGO_SUPPORT)
@@ -285,7 +285,7 @@ int JSONDISC::GetColumns(PGLOBAL g, PCSZ
tjnp = new(g) TDBJSN(tdp, new(g) JMGFAM(tdp));
#else
sprintf(g->Message, MSG(NO_FEAT_SUPPORT), "MONGO");
- return NULL;
+ return 0;
#endif
} // endif Driver
@@ -304,7 +304,7 @@ int JSONDISC::GetColumns(PGLOBAL g, PCSZ
tjnp->SetG(G);
if (tjnp->OpenDB(g))
- return NULL;
+ return 0;
switch (tjnp->ReadDB(g)) {
case RC_EF:

View File

@ -1,3 +1,5 @@
https://jira.mariadb.org/browse/MDEV-15961
--- mysys/stacktrace.c.orig 2018-01-27 18:40:37 UTC
+++ mysys/stacktrace.c
@@ -34,19 +34,19 @@

View File

@ -1,22 +1,22 @@
--- scripts/CMakeLists.txt.orig 2016-07-14 01:10:23 UTC
+++ scripts/CMakeLists.txt
@@ -73,6 +73,7 @@ IF(UNIX)
)
@@ -45,6 +45,7 @@ ELSE()
MESSAGE(FATAL_ERROR "Cannot concatenate files")
ENDIF()
+IF(FALSE)
INSTALL(FILES
${CMAKE_CURRENT_SOURCE_DIR}/mysql_system_tables.sql
${CMAKE_CURRENT_SOURCE_DIR}/mysql_system_tables_data.sql
@@ -83,6 +84,7 @@ INSTALL(FILES
${FIX_PRIVILEGES_SQL}
DESTINATION ${INSTALL_MYSQLSHAREDIR} COMPONENT Server
# Build mysql_fix_privilege_tables.c
ADD_CUSTOM_COMMAND(
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/mysql_fix_privilege_tables_sql.c
@@ -65,6 +66,7 @@ ADD_CUSTOM_TARGET(GenFixPrivs
ALL
DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/mysql_fix_privilege_tables_sql.c
)
+ENDIF()
# TCMalloc hacks
IF(MALLOC_LIB)
@@ -135,6 +137,7 @@ ENDIF()
IF(UNIX)
FILE(WRITE ${CMAKE_CURRENT_BINARY_DIR}/make_binary_distribution
@@ -164,6 +166,7 @@ ENDIF()
SET(HOSTNAME "hostname")
SET(MYSQLD_USER "mysql")
@ -24,7 +24,7 @@
# Required for mysqlbug until autotools are deprecated, once done remove these
# and expand default cmake variables
SET(CC ${CMAKE_C_COMPILER})
@@ -169,6 +172,7 @@ INSTALL_SCRIPT(${CMAKE_CURRENT_BINARY_DI
@@ -198,6 +201,7 @@ INSTALL_SCRIPT(${CMAKE_CURRENT_BINARY_DI
DESTINATION ${INSTALL_BINDIR}
COMPONENT Server
)
@ -32,15 +32,15 @@
ENDIF(UNIX)
@@ -194,6 +198,7 @@ ELSE()
SET(localstatedir ${MYSQL_DATADIR})
ENDIF()
@@ -228,6 +232,7 @@ SET(mysqld_locations "$basedir/${INSTALL
SET(errmsg_locations "$basedir/${INSTALL_MYSQLSHAREDIR}/english $basedir/share/english $basedir/share/mysql/english")
SET(pkgdata_locations "$basedir/${INSTALL_MYSQLSHAREDIR} $basedir/share $basedir/share/mysql")
+IF()
IF(UNIX)
CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/mysql_install_db.sh
${CMAKE_CURRENT_BINARY_DIR}/mysql_install_db ESCAPE_QUOTES @ONLY)
@@ -207,6 +212,7 @@ INSTALL_SCRIPT(
@@ -241,6 +246,7 @@ INSTALL_SCRIPT(
COMPONENT Server
)
ENDIF()
@ -48,7 +48,7 @@
SET(prefix "${CMAKE_INSTALL_PREFIX}")
IF(INSTALL_SYSCONFDIR)
@@ -294,13 +300,8 @@ ELSE()
@@ -333,13 +339,8 @@ ELSE()
SET(BIN_SCRIPTS
msql2mysql
mysql_config
@ -60,5 +60,5 @@
- mytop
- mysqlhotcopy
${SERVER_SCRIPTS}
${WSREP_BINARIES}
${WSREP_SCRIPTS}
${SYSTEMD_SCRIPTS}

View File

@ -1,17 +1,6 @@
--- support-files/CMakeLists.txt.orig 2015-12-23 15:33:33 UTC
+++ support-files/CMakeLists.txt
@@ -41,15 +41,18 @@ ELSE()
SET(inst_location ${INSTALL_SUPPORTFILESDIR})
ENDIF()
+IF(FALSE)
FOREACH(inifile my-huge my-innodb-heavy-4G my-large my-medium my-small wsrep)
CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/${inifile}.cnf.sh
${CMAKE_CURRENT_BINARY_DIR}/${inifile}.${ini_file_extension} @ONLY)
INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/${inifile}.${ini_file_extension}
DESTINATION ${inst_location} COMPONENT IniFiles)
ENDFOREACH()
+ENDIF()
@@ -59,6 +59,7 @@ ENDIF()
IF(UNIX)
SET(prefix ${CMAKE_INSTALL_PREFIX})
@ -19,9 +8,9 @@
FOREACH(script mysqld_multi.server mysql-log-rotate binary-configure wsrep_notify)
CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/${script}.sh
${CMAKE_CURRENT_BINARY_DIR}/${script} @ONLY )
@@ -60,12 +63,14 @@ IF(UNIX)
INSTALL(FILES magic DESTINATION ${inst_location} COMPONENT SupportFiles)
INSTALL(DIRECTORY policy DESTINATION ${inst_location} COMPONENT SupportFiles)
@@ -88,12 +89,14 @@ IF(UNIX)
ENDFOREACH()
ENDIF()
ENDIF()
+ ENDIF()
@ -35,7 +24,7 @@
SET(bindir ${INSTALL_BINDIRABS})
SET(sbindir ${INSTALL_SBINDIRABS})
SET(scriptdir ${INSTALL_SCRIPTDIRABS})
@@ -115,6 +120,7 @@ IF(UNIX)
@@ -160,6 +163,7 @@ IF(UNIX)
INSTALL(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/mysql.server
DESTINATION ${INSTALL_SYSCONFDIR}/init.d
RENAME mysql COMPONENT SupportFiles)

View File

@ -117,3 +117,4 @@ man/man1/mysqldump.1.gz
man/man1/mysqlimport.1.gz
man/man1/mysqlshow.1.gz
man/man1/mysqlslap.1.gz
@comment %%DATADIR%%/wsrep.cnf

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME?= mariadb
PORTVERSION= 10.1.33
PORTVERSION= 10.1.35
PORTREVISION?= 0
CATEGORIES= databases ipv6
MASTER_SITES= http://ftp.osuosl.org/pub/${SITESDIR}/ \

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1525903240
SHA256 (mariadb-10.1.33.tar.gz) = 94312c519f2c0c25e1964c64e22aff0036fb22dfb2685638f43a6b2211395d2d
SIZE (mariadb-10.1.33.tar.gz) = 65292094
TIMESTAMP = 1533675828
SHA256 (mariadb-10.1.35.tar.gz) = 9e91d985ed4f662126e3e5791fe91ec8a2f44ec811113c2b6fbc72fa14553c4d
SIZE (mariadb-10.1.35.tar.gz) = 65324620

View File

@ -41,6 +41,7 @@ bin/wsrep_sst_common
bin/wsrep_sst_mariabackup
bin/wsrep_sst_mysqldump
bin/wsrep_sst_rsync
bin/wsrep_sst_rsync_wan
bin/wsrep_sst_xtrabackup
bin/wsrep_sst_xtrabackup-v2
include/mysql/private/atomic/gcc_builtins.h

View File

@ -1,30 +1,31 @@
--- scripts/CMakeLists.txt.orig 2017-04-04 19:11:52 UTC
+++ scripts/CMakeLists.txt
@@ -90,6 +90,7 @@ SET(ADD_GIS_SP_EOL ";")
CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/maria_add_gis_sp.sql.in
${CMAKE_CURRENT_BINARY_DIR}/maria_add_gis_sp_bootstrap.sql ESCAPE_QUOTES @ONLY)
@@ -21,7 +21,7 @@ IF(NOT CMAKE_CROSSCOMPILING)
TARGET_LINK_LIBRARIES(comp_sql)
ENDIF()
-
+IF(NOT WITHOUT_SERVER)
INSTALL(FILES
${CMAKE_CURRENT_SOURCE_DIR}/mysql_system_tables.sql
${CMAKE_CURRENT_SOURCE_DIR}/mysql_system_tables_data.sql
@@ -102,6 +103,7 @@ INSTALL(FILES
${FIX_PRIVILEGES_SQL}
DESTINATION ${INSTALL_MYSQLSHAREDIR} COMPONENT Server
# Build mysql_fix_privilege_tables.sql (concatenate 3 sql scripts)
IF(NOT WIN32 OR CMAKE_CROSSCOMPILING)
FIND_PROGRAM(CAT_EXECUTABLE cat DOC "path to the executable")
@@ -65,6 +65,7 @@ ADD_CUSTOM_TARGET(GenFixPrivs
ALL
DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/mysql_fix_privilege_tables_sql.c
)
+ENDIF()
# TCMalloc hacks
IF(MALLOC_LIB)
@@ -177,6 +179,7 @@ ELSE()
SET(localstatedir ${MYSQL_DATADIR})
IF(UNIX)
FILE(WRITE ${CMAKE_CURRENT_BINARY_DIR}/make_binary_distribution
@@ -126,6 +127,7 @@ ELSE()
SET (PERL_PATH "/usr/bin/perl")
ENDIF()
+IF(NOT WITHOUT_SERVER)
IF(UNIX)
CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/mysql_install_db.sh
${CMAKE_CURRENT_BINARY_DIR}/mysql_install_db ESCAPE_QUOTES @ONLY)
@@ -190,6 +193,7 @@ INSTALL_SCRIPT(
# FIND_PROC and CHECK_PID are used by mysqld_safe
IF(CMAKE_SYSTEM_NAME MATCHES "Linux")
@@ -207,6 +209,7 @@ INSTALL_SCRIPT(
COMPONENT Server
)
ENDIF()
@ -32,7 +33,7 @@
SET(prefix "${CMAKE_INSTALL_PREFIX}")
IF(INSTALL_SYSCONFDIR)
@@ -277,13 +281,8 @@ ELSE()
@@ -298,13 +301,8 @@ ELSE()
SET(BIN_SCRIPTS
msql2mysql
mysql_config

View File

@ -1,20 +1,5 @@
--- support-files/CMakeLists.txt.orig 2018-06-25 11:13:30 UTC
+++ support-files/CMakeLists.txt
@@ -41,12 +41,14 @@ ELSE()
SET(inst_location ${INSTALL_SUPPORTFILESDIR})
ENDIF()
+IF(NOT WITHOUT_SERVER)
FOREACH(inifile my-huge my-innodb-heavy-4G my-large my-medium my-small)
CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/${inifile}.cnf.sh
${CMAKE_CURRENT_BINARY_DIR}/${inifile}.${ini_file_extension} @ONLY)
INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/${inifile}.${ini_file_extension}
DESTINATION ${inst_location} COMPONENT IniFiles)
ENDFOREACH()
+ENDIF()
IF(WITH_WSREP)
CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/wsrep.cnf.sh
@@ -57,6 +59,7 @@ ENDIF()
IF(UNIX)

View File

@ -72,31 +72,6 @@ lib/mysql/plugin/sha256_password.so
%%DATADIR%%/charsets/macce.xml
%%DATADIR%%/charsets/macroman.xml
%%DATADIR%%/charsets/swe7.xml
%%DATADIR%%/czech/errmsg.sys
%%DATADIR%%/danish/errmsg.sys
%%DATADIR%%/dutch/errmsg.sys
%%DATADIR%%/english/errmsg.sys
%%DATADIR%%/errmsg-utf8.txt
%%DATADIR%%/estonian/errmsg.sys
%%DATADIR%%/french/errmsg.sys
%%DATADIR%%/german/errmsg.sys
%%DATADIR%%/greek/errmsg.sys
%%DATADIR%%/hindi/errmsg.sys
%%DATADIR%%/hungarian/errmsg.sys
%%DATADIR%%/italian/errmsg.sys
%%DATADIR%%/japanese/errmsg.sys
%%DATADIR%%/korean/errmsg.sys
%%DATADIR%%/norwegian-ny/errmsg.sys
%%DATADIR%%/norwegian/errmsg.sys
%%DATADIR%%/polish/errmsg.sys
%%DATADIR%%/portuguese/errmsg.sys
%%DATADIR%%/romanian/errmsg.sys
%%DATADIR%%/russian/errmsg.sys
%%DATADIR%%/serbian/errmsg.sys
%%DATADIR%%/slovak/errmsg.sys
%%DATADIR%%/spanish/errmsg.sys
%%DATADIR%%/swedish/errmsg.sys
%%DATADIR%%/ukrainian/errmsg.sys
man/man1/msql2mysql.1.gz
man/man1/mysql.1.gz
man/man1/mysql_config.1.gz

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME?= mariadb
PORTVERSION= 10.2.16
PORTVERSION= 10.2.17
PORTREVISION?= 0
CATEGORIES= databases ipv6
MASTER_SITES= http://mirrors.supportex.net/${SITESDIR}/ \

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1530034863
SHA256 (mariadb-10.2.16.tar.gz) = c182ee93bacee9c1395a4cece56acfc433bc5153ec627c4898927b93eee54dc4
SIZE (mariadb-10.2.16.tar.gz) = 73363798
TIMESTAMP = 1534231063
SHA256 (mariadb-10.2.17.tar.gz) = e7b3078f8de874a4d451242a8a3eed49bf6f916dcd52fc3efa55886f5f35be27
SIZE (mariadb-10.2.17.tar.gz) = 73409162

View File

@ -1,17 +1,14 @@
--- sql/share/CMakeLists.txt.orig 2017-05-14 23:13:18 UTC
--- sql/share/CMakeLists.txt.orig 2018-08-12 11:29:50 UTC
+++ sql/share/CMakeLists.txt
@@ -14,6 +14,8 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+IF(FALSE)
+
SET (dirs
danish
german
@@ -53,3 +55,5 @@ INSTALL(DIRECTORY ${CMAKE_CURRENT_SOURCE
@@ -45,9 +45,11 @@ SET(files
errmsg-utf8.txt
)
INSTALL(FILES ${files} DESTINATION ${INSTALL_MYSQLSHAREDIR} COMPONENT Server)
+
+IF (NOT WITHOUT_CLIENT)
INSTALL(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/charsets DESTINATION ${INSTALL_MYSQLSHAREDIR}
COMPONENT Common PATTERN "languages.html" EXCLUDE
)
+ENDIF()
IF (NOT WITHOUT_SERVER)
FOREACH (dir ${dirs})

View File

@ -136,9 +136,23 @@ man/man1/wsrep_sst_xtrabackup-v2.1.gz
man/man1/wsrep_sst_xtrabackup.1.gz
man/man8/mysqld.8.gz
%%DATADIR%%/binary-configure
%%DATADIR%%/czech/errmsg.sys
%%DATADIR%%/danish/errmsg.sys
%%DATADIR%%/dutch/errmsg.sys
%%DATADIR%%/english/errmsg.sys
%%DATADIR%%/errmsg-utf8.txt
%%DATADIR%%/estonian/errmsg.sys
%%DATADIR%%/fill_help_tables.sql
%%DATADIR%%/magic
%%DATADIR%%/french/errmsg.sys
%%DATADIR%%/german/errmsg.sys
%%DATADIR%%/greek/errmsg.sys
%%DATADIR%%/hindi/errmsg.sys
%%DATADIR%%/hungarian/errmsg.sys
%%SPIDER%%%%DATADIR%%/install_spider.sql
%%DATADIR%%/italian/errmsg.sys
%%DATADIR%%/japanese/errmsg.sys
%%DATADIR%%/korean/errmsg.sys
%%DATADIR%%/magic
%%DATADIR%%/maria_add_gis_sp.sql
%%DATADIR%%/maria_add_gis_sp_bootstrap.sql
%%MROONGA%%%%DATADIR%%/mroonga/install.sql
@ -157,6 +171,17 @@ man/man8/mysqld.8.gz
%%DATADIR%%/mysql_test_data_timezone.sql
%%DATADIR%%/mysql_to_mariadb.sql
%%DATADIR%%/mysqld_multi.server
%%DATADIR%%/norwegian-ny/errmsg.sys
%%DATADIR%%/norwegian/errmsg.sys
%%DATADIR%%/polish/errmsg.sys
%%DATADIR%%/portuguese/errmsg.sys
%%DATADIR%%/romanian/errmsg.sys
%%DATADIR%%/russian/errmsg.sys
%%DATADIR%%/serbian/errmsg.sys
%%DATADIR%%/slovak/errmsg.sys
%%DATADIR%%/spanish/errmsg.sys
%%DATADIR%%/swedish/errmsg.sys
%%DATADIR%%/ukrainian/errmsg.sys
%%DATADIR%%/wsrep.cnf
%%DATADIR%%/wsrep_notify
%%MROONGA%%share/groonga-normalizer-mysql/README.md

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME?= mariadb
PORTVERSION= 5.5.60
PORTVERSION= 5.5.61
PORTREVISION?= 0
CATEGORIES= databases ipv6
MASTER_SITES= http://ftp.osuosl.org/pub/mariadb/${PORTNAME}-${PORTVERSION}/source/ \

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1524505018
SHA256 (mariadb-5.5.60.tar.gz) = 4d3d444555416028ce39d3fb4cdc9cf6a658fcd4b0d2d0c45a73f9bf01d07929
SIZE (mariadb-5.5.60.tar.gz) = 45822878
TIMESTAMP = 1533760198
SHA256 (mariadb-5.5.61.tar.gz) = 57afd089e3b458cda26beeda63c0bfe125baa6fead2120478788f1945e551013
SIZE (mariadb-5.5.61.tar.gz) = 45839038

View File

@ -5,7 +5,7 @@
#include <openssl/hmac.h>
#include <openssl/sha.h>
-#if OPENSSL_VERSION_NUMBER < 0x10100000L
+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined (LIBRESSL_VERSION_NUMBER)
+#if OPENSSL_VERSION_NUMBER < 0x10100000L || (defined (LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x2070000fL)
namespace {
// Copies of OpenSSL after 1.1.0 define new EVP digest routines. We must
// polyfill used definitions to interact with older OpenSSL versions.

View File

@ -5,7 +5,7 @@
// clang-format on
-#if OPENSSL_VERSION_NUMBER < 0x10100000L
+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER)
+#if OPENSSL_VERSION_NUMBER < 0x10100000L || (defined (LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x2070000fL)
// Copies of OpenSSL after 1.1.0 define new functions for interaction with
// X509 structure. We must polyfill used definitions to interact with older
// OpenSSL versions.

View File

@ -0,0 +1,11 @@
--- src/mongo/crypto/sha_block_openssl.cpp.orig 2018-07-08 16:42:41.034894000 +0000
+++ src/mongo/crypto/sha_block_openssl.cpp 2018-07-08 16:42:58.121846000 +0000
@@ -44,7 +44,7 @@
#include <openssl/hmac.h>
#include <openssl/sha.h>
-#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER)
+#if OPENSSL_VERSION_NUMBER < 0x10100000L || (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x2070000fL)
namespace {
// Copies of OpenSSL after 1.1.0 define new EVP digest routines. We must
// polyfill used definitions to interact with older OpenSSL versions.

View File

@ -0,0 +1,11 @@
--- src/mongo/util/net/ssl_manager.cpp.orig 2018-07-08 16:33:48.347433000 +0000
+++ src/mongo/util/net/ssl_manager.cpp 2018-07-08 16:34:49.098494000 +0000
@@ -237,7 +237,7 @@
#endif // MONGO_CONFIG_NEEDS_ASN1_ANY_DEFINITIONS
// clang-format on
-#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER)
+#if OPENSSL_VERSION_NUMBER < 0x10100000L || (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x2070000fL)
// Copies of OpenSSL after 1.1.0 define new functions for interaction with
// X509 structure. We must polyfill used definitions to interact with older
// OpenSSL versions.

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME?= mysql
PORTVERSION= 5.6.40
PORTVERSION= 5.6.41
PORTREVISION?= 0
CATEGORIES= databases ipv6
MASTER_SITES= MYSQL/MySQL-5.6

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1524220820
SHA256 (mysql-5.6.40.tar.gz) = 1048a7abedba851efa62868e4d28d0be8828162b53903cd68e4f29546418d92d
SIZE (mysql-5.6.40.tar.gz) = 32083035
TIMESTAMP = 1533938460
SHA256 (mysql-5.6.41.tar.gz) = 4a223c3daed88f8450fa2fc8fd0e7afe2b1a122dd58b74c4ea6526d6a72563ce
SIZE (mysql-5.6.41.tar.gz) = 32111985

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= mysql
PORTREVISION= 1
PORTREVISION= 0
PKGNAMESUFFIX= 57-client
COMMENT= Multithreaded SQL database (client)

View File

@ -2,8 +2,8 @@
# $FreeBSD$
PORTNAME?= mysql
PORTVERSION= 5.7.22
PORTREVISION?= 2
PORTVERSION= 5.7.23
PORTREVISION?= 1
CATEGORIES= databases ipv6
MASTER_SITES= MYSQL/MySQL-5.7
PKGNAMESUFFIX?= 57-server

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1524221054
SHA256 (mysql-boost-5.7.22.tar.gz) = 5b2a61700af7c99f5630a7dfdb099af9283c3029843cddd9e123bcdbcc4aad03
SIZE (mysql-boost-5.7.22.tar.gz) = 48985783
TIMESTAMP = 1533936896
SHA256 (mysql-boost-5.7.23.tar.gz) = d05700ec5c1c6dae9311059dc1713206c29597f09dbd237bf0679b3c6438e87a
SIZE (mysql-boost-5.7.23.tar.gz) = 49025014

View File

@ -0,0 +1,11 @@
--- sql/mysqld.cc.orig 2018-06-08 11:56:29.000000000 +0200
+++ sql/mysqld.cc 2018-08-11 13:38:48.782595000 +0200
@@ -3408,7 +3408,7 @@
{
#ifdef HAVE_OPENSSL
#ifndef HAVE_YASSL
-#if OPENSSL_VERSION_NUMBER < 0x10100000L
+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER)
CRYPTO_malloc_init();
#else /* OPENSSL_VERSION_NUMBER < 0x10100000L */
OPENSSL_malloc_init();

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= mysql
PORTREVISION= 1
PORTREVISION= 0
PKGNAMESUFFIX= 80-client
COMMENT= Multithreaded SQL database (client)

View File

@ -1,6 +1,6 @@
--- CMakeLists.txt.orig 2018-05-03 10:27:45 UTC
+++ CMakeLists.txt
@@ -835,14 +835,12 @@ ADD_SUBDIRECTORY(extra/regex)
@@ -835,6 +835,7 @@ ADD_SUBDIRECTORY(extra/regex)
ADD_SUBDIRECTORY(libmysql)
ADD_SUBDIRECTORY(libbinlogevents)
ADD_SUBDIRECTORY(libbinlogstandalone)
@ -8,14 +8,6 @@
IF(NOT WITHOUT_SERVER)
SET (MYSQLD_STATIC_PLUGIN_LIBS "" CACHE INTERNAL "")
# Add storage engines and plugins.
CONFIGURE_PLUGINS()
-ELSE()
- # We may still want Cluster client libraries, use -DWITH_NDBCLUSTER=1
- ADD_SUBDIRECTORY(storage/ndb)
ENDIF()
IF(NOT WITHOUT_SERVER)
@@ -966,12 +964,10 @@ ENDIF()
ADD_SUBDIRECTORY(packaging/WiX)
ADD_SUBDIRECTORY(packaging/solaris)

View File

@ -35,11 +35,11 @@
@@ -347,6 +351,8 @@ MACRO(EXTRACT_LINK_LIBRARIES target var)
GET_FILENAME_COMPONENT(lib "${lib}" NAME_WE)
STRING(REGEX REPLACE "^lib" "" lib "${lib}")
SET(${var} "${${var}}-l${lib} " )
SET(${var} "${${var}}-l${lib} " )
+ ELSEIF(lib STREQUAL "-pthread")
+ SET(${var} "${${var}}-pthread " )
+ SET(${var} "${${var}}-pthread " )
ELSE()
SET(${var} "${${var}}-l${lib} " )
SET(${var} "${${var}}-l${lib} " )
ENDIF()
@@ -430,19 +436,7 @@ ELSE()
# On Unix, most of the files end up in the bin directory

View File

@ -1,21 +1,5 @@
--- sql-common/client.cc.orig 2018-04-08 06:44:49 UTC
+++ sql-common/client.cc
@@ -2649,11 +2649,11 @@ static int ssl_verify_server_cert(Vio *v
goto error;
}
-#if OPENSSL_VERSION_NUMBER < 0x10100000L
- cn = (char *)ASN1_STRING_data(cn_asn1);
-#else /* OPENSSL_VERSION_NUMBER < 0x10100000L */
+#if OPENSSL_VERSION_NUMBER >= 0x10100000L && !defined(LIBRESSL_VERSION_NUMBER)
cn = (char *)ASN1_STRING_get0_data(cn_asn1);
-#endif /* OPENSSL_VERSION_NUMBER < 0x10100000L */
+#else /* OPENSSL_VERSION_NUMBER >= 0x10100000L */
+ cn = (char *)ASN1_STRING_data(cn_asn1);
+#endif /* OPENSSL_VERSION_NUMBER >= 0x10100000L */
// There should not be any NULL embedded in the CN
if ((size_t)ASN1_STRING_length(cn_asn1) != strlen(cn)) {
@@ -5596,7 +5596,7 @@ int STDCALL mysql_options(MYSQL *mysql,
#endif
break;

View File

@ -12,7 +12,7 @@
ENDIF()
+IF(FALSE)
MYSQL_ADD_EXECUTABLE(my_print_defaults my_print_defaults.c)
MYSQL_ADD_EXECUTABLE(my_print_defaults my_print_defaults.cc)
TARGET_LINK_LIBRARIES(my_print_defaults mysys mysys_ssl)
@@ -142,11 +144,14 @@ IF(WITH_INNOBASE_STORAGE_ENGINE)
TARGET_LINK_LIBRARIES(innochecksum mysys mysys_ssl ${LZ4_LIBRARY})

View File

@ -2,8 +2,8 @@
# $FreeBSD$
PORTNAME?= mysql
PORTVERSION= 8.0.11
PORTREVISION?= 1
PORTVERSION= 8.0.12
PORTREVISION?= 0
CATEGORIES= databases ipv6
MASTER_SITES= MYSQL/MySQL-8.0
PKGNAMESUFFIX?= 80-server
@ -17,8 +17,8 @@ LICENSE= GPLv2
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}${DISTVERSIONSUFFIX}
SLAVEDIRS= databases/mysql80-client
USES= bison:build cmake:outsource,noninja compiler:c11 compiler:c++11-lib \
cpe libedit localbase perl5 shebangfix ssl
USES= bison:build cmake:outsource,noninja compiler:c++14-lang \
compiler:c++14-lib cpe libedit localbase perl5 shebangfix ssl
USE_PERL5= run

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1524414416
SHA256 (mysql-boost-8.0.11.tar.gz) = f40711a9bd91ab2ccea331484a6d281f806b0fdecf78f4c9e9d8a4c91208f309
SIZE (mysql-boost-8.0.11.tar.gz) = 77647598
TIMESTAMP = 1534018331
SHA256 (mysql-boost-8.0.12.tar.gz) = 99abae6660b53a462cff7c9fefb56d17f52823e9a964831aee1ae5633d9a2982
SIZE (mysql-boost-8.0.12.tar.gz) = 83152486

View File

@ -10,9 +10,9 @@
## We will need libeay32.dll and ssleay32.dll when running client executables.
COPY_OPENSSL_DLLS(copy_openssl_client)
@@ -41,11 +39,13 @@ COPY_OPENSSL_DLLS(copy_openssl_client)
INCLUDE(${MYSQL_CMAKE_SCRIPT_DIR}/compile_flags.cmake)
ADD_DEFINITIONS(${SSL_DEFINES})
+IF(FALSE)
MYSQL_ADD_EXECUTABLE(mysql completion_hash.cc mysql.cc readline.cc ../sql-common/sql_string.cc pattern_matcher.cc)
TARGET_LINK_LIBRARIES(mysql mysqlclient)

View File

@ -1,15 +1,16 @@
--- plugin/x/CMakeLists.txt.orig 2018-04-08 06:44:49 UTC
+++ plugin/x/CMakeLists.txt
@@ -82,11 +82,14 @@ INCLUDE_DIRECTORIES(
@@ -82,12 +82,15 @@ INCLUDE_DIRECTORIES(
${MYSQLX_GENERATE_DIR}
${MYSQLX_PROTOCOL_INCLUDE_DIR}
${MYSQLX_PROJECT_DIR}/client/
${CMAKE_SOURCE_DIR}/extra/regex
${MYSQLX_CLIENT_INCLUDE_DIR}
+ ${BOOST_INCLUDE_DIR}
)
INCLUDE_DIRECTORIES(SYSTEM
${PROTOBUF_INCLUDE_DIRS}
${LIBEVENT_INCLUDE_DIR}
${ICU_INCLUDE_DIRS}
+ ${SSL_INCLUDE_DIRS}
+ ${ZLIB_INCLUDE_DIR}
)

View File

@ -0,0 +1,11 @@
--- plugin/x/src/xpl_regex.cc.orig 2018-08-11 18:13:47 UTC
+++ plugin/x/src/xpl_regex.cc
@@ -53,7 +53,7 @@ bool xpl::Regex::match(const char *value
* and parse the text patter each time that xpl::Regex::match
* is called.
*/
- UnicodeString value_as_utf8{icu::UnicodeString::fromUTF8(value)};
+ icu::UnicodeString value_as_utf8{icu::UnicodeString::fromUTF8(value)};
std::unique_ptr<icu::RegexMatcher> regexp{
m_pattern->matcher(value_as_utf8, match_status)};

View File

@ -3,11 +3,11 @@
@@ -347,6 +347,8 @@ MACRO(EXTRACT_LINK_LIBRARIES target var)
GET_FILENAME_COMPONENT(lib "${lib}" NAME_WE)
STRING(REGEX REPLACE "^lib" "" lib "${lib}")
SET(${var} "${${var}}-l${lib} " )
SET(${var} "${${var}}-l${lib} " )
+ ELSEIF(lib STREQUAL "-pthread")
+ SET(${var} "${${var}}-pthread " )
+ SET(${var} "${${var}}-pthread " )
ELSE()
SET(${var} "${${var}}-l${lib} " )
SET(${var} "${${var}}-l${lib} " )
ENDIF()
@@ -430,14 +432,13 @@ ELSE()
# On Unix, most of the files end up in the bin directory

View File

@ -1,21 +1,5 @@
--- sql-common/client.cc.orig 2018-04-08 06:44:49 UTC
+++ sql-common/client.cc
@@ -2649,11 +2649,11 @@ static int ssl_verify_server_cert(Vio *v
goto error;
}
-#if OPENSSL_VERSION_NUMBER < 0x10100000L
- cn = (char *)ASN1_STRING_data(cn_asn1);
-#else /* OPENSSL_VERSION_NUMBER < 0x10100000L */
+#if OPENSSL_VERSION_NUMBER >= 0x10100000L && !defined(LIBRESSL_VERSION_NUMBER)
cn = (char *)ASN1_STRING_get0_data(cn_asn1);
-#endif /* OPENSSL_VERSION_NUMBER < 0x10100000L */
+#else /* OPENSSL_VERSION_NUMBER >= 0x10100000L */
+ cn = (char *)ASN1_STRING_data(cn_asn1);
+#endif /* OPENSSL_VERSION_NUMBER >= 0x10100000L */
// There should not be any NULL embedded in the CN
if ((size_t)ASN1_STRING_length(cn_asn1) != strlen(cn)) {
@@ -5596,7 +5596,7 @@ int STDCALL mysql_options(MYSQL *mysql,
#endif
break;

View File

@ -174,6 +174,7 @@ man/man8/mysqld.8.gz
%%DATADIR%%/mysql_sys_schema.sql
%%DATADIR%%/mysql_system_tables.sql
%%DATADIR%%/mysql_system_tables_data.sql
%%DATADIR%%/mysql_system_users.sql
%%DATADIR%%/mysql_test_data_timezone.sql
%%DATADIR%%/mysqld_multi.server
%%DATADIR%%/norwegian-ny/errmsg.sys

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= phpMyAdmin
DISTVERSION= 4.8.2
DISTVERSION= 4.8.3
CATEGORIES= databases www
MASTER_SITES= https://files.phpmyadmin.net/${PORTNAME}/${DISTVERSION}/
DISTNAME= ${PORTNAME}-${DISTVERSION}-all-languages

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1529708065
SHA256 (phpMyAdmin-4.8.2-all-languages.tar.xz) = 2b42e75274ab078a0c2ca3aff767f45d1d81849f9f762a2ed0674819f061ba1d
SIZE (phpMyAdmin-4.8.2-all-languages.tar.xz) = 5914400
TIMESTAMP = 1534970018
SHA256 (phpMyAdmin-4.8.3-all-languages.tar.xz) = 95f2692094d31c2c323d4767023583ab112ad54fff9e3af372710fcb676151af
SIZE (phpMyAdmin-4.8.3-all-languages.tar.xz) = 5996528

View File

@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME?= postgresql
DISTVERSION?= 10.4
PORTREVISION?= 1
DISTVERSION?= 10.5
CATEGORIES?= databases
MASTER_SITES= PGSQL/source/v${DISTVERSION}
PKGNAMESUFFIX?= ${PORTVERSION:R}${COMPONENT}
@ -14,9 +13,9 @@ COMMENT?= PostgreSQL is the most advanced open-source database available anywher
LICENSE= PostgreSQL
.if ${DISTVERSION:C/([0-9]*).*/\1/} == 10
CONFLICTS+= ${PORTNAME}*-9.*
CONFLICTS+= ${PORTNAME}9*
.else
CONFLICTS+= ${PORTNAME}*-9.[^${PORTVERSION:R:E}].* ${PORTNAME}10*
CONFLICTS+= ${PORTNAME}9[^${PORTVERSION:R:E}]* ${PORTNAME}10*
.endif
WRKSRC= ${WRKDIR}/postgresql-${DISTVERSION}
@ -29,7 +28,6 @@ USES+= tar:bzip2 cpe
.if !defined(NO_BUILD)
USES+= gmake
GNU_CONFIGURE= yes
LLD_UNSAFE= yes
.endif
PG_USER?= postgres
@ -102,7 +100,7 @@ USES+= pkgconfig
# (requires dump/restore if modified.)
OPTIONS_DEFINE+= INTDATE
INTDATE_DESC= Builds with 64-bit date/time type
OPTIONS_DEFAULT+= XML TZDATA INTDATE
OPTIONS_DEFAULT+= TZDATA INTDATE
.endif
.if !defined(SLAVE_ONLY)

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1525980865
SHA256 (postgresql/postgresql-10.4.tar.bz2) = 1b60812310bd5756c62d93a9f93de8c28ea63b0df254f428cd1cf1a4d9020048
SIZE (postgresql/postgresql-10.4.tar.bz2) = 20201838
TIMESTAMP = 1533847537
SHA256 (postgresql/postgresql-10.5.tar.bz2) = 6c8e616c91a45142b85c0aeb1f29ebba4a361309e86469e0fb4617b6a73c4011
SIZE (postgresql/postgresql-10.5.tar.bz2) = 20284578

View File

@ -25,6 +25,7 @@ include/pg_config.h
include/pg_config_ext.h
include/pg_config_manual.h
include/pg_config_os.h
include/pgtypes.h
include/pgtypes_date.h
include/pgtypes_error.h
include/pgtypes_interval.h
@ -1010,6 +1011,7 @@ man/man7/WITH.7.gz
%%NLS%%share/locale/cs/LC_MESSAGES/pg_config-10.mo
%%NLS%%share/locale/cs/LC_MESSAGES/pg_dump-10.mo
%%NLS%%share/locale/cs/LC_MESSAGES/pgscripts-10.mo
%%NLS%%share/locale/cs/LC_MESSAGES/psql-10.mo
%%NLS%%share/locale/de/LC_MESSAGES/ecpg-10.mo
%%NLS%%share/locale/de/LC_MESSAGES/ecpglib6-10.mo
%%NLS%%share/locale/de/LC_MESSAGES/libpq5-10.mo

View File

@ -62,8 +62,16 @@ lib/libpgcommon.a
%%DATADIR%%/extension/plpgsql.control
%%DATADIR%%/postgres.shdescription
%%NLS%%share/locale/cs/LC_MESSAGES/initdb-10.mo
%%NLS%%share/locale/cs/LC_MESSAGES/pg_archivecleanup-10.mo
%%NLS%%share/locale/cs/LC_MESSAGES/pg_basebackup-10.mo
%%NLS%%share/locale/cs/LC_MESSAGES/pg_controldata-10.mo
%%NLS%%share/locale/cs/LC_MESSAGES/pg_ctl-10.mo
%%NLS%%share/locale/cs/LC_MESSAGES/pg_resetwal-10.mo
%%NLS%%share/locale/cs/LC_MESSAGES/pg_rewind-10.mo
%%NLS%%share/locale/cs/LC_MESSAGES/pg_test_fsync-10.mo
%%NLS%%share/locale/cs/LC_MESSAGES/pg_test_timing-10.mo
%%NLS%%share/locale/cs/LC_MESSAGES/pg_upgrade-10.mo
%%NLS%%share/locale/cs/LC_MESSAGES/pg_waldump-10.mo
%%NLS%%share/locale/cs/LC_MESSAGES/plpgsql-10.mo
%%NLS%%share/locale/de/LC_MESSAGES/initdb-10.mo
%%NLS%%share/locale/de/LC_MESSAGES/pg_archivecleanup-10.mo

View File

@ -1,8 +1,7 @@
# Created by: Marc G. Fournier <scrappy@FreeBSD.org>
# $FreeBSD$
DISTVERSION?= 9.3.23
PORTREVISION= 0
DISTVERSION?= 9.3.24
PKGNAMESUFFIX?= ${DISTVERSION:R:S/.//}${COMPONENT}
MAINTAINER?= pgsql@FreeBSD.org

View File

@ -1,5 +1,5 @@
TIMESTAMP = 1525980865
SHA256 (postgresql/postgresql-9.3.23.tar.bz2) = 1d981006dce3851e470b038e88bf496a80813c614c2e89ed7d2c7fb38e66f6cb
SIZE (postgresql/postgresql-9.3.23.tar.bz2) = 17033683
TIMESTAMP = 1533847538
SHA256 (postgresql/postgresql-9.3.24.tar.bz2) = 8214a73a3b2135226bdc1394c9efdcb80f79e504ec700cf9b23d0b6bc2b60da9
SIZE (postgresql/postgresql-9.3.24.tar.bz2) = 17042985
SHA256 (postgresql/pg-9314-icu-2016-08-10.diff.gz) = 4be31ad9899d5caf9f57ad7ebfc0d14f0fcf58ad539c82fb353b016fb76c0c30
SIZE (postgresql/pg-9314-icu-2016-08-10.diff.gz) = 5583

View File

@ -26,6 +26,7 @@ include/pg_config.h
include/pg_config_ext.h
include/pg_config_manual.h
include/pg_config_os.h
include/pgtypes.h
include/pgtypes_date.h
include/pgtypes_error.h
include/pgtypes_interval.h

View File

@ -1,8 +1,7 @@
# Created by: Marc G. Fournier <scrappy@FreeBSD.org>
# $FreeBSD$
DISTVERSION?= 9.4.18
PORTREVISION= 0
DISTVERSION?= 9.4.19
PKGNAMESUFFIX?= ${PORTVERSION:R:S/.//}${COMPONENT}
MAINTAINER?= pgsql@FreeBSD.org

View File

@ -1,5 +1,5 @@
TIMESTAMP = 1525980866
SHA256 (postgresql/postgresql-9.4.18.tar.bz2) = 428337f2b2f5e3ea21b8a44f88eb89c99a07a324559b99aebe777c9abdf4c4c0
SIZE (postgresql/postgresql-9.4.18.tar.bz2) = 17828085
TIMESTAMP = 1533847539
SHA256 (postgresql/postgresql-9.4.19.tar.bz2) = 03776b036b2a05371083558e10c21cc4b90bde9eb3aff60299c4ce7c084c168b
SIZE (postgresql/postgresql-9.4.19.tar.bz2) = 17879273
SHA256 (postgresql/pg-949-icu-2016-10-02.diff.gz) = 34612e685a79874db04bc6b66c700bfc6412042840c532eef0da7832d1f70d43
SIZE (postgresql/pg-949-icu-2016-10-02.diff.gz) = 5289

View File

@ -26,6 +26,7 @@ include/pg_config.h
include/pg_config_ext.h
include/pg_config_manual.h
include/pg_config_os.h
include/pgtypes.h
include/pgtypes_date.h
include/pgtypes_error.h
include/pgtypes_interval.h

View File

@ -54,6 +54,7 @@ lib/libpgcommon.a
%%DATADIR%%/extension/plpgsql--unpackaged--1.0.sql
%%DATADIR%%/extension/plpgsql.control
%%NLS%%share/locale/cs/LC_MESSAGES/initdb-9.4.mo
%%NLS%%share/locale/cs/LC_MESSAGES/pg_basebackup-9.4.mo
%%NLS%%share/locale/cs/LC_MESSAGES/pg_controldata-9.4.mo
%%NLS%%share/locale/cs/LC_MESSAGES/pg_ctl-9.4.mo
%%NLS%%share/locale/cs/LC_MESSAGES/pg_resetxlog-9.4.mo

View File

@ -1,8 +1,7 @@
# Created by: Marc G. Fournier <scrappy@FreeBSD.org>
# $FreeBSD$
DISTVERSION?= 9.5.13
PORTREVISION= 0
DISTVERSION?= 9.5.14
PKGNAMESUFFIX?= ${PORTVERSION:R:S/.//}${COMPONENT}
MAINTAINER?= pgsql@FreeBSD.org

View File

@ -1,5 +1,5 @@
TIMESTAMP = 1525980866
SHA256 (postgresql/postgresql-9.5.13.tar.bz2) = 5408b86a0b56fd0140c6a0016bf9179bc7817fa03d5571cca346c9ab122ea5ee
SIZE (postgresql/postgresql-9.5.13.tar.bz2) = 18600185
TIMESTAMP = 1533847546
SHA256 (postgresql/postgresql-9.5.14.tar.bz2) = 3e2cd5ea0117431f72c9917c1bbad578ea68732cb284d1691f37356ca0301a4d
SIZE (postgresql/postgresql-9.5.14.tar.bz2) = 18687959
SHA256 (postgresql/pg-954-icu-2016-08-10.diff.gz) = 5fa083ec38087d6a0961642208f012e902221270708b919b92e9eedaa755e365
SIZE (postgresql/pg-954-icu-2016-08-10.diff.gz) = 5952

View File

@ -27,6 +27,7 @@ include/pg_config.h
include/pg_config_ext.h
include/pg_config_manual.h
include/pg_config_os.h
include/pgtypes.h
include/pgtypes_date.h
include/pgtypes_error.h
include/pgtypes_interval.h

View File

@ -61,9 +61,11 @@ lib/libpgcommon.a
%%DATADIR%%/extension/plpgsql.control
%%DATADIR%%/postgres.shdescription
%%NLS%%share/locale/cs/LC_MESSAGES/initdb-9.5.mo
%%NLS%%share/locale/cs/LC_MESSAGES/pg_basebackup-9.5.mo
%%NLS%%share/locale/cs/LC_MESSAGES/pg_controldata-9.5.mo
%%NLS%%share/locale/cs/LC_MESSAGES/pg_ctl-9.5.mo
%%NLS%%share/locale/cs/LC_MESSAGES/pg_resetxlog-9.5.mo
%%NLS%%share/locale/cs/LC_MESSAGES/pg_rewind-9.5.mo
%%NLS%%share/locale/cs/LC_MESSAGES/plpgsql-9.5.mo
%%NLS%%share/locale/de/LC_MESSAGES/initdb-9.5.mo
%%NLS%%share/locale/de/LC_MESSAGES/pg_basebackup-9.5.mo

View File

@ -1,8 +1,7 @@
# Created by: Marc G. Fournier <scrappy@FreeBSD.org>
# $FreeBSD$
DISTVERSION?= 9.6.9
PORTREVISION?= 1
DISTVERSION?= 9.6.10
PKGNAMESUFFIX?= ${PORTVERSION:R:S/.//}${COMPONENT}
MAINTAINER?= pgsql@FreeBSD.org

View File

@ -1,5 +1,5 @@
TIMESTAMP = 1525980867
SHA256 (postgresql/postgresql-9.6.9.tar.bz2) = b97952e3af02dc1e446f9c4188ff53021cc0eed7ed96f254ae6daf968c443e2e
SIZE (postgresql/postgresql-9.6.9.tar.bz2) = 19566222
TIMESTAMP = 1533847550
SHA256 (postgresql/postgresql-9.6.10.tar.bz2) = 8615acc56646401f0ede97a767dfd27ce07a8ae9c952afdb57163b7234fe8426
SIZE (postgresql/postgresql-9.6.10.tar.bz2) = 19991204
SHA256 (postgresql/pg-96b4-icu-2016-10-02.diff.gz) = 85f81baa0fc8f692bcf802c8645196d9e3afdef4f760cef712d940b87655486e
SIZE (postgresql/pg-96b4-icu-2016-10-02.diff.gz) = 5998

View File

@ -27,6 +27,7 @@ include/pg_config.h
include/pg_config_ext.h
include/pg_config_manual.h
include/pg_config_os.h
include/pgtypes.h
include/pgtypes_date.h
include/pgtypes_error.h
include/pgtypes_interval.h
@ -1018,7 +1019,11 @@ man/man7/WITH.7.gz
%%NLS%%share/locale/ru/LC_MESSAGES/pg_dump-9.6.mo
%%NLS%%share/locale/ru/LC_MESSAGES/pgscripts-9.6.mo
%%NLS%%share/locale/ru/LC_MESSAGES/psql-9.6.mo
%%NLS%%share/locale/sv/LC_MESSAGES/ecpg-9.6.mo
%%NLS%%share/locale/sv/LC_MESSAGES/ecpglib6-9.6.mo
%%NLS%%share/locale/sv/LC_MESSAGES/libpq5-9.6.mo
%%NLS%%share/locale/sv/LC_MESSAGES/pg_config-9.6.mo
%%NLS%%share/locale/sv/LC_MESSAGES/pg_dump-9.6.mo
%%NLS%%share/locale/sv/LC_MESSAGES/pgscripts-9.6.mo
%%NLS%%share/locale/sv/LC_MESSAGES/psql-9.6.mo
%%NLS%%share/locale/ta/LC_MESSAGES/pg_config-9.6.mo
@ -1026,6 +1031,9 @@ man/man7/WITH.7.gz
%%NLS%%share/locale/tr/LC_MESSAGES/ecpglib6-9.6.mo
%%NLS%%share/locale/tr/LC_MESSAGES/libpq5-9.6.mo
%%NLS%%share/locale/tr/LC_MESSAGES/pg_config-9.6.mo
%%NLS%%share/locale/tr/LC_MESSAGES/pg_dump-9.6.mo
%%NLS%%share/locale/tr/LC_MESSAGES/pgscripts-9.6.mo
%%NLS%%share/locale/tr/LC_MESSAGES/psql-9.6.mo
%%NLS%%share/locale/zh_CN/LC_MESSAGES/ecpg-9.6.mo
%%NLS%%share/locale/zh_CN/LC_MESSAGES/ecpglib6-9.6.mo
%%NLS%%share/locale/zh_CN/LC_MESSAGES/libpq5-9.6.mo

View File

@ -61,9 +61,11 @@ lib/libpgcommon.a
%%DATADIR%%/extension/plpgsql.control
%%DATADIR%%/postgres.shdescription
%%NLS%%share/locale/cs/LC_MESSAGES/initdb-9.6.mo
%%NLS%%share/locale/cs/LC_MESSAGES/pg_basebackup-9.6.mo
%%NLS%%share/locale/cs/LC_MESSAGES/pg_controldata-9.6.mo
%%NLS%%share/locale/cs/LC_MESSAGES/pg_ctl-9.6.mo
%%NLS%%share/locale/cs/LC_MESSAGES/pg_resetxlog-9.6.mo
%%NLS%%share/locale/cs/LC_MESSAGES/pg_rewind-9.6.mo
%%NLS%%share/locale/cs/LC_MESSAGES/plpgsql-9.6.mo
%%NLS%%share/locale/de/LC_MESSAGES/initdb-9.6.mo
%%NLS%%share/locale/de/LC_MESSAGES/pg_basebackup-9.6.mo
@ -140,9 +142,21 @@ lib/libpgcommon.a
%%NLS%%share/locale/ru/LC_MESSAGES/plpgsql-9.6.mo
%%NLS%%share/locale/ru/LC_MESSAGES/postgres-9.6.mo
%%NLS%%share/locale/sv/LC_MESSAGES/initdb-9.6.mo
%%NLS%%share/locale/sv/LC_MESSAGES/pg_basebackup-9.6.mo
%%NLS%%share/locale/sv/LC_MESSAGES/pg_controldata-9.6.mo
%%NLS%%share/locale/sv/LC_MESSAGES/pg_ctl-9.6.mo
%%NLS%%share/locale/sv/LC_MESSAGES/pg_resetxlog-9.6.mo
%%NLS%%share/locale/sv/LC_MESSAGES/pg_rewind-9.6.mo
%%NLS%%share/locale/sv/LC_MESSAGES/plpgsql-9.6.mo
%%NLS%%share/locale/sv/LC_MESSAGES/postgres-9.6.mo
%%NLS%%share/locale/tr/LC_MESSAGES/initdb-9.6.mo
%%NLS%%share/locale/tr/LC_MESSAGES/pg_basebackup-9.6.mo
%%NLS%%share/locale/tr/LC_MESSAGES/pg_controldata-9.6.mo
%%NLS%%share/locale/tr/LC_MESSAGES/pg_ctl-9.6.mo
%%NLS%%share/locale/tr/LC_MESSAGES/pg_resetxlog-9.6.mo
%%NLS%%share/locale/tr/LC_MESSAGES/pg_rewind-9.6.mo
%%NLS%%share/locale/tr/LC_MESSAGES/plpgsql-9.6.mo
%%NLS%%share/locale/tr/LC_MESSAGES/postgres-9.6.mo
%%NLS%%share/locale/zh_CN/LC_MESSAGES/initdb-9.6.mo
%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_basebackup-9.6.mo
%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_controldata-9.6.mo

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= pspg
DISTVERSION= 1.1.0
DISTVERSION= 1.2.2
CATEGORIES= databases
MAINTAINER= dg@syrec.org
@ -10,7 +10,7 @@ COMMENT= Tabular data pager designed to be used with psql
LICENSE= BSD2CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE
USES= autoreconf localbase ncurses pkgconfig readline
USES= autoreconf gmake localbase ncurses pkgconfig readline
USE_GITHUB= yes
GH_ACCOUNT= okbob
GNU_CONFIGURE= yes

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1524864405
SHA256 (okbob-pspg-1.1.0_GH0.tar.gz) = 5fe4bd0b72ee73fad41e64cafb398806784010e461e6e773334b3b750f7f2df5
SIZE (okbob-pspg-1.1.0_GH0.tar.gz) = 861442
TIMESTAMP = 1532806134
SHA256 (okbob-pspg-1.2.2_GH0.tar.gz) = e305ded645c096f4993960f33b4ef217d60077193fb06b89dd594060cf4c73fd
SIZE (okbob-pspg-1.2.2_GH0.tar.gz) = 882849

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= xtrabackup
DISTVERSION= 2.4.9
DISTVERSION= 2.4.12
CATEGORIES= databases
MASTER_SITES= https://www.percona.com/downloads/XtraBackup/Percona-XtraBackup-${PORTVERSION}/source/tarball/:xtrabackup \
SF/boost/boost/1.59.0/:boost
@ -15,22 +15,20 @@ COMMENT= OpenSource version of InnoDB backup with support of Percona extensions
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/COPYING
# quilt is required by build.sh
BUILD_DEPENDS= bash:shells/bash \
cmake:devel/cmake \
xxd:editors/vim-console
LIB_DEPENDS= libcurl.so:ftp/curl \
libev.so:devel/libev \
libgcrypt.so:security/libgcrypt \
libgpg-error.so:security/libgpg-error
RUN_DEPENDS= p5-DBD-mysql>=0:databases/p5-DBD-mysql \
qpress:archivers/qpress
BROKEN_armv6= fails to compile: cannot combine with previous 'type-name' declaration specifier
BROKEN_armv7= fails to compile: cannot combine with previous 'type-name' declaration specifier
BROKEN_mips64= fails to compile: 'fpsetmask' was not declared in this scope
BROKEN_powerpc64= fails to link: ld: final link failed: Bad value
# quilt is required by build.sh
BUILD_DEPENDS= bash:shells/bash \
cmake:devel/cmake
LIB_DEPENDS= libcurl.so:ftp/curl \
libev.so:devel/libev \
libgcrypt.so:security/libgcrypt \
libgpg-error.so:security/libgpg-error
RUN_DEPENDS= qpress:archivers/qpress
# autotool is in use for 5.1 builds
USES= alias autoreconf:build bison cpe gettext cmake:noninja libtool perl5 shebangfix
CPE_VENDOR= percona
@ -42,4 +40,8 @@ WRKSRC= ${WRKDIR}/percona-${PORTNAME}-${PORTVERSION}
PLIST_FILES= bin/xtrabackup bin/xbstream bin/innobackupex bin/xbcrypt \
bin/xbcloud bin/xbcloud_osenv
# Not sure why it's trying to install mysql client libraries now
post-install:
${RM} -rf ${STAGEDIR}${LOCALBASE}/lib
.include <bsd.port.mk>

View File

@ -1,5 +1,5 @@
TIMESTAMP = 1521236900
SHA256 (percona-xtrabackup-2.4.9.tar.gz) = 23c1e42ad4161b38edef126cf600e28779788a4d1736cadbb8e8f3dc219135a7
SIZE (percona-xtrabackup-2.4.9.tar.gz) = 58001052
TIMESTAMP = 1533575308
SHA256 (percona-xtrabackup-2.4.12.tar.gz) = de02cfd5bde96ddbf50339ef3a4646004dde52239698df45c19ed3e8ee40738e
SIZE (percona-xtrabackup-2.4.12.tar.gz) = 57232309
SHA256 (boost_1_59_0.tar.bz2) = 727a932322d94287b62abb1bd2d41723eec4356a7728909e38adb65ca25241ca
SIZE (boost_1_59_0.tar.bz2) = 70389425

Some files were not shown because too many files have changed in this diff Show More