This repository has been archived by the owner on Dec 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'freebsd/master' into trueos-master
- Loading branch information
Showing
803 changed files
with
12,215 additions
and
8,031 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
TIMESTAMP = 1550388827 | ||
SHA256 (rubygem/atk-3.3.2.gem) = 001cd0c39a4f1a66a3a9e607b6fbdca052a3dc99f98a1ee55ad484e7798f859d | ||
SIZE (rubygem/atk-3.3.2.gem) = 15872 | ||
TIMESTAMP = 1552209293 | ||
SHA256 (rubygem/atk-3.3.3.gem) = aad395ea1491b2b65e748fa239253c75891a33a11835438b2000f50c3c445ea9 | ||
SIZE (rubygem/atk-3.3.3.gem) = 15872 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
|
||
PORTNAME= ark | ||
DISTVERSION= ${KDE_APPLICATIONS_VERSION} | ||
PORTREVISION= 3 | ||
CATEGORIES= archivers kde kde-applications | ||
|
||
MAINTAINER= [email protected] | ||
|
@@ -11,7 +12,7 @@ LICENSE= GPLv2+ | |
LICENSE_FILE= ${WRKSRC}/COPYING | ||
|
||
USES= cmake compiler:c++11-lang gettext libarchive kde:5 \ | ||
qt:5 tar:xz | ||
qt:5 shared-mime-info tar:xz | ||
USE_KDE= archive auth bookmarks codecs completion config configwidgets \ | ||
coreaddons crash dbusaddons doctools ecm i18n iconthemes \ | ||
itemmodels itemviews jobwidgets khtml kio parts pty service \ | ||
|
@@ -22,13 +23,17 @@ USE_QT= concurrent core dbus gui network widgets xml \ | |
USE_LDCONFIG= yes | ||
|
||
OPTIONS_DEFINE= 7ZIP RAR ZIP DOCS | ||
OPTIONS_DEFAULT= ${OPTIONS_DEFINE} | ||
OPTIONS_DEFAULT= 7ZIP ZIP DOCS | ||
OPTIONS_DEFAULT_i386= RAR | ||
OPTIONS_DEFAULT_amd64= RAR | ||
OPTIONS_SUB= YES | ||
|
||
7ZIP_DESC= Support for 7-Zip archives | ||
# The 7ZIP and RAR options only need runtime dependencies; | ||
# the port builds identically with or without them. | ||
7ZIP_DESC= Support for 7-Zip archives (runtime) | ||
7ZIP_RUN_DEPENDS= 7z:archivers/p7zip | ||
|
||
RAR_DESC= Support for RAR archives | ||
RAR_DESC= Support for RAR archives (runtime) | ||
RAR_RUN_DEPENDS= unrar:archivers/unrar \ | ||
rar:archivers/rar | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
commit a3bcf9becddd5725725089add15fbae39c79757e | ||
Author: Elvis Angelaccio <[email protected]> | ||
Date: Sat Mar 9 13:05:35 2019 +0100 | ||
|
||
Fix creation of tar archives | ||
|
||
Usage of QString::compare() breaks the creation of tar archives, because | ||
`zst` is "bigger" than `tar` which means ark would use the `zstd` filter | ||
even when creating a simple tar archive. | ||
|
||
BUG: 405136 | ||
FIXED-IN: 19.03.80 | ||
|
||
diff --git a/plugins/libarchive/readwritelibarchiveplugin.cpp b/plugins/libarchive/readwritelibarchiveplugin.cpp | ||
index 38f62881..e83d0087 100644 | ||
--- plugins/libarchive/readwritelibarchiveplugin.cpp | ||
+++ plugins/libarchive/readwritelibarchiveplugin.cpp | ||
@@ -352,7 +352,7 @@ bool ReadWriteLibarchivePlugin::initializeNewFileWriterFilters(const Compression | ||
qCDebug(ARK) << "Detected lz4 compression for new file"; | ||
ret = archive_write_add_filter_lz4(m_archiveWriter.data()); | ||
#ifdef HAVE_ZSTD_SUPPORT | ||
- } else if (filename().rightRef(3).compare(QLatin1String("zst"), Qt::CaseInsensitive)) { | ||
+ } else if (filename().right(3).toUpper() == QLatin1String("ZST")) { | ||
qCDebug(ARK) << "Detected zstd compression for new file"; | ||
ret = archive_write_add_filter_zstd(m_archiveWriter.data()); | ||
#endif |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Support for 7zip and rar archives requires the appropriate executables. | ||
If ark has been packaged without options 7ZIP or RAR, you can install | ||
archivers/p7zip (for 7ZIP) or archivers/unrar and archivers/rar (for RAR) | ||
to allow ark to handle those archives. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
TIMESTAMP = 1551382525 | ||
SHA256 (kstars-3.1.0.tar.xz) = 6116decc689c2594029e79a7fcd7e6e75c5d68cd6a8b25bac4e7b90c2717f828 | ||
SIZE (kstars-3.1.0.tar.xz) = 67769080 | ||
TIMESTAMP = 1552209020 | ||
SHA256 (kstars-3.1.1.tar.xz) = 60867ce1488e2a47757666d86765abed4950360c33e8ba28acd7aa6137cab491 | ||
SIZE (kstars-3.1.1.tar.xz) = 70308140 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,8 @@ | |
# $FreeBSD$ | ||
|
||
PORTNAME= audacity | ||
PORTVERSION= 2.3.0 | ||
PORTVERSION= 2.3.1 | ||
DISTVERSIONPREFIX= Audacity- | ||
PORTREVISION= 5 | ||
CATEGORIES= audio | ||
|
||
MAINTAINER= [email protected] | ||
|
@@ -25,7 +24,9 @@ LIB_DEPENDS= libasound.so:audio/alsa-lib \ | |
libsoxr.so:audio/libsoxr \ | ||
libsndfile.so:audio/libsndfile | ||
|
||
USES= autoreconf compiler:c++11-lib cpe desktop-file-utils gettext-tools gmake iconv libtool pkgconfig shared-mime-info shebangfix dos2unix localbase | ||
USES= autoreconf compiler:c++11-lib cpe desktop-file-utils dos2unix \ | ||
gettext-tools gmake gnome iconv libtool localbase pkgconfig \ | ||
shared-mime-info shebangfix | ||
GNU_CONFIGURE= yes | ||
NLS_USES= gettext-runtime | ||
NLS_CONFIGURE_ENABLE= nls | ||
|
@@ -39,8 +40,9 @@ DOS2UNIX_GLOB= Makefile.* *.c* *.h | |
SHEBANG_FILES= lib-src/lv2/build | ||
USE_GITHUB= yes | ||
|
||
OPTIONS_DEFINE= NLS DEBUG DOCS DYNLOAD FFMPEG FLAC ID3TAG LADSPA LAME LV2 \ | ||
MAD MOD_SCRIPT_PIPE MOD_NYQ_BENCH SBSMS SOUNDTOUCH TWOLAME VAMP VORBIS VST | ||
OPTIONS_DEFINE= DEBUG DOCS DYNLOAD FFMPEG FLAC ID3TAG LADSPA LAME LV2 MAD \ | ||
MOD_NYQ_BENCH MOD_SCRIPT_PIPE NLS SBSMS SOUNDTOUCH STATIC_WX \ | ||
TWOLAME VAMP VORBIS VST | ||
OPTIONS_DEFAULT= FLAC ID3TAG LADSPA MAD \ | ||
SBSMS SOUNDTOUCH TWOLAME VAMP VORBIS VST | ||
|
||
|
@@ -57,6 +59,7 @@ MOD_SCRIPT_PIPE_DESC= mod-script-pipe scripting support | |
MOD_NYQ_BENCH_DESC= Enable Nyquist Workbench | ||
SBSMS_DESC= Use libsbsms for pitch and tempo changing | ||
SOUNDTOUCH_DESC= Use libSoundTouch for pitch and tempo changing | ||
STATIC_WX_DESC= Link wx statically | ||
TAGLIB_DESC= Use TagLib for metadata support | ||
TWOLAME_DESC= Use libtwolame for MP2 export support | ||
VAMP_DESC= Vamp plug-in support | ||
|
@@ -128,6 +131,8 @@ SOUNDTOUCH_LIB_DEPENDS= libSoundTouch.so:audio/soundtouch | |
|
||
SSE_CONFIGURE_ENABLE= sse | ||
|
||
STATIC_WX_ENABLE= static-wx | ||
|
||
TWOLAME_CONFIGURE_WITH= libtwolame=system | ||
TWOLAME_LIB_DEPENDS= libtwolame.so:audio/twolame | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
TIMESTAMP = 1538360236 | ||
SHA256 (audacity-audacity-Audacity-2.3.0_GH0.tar.gz) = 37127f68dceeb5da08d008ec9373a65e2d5d0a9b937c808a5d7c3b88aa9e275e | ||
SIZE (audacity-audacity-Audacity-2.3.0_GH0.tar.gz) = 27479664 | ||
TIMESTAMP = 1552123965 | ||
SHA256 (audacity-audacity-Audacity-2.3.1_GH0.tar.gz) = 2ef1c06f9cdc2ee3d315b8e575dc2bea5b372f4f415f3dc6570c3cfca0f93321 | ||
SIZE (audacity-audacity-Audacity-2.3.1_GH0.tar.gz) = 27618480 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.