forked from Lainports/opnsense-ports
*/*: sync with upstream
Taken from: HardenedBSD
This commit is contained in:
parent
71066798cb
commit
0c6dfbfc58
213 changed files with 2220 additions and 931 deletions
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= josm
|
||||
PORTVERSION= 15238
|
||||
PORTVERSION= 15322
|
||||
CATEGORIES= astro java
|
||||
MASTER_SITES= http://josm.openstreetmap.de/download/ \
|
||||
http://mirror.amdmi3.ru/distfiles/
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1562860663
|
||||
SHA256 (josm-snapshot-15238.jar) = fb85349f156c7fce2f5e8fdb7cb276365b743166cce2a0c1568514b2e823087e
|
||||
SIZE (josm-snapshot-15238.jar) = 13755257
|
||||
TIMESTAMP = 1567001712
|
||||
SHA256 (josm-snapshot-15322.jar) = 31b8d0b5d58a67e944324dbf9336ebcadedf7a00a744e9fc815ce29d8deeccc4
|
||||
SIZE (josm-snapshot-15322.jar) = 13822930
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= kstars
|
||||
DISTVERSION= 3.3.3
|
||||
DISTVERSION= 3.3.4
|
||||
PORTEPOCH= 1
|
||||
CATEGORIES= astro kde
|
||||
MASTER_SITES= KDE/stable/${PORTNAME}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1564942877
|
||||
SHA256 (kstars-3.3.3.tar.xz) = 15abb3f0a2b17d7dff81c8b890ef0100333d1ef1e41e4232e29cf21c8eed7946
|
||||
SIZE (kstars-3.3.3.tar.xz) = 70764304
|
||||
TIMESTAMP = 1567023349
|
||||
SHA256 (kstars-3.3.4.tar.xz) = 0579dabaf8a024bcea1e7c97cc3284a013da8d2bc14a95dcdb74f088e18e86d9
|
||||
SIZE (kstars-3.3.4.tar.xz) = 70764724
|
||||
|
|
|
|||
|
|
@ -16,12 +16,13 @@ LICENSE_FILE_GFDL= ${WRKSRC}/COPYING.FDL
|
|||
|
||||
LIB_DEPENDS= libogg.so:audio/libogg
|
||||
|
||||
USES= compiler:c11 iconv libtool pathfix pkgconfig tar:xz
|
||||
USES= autoreconf compiler:c11 iconv libtool pathfix pkgconfig tar:xz
|
||||
|
||||
USE_LDCONFIG= yes
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ARGS= --enable-static \
|
||||
--disable-sse \
|
||||
--disable-vsx \
|
||||
--with-ogg="${LOCALBASE}" \
|
||||
--disable-doxygen-docs \
|
||||
--disable-thorough-tests \
|
||||
|
|
|
|||
20
audio/flac/files/patch-configure.ac
Normal file
20
audio/flac/files/patch-configure.ac
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
--- configure.ac.orig 2019-08-04 08:26:40 UTC
|
||||
+++ configure.ac
|
||||
@@ -69,7 +69,7 @@ AC_C_INLINE
|
||||
AC_C_VARARRAYS
|
||||
AC_C_TYPEOF
|
||||
|
||||
-AC_CHECK_HEADERS([stdint.h inttypes.h byteswap.h sys/param.h sys/ioctl.h termios.h x86intrin.h cpuid.h])
|
||||
+AC_CHECK_HEADERS([stdint.h inttypes.h byteswap.h sys/param.h sys/ioctl.h termios.h x86intrin.h cpuid.h sys/auxv.h])
|
||||
|
||||
XIPH_C_BSWAP32
|
||||
XIPH_C_BSWAP16
|
||||
@@ -104,6 +104,8 @@ AC_CHECK_TYPES(socklen_t, [], [])
|
||||
dnl check for getopt in standard library
|
||||
dnl AC_CHECK_FUNCS(getopt_long , , [LIBOBJS="$LIBOBJS getopt.o getopt1.o"] )
|
||||
AC_CHECK_FUNCS(getopt_long, [], [])
|
||||
+
|
||||
+AC_CHECK_FUNCS([getauxval elf_aux_info])
|
||||
|
||||
AC_CHECK_SIZEOF(void*,1)
|
||||
|
||||
48
audio/flac/files/patch-src_libFLAC_cpu.c
Normal file
48
audio/flac/files/patch-src_libFLAC_cpu.c
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
--- src/libFLAC/cpu.c.orig 2018-08-20 08:17:21 UTC
|
||||
+++ src/libFLAC/cpu.c
|
||||
@@ -53,7 +53,7 @@
|
||||
#define dfprintf(file, format, ...)
|
||||
#endif
|
||||
|
||||
-#if defined FLAC__CPU_PPC
|
||||
+#if defined(HAVE_SYS_AUXV_H)
|
||||
#include <sys/auxv.h>
|
||||
#endif
|
||||
|
||||
@@ -236,7 +236,10 @@ x86_cpu_info (FLAC__CPUInfo *info)
|
||||
static void
|
||||
ppc_cpu_info (FLAC__CPUInfo *info)
|
||||
{
|
||||
-#if defined FLAC__CPU_PPC
|
||||
+ info->ppc.arch_2_07 = false;
|
||||
+ info->ppc.arch_3_00 = false;
|
||||
+
|
||||
+#if defined(FLAC__CPU_PPC)
|
||||
#ifndef PPC_FEATURE2_ARCH_3_00
|
||||
#define PPC_FEATURE2_ARCH_3_00 0x00800000
|
||||
#endif
|
||||
@@ -245,14 +248,21 @@ ppc_cpu_info (FLAC__CPUInfo *info)
|
||||
#define PPC_FEATURE2_ARCH_2_07 0x80000000
|
||||
#endif
|
||||
|
||||
+#if defined(HAVE_GETAUXVAL)
|
||||
if (getauxval(AT_HWCAP2) & PPC_FEATURE2_ARCH_3_00) {
|
||||
info->ppc.arch_3_00 = true;
|
||||
} else if (getauxval(AT_HWCAP2) & PPC_FEATURE2_ARCH_2_07) {
|
||||
info->ppc.arch_2_07 = true;
|
||||
}
|
||||
-#else
|
||||
- info->ppc.arch_2_07 = false;
|
||||
- info->ppc.arch_3_00 = false;
|
||||
+#elif defined(HAVE_ELF_AUX_INFO)
|
||||
+ long hwcaps;
|
||||
+ elf_aux_info(AT_HWCAP2, &hwcaps, sizeof(hwcaps));
|
||||
+ if (hwcaps & PPC_FEATURE2_ARCH_3_00) {
|
||||
+ info->ppc.arch_3_00 = true;
|
||||
+ } else if (hwcaps & PPC_FEATURE2_ARCH_2_07) {
|
||||
+ info->ppc.arch_2_07 = true;
|
||||
+ }
|
||||
+#endif
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= sqlalchemy
|
||||
PORTVERSION= 1.3.7
|
||||
PORTVERSION= 1.3.8
|
||||
CATEGORIES= databases python
|
||||
MASTER_SITES= CHEESESHOP
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1565889705
|
||||
SHA256 (SQLAlchemy-1.3.7.tar.gz) = 0459bf0ea6478f3e904de074d65769a11d74cdc34438ab3159250c96d089aef0
|
||||
SIZE (SQLAlchemy-1.3.7.tar.gz) = 5914400
|
||||
TIMESTAMP = 1567016139
|
||||
SHA256 (SQLAlchemy-1.3.8.tar.gz) = 2f8ff566a4d3a92246d367f2e9cd6ed3edeef670dcd6dda6dfdc9efed88bcd80
|
||||
SIZE (SQLAlchemy-1.3.8.tar.gz) = 5933959
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= arel-helpers
|
||||
PORTVERSION= 2.9.1
|
||||
PORTVERSION= 2.10.0
|
||||
CATEGORIES= databases rubygems
|
||||
MASTER_SITES= RG
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1561910742
|
||||
SHA256 (rubygem/arel-helpers-2.9.1.gem) = 3c4eb88db50d58cd53d21bcae5baa33895b8a8354d7ab4a133d2a296a08e42d8
|
||||
SIZE (rubygem/arel-helpers-2.9.1.gem) = 12288
|
||||
TIMESTAMP = 1566997904
|
||||
SHA256 (rubygem/arel-helpers-2.10.0.gem) = 117b3a7c4cb0e43f6629400ba3a34e39ee880b6a3c6f70209ca747205a166551
|
||||
SIZE (rubygem/arel-helpers-2.10.0.gem) = 12288
|
||||
|
|
|
|||
|
|
@ -1,8 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= latte-dock
|
||||
DISTVERSION= 0.8.9
|
||||
PORTREVISION= 1
|
||||
DISTVERSION= 0.9.1
|
||||
CATEGORIES= deskutils kde
|
||||
MASTER_SITES= KDE/stable/latte-dock
|
||||
|
||||
|
|
@ -16,9 +15,10 @@ LIB_DEPENDS= libxcb-util.so:x11/xcb-util
|
|||
|
||||
USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz
|
||||
USE_KDE= activities archive attica auth codecs config configwidgets \
|
||||
coreaddons crash dbusaddons globalaccel i18n iconthemes \
|
||||
kdeclarative newstuff notifications package plasma-framework service \
|
||||
wayland widgetsaddons windowsystem xmlgui \
|
||||
coreaddons crash dbusaddons globalaccel guiaddons i18n \
|
||||
iconthemes libksysguard kdeclarative newstuff notifications \
|
||||
package plasma-framework service wayland widgetsaddons \
|
||||
windowsystem xmlgui \
|
||||
ecm_build
|
||||
USE_QT= core dbus declarative gui network widgets x11extras xml \
|
||||
buildtools_build qmake_build
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1561768635
|
||||
SHA256 (latte-dock-0.8.9.tar.xz) = b2e7e6441fed707a1c33cb83821256e035966bb8efb25cd5c357669686ea77ce
|
||||
SIZE (latte-dock-0.8.9.tar.xz) = 668104
|
||||
TIMESTAMP = 1567024142
|
||||
SHA256 (latte-dock-0.9.1.tar.xz) = a76f19fde4461a6c53966aabecb0b3eb386230cb7261981f846e967661485193
|
||||
SIZE (latte-dock-0.9.1.tar.xz) = 696660
|
||||
|
|
|
|||
|
|
@ -0,0 +1,11 @@
|
|||
--- app/settings/delegates/persistentmenu.cpp.orig 2019-08-28 20:32:23 UTC
|
||||
+++ app/settings/delegates/persistentmenu.cpp
|
||||
@@ -20,7 +20,7 @@
|
||||
#include "persistentmenu.h"
|
||||
|
||||
|
||||
-PersistentMenu::PersistentMenu(QWidget *parent = 0)
|
||||
+PersistentMenu::PersistentMenu(QWidget *parent)
|
||||
: QMenu (parent),
|
||||
m_blockHide(false)
|
||||
{
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
--- app/view/visibilitymanager.h.orig 2019-08-28 20:31:04 UTC
|
||||
+++ app/view/visibilitymanager.h
|
||||
@@ -25,6 +25,8 @@
|
||||
#include "../plasma/quick/containmentview.h"
|
||||
#include "../../liblatte2/types.h"
|
||||
|
||||
+#include <array>
|
||||
+
|
||||
// Qt
|
||||
#include <QObject>
|
||||
#include <QTimer>
|
||||
|
|
@ -1,9 +1,39 @@
|
|||
bin/latte-dock
|
||||
etc/xdg/latte-indicators.knsrc
|
||||
etc/xdg/latte-layouts.knsrc
|
||||
%%QT_PLUGINDIR%%/kpackage/packagestructure/latte_packagestructure_indicator.so
|
||||
%%QT_PLUGINDIR%%/plasma_containmentactions_lattecontextmenu.so
|
||||
%%QT_QMLDIR%%/org/kde/latte/BadgeText.qml
|
||||
%%QT_QMLDIR%%/org/kde/latte/GlowPoint.qml
|
||||
%%QT_QMLDIR%%/org/kde/latte/liblattedockplugin.so
|
||||
%%QT_QMLDIR%%/org/kde/latte/components/AddItem.qml
|
||||
%%QT_QMLDIR%%/org/kde/latte/components/AddingArea.qml
|
||||
%%QT_QMLDIR%%/org/kde/latte/components/BadgeText.qml
|
||||
%%QT_QMLDIR%%/org/kde/latte/components/CheckBox.qml
|
||||
%%QT_QMLDIR%%/org/kde/latte/components/CheckBoxesColumn.qml
|
||||
%%QT_QMLDIR%%/org/kde/latte/components/ComboBox.qml
|
||||
%%QT_QMLDIR%%/org/kde/latte/components/ComboBoxButton.qml
|
||||
%%QT_QMLDIR%%/org/kde/latte/components/ExternalShadow.qml
|
||||
%%QT_QMLDIR%%/org/kde/latte/components/GlowPoint.qml
|
||||
%%QT_QMLDIR%%/org/kde/latte/components/Header.qml
|
||||
%%QT_QMLDIR%%/org/kde/latte/components/HeaderSwitch.qml
|
||||
%%QT_QMLDIR%%/org/kde/latte/components/IndicatorItem.qml
|
||||
%%QT_QMLDIR%%/org/kde/latte/components/ItemDelegate.qml
|
||||
%%QT_QMLDIR%%/org/kde/latte/components/Label.qml
|
||||
%%QT_QMLDIR%%/org/kde/latte/components/Slider.qml
|
||||
%%QT_QMLDIR%%/org/kde/latte/components/SpinBox.qml
|
||||
%%QT_QMLDIR%%/org/kde/latte/components/SubHeader.qml
|
||||
%%QT_QMLDIR%%/org/kde/latte/components/Switch.qml
|
||||
%%QT_QMLDIR%%/org/kde/latte/components/TextField.qml
|
||||
%%QT_QMLDIR%%/org/kde/latte/components/ToolTip.qml
|
||||
%%QT_QMLDIR%%/org/kde/latte/components/code/ColorizerTools.js
|
||||
%%QT_QMLDIR%%/org/kde/latte/components/private/ButtonShadow.qml
|
||||
%%QT_QMLDIR%%/org/kde/latte/components/private/CheckBoxStyle.qml
|
||||
%%QT_QMLDIR%%/org/kde/latte/components/private/DefaultListItemBackground.qml
|
||||
%%QT_QMLDIR%%/org/kde/latte/components/private/MobileCursor.qml
|
||||
%%QT_QMLDIR%%/org/kde/latte/components/private/MobileTextActionsToolBar.qml
|
||||
%%QT_QMLDIR%%/org/kde/latte/components/private/RoundShadow.qml
|
||||
%%QT_QMLDIR%%/org/kde/latte/components/private/SwitchStyle.qml
|
||||
%%QT_QMLDIR%%/org/kde/latte/components/private/TextFieldFocus.qml
|
||||
%%QT_QMLDIR%%/org/kde/latte/components/qmldir
|
||||
%%QT_QMLDIR%%/org/kde/latte/liblatte2plugin.so
|
||||
%%QT_QMLDIR%%/org/kde/latte/qmldir
|
||||
share/applications/org.kde.latte-dock.desktop
|
||||
share/dbus-1/interfaces/org.kde.LatteDock.xml
|
||||
|
|
@ -15,191 +45,192 @@ share/icons/hicolor/32x32/apps/latte-dock.svg
|
|||
share/icons/hicolor/48x48/apps/latte-dock.svg
|
||||
share/icons/hicolor/scalable/apps/latte-dock.svg
|
||||
share/knotifications5/lattedock.notifyrc
|
||||
share/kservices5/kwin-script-activatelattelaunchermenu.desktop
|
||||
share/kservices5/plasma-applet-audoban.applet.separator.desktop
|
||||
share/kservices5/plasma-applet-org.kde.latte.containment.desktop
|
||||
share/kservices5/plasma-applet-org.kde.latte.plasmoid.desktop
|
||||
share/kservices5/plasma-applet-org.kde.latte.spacer.desktop
|
||||
share/kservices5/plasma-containmentactions-lattecontextmenu.desktop
|
||||
share/kservices5/plasma-shell-org.kde.latte.shell.desktop
|
||||
share/kwin/scripts/activatelattelaunchermenu/contents/code/main.js
|
||||
share/kwin/scripts/activatelattelaunchermenu/metadata.desktop
|
||||
share/kservicetypes5/latte-indicator.desktop
|
||||
share/latte/indicators/default/metadata.desktop
|
||||
share/latte/indicators/default/package/config/config.qml
|
||||
share/latte/indicators/default/package/config/main.xml
|
||||
share/latte/indicators/default/package/ui/main.qml
|
||||
share/latte/indicators/org.kde.latte.plasma/metadata.desktop
|
||||
share/latte/indicators/org.kde.latte.plasma/package/config/config.qml
|
||||
share/latte/indicators/org.kde.latte.plasma/package/config/main.xml
|
||||
share/latte/indicators/org.kde.latte.plasma/package/ui/BackLayer.qml
|
||||
share/latte/indicators/org.kde.latte.plasma/package/ui/FrontLayer.qml
|
||||
share/latte/indicators/org.kde.latte.plasma/package/ui/main.qml
|
||||
share/locale/ar/LC_MESSAGES/latte-dock.mo
|
||||
share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.latte.containment.mo
|
||||
share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.latte.plasmoid.mo
|
||||
share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.latte.spacer.mo
|
||||
share/locale/ast/LC_MESSAGES/latte-dock.mo
|
||||
share/locale/ast/LC_MESSAGES/plasma_applet_audoban.applet.separator.mo
|
||||
share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.latte.containment.mo
|
||||
share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.latte.plasmoid.mo
|
||||
share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.latte.spacer.mo
|
||||
share/locale/ast/LC_MESSAGES/plasma_containmentactions_lattecontextmenu.mo
|
||||
share/locale/ca/LC_MESSAGES/latte-dock.mo
|
||||
share/locale/ca/LC_MESSAGES/plasma_applet_audoban.applet.separator.mo
|
||||
share/locale/ca/LC_MESSAGES/latte_indicator_org.kde.latte.default.mo
|
||||
share/locale/ca/LC_MESSAGES/latte_indicator_org.kde.latte.plasma.mo
|
||||
share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.latte.containment.mo
|
||||
share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.latte.plasmoid.mo
|
||||
share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.latte.spacer.mo
|
||||
share/locale/ca/LC_MESSAGES/plasma_containmentactions_lattecontextmenu.mo
|
||||
share/locale/ca@valencia/LC_MESSAGES/latte-dock.mo
|
||||
share/locale/ca@valencia/LC_MESSAGES/plasma_applet_audoban.applet.separator.mo
|
||||
share/locale/ca@valencia/LC_MESSAGES/latte_indicator_org.kde.latte.default.mo
|
||||
share/locale/ca@valencia/LC_MESSAGES/latte_indicator_org.kde.latte.plasma.mo
|
||||
share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.latte.containment.mo
|
||||
share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.latte.plasmoid.mo
|
||||
share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.latte.spacer.mo
|
||||
share/locale/ca@valencia/LC_MESSAGES/plasma_containmentactions_lattecontextmenu.mo
|
||||
share/locale/cs/LC_MESSAGES/latte-dock.mo
|
||||
share/locale/cs/LC_MESSAGES/plasma_applet_audoban.applet.separator.mo
|
||||
share/locale/cs/LC_MESSAGES/latte_indicator_org.kde.latte.default.mo
|
||||
share/locale/cs/LC_MESSAGES/latte_indicator_org.kde.latte.plasma.mo
|
||||
share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.latte.containment.mo
|
||||
share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.latte.plasmoid.mo
|
||||
share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.latte.spacer.mo
|
||||
share/locale/cs/LC_MESSAGES/plasma_containmentactions_lattecontextmenu.mo
|
||||
share/locale/da/LC_MESSAGES/latte-dock.mo
|
||||
share/locale/da/LC_MESSAGES/plasma_applet_audoban.applet.separator.mo
|
||||
share/locale/da/LC_MESSAGES/plasma_applet_org.kde.latte.containment.mo
|
||||
share/locale/da/LC_MESSAGES/plasma_applet_org.kde.latte.plasmoid.mo
|
||||
share/locale/da/LC_MESSAGES/plasma_applet_org.kde.latte.spacer.mo
|
||||
share/locale/de/LC_MESSAGES/latte-dock.mo
|
||||
share/locale/de/LC_MESSAGES/plasma_applet_audoban.applet.separator.mo
|
||||
share/locale/de/LC_MESSAGES/latte_indicator_org.kde.latte.default.mo
|
||||
share/locale/de/LC_MESSAGES/plasma_applet_org.kde.latte.containment.mo
|
||||
share/locale/de/LC_MESSAGES/plasma_applet_org.kde.latte.plasmoid.mo
|
||||
share/locale/de/LC_MESSAGES/plasma_applet_org.kde.latte.spacer.mo
|
||||
share/locale/de/LC_MESSAGES/plasma_containmentactions_lattecontextmenu.mo
|
||||
share/locale/el/LC_MESSAGES/latte-dock.mo
|
||||
share/locale/el/LC_MESSAGES/plasma_applet_audoban.applet.separator.mo
|
||||
share/locale/el/LC_MESSAGES/plasma_applet_org.kde.latte.containment.mo
|
||||
share/locale/el/LC_MESSAGES/plasma_applet_org.kde.latte.plasmoid.mo
|
||||
share/locale/el/LC_MESSAGES/plasma_applet_org.kde.latte.spacer.mo
|
||||
share/locale/en_GB/LC_MESSAGES/latte-dock.mo
|
||||
share/locale/en_GB/LC_MESSAGES/plasma_applet_audoban.applet.separator.mo
|
||||
share/locale/en_GB/LC_MESSAGES/latte_indicator_org.kde.latte.default.mo
|
||||
share/locale/en_GB/LC_MESSAGES/latte_indicator_org.kde.latte.plasma.mo
|
||||
share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.latte.containment.mo
|
||||
share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.latte.plasmoid.mo
|
||||
share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.latte.spacer.mo
|
||||
share/locale/en_GB/LC_MESSAGES/plasma_containmentactions_lattecontextmenu.mo
|
||||
share/locale/es/LC_MESSAGES/latte-dock.mo
|
||||
share/locale/es/LC_MESSAGES/plasma_applet_audoban.applet.separator.mo
|
||||
share/locale/es/LC_MESSAGES/latte_indicator_org.kde.latte.default.mo
|
||||
share/locale/es/LC_MESSAGES/latte_indicator_org.kde.latte.plasma.mo
|
||||
share/locale/es/LC_MESSAGES/plasma_applet_org.kde.latte.containment.mo
|
||||
share/locale/es/LC_MESSAGES/plasma_applet_org.kde.latte.plasmoid.mo
|
||||
share/locale/es/LC_MESSAGES/plasma_applet_org.kde.latte.spacer.mo
|
||||
share/locale/es/LC_MESSAGES/plasma_containmentactions_lattecontextmenu.mo
|
||||
share/locale/eu/LC_MESSAGES/latte-dock.mo
|
||||
share/locale/eu/LC_MESSAGES/plasma_applet_audoban.applet.separator.mo
|
||||
share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.latte.containment.mo
|
||||
share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.latte.plasmoid.mo
|
||||
share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.latte.spacer.mo
|
||||
share/locale/eu/LC_MESSAGES/plasma_containmentactions_lattecontextmenu.mo
|
||||
share/locale/fi/LC_MESSAGES/latte-dock.mo
|
||||
share/locale/fi/LC_MESSAGES/plasma_applet_audoban.applet.separator.mo
|
||||
share/locale/fi/LC_MESSAGES/latte_indicator_org.kde.latte.default.mo
|
||||
share/locale/fi/LC_MESSAGES/latte_indicator_org.kde.latte.plasma.mo
|
||||
share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.latte.containment.mo
|
||||
share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.latte.plasmoid.mo
|
||||
share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.latte.spacer.mo
|
||||
share/locale/fi/LC_MESSAGES/plasma_containmentactions_lattecontextmenu.mo
|
||||
share/locale/fr/LC_MESSAGES/latte-dock.mo
|
||||
share/locale/fr/LC_MESSAGES/plasma_applet_audoban.applet.separator.mo
|
||||
share/locale/fr/LC_MESSAGES/latte_indicator_org.kde.latte.default.mo
|
||||
share/locale/fr/LC_MESSAGES/latte_indicator_org.kde.latte.plasma.mo
|
||||
share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.latte.containment.mo
|
||||
share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.latte.plasmoid.mo
|
||||
share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.latte.spacer.mo
|
||||
share/locale/fr/LC_MESSAGES/plasma_containmentactions_lattecontextmenu.mo
|
||||
share/locale/gl/LC_MESSAGES/latte-dock.mo
|
||||
share/locale/gl/LC_MESSAGES/plasma_applet_audoban.applet.separator.mo
|
||||
share/locale/gl/LC_MESSAGES/latte_indicator_org.kde.latte.default.mo
|
||||
share/locale/gl/LC_MESSAGES/latte_indicator_org.kde.latte.plasma.mo
|
||||
share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.latte.containment.mo
|
||||
share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.latte.plasmoid.mo
|
||||
share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.latte.spacer.mo
|
||||
share/locale/gl/LC_MESSAGES/plasma_containmentactions_lattecontextmenu.mo
|
||||
share/locale/id/LC_MESSAGES/latte-dock.mo
|
||||
share/locale/id/LC_MESSAGES/latte_indicator_org.kde.latte.default.mo
|
||||
share/locale/id/LC_MESSAGES/latte_indicator_org.kde.latte.plasma.mo
|
||||
share/locale/id/LC_MESSAGES/plasma_applet_org.kde.latte.containment.mo
|
||||
share/locale/id/LC_MESSAGES/plasma_applet_org.kde.latte.plasmoid.mo
|
||||
share/locale/id/LC_MESSAGES/plasma_containmentactions_lattecontextmenu.mo
|
||||
share/locale/it/LC_MESSAGES/latte-dock.mo
|
||||
share/locale/it/LC_MESSAGES/plasma_applet_audoban.applet.separator.mo
|
||||
share/locale/it/LC_MESSAGES/latte_indicator_org.kde.latte.default.mo
|
||||
share/locale/it/LC_MESSAGES/latte_indicator_org.kde.latte.plasma.mo
|
||||
share/locale/it/LC_MESSAGES/plasma_applet_org.kde.latte.containment.mo
|
||||
share/locale/it/LC_MESSAGES/plasma_applet_org.kde.latte.plasmoid.mo
|
||||
share/locale/it/LC_MESSAGES/plasma_applet_org.kde.latte.spacer.mo
|
||||
share/locale/it/LC_MESSAGES/plasma_containmentactions_lattecontextmenu.mo
|
||||
share/locale/ja/LC_MESSAGES/latte-dock.mo
|
||||
share/locale/ja/LC_MESSAGES/plasma_applet_audoban.applet.separator.mo
|
||||
share/locale/ja/LC_MESSAGES/latte_indicator_org.kde.latte.default.mo
|
||||
share/locale/ja/LC_MESSAGES/latte_indicator_org.kde.latte.plasma.mo
|
||||
share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.latte.containment.mo
|
||||
share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.latte.plasmoid.mo
|
||||
share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.latte.spacer.mo
|
||||
share/locale/ja/LC_MESSAGES/plasma_containmentactions_lattecontextmenu.mo
|
||||
share/locale/ko/LC_MESSAGES/latte-dock.mo
|
||||
share/locale/ko/LC_MESSAGES/plasma_applet_audoban.applet.separator.mo
|
||||
share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.latte.containment.mo
|
||||
share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.latte.plasmoid.mo
|
||||
share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.latte.spacer.mo
|
||||
share/locale/ko/LC_MESSAGES/plasma_containmentactions_lattecontextmenu.mo
|
||||
share/locale/pl/LC_MESSAGES/plasma_containmentactions_lattecontextmenu.mo
|
||||
share/locale/lt/LC_MESSAGES/latte-dock.mo
|
||||
share/locale/lt/LC_MESSAGES/latte_indicator_org.kde.latte.default.mo
|
||||
share/locale/lt/LC_MESSAGES/latte_indicator_org.kde.latte.plasma.mo
|
||||
share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.latte.containment.mo
|
||||
share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.latte.plasmoid.mo
|
||||
share/locale/lt/LC_MESSAGES/plasma_containmentactions_lattecontextmenu.mo
|
||||
share/locale/nl/LC_MESSAGES/latte-dock.mo
|
||||
share/locale/nl/LC_MESSAGES/plasma_applet_audoban.applet.separator.mo
|
||||
share/locale/nl/LC_MESSAGES/latte_indicator_org.kde.latte.default.mo
|
||||
share/locale/nl/LC_MESSAGES/latte_indicator_org.kde.latte.plasma.mo
|
||||
share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.latte.containment.mo
|
||||
share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.latte.plasmoid.mo
|
||||
share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.latte.spacer.mo
|
||||
share/locale/nl/LC_MESSAGES/plasma_containmentactions_lattecontextmenu.mo
|
||||
share/locale/nn/LC_MESSAGES/latte-dock.mo
|
||||
share/locale/nn/LC_MESSAGES/plasma_applet_audoban.applet.separator.mo
|
||||
share/locale/nn/LC_MESSAGES/latte_indicator_org.kde.latte.default.mo
|
||||
share/locale/nn/LC_MESSAGES/latte_indicator_org.kde.latte.plasma.mo
|
||||
share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.latte.containment.mo
|
||||
share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.latte.plasmoid.mo
|
||||
share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.latte.spacer.mo
|
||||
share/locale/nn/LC_MESSAGES/plasma_containmentactions_lattecontextmenu.mo
|
||||
share/locale/pl/LC_MESSAGES/latte-dock.mo
|
||||
share/locale/pl/LC_MESSAGES/plasma_applet_audoban.applet.separator.mo
|
||||
share/locale/pl/LC_MESSAGES/latte_indicator_org.kde.latte.default.mo
|
||||
share/locale/pl/LC_MESSAGES/latte_indicator_org.kde.latte.plasma.mo
|
||||
share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.latte.containment.mo
|
||||
share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.latte.plasmoid.mo
|
||||
share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.latte.spacer.mo
|
||||
share/locale/pl/LC_MESSAGES/plasma_containmentactions_lattecontextmenu.mo
|
||||
share/locale/pt/LC_MESSAGES/latte-dock.mo
|
||||
share/locale/pt/LC_MESSAGES/plasma_applet_audoban.applet.separator.mo
|
||||
share/locale/pt/LC_MESSAGES/latte_indicator_org.kde.latte.default.mo
|
||||
share/locale/pt/LC_MESSAGES/latte_indicator_org.kde.latte.plasma.mo
|
||||
share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.latte.containment.mo
|
||||
share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.latte.plasmoid.mo
|
||||
share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.latte.spacer.mo
|
||||
share/locale/pt/LC_MESSAGES/plasma_containmentactions_lattecontextmenu.mo
|
||||
share/locale/pt_BR/LC_MESSAGES/latte-dock.mo
|
||||
share/locale/pt_BR/LC_MESSAGES/plasma_applet_audoban.applet.separator.mo
|
||||
share/locale/pt_BR/LC_MESSAGES/latte_indicator_org.kde.latte.default.mo
|
||||
share/locale/pt_BR/LC_MESSAGES/latte_indicator_org.kde.latte.plasma.mo
|
||||
share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.latte.containment.mo
|
||||
share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.latte.plasmoid.mo
|
||||
share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.latte.spacer.mo
|
||||
share/locale/pt_BR/LC_MESSAGES/plasma_containmentactions_lattecontextmenu.mo
|
||||
share/locale/ro/LC_MESSAGES/latte-dock.mo
|
||||
share/locale/ru/LC_MESSAGES/latte-dock.mo
|
||||
share/locale/ru/LC_MESSAGES/plasma_applet_audoban.applet.separator.mo
|
||||
share/locale/ru/LC_MESSAGES/latte_indicator_org.kde.latte.default.mo
|
||||
share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.latte.containment.mo
|
||||
share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.latte.plasmoid.mo
|
||||
share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.latte.spacer.mo
|
||||
share/locale/ru/LC_MESSAGES/plasma_containmentactions_lattecontextmenu.mo
|
||||
share/locale/sk/LC_MESSAGES/latte-dock.mo
|
||||
share/locale/sk/LC_MESSAGES/plasma_applet_audoban.applet.separator.mo
|
||||
share/locale/sk/LC_MESSAGES/latte_indicator_org.kde.latte.default.mo
|
||||
share/locale/sk/LC_MESSAGES/latte_indicator_org.kde.latte.plasma.mo
|
||||
share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.latte.containment.mo
|
||||
share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.latte.plasmoid.mo
|
||||
share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.latte.spacer.mo
|
||||
share/locale/sk/LC_MESSAGES/plasma_containmentactions_lattecontextmenu.mo
|
||||
share/locale/sv/LC_MESSAGES/latte-dock.mo
|
||||
share/locale/sv/LC_MESSAGES/plasma_applet_audoban.applet.separator.mo
|
||||
share/locale/sv/LC_MESSAGES/latte_indicator_org.kde.latte.default.mo
|
||||
share/locale/sv/LC_MESSAGES/latte_indicator_org.kde.latte.plasma.mo
|
||||
share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.latte.containment.mo
|
||||
share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.latte.plasmoid.mo
|
||||
share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.latte.spacer.mo
|
||||
share/locale/sv/LC_MESSAGES/plasma_containmentactions_lattecontextmenu.mo
|
||||
share/locale/uk/LC_MESSAGES/latte-dock.mo
|
||||
share/locale/uk/LC_MESSAGES/plasma_applet_audoban.applet.separator.mo
|
||||
share/locale/uk/LC_MESSAGES/latte_indicator_org.kde.latte.default.mo
|
||||
share/locale/uk/LC_MESSAGES/latte_indicator_org.kde.latte.plasma.mo
|
||||
share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.latte.containment.mo
|
||||
share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.latte.plasmoid.mo
|
||||
share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.latte.spacer.mo
|
||||
share/locale/uk/LC_MESSAGES/plasma_containmentactions_lattecontextmenu.mo
|
||||
share/locale/zh_CN/LC_MESSAGES/latte-dock.mo
|
||||
share/locale/zh_CN/LC_MESSAGES/plasma_applet_audoban.applet.separator.mo
|
||||
share/locale/zh_CN/LC_MESSAGES/latte_indicator_org.kde.latte.default.mo
|
||||
share/locale/zh_CN/LC_MESSAGES/latte_indicator_org.kde.latte.plasma.mo
|
||||
share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.latte.containment.mo
|
||||
share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.latte.plasmoid.mo
|
||||
share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.latte.spacer.mo
|
||||
share/locale/zh_CN/LC_MESSAGES/plasma_containmentactions_lattecontextmenu.mo
|
||||
share/locale/zh_TW/LC_MESSAGES/latte-dock.mo
|
||||
share/locale/zh_TW/LC_MESSAGES/plasma_applet_audoban.applet.separator.mo
|
||||
share/locale/zh_TW/LC_MESSAGES/latte_indicator_org.kde.latte.default.mo
|
||||
share/locale/zh_TW/LC_MESSAGES/latte_indicator_org.kde.latte.plasma.mo
|
||||
share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.latte.containment.mo
|
||||
share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.latte.plasmoid.mo
|
||||
share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.latte.spacer.mo
|
||||
share/locale/zh_TW/LC_MESSAGES/plasma_containmentactions_lattecontextmenu.mo
|
||||
share/metainfo/audoban.applet.separator.appdata.xml
|
||||
share/metainfo/org.kde.latte-dock.appdata.xml
|
||||
share/metainfo/org.kde.latte.plasmoid.appdata.xml
|
||||
share/metainfo/org.kde.latte.shell.appdata.xml
|
||||
share/plasma/plasmoids/audoban.applet.separator/contents/ui/main.qml
|
||||
share/plasma/plasmoids/audoban.applet.separator/metadata.desktop
|
||||
share/plasma/plasmoids/audoban.applet.separator/metadata.json
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/code/AppletIdentifier.js
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/code/ColorizerTools.js
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/code/HeuristicTools.js
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/code/LayoutManager.js
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/code/MathTools.js
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/config/main.xml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/icons/AUTHORS
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/icons/COPYING
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/icons/blueprint.jpg
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/icons/brownprint.jpg
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/icons/darkgreyprint.jpg
|
||||
|
|
@ -211,26 +242,43 @@ share/plasma/plasmoids/org.kde.latte.containment/contents/icons/pinkprint.jpg
|
|||
share/plasma/plasmoids/org.kde.latte.containment/contents/icons/purpleprint.jpg
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/icons/redprint.jpg
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/icons/wheatprint.jpg
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/ui/AddWidgetVisual.qml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/ui/ColorizerManager.qml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/ui/ConfigOverlay.qml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/ui/DebugWindow.qml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/ui/EditModeVisual.qml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/ui/EditShadow.qml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/ui/LayoutsContainer.qml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/ui/DragDropArea.qml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/ui/PanelBox.qml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/ui/ParabolicManager.qml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/ui/Ruler.qml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/ui/RulerMouseArea.qml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/ui/RootMouseArea.qml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/ui/VisibilityManager.qml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/ui/applet/ActiveIndicator.qml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/ui/applet/AppletHiddenSpacer.qml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/ui/applet/AppletItem.qml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/ui/applet/AppletItemWrapper.qml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/ui/applet/HiddenSpacer.qml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/ui/applet/ItemWrapper.qml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/ui/applet/ShortcutBadge.qml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/ui/applet/TitleTooltipParent.qml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/ui/applet/colorizer/Applet.qml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/ui/applet/communicator/Actions.qml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/ui/applet/communicator/Engine.qml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/ui/applet/communicator/LatteBridge.qml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/ui/applet/indicator/Bridge.qml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/ui/applet/indicator/LevelOptions.qml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/ui/applet/indicator/Loader.qml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/ui/colorizer/CustomBackground.qml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/ui/colorizer/Manager.qml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/ui/editmode/ConfigOverlay.qml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/ui/editmode/HeaderSettings.qml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/ui/editmode/SettingsOverlay.qml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/ui/editmode/Visual.qml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/ui/editmode/controls/Button.qml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/ui/editmode/controls/RearrangeIcon.qml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/ui/editmode/maxlength/Ruler.qml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/ui/editmode/maxlength/RulerMouseArea.qml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/ui/indicators/Manager.qml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/ui/layouts/AppletsContainer.qml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/ui/layouts/EnvironmentActions.qml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/ui/layouts/LayoutsContainer.qml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/ui/layouts/loaders/Tasks.qml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/contents/ui/main.qml
|
||||
share/plasma/plasmoids/org.kde.latte.containment/metadata.desktop
|
||||
share/plasma/plasmoids/org.kde.latte.containment/metadata.json
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/code/ColorizerTools.js
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/code/activitiesTools.js
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/code/layout.js
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/code/tools.js
|
||||
|
|
@ -238,59 +286,59 @@ share/plasma/plasmoids/org.kde.latte.plasmoid/contents/config/config.qml
|
|||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/config/main.xml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/images/panel-west.png
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/ContextMenu.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/MouseHandler.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/ParabolicManager.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/PulseAudio.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/ToolTipDelegate2.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/ToolTipInstance.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/ToolTipWindowMouseArea.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/TasksExtendedManager.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/config/ConfigAppearance.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/config/ConfigInteraction.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/config/ConfigPanel.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/indicators/Manager.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/indicators/options/Latte.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/indicators/styles/LatteIndicator.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/main.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/previews/ToolTipDelegate2.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/previews/ToolTipInstance.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/previews/ToolTipWindowMouseArea.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/task/AudioStream.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/task/TaskActiveItem.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/task/TaskDelegate.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/task/TaskGroupItem.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/task/TaskHiddenSpacer.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/task/TaskIconItem.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/task/TaskProgressOverlay.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/task/TaskWindows.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/task/TaskWrapper.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/task/HiddenSpacer.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/task/IconItem.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/task/ProgressOverlay.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/task/ShortcutBadge.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/task/SubWindows.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/task/TaskItem.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/task/TitleTooltipParent.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/task/VisualAddItem.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/task/animations/TaskClickedAnimation.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/task/animations/TaskFastRestoreAnimation.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/task/animations/TaskLauncherAnimation.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/task/animations/TaskNewWindowAnimation.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/task/animations/TaskRealRemovalAnimation.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/task/animations/TaskRemoveWindowFromGroupAnimation.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/task/animations/TaskRestoreAnimation.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/task/animations/TaskShowWindowAnimation.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/task/Wrapper.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/task/animations/ClickedAnimation.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/task/animations/FastRestoreAnimation.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/task/animations/LauncherAnimation.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/task/animations/NewWindowAnimation.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/task/animations/RealRemovalAnimation.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/task/animations/RemoveWindowFromGroupAnimation.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/task/animations/RestoreAnimation.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/task/animations/ShowWindowAnimation.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/task/indicator/Bridge.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/task/indicator/LevelOptions.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/task/indicator/Loader.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/taskslayout/MouseHandler.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/taskslayout/ScrollEdgeShadows.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/taskslayout/ScrollOpacityMask.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/taskslayout/ScrollPositioner.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/contents/ui/taskslayout/ScrollableList.qml
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/metadata.desktop
|
||||
share/plasma/plasmoids/org.kde.latte.plasmoid/metadata.json
|
||||
share/plasma/plasmoids/org.kde.latte.spacer/contents/config/config.qml
|
||||
share/plasma/plasmoids/org.kde.latte.spacer/contents/config/main.xml
|
||||
share/plasma/plasmoids/org.kde.latte.spacer/contents/ui/ConfigAppearance.qml
|
||||
share/plasma/plasmoids/org.kde.latte.spacer/contents/ui/main.qml
|
||||
share/plasma/plasmoids/org.kde.latte.spacer/metadata.desktop
|
||||
share/plasma/plasmoids/org.kde.latte.spacer/metadata.json
|
||||
share/plasma/shells/org.kde.latte.shell/contents/configuration/AppearanceConfig.qml
|
||||
share/plasma/shells/org.kde.latte.shell/contents/configuration/BehaviorConfig.qml
|
||||
share/plasma/shells/org.kde.latte.shell/contents/configuration/Header.qml
|
||||
share/plasma/shells/org.kde.latte.shell/contents/configuration/LatteCheckBoxStyle.qml
|
||||
share/plasma/shells/org.kde.latte.shell/contents/configuration/LatteDockConfiguration.qml
|
||||
share/plasma/shells/org.kde.latte.shell/contents/configuration/LatteDockSecondaryConfiguration.qml
|
||||
share/plasma/shells/org.kde.latte.shell/contents/configuration/TasksConfig.qml
|
||||
share/plasma/shells/org.kde.latte.shell/contents/configuration/TweaksConfig.qml
|
||||
share/plasma/shells/org.kde.latte.shell/contents/configuration/TypeSelection.qml
|
||||
share/plasma/shells/org.kde.latte.shell/contents/configuration/config.qml
|
||||
share/plasma/shells/org.kde.latte.shell/contents/controls/Slider.qml
|
||||
share/plasma/shells/org.kde.latte.shell/contents/controls/SpinBox.qml
|
||||
share/plasma/shells/org.kde.latte.shell/contents/controls/TextField.qml
|
||||
share/plasma/shells/org.kde.latte.shell/contents/controls/ToolTip.qml
|
||||
share/plasma/shells/org.kde.latte.shell/contents/controls/private/RoundShadow.qml
|
||||
share/plasma/shells/org.kde.latte.shell/contents/configuration/pages/AppearanceConfig.qml
|
||||
share/plasma/shells/org.kde.latte.shell/contents/configuration/pages/BehaviorConfig.qml
|
||||
share/plasma/shells/org.kde.latte.shell/contents/configuration/pages/EffectsConfig.qml
|
||||
share/plasma/shells/org.kde.latte.shell/contents/configuration/pages/TasksConfig.qml
|
||||
share/plasma/shells/org.kde.latte.shell/contents/controls/CustomIndicatorButton.qml
|
||||
share/plasma/shells/org.kde.latte.shell/contents/controls/InnerShadow.qml
|
||||
share/plasma/shells/org.kde.latte.shell/contents/controls/TypeSelection.qml
|
||||
share/plasma/shells/org.kde.latte.shell/contents/defaults
|
||||
share/plasma/shells/org.kde.latte.shell/contents/images/AUTHORS
|
||||
share/plasma/shells/org.kde.latte.shell/contents/images/COPYING
|
||||
share/plasma/shells/org.kde.latte.shell/contents/images/splitter.svgz
|
||||
share/plasma/shells/org.kde.latte.shell/contents/images/trademark.svgz
|
||||
share/plasma/shells/org.kde.latte.shell/contents/layouts/Default.latterc
|
||||
|
|
@ -302,6 +350,7 @@ share/plasma/shells/org.kde.latte.shell/contents/presets/Extended.layout.latte
|
|||
share/plasma/shells/org.kde.latte.shell/contents/presets/Plasma.layout.latte
|
||||
share/plasma/shells/org.kde.latte.shell/contents/presets/Unity.layout.latte
|
||||
share/plasma/shells/org.kde.latte.shell/contents/presets/multiple-layouts_hidden.layout.latte
|
||||
share/plasma/shells/org.kde.latte.shell/contents/scripting/BackgroundTracer.qml
|
||||
share/plasma/shells/org.kde.latte.shell/contents/views/InfoView.qml
|
||||
share/plasma/shells/org.kde.latte.shell/contents/views/Panel.qml
|
||||
share/plasma/shells/org.kde.latte.shell/metadata.desktop
|
||||
|
|
|
|||
|
|
@ -5428,6 +5428,7 @@
|
|||
SUBDIR += rubygem-aws-sdk-core
|
||||
SUBDIR += rubygem-aws-sdk-resources
|
||||
SUBDIR += rubygem-aws-sdk-v1
|
||||
SUBDIR += rubygem-aws-sigv2
|
||||
SUBDIR += rubygem-aws-sigv4
|
||||
SUBDIR += rubygem-axiom-types
|
||||
SUBDIR += rubygem-backports
|
||||
|
|
@ -5571,6 +5572,7 @@
|
|||
SUBDIR += rubygem-fastri
|
||||
SUBDIR += rubygem-fattr
|
||||
SUBDIR += rubygem-ffi
|
||||
SUBDIR += rubygem-ffi110
|
||||
SUBDIR += rubygem-ffi-compiler
|
||||
SUBDIR += rubygem-ffi-win32-extensions
|
||||
SUBDIR += rubygem-ffi-yajl
|
||||
|
|
|
|||
|
|
@ -11,8 +11,6 @@ COMMENT= Abseil Common Libraries (C++)
|
|||
|
||||
LICENSE= APACHE20
|
||||
|
||||
BROKEN_powerpc= fatal error: sys/platform/ppc.h: No such file or directory
|
||||
|
||||
USES= cmake compiler:c++11-lang
|
||||
USE_GITHUB= yes
|
||||
GH_PROJECT= ${PORTNAME}-cpp
|
||||
|
|
|
|||
|
|
@ -0,0 +1,54 @@
|
|||
--- absl/base/internal/unscaledcycleclock.cc.orig 2019-07-24 12:47:23 UTC
|
||||
+++ absl/base/internal/unscaledcycleclock.cc
|
||||
@@ -20,10 +20,15 @@
|
||||
#include <intrin.h>
|
||||
#endif
|
||||
|
||||
-#if defined(__powerpc__) || defined(__ppc__)
|
||||
+#if (defined(__powerpc__) || defined(__ppc__)) && !defined(__FreeBSD__)
|
||||
#include <sys/platform/ppc.h>
|
||||
#endif
|
||||
|
||||
+#ifdef __FreeBSD__
|
||||
+#include <sys/types.h>
|
||||
+#include <sys/sysctl.h>
|
||||
+#endif
|
||||
+
|
||||
#include "absl/base/internal/sysinfo.h"
|
||||
|
||||
namespace absl {
|
||||
@@ -56,11 +61,34 @@ double UnscaledCycleClock::Frequency() {
|
||||
#elif defined(__powerpc__) || defined(__ppc__)
|
||||
|
||||
int64_t UnscaledCycleClock::Now() {
|
||||
+#ifndef __FreeBSD__
|
||||
return __ppc_get_timebase();
|
||||
+#else
|
||||
+ union { long long complete; unsigned int part[2]; } ticks;
|
||||
+ unsigned int tmp;
|
||||
+ asm volatile(
|
||||
+ "0:\n"
|
||||
+ "mftbu %[hi32]\n"
|
||||
+ "mftb %[lo32]\n"
|
||||
+ "mftbu %[tmp]\n"
|
||||
+ "cmpw %[tmp],%[hi32]\n"
|
||||
+ "bne 0b\n"
|
||||
+ : [hi32] "=r"(ticks.part[0]), [lo32] "=r"(ticks.part[1]),
|
||||
+ [tmp] "=r"(tmp)
|
||||
+ );
|
||||
+ return ticks.complete;
|
||||
+#endif
|
||||
}
|
||||
|
||||
double UnscaledCycleClock::Frequency() {
|
||||
+#ifndef __FreeBSD__
|
||||
return __ppc_get_timebase_freq();
|
||||
+#else
|
||||
+ long timebaseFrequency = 0;
|
||||
+ size_t length = sizeof(timebaseFrequency);
|
||||
+ sysctlbyname("kern.timecounter.tc.timebase.frequency", &timebaseFrequency, &length, NULL, 0);
|
||||
+ return timebaseFrequency;
|
||||
+#endif
|
||||
}
|
||||
|
||||
#elif defined(__aarch64__)
|
||||
|
|
@ -174,7 +174,7 @@ CONFIGURE_ARGS+= --with-opengl=none
|
|||
LIB_DEPENDS+= libunwind.so:devel/libunwind
|
||||
.endif
|
||||
|
||||
.if ${ARCH} == "powerpc" || ${ARCH} == "sparc64"
|
||||
.if ${ARCH:Mpowerpc*} || ${ARCH} == "sparc64"
|
||||
USES+= lua
|
||||
CONFIGURE_ARGS+= --enable-lua-old
|
||||
PLIST_SUB+= ELUA="@comment "
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= jenkins
|
||||
PORTVERSION= 2.176.2
|
||||
PORTVERSION= 2.176.3
|
||||
CATEGORIES= devel java
|
||||
MASTER_SITES= http://mirrors.jenkins-ci.org/war-stable/${PORTVERSION}/
|
||||
PKGNAMESUFFIX= -lts
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1563375502
|
||||
SHA256 (jenkins/2.176.2/jenkins.war) = 33a6c3161cf8de9c8729fd83914d781319fd1569acf487c7b1121681dba190a5
|
||||
SIZE (jenkins/2.176.2/jenkins.war) = 77379386
|
||||
TIMESTAMP = 1567006689
|
||||
SHA256 (jenkins/2.176.3/jenkins.war) = 9406c7bee2bc473f77191ace951993f89922f927a0cd7efb658a4247d67b9aa3
|
||||
SIZE (jenkins/2.176.3/jenkins.war) = 77364728
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= jenkins
|
||||
PORTVERSION= 2.191
|
||||
PORTVERSION= 2.192
|
||||
CATEGORIES= devel java
|
||||
MASTER_SITES= http://mirrors.jenkins-ci.org/war/${PORTVERSION}/
|
||||
DISTNAME= jenkins
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1566843420
|
||||
SHA256 (jenkins/2.191/jenkins.war) = 48df413aa8cb938f4a9d95af1bb129d539d0cb642b62fe64943b13d0c70597e4
|
||||
SIZE (jenkins/2.191/jenkins.war) = 78243169
|
||||
TIMESTAMP = 1567006707
|
||||
SHA256 (jenkins/2.192/jenkins.war) = d88954d034012837df890e8a626061662b7ae5665a43136439652b00a207b971
|
||||
SIZE (jenkins/2.192/jenkins.war) = 78257602
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
PORTNAME= kauth
|
||||
DISTVERSION= ${KDE_FRAMEWORKS_VERSION}
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= devel kde kde-frameworks
|
||||
|
||||
MAINTAINER= kde@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
PORTNAME= liblxqt
|
||||
PORTVERSION= 0.14.0
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= LXQT
|
||||
|
||||
|
|
|
|||
|
|
@ -2,8 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= Cairo-GObject
|
||||
PORTVERSION= 1.004
|
||||
PORTREVISION= 2
|
||||
PORTVERSION= 1.005
|
||||
CATEGORIES= devel graphics perl5
|
||||
MASTER_SITES= CPAN
|
||||
MASTER_SITE_SUBDIR= CPAN:XAOC
|
||||
|
|
@ -14,17 +13,15 @@ COMMENT= Integrate Cairo into the Glib type system
|
|||
|
||||
LICENSE= LGPL21
|
||||
|
||||
BUILD_DEPENDS= cairo>=1.10.0:graphics/cairo \
|
||||
p5-Cairo>=1.080:graphics/p5-Cairo \
|
||||
p5-ExtUtils-Depends>=0.200:devel/p5-ExtUtils-Depends \
|
||||
BUILD_DEPENDS= p5-ExtUtils-Depends>=0.200:devel/p5-ExtUtils-Depends \
|
||||
p5-ExtUtils-PkgConfig>=1:devel/p5-ExtUtils-PkgConfig \
|
||||
p5-Glib2>=1.224:devel/p5-Glib2
|
||||
${RUN_DEPENDS}
|
||||
RUN_DEPENDS= cairo>=1.10.0:graphics/cairo \
|
||||
p5-Cairo>=1.080:graphics/p5-Cairo \
|
||||
p5-Glib2>=1.224:devel/p5-Glib2
|
||||
|
||||
USE_PERL5= configure
|
||||
USES= perl5
|
||||
USE_PERL5= configure
|
||||
|
||||
post-install:
|
||||
${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Cairo/GObject/GObject.so
|
||||
|
|
|
|||
|
|
@ -1,2 +1,3 @@
|
|||
SHA256 (Cairo-GObject-1.004.tar.gz) = 3bb9d40e802e51f56f1364abc553758152131803c12d85ba6e14bad6813409d5
|
||||
SIZE (Cairo-GObject-1.004.tar.gz) = 16786
|
||||
TIMESTAMP = 1567016131
|
||||
SHA256 (Cairo-GObject-1.005.tar.gz) = 8d896444d71e1d0bca3d24e31e5d82bd0d9542aaed91d1fb7eab367bce675c50
|
||||
SIZE (Cairo-GObject-1.005.tar.gz) = 16790
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= MCE-Shared
|
||||
PORTVERSION= 1.845
|
||||
PORTVERSION= 1.846
|
||||
CATEGORIES= devel perl5
|
||||
MASTER_SITES= CPAN
|
||||
MASTER_SITE_SUBDIR= CPAN:MARIOROY
|
||||
|
|
@ -18,7 +18,7 @@ LICENSE_FILE_GPLv1+ = ${WRKSRC}/Copying
|
|||
|
||||
BUILD_DEPENDS= ${RUN_DEPENDS}
|
||||
RUN_DEPENDS= p5-IO-FDPass>=1.1:devel/p5-IO-FDPass \
|
||||
p5-MCE>=1.845:devel/p5-MCE
|
||||
p5-MCE>=1.846:devel/p5-MCE
|
||||
|
||||
USES= perl5
|
||||
USE_PERL5= configure
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1566807377
|
||||
SHA256 (MCE-Shared-1.845.tar.gz) = 9369a76bcab5df91aa408f5dedc9464d48ec83bcfa1374524e279bdac943826f
|
||||
SIZE (MCE-Shared-1.845.tar.gz) = 144625
|
||||
TIMESTAMP = 1567016135
|
||||
SHA256 (MCE-Shared-1.846.tar.gz) = 421cbbed590c987e60b6e1588f4636b5f25805e690829de5de126c334210b25f
|
||||
SIZE (MCE-Shared-1.846.tar.gz) = 144732
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= MCE
|
||||
PORTVERSION= 1.845
|
||||
PORTVERSION= 1.846
|
||||
CATEGORIES= devel perl5
|
||||
MASTER_SITES= CPAN
|
||||
MASTER_SITE_SUBDIR= CPAN:MARIOROY
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1566807374
|
||||
SHA256 (MCE-1.845.tar.gz) = 5692ddd5be7e054d06f9f375c19744aa86ca810c9aa08717eb8060a8a052ec34
|
||||
SIZE (MCE-1.845.tar.gz) = 213543
|
||||
TIMESTAMP = 1567016133
|
||||
SHA256 (MCE-1.846.tar.gz) = b54d91ecdf3f25c4b395bb3e13a7a2d2019b52f2cb79d1b38c0f598833aebd66
|
||||
SIZE (MCE-1.846.tar.gz) = 213541
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
PORTNAME= packr
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 2.5.2
|
||||
DISTVERSION= 2.6.0
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= dg@syrec.org
|
||||
|
|
@ -24,8 +24,10 @@ GH_TUPLE= \
|
|||
gobuffalo:logger:v1.0.0:gobuffalo_logger/vendor/github.com/gobuffalo/logger \
|
||||
gobuffalo:packd:v0.3.0:gobuffalo_packd/vendor/github.com/gobuffalo/packd \
|
||||
golang:crypto:cc06ce4a13d4:golang_crypto/vendor/golang.org/x/crypto \
|
||||
golang:net:eb5bcb51f2a3:golang_net/vendor/golang.org/x/net \
|
||||
golang:sync:112230192c58:golang_sync/vendor/golang.org/x/sync \
|
||||
golang:sys:06a5c4944438:golang_sys/vendor/golang.org/x/sys \
|
||||
golang:text:v0.3.0:golang_text/vendor/golang.org/x/text \
|
||||
golang:tools:6cdbf07be9d0:golang_tools/vendor/golang.org/x/tools \
|
||||
inconshreveable:mousetrap:v1.0.0:inconshreveable_mousetrap/vendor/github.com/inconshreveable/mousetrap \
|
||||
joho:godotenv:v1.3.0:joho_godotenv/vendor/github.com/joho/godotenv \
|
||||
|
|
@ -38,8 +40,7 @@ GH_TUPLE= \
|
|||
spf13:pflag:v1.0.3:spf13_pflag/vendor/github.com/spf13/pflag
|
||||
|
||||
post-extract:
|
||||
@${MKDIR} ${WRKSRC}/vendor/github.com/gobuffalo/packr
|
||||
@${LN} -s ${WRKSRC}/v2 ${WRKSRC}/vendor/github.com/gobuffalo/packr/v2
|
||||
@${RM} ${WRKSRC}/v2/go.mod
|
||||
|
||||
PLIST_FILES= bin/packr \
|
||||
bin/packr2
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
TIMESTAMP = 1561982359
|
||||
SHA256 (gobuffalo-packr-v2.5.2_GH0.tar.gz) = f638340c1bb4f671ab5a101969a2e63fe11300cf9ead0f481a8c3e0ab966a423
|
||||
SIZE (gobuffalo-packr-v2.5.2_GH0.tar.gz) = 79763
|
||||
TIMESTAMP = 1566834815
|
||||
SHA256 (gobuffalo-packr-v2.6.0_GH0.tar.gz) = 6f218994a4c2a534c11317d4a753b3df14db93a579de985ed9a12f89ce6b5f47
|
||||
SIZE (gobuffalo-packr-v2.6.0_GH0.tar.gz) = 80096
|
||||
SHA256 (davecgh-go-spew-v1.1.1_GH0.tar.gz) = 7d82b9bb7291adbe7498fe946920ab3e7fc9e6cbfc3b2294693fad00bf0dd17e
|
||||
SIZE (davecgh-go-spew-v1.1.1_GH0.tar.gz) = 42152
|
||||
SHA256 (gobuffalo-envy-v1.7.0_GH0.tar.gz) = 0cf5498716ad05262a5c7601ebd203d9ea7ff581bc965cb2fcb38408cbf32424
|
||||
|
|
@ -11,10 +11,14 @@ SHA256 (gobuffalo-packd-v0.3.0_GH0.tar.gz) = aedae215fadb688a0a66ed8d64eff44169e
|
|||
SIZE (gobuffalo-packd-v0.3.0_GH0.tar.gz) = 8572
|
||||
SHA256 (golang-crypto-cc06ce4a13d4_GH0.tar.gz) = 12d4a82aeb8c2b1c19149d99b5a8307866d8083342ad54ffb4df59d275236e2b
|
||||
SIZE (golang-crypto-cc06ce4a13d4_GH0.tar.gz) = 1693029
|
||||
SHA256 (golang-net-eb5bcb51f2a3_GH0.tar.gz) = 191dd6c41872d0afa48ad594314ec60455fab7c98a2aca88ed0df28c32062348
|
||||
SIZE (golang-net-eb5bcb51f2a3_GH0.tar.gz) = 976944
|
||||
SHA256 (golang-sync-112230192c58_GH0.tar.gz) = 6d98880ea18369550cb12d7011df8e4b21c5b7588268a412b863b5c9d2fa0313
|
||||
SIZE (golang-sync-112230192c58_GH0.tar.gz) = 16832
|
||||
SHA256 (golang-sys-06a5c4944438_GH0.tar.gz) = d80e1937fadcdec67d0e7dfbf7a644a9eb5e02826e4651d7257535a22bda18d2
|
||||
SIZE (golang-sys-06a5c4944438_GH0.tar.gz) = 1418520
|
||||
SHA256 (golang-text-v0.3.0_GH0.tar.gz) = 8f4c9a048345befc7beccd09267737ee1f55c7b35e5ff80f344ec9e0aa90febb
|
||||
SIZE (golang-text-v0.3.0_GH0.tar.gz) = 6102619
|
||||
SHA256 (golang-tools-6cdbf07be9d0_GH0.tar.gz) = ac81a0742dfbed803bf9217c013c5f79507248a37d201fa9070a50ccffbedad2
|
||||
SIZE (golang-tools-6cdbf07be9d0_GH0.tar.gz) = 2160997
|
||||
SHA256 (inconshreveable-mousetrap-v1.0.0_GH0.tar.gz) = 5edc7731c819c305623568e317aa253d342be3447def97f1fa9e10eb5ad819f6
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= arrow
|
||||
PORTVERSION= 0.14.5
|
||||
PORTVERSION= 0.14.6
|
||||
CATEGORIES= devel python
|
||||
MASTER_SITES= CHEESESHOP
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1565352586
|
||||
SHA256 (arrow-0.14.5.tar.gz) = 0186026cfd94ca4fb773f30cc5398289a3027480d335e0e5c0d2772643763137
|
||||
SIZE (arrow-0.14.5.tar.gz) = 590609
|
||||
TIMESTAMP = 1567016141
|
||||
SHA256 (arrow-0.14.6.tar.gz) = 9f1503d359011a74cd41169652f0eb0232822f58c67c414229f4174a15ae71f9
|
||||
SIZE (arrow-0.14.6.tar.gz) = 67562
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= flake8-docstrings
|
||||
PORTVERSION= 1.3.1
|
||||
PORTVERSION= 1.4.0
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= CHEESESHOP
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
|
@ -14,7 +14,6 @@ LICENSE= MIT
|
|||
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||
|
||||
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}flake8>=0:devel/py-flake8@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}flake8-polyfill>=0:devel/py-flake8-polyfill@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pydocstyle>=0:devel/py-pydocstyle@${PY_FLAVOR}
|
||||
|
||||
USES= python:3.4+
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1565628164
|
||||
SHA256 (flake8-docstrings-1.3.1.tar.gz) = d8d72ccd5807c1ab9ff1466cb9bece0c4d94b8669e9bc4f472abc80dbc5d399e
|
||||
SIZE (flake8-docstrings-1.3.1.tar.gz) = 4904
|
||||
TIMESTAMP = 1567001707
|
||||
SHA256 (flake8-docstrings-1.4.0.tar.gz) = 9c0db5a79a1affd70fdf53b8765c8a26bf968e59e0252d7f2fc546b41c0cda06
|
||||
SIZE (flake8-docstrings-1.4.0.tar.gz) = 5567
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= pip-tools
|
||||
PORTVERSION= 4.0.0
|
||||
PORTVERSION= 4.1.0
|
||||
CATEGORIES= devel python
|
||||
MASTER_SITES= CHEESESHOP
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1564577835
|
||||
SHA256 (pip-tools-4.0.0.tar.gz) = 3b9fb8948340eff5869ac83dc85e3a7c62b837cec33609c45c48c2e5aa740ba5
|
||||
SIZE (pip-tools-4.0.0.tar.gz) = 100332
|
||||
TIMESTAMP = 1567016143
|
||||
SHA256 (pip-tools-4.1.0.tar.gz) = 69a1fd795bb95002b37217d62306026e67ef17012e9f6cfb1c3bfab5c3c4bb2c
|
||||
SIZE (pip-tools-4.1.0.tar.gz) = 100846
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= tabulator
|
||||
PORTVERSION= 1.24.1
|
||||
PORTVERSION= 1.24.2
|
||||
CATEGORIES= devel python
|
||||
MASTER_SITES= CHEESESHOP
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1566486997
|
||||
SHA256 (tabulator-1.24.1.tar.gz) = 48b8d0facfb9cdb2f030c634248b1a4f9533ca08e630ab33fafdaff44f8e0475
|
||||
SIZE (tabulator-1.24.1.tar.gz) = 46904
|
||||
TIMESTAMP = 1567016145
|
||||
SHA256 (tabulator-1.24.2.tar.gz) = 7c923ebdf007dbc8269d065014487c1692b7a092427cca1343353a842d37f0c1
|
||||
SIZE (tabulator-1.24.2.tar.gz) = 46910
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= xxhash
|
||||
PORTVERSION= 1.4.0
|
||||
PORTVERSION= 1.4.1
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= CHEESESHOP
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1566758176
|
||||
SHA256 (xxhash-1.4.0.tar.gz) = cb7a830d216e433518aeca389def4260940823308816358a5fc5d3beef682055
|
||||
SIZE (xxhash-1.4.0.tar.gz) = 29769
|
||||
TIMESTAMP = 1567016147
|
||||
SHA256 (xxhash-1.4.1.tar.gz) = 6b5af8c37ff12745ae77f28e695c0d3a3327932fd229824e49382377e940fdf1
|
||||
SIZE (xxhash-1.4.1.tar.gz) = 43155
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= aws-sdk-core
|
||||
DISTVERSION= 2.11.341
|
||||
DISTVERSION= 2.11.342
|
||||
CATEGORIES= devel rubygems
|
||||
MASTER_SITES= RG
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1566922299
|
||||
SHA256 (rubygem/aws-sdk-core-2.11.341.gem) = e1012d74b7ad7fa5f8d45b8bffbaa5bd96ad50a14cc383ff16bd3e5e30299324
|
||||
SIZE (rubygem/aws-sdk-core-2.11.341.gem) = 1643008
|
||||
TIMESTAMP = 1567016161
|
||||
SHA256 (rubygem/aws-sdk-core-2.11.342.gem) = f6568516f1df66da61edfa821b16503ef4b955dab36e341e6f8292984d5bf4e5
|
||||
SIZE (rubygem/aws-sdk-core-2.11.342.gem) = 1643008
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= aws-sdk-resources
|
||||
DISTVERSION= 2.11.341
|
||||
DISTVERSION= 2.11.342
|
||||
CATEGORIES= devel rubygems
|
||||
MASTER_SITES= RG
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1566922300
|
||||
SHA256 (rubygem/aws-sdk-resources-2.11.341.gem) = 71d65fcb5ba531bdf227ecd13b67b0d3aed8f58d86efc854193175453f320cb8
|
||||
SIZE (rubygem/aws-sdk-resources-2.11.341.gem) = 48640
|
||||
TIMESTAMP = 1567016163
|
||||
SHA256 (rubygem/aws-sdk-resources-2.11.342.gem) = 18f7199adfb94e3c6dc17c46fde91f8c4ab8523d72562edc8a31e07d5f97198d
|
||||
SIZE (rubygem/aws-sdk-resources-2.11.342.gem) = 48640
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= aws-sdk
|
||||
DISTVERSION= 2.11.341
|
||||
DISTVERSION= 2.11.342
|
||||
CATEGORIES= devel rubygems
|
||||
MASTER_SITES= RG
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1566922276
|
||||
SHA256 (rubygem/aws-sdk-2.11.341.gem) = f7f4b37ba3b09bface8f57b95266303b681e4b615fae7cac1fab498cc104c706
|
||||
SIZE (rubygem/aws-sdk-2.11.341.gem) = 4608
|
||||
TIMESTAMP = 1567016159
|
||||
SHA256 (rubygem/aws-sdk-2.11.342.gem) = 5fe4328bbb0d5a085ce3b831fe266273a357ab98d044ab9209491b750db32473
|
||||
SIZE (rubygem/aws-sdk-2.11.342.gem) = 4608
|
||||
|
|
|
|||
19
devel/rubygem-aws-sigv2/Makefile
Normal file
19
devel/rubygem-aws-sigv2/Makefile
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= aws-sigv2
|
||||
PORTVERSION= 1.0.1
|
||||
CATEGORIES= devel rubygems
|
||||
MASTER_SITES= RG
|
||||
|
||||
MAINTAINER= sunpoet@FreeBSD.org
|
||||
COMMENT= Amazon Web Services Signature Version 2 signing library
|
||||
|
||||
LICENSE= APACHE20
|
||||
|
||||
USES= gem
|
||||
USE_RUBY= yes
|
||||
|
||||
NO_ARCH= yes
|
||||
|
||||
.include <bsd.port.mk>
|
||||
3
devel/rubygem-aws-sigv2/distinfo
Normal file
3
devel/rubygem-aws-sigv2/distinfo
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1567016129
|
||||
SHA256 (rubygem/aws-sigv2-1.0.1.gem) = e3d9727d01db396fca9f4c4d4a707839053c11ebee71b787763ece09588a2185
|
||||
SIZE (rubygem/aws-sigv2-1.0.1.gem) = 7168
|
||||
4
devel/rubygem-aws-sigv2/pkg-descr
Normal file
4
devel/rubygem-aws-sigv2/pkg-descr
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
rubygem-aws-sigv2 is Amazon Web Services Signature Version 2 signing library
|
||||
which generates sigv2 signature for HTTP requests.
|
||||
|
||||
WWW: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sigv2
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= faker
|
||||
PORTVERSION= 2.1.2
|
||||
PORTVERSION= 2.2.0
|
||||
CATEGORIES= devel rubygems
|
||||
MASTER_SITES= RG
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1565625874
|
||||
SHA256 (rubygem/faker-2.1.2.gem) = 1ac75980a4a4a6a0e92ea266b482b12387ece4fbcb2d25f882c1416ced042917
|
||||
SIZE (rubygem/faker-2.1.2.gem) = 853504
|
||||
TIMESTAMP = 1567016165
|
||||
SHA256 (rubygem/faker-2.2.0.gem) = e26fd0f8f162f9c7bdcc1e36ebbed21b3e291ab037338094d3fa97bee629285d
|
||||
SIZE (rubygem/faker-2.2.0.gem) = 862208
|
||||
|
|
|
|||
23
devel/rubygem-ffi110/Makefile
Normal file
23
devel/rubygem-ffi110/Makefile
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
# Created by: Christoph Kick
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= ffi
|
||||
PORTVERSION= 1.10.0
|
||||
CATEGORIES= devel rubygems
|
||||
MASTER_SITES= RG
|
||||
PKGNAMESUFFIX= 110
|
||||
|
||||
MAINTAINER= mfechner@FreeBSD.org
|
||||
COMMENT= Extension for dynamic libraries & binding functions
|
||||
|
||||
LICENSE= BSD3CLAUSE
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||
|
||||
LIB_DEPENDS= libffi.so:devel/libffi
|
||||
|
||||
USES= gem
|
||||
USE_RUBY= yes
|
||||
|
||||
PORTSCOUT= limit:^1\.10\.
|
||||
|
||||
.include <bsd.port.mk>
|
||||
3
devel/rubygem-ffi110/distinfo
Normal file
3
devel/rubygem-ffi110/distinfo
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1547227029
|
||||
SHA256 (rubygem/ffi-1.10.0.gem) = 17001940b28a961c94251a39f0ae00b32c2d0850479b5978c971759591fc1749
|
||||
SIZE (rubygem/ffi-1.10.0.gem) = 869376
|
||||
4
devel/rubygem-ffi110/pkg-descr
Normal file
4
devel/rubygem-ffi110/pkg-descr
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
Ruby-FFI is a ruby extension for programmatically loading dynamic libraries,
|
||||
binding functions within them, and calling those functions from Ruby code.
|
||||
|
||||
WWW: https://github.com/ffi/ffi/wiki
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= nio4r
|
||||
PORTVERSION= 2.4.0
|
||||
PORTVERSION= 2.5.0
|
||||
CATEGORIES= devel rubygems
|
||||
MASTER_SITES= RG
|
||||
|
||||
|
|
@ -10,9 +10,8 @@ MAINTAINER= sunpoet@FreeBSD.org
|
|||
COMMENT= Cross-platform asynchronous I/O primitives
|
||||
|
||||
LICENSE= MIT
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
||||
|
||||
USE_RUBY= yes
|
||||
USES= gem
|
||||
USE_RUBY= yes
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1562608086
|
||||
SHA256 (rubygem/nio4r-2.4.0.gem) = 808c702cc49e4c67c233ffd14e9cad5fca37cd38f43b1792d2be36c32bbe4c6c
|
||||
SIZE (rubygem/nio4r-2.4.0.gem) = 101888
|
||||
TIMESTAMP = 1567016167
|
||||
SHA256 (rubygem/nio4r-2.5.0.gem) = a920afa8de961501458d7440d72017fcae9f654f11fc694ae5884db53564d9cc
|
||||
SIZE (rubygem/nio4r-2.5.0.gem) = 110080
|
||||
|
|
|
|||
|
|
@ -12,7 +12,6 @@ COMMENT= Advanced DNS server with multiple backends including SQL
|
|||
|
||||
LICENSE= GPLv2
|
||||
|
||||
BROKEN_powerpc64= Does not build: undefined reference to std::__throw_out_of_range_fmt
|
||||
BROKEN_sparc64= Does not compile: error: to_string is not a member of std
|
||||
|
||||
LIB_DEPENDS= libboost_serialization.so:devel/boost-libs
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= dns-lexicon
|
||||
DISTVERSION= 3.3.2
|
||||
DISTVERSION= 3.3.3
|
||||
CATEGORIES= dns python
|
||||
MASTER_SITES= CHEESESHOP
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1566807382
|
||||
SHA256 (dns-lexicon-3.3.2.tar.gz) = d894bae1bb4b044297339732787661e5a5dea8753d95eb49fd2234b8b2173474
|
||||
SIZE (dns-lexicon-3.3.2.tar.gz) = 142325
|
||||
TIMESTAMP = 1567016149
|
||||
SHA256 (dns-lexicon-3.3.3.tar.gz) = bc323b017ba5edc7d32192d62fa6f5efcd1952974d2eff35f474af91582fa9e4
|
||||
SIZE (dns-lexicon-3.3.3.tar.gz) = 144421
|
||||
|
|
|
|||
|
|
@ -54,12 +54,20 @@ PLIST_SUB= PYTHON_SITELIBDIR=${PYTHON_SITELIBDIR} DATADIR=${DATADIR}
|
|||
GH_ACCOUNT= BVLC
|
||||
USE_GITHUB= yes
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${CHOSEN_COMPILER_TYPE} == clang
|
||||
TRUE_CXX= clang++
|
||||
.else
|
||||
TRUE_CXX= g++${GCC_DEFAULT}
|
||||
.endif
|
||||
|
||||
post-extract:
|
||||
@${CP} -v ${.CURDIR}/files/Makefile.config ${WRKSRC}/
|
||||
|
||||
post-patch:
|
||||
@${REINPLACE_CMD} \
|
||||
-e "s|%%CXX%%|clang++|g" \
|
||||
-e "s|%%CXX%%|${TRUE_CXX}|g" \
|
||||
-e "s|%%LOCALBASE%%|${LOCALBASE}|g" \
|
||||
-e "s|%%DATADIR%%|${DATADIR}|g" \
|
||||
-e "s|%%PYTHON_INCLUDEDIR%%|${PYTHON_INCLUDEDIR}|g" \
|
||||
|
|
@ -75,4 +83,4 @@ post-install:
|
|||
@${STRIP_CMD} ${STAGEDIR}/${PREFIX}/bin/* ${STAGEDIR}/${PREFIX}/lib/*.so.* \
|
||||
${STAGEDIR}/${PYTHON_SITELIBDIR}/${PORTNAME}/*.so
|
||||
|
||||
.include <bsd.port.mk>
|
||||
.include <bsd.port.post.mk>
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= drm-current-kmod
|
||||
PORTVERSION= 4.16.g20190827
|
||||
PORTVERSION= 4.16.g20190828
|
||||
CATEGORIES= graphics kld
|
||||
|
||||
MAINTAINER= x11@FreeBSD.org
|
||||
|
|
@ -34,7 +34,7 @@ USES= kmod uidfix compiler:c++11-lang
|
|||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= FreeBSDDesktop
|
||||
GH_PROJECT= kms-drm
|
||||
GH_TAGNAME= 75283de
|
||||
GH_TAGNAME= c8f1507
|
||||
|
||||
.include <bsd.port.options.mk>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1566909866
|
||||
SHA256 (FreeBSDDesktop-kms-drm-4.16.g20190827-75283de_GH0.tar.gz) = cf2d742fb207701b4a05b0142d2d125ef1d5bf3794b86aeb609c50d72d8065eb
|
||||
SIZE (FreeBSDDesktop-kms-drm-4.16.g20190827-75283de_GH0.tar.gz) = 13087456
|
||||
TIMESTAMP = 1566979079
|
||||
SHA256 (FreeBSDDesktop-kms-drm-4.16.g20190828-c8f1507_GH0.tar.gz) = 148cb4a57f132bc4cfc6715076ca270e2f49c1c1e551417d6fe3f82ef0e7bf4a
|
||||
SIZE (FreeBSDDesktop-kms-drm-4.16.g20190828-c8f1507_GH0.tar.gz) = 13088073
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= drm-devel-kmod
|
||||
PORTVERSION= 5.0.g20190827
|
||||
PORTVERSION= 5.0.g20190828
|
||||
CATEGORIES= graphics kld
|
||||
|
||||
MAINTAINER= x11@FreeBSD.org
|
||||
|
|
@ -28,7 +28,7 @@ USES= kmod uidfix compiler:c++11-lang
|
|||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= FreeBSDDesktop
|
||||
GH_PROJECT= kms-drm
|
||||
GH_TAGNAME= e7a324e
|
||||
GH_TAGNAME= dc414a9
|
||||
|
||||
.include <bsd.port.options.mk>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1566909948
|
||||
SHA256 (FreeBSDDesktop-kms-drm-5.0.g20190827-e7a324e_GH0.tar.gz) = d21cf5a235c7aa2e32bbf3922a65743bc4937c33b05071e8f59d25b2723eaee8
|
||||
SIZE (FreeBSDDesktop-kms-drm-5.0.g20190827-e7a324e_GH0.tar.gz) = 14630972
|
||||
TIMESTAMP = 1566979283
|
||||
SHA256 (FreeBSDDesktop-kms-drm-5.0.g20190828-dc414a9_GH0.tar.gz) = 8189168dce8bd1189ca45725ccd0e2ec55184d102bb81934f90f4f821ab7e4c8
|
||||
SIZE (FreeBSDDesktop-kms-drm-5.0.g20190828-dc414a9_GH0.tar.gz) = 14631126
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= drm-legacy-kmod
|
||||
PORTVERSION= g20190801
|
||||
PORTVERSION= g20190828
|
||||
CATEGORIES= graphics
|
||||
|
||||
MAINTAINER= x11@FreeBSD.org
|
||||
|
|
@ -27,7 +27,7 @@ CONFLICTS_INSTALL= drm-devel-kmod \
|
|||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= FreeBSDDesktop
|
||||
GH_PROJECT= drm-legacy
|
||||
GH_TAGNAME= d423f7c
|
||||
GH_TAGNAME= 55900ed
|
||||
|
||||
.include <bsd.port.options.mk>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1564689275
|
||||
SHA256 (FreeBSDDesktop-drm-legacy-g20190801-d423f7c_GH0.tar.gz) = d4a77224a713a6d9b647546e1db968be0a7e5335df807a14b139412446fc3380
|
||||
SIZE (FreeBSDDesktop-drm-legacy-g20190801-d423f7c_GH0.tar.gz) = 1676487
|
||||
TIMESTAMP = 1566979460
|
||||
SHA256 (FreeBSDDesktop-drm-legacy-g20190828-55900ed_GH0.tar.gz) = 8f9600c19a8d32de361ea969bef96dd2a2f87aa6aebadf83d7653dcf0dfdb7a6
|
||||
SIZE (FreeBSDDesktop-drm-legacy-g20190828-55900ed_GH0.tar.gz) = 1676494
|
||||
|
|
|
|||
|
|
@ -122,7 +122,7 @@ GEXIV2_CONFIGURE_WITH= gexiv2
|
|||
TIFF_LIB_DEPENDS= libtiff.so:graphics/tiff
|
||||
TIFF_CONFIGURE_WITH= libtiff
|
||||
|
||||
.include <bsd.port.options.mk>
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${PORT_OPTIONS:MPANGO} && ${PORT_OPTIONS:MCAIRO}
|
||||
PLIST_SUB+= PANGOCAIRO=""
|
||||
|
|
@ -135,6 +135,9 @@ post-patch:
|
|||
${REINPLACE_CMD} -e "s/lua >/lua-${LUA_VER} >/g" \
|
||||
-e 's|\(lua\)\(5\.1\)|\1-\2|g ; s|x86_64|amd64|g' \
|
||||
${WRKSRC}/configure
|
||||
.if ${CHOSEN_COMPILER_TYPE} == clang
|
||||
${REINPLACE_CMD} -e '/altivec.h/d' ${WRKSRC}/gegl/opencl/cl_platform.h
|
||||
.endif
|
||||
|
||||
post-patch-EXAMPLES-off:
|
||||
${REINPLACE_CMD} -e 's|tools examples|tools|g' \
|
||||
|
|
@ -147,4 +150,4 @@ post-install-EXAMPLES-on:
|
|||
${INSTALL_DATA} ${WRKSRC}/examples/${ex}.c ${STAGEDIR}${EXAMPLESDIR}
|
||||
.endfor
|
||||
|
||||
.include <bsd.port.mk>
|
||||
.include <bsd.port.post.mk>
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
PORTNAME= imv
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 4.0.0
|
||||
DISTVERSION= 4.0.1
|
||||
CATEGORIES= graphics
|
||||
|
||||
MAINTAINER= tobik@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1566916049
|
||||
SHA256 (eXeC64-imv-v4.0.0_GH0.tar.gz) = 3300418632bbb8296634a2aea2a2709e31b08d2fc8f1464ae03b3b5754474299
|
||||
SIZE (eXeC64-imv-v4.0.0_GH0.tar.gz) = 74022
|
||||
TIMESTAMP = 1567009994
|
||||
SHA256 (eXeC64-imv-v4.0.1_GH0.tar.gz) = b2370c7ab88056b4c832fa24ac837ac645378d9fa028f4bb8828da6a832b2e27
|
||||
SIZE (eXeC64-imv-v4.0.1_GH0.tar.gz) = 74982
|
||||
|
|
|
|||
|
|
@ -29,6 +29,10 @@ GH_TAGNAME= da84a071
|
|||
USE_GNOME= atkmm cairomm glib20 glibmm gtk20 gtkmm24 libsigc++20 pangomm
|
||||
|
||||
CMAKE_OFF= BUNDLED_LENSFUN
|
||||
#Disable optimization for the builder CPU when building official packages
|
||||
.if defined(PACKAGE_BUILDING)
|
||||
CMAKE_ON= BINARY_PACKAGE_BUILD
|
||||
.endif
|
||||
|
||||
LDFLAGS+= -lexecinfo
|
||||
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
#SET(GMIC_FLAGS "-Wno-error=c++11-narrowing -Dgmic_build -Dcimg_use_vt100 -Dcimg_use_fftw3 -Dcimg_use_tiff -Dcimg_use_zlib -Dcimg_display=0 -Dcimg_use_fftw3_singlethread -fpermissive")
|
||||
ELSE(MINGW)
|
||||
- SET(GMIC_FLAGS "-std=gnu++11 -march=nocona -mno-sse3 -mtune=generic -Wno-error=narrowing -Dgmic_build -Dcimg_use_vt100 -Dgmic_is_parallel -Dcimg_use_fftw3 -Dcimg_use_tiff -Dcimg_use_zlib -Dcimg_display=0 -fno-ipa-sra -fpermissive")
|
||||
+ SET(GMIC_FLAGS "-std=gnu++11 -march=nocona -mno-sse3 -mtune=generic -Wno-error=narrowing -Dgmic_build -Dcimg_use_vt100 -Dgmic_is_parallel -Dcimg_use_fftw3 -Dcimg_use_tiff -Dcimg_use_zlib -Dcimg_display=0 -fpermissive")
|
||||
+ SET(GMIC_FLAGS "-std=gnu++11 -Wno-error=narrowing -Dgmic_build -Dcimg_use_vt100 -Dgmic_is_parallel -Dcimg_use_fftw3 -Dcimg_use_tiff -Dcimg_use_zlib -Dcimg_display=0 -fpermissive")
|
||||
ENDIF(MINGW)
|
||||
|
||||
set(COMPILE_FLAGS " ${GMIC_FLAGS} -I${CMAKE_SOURCE_DIR}/src/dt -DLIBRAW_NODLL -DINSTALL_PREFIX='\"${INSTALL_PREFIX}\"' ")
|
||||
|
|
|
|||
|
|
@ -0,0 +1,17 @@
|
|||
--- src/external/rawspeed/src/librawspeed/common/Mutex.h.orig 2019-08-13 19:14:10 UTC
|
||||
+++ src/external/rawspeed/src/librawspeed/common/Mutex.h
|
||||
@@ -77,12 +77,12 @@ class CAPABILITY("mutex") Mutex final { (public)
|
||||
// Acquire/lock this mutex exclusively. Only one thread can have exclusive
|
||||
// access at any one time. Write operations to guarded data require an
|
||||
// exclusive lock.
|
||||
- void __attribute__((const)) Lock() const ACQUIRE() {
|
||||
+ void Lock() ACQUIRE() {
|
||||
// NOP, since there is no mutex. only here to still check for proper locking
|
||||
}
|
||||
|
||||
// Release/unlock an exclusive mutex.
|
||||
- void __attribute__((const)) Unlock() const RELEASE() {
|
||||
+ void Unlock() RELEASE() {
|
||||
// NOP, since there is no mutex. only here to still check for proper locking
|
||||
}
|
||||
|
||||
|
|
@ -3,8 +3,7 @@
|
|||
|
||||
PORTNAME= qgis
|
||||
DISTVERSIONPREFIX= final-
|
||||
DISTVERSION= 3_4_7
|
||||
PORTREVISION= 1
|
||||
DISTVERSION= 3_4_11
|
||||
CATEGORIES= graphics geography
|
||||
PKGNAMESUFFIX= -ltr
|
||||
|
||||
|
|
@ -13,13 +12,14 @@ COMMENT= Free and Open Source Geographic Information System
|
|||
|
||||
LICENSE= GPLv2
|
||||
|
||||
BUILD_DEPENDS= gpsbabel>=1.5.4:astro/gpsbabel \
|
||||
BUILD_DEPENDS= clang${LLVM_DEFAULT}:devel/llvm${LLVM_DEFAULT} \
|
||||
gpsbabel>=1.5.4:astro/gpsbabel \
|
||||
txt2tags:textproc/txt2tags \
|
||||
${PYTHON_PKGNAMEPREFIX}cycler>=0.10.0:devel/py-cycler@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}dateutil>=2.7.3:devel/py-dateutil@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}dateutil>=2.8.0:devel/py-dateutil@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}future>=0.17.1:devel/py-future@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}httplib2>=0.12.1:www/py-httplib2@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}Jinja2>=2.10:devel/py-Jinja2@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}Jinja2>=2.10.1:devel/py-Jinja2@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}MarkupSafe>=1.1.1:textproc/py-MarkupSafe@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}matplotlib>=2.2.4:math/py-matplotlib@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}mock>=2.0.0:devel/py-mock@${PY_FLAVOR} \
|
||||
|
|
@ -27,8 +27,8 @@ BUILD_DEPENDS= gpsbabel>=1.5.4:astro/gpsbabel \
|
|||
${PYTHON_PKGNAMEPREFIX}pbr>=3.1.1:devel/py-pbr@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pip>=9.0.3:devel/py-pip@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}plotly>=3.0.2:graphics/py-plotly@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pygments>=2.3.0:textproc/py-pygments@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pyproj>=1.9.6:graphics/py-pyproj@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pygments>=2.4.1:textproc/py-pygments@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pyproj>=2.1.3:graphics/py-pyproj@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pytz>=2019.1:devel/py-pytz@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}requests>=2.21.0:www/py-requests@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}six>=1.12.0:devel/py-six@${PY_FLAVOR} \
|
||||
|
|
@ -36,24 +36,30 @@ BUILD_DEPENDS= gpsbabel>=1.5.4:astro/gpsbabel \
|
|||
${PYTHON_PKGNAMEPREFIX}yaml>=5.1:devel/py-yaml@${PY_FLAVOR}
|
||||
RUN_DEPENDS= astyle:devel/astyle \
|
||||
${PYTHON_PKGNAMEPREFIX}cycler>=0.10.0:devel/py-cycler@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}dateutil>=2.7.3:devel/py-dateutil@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}dateutil>=2.8.0:devel/py-dateutil@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}future>=0.17.1:devel/py-future@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}gdal>=2.2.4:graphics/py-gdal@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}gdal>=2.4.1:graphics/py-gdal@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}geojson>=2.3.0:devel/py-geojson@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}httplib2>=0.12.1:www/py-httplib2@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}Jinja2>=2.10:devel/py-Jinja2@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}Jinja2>=2.10.1:devel/py-Jinja2@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}MarkupSafe>=1.1.1:textproc/py-MarkupSafe@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}matplotlib>=2.2.4:math/py-matplotlib@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}mock>=2.0.0:devel/py-mock@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}numpy>=1.11.2:math/py-numpy@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}nbformat>=4.4.0:devel/py-nbformat@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}networkx>=2.1:math/py-networkx@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}numpy>=1.16.1:math/py-numpy@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}OWSLib>=0.17.1:graphics/py-OWSLib@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pbr>=3.1.1:devel/py-pbr@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pillow>=6.0.0:graphics/py-pillow@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pip>=9.0.3:devel/py-pip@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}plotly>=3.0.2:graphics/py-plotly@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}psycopg2>=2.7.6.1:databases/py-psycopg2@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pygments>=2.3.0:textproc/py-pygments@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pyproj>=1.9.6:graphics/py-pyproj@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}psycopg2>=2.8.3:databases/py-psycopg2@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pygments>=2.4.1:textproc/py-pygments@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pyproj>=2.1.3:graphics/py-pyproj@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pytz>=2019.1:devel/py-pytz@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}requests>=2.21.0:www/py-requests@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}scikit-image>=0.14.2_2:graphics/py-scikit-image@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}Shapely>=1.6.4:devel/py-shapely@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}six>=1.12.0:devel/py-six@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}sqlite3>=3.6.8:databases/py-sqlite3@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}termcolor>=1.1.0:devel/py-termcolor@${PY_FLAVOR} \
|
||||
|
|
@ -101,7 +107,8 @@ CMAKE_ARGS+= -DCMAKE_BUILD_TYPE:STRING=Release \
|
|||
-DPYUIC_PROGRAM:FILEPATH=${LOCALBASE}/bin/pyuic5-${PYTHON_VER} \
|
||||
-DQSCI_SIP_DIR:PATH=${PYQT_SIPDIR}/Qsci \
|
||||
-DQWT_INCLUDE_DIR:PATH=${LOCALBASE}/include/qt5/qwt6 \
|
||||
-DQWT_LIBRARY:FILEPATH=${LOCALBASE}/lib/qt5/libqwt6.so
|
||||
-DQWT_LIBRARY:FILEPATH=${LOCALBASE}/lib/qt5/libqwt6.so \
|
||||
-DCMAKE_POLICY_DEFAULT_CMP0056:STRING=NEW
|
||||
CMAKE_ON= BUILD_TESTING ENABLE_TESTS WITH_3D WITH_ASTYLE \
|
||||
WITH_BINDINGS WITH_CUSTOM_WIDGETS WITH_POSTGRESQL
|
||||
CMAKE_OFF= WITH_GLOBE WITH_QWTPOLAR
|
||||
|
|
@ -130,6 +137,13 @@ SERVER_CMAKE_BOOL= WITH_SERVER
|
|||
|
||||
PLIST_SUB= DISTVERSION=${PORTVERSION}
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
# make describe needs them here, after bsd.port.pre.mk
|
||||
CPP= clang-cpp${LLVM_DEFAULT}
|
||||
CC= clang${LLVM_DEFAULT}
|
||||
CXX= clang++${LLVM_DEFAULT}
|
||||
|
||||
post-patch:
|
||||
@${REINPLACE_CMD} -e 's|markupsafe ||g' \
|
||||
${WRKSRC}/python/ext-libs/CMakeLists.txt
|
||||
|
|
@ -144,4 +158,4 @@ post-install:
|
|||
check:
|
||||
@cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} check
|
||||
|
||||
.include <bsd.port.mk>
|
||||
.include <bsd.port.post.mk>
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1556614839
|
||||
SHA256 (qgis-QGIS-final-3_4_7_GH0.tar.gz) = d070da42e842e59ce9a338b40784b9bc4582f3d48a19255fa8aef967cca653ba
|
||||
SIZE (qgis-QGIS-final-3_4_7_GH0.tar.gz) = 91022939
|
||||
TIMESTAMP = 1566752734
|
||||
SHA256 (qgis-QGIS-final-3_4_11_GH0.tar.gz) = 839c279c6c97f9e61495666293bd0b70701ef77b7ef4eb8f43754719d0dd8fd2
|
||||
SIZE (qgis-QGIS-final-3_4_11_GH0.tar.gz) = 91011251
|
||||
|
|
|
|||
|
|
@ -2349,14 +2349,11 @@ share/metainfo/org.qgis.qgis.appdata.xml
|
|||
%%DATADIR%%/i18n/qgis_da.qm
|
||||
%%DATADIR%%/i18n/qgis_de.qm
|
||||
%%DATADIR%%/i18n/qgis_el.qm
|
||||
%%DATADIR%%/i18n/qgis_eo.qm
|
||||
%%DATADIR%%/i18n/qgis_es.qm
|
||||
%%DATADIR%%/i18n/qgis_et.qm
|
||||
%%DATADIR%%/i18n/qgis_eu.qm
|
||||
%%DATADIR%%/i18n/qgis_fi.qm
|
||||
%%DATADIR%%/i18n/qgis_fr.qm
|
||||
%%DATADIR%%/i18n/qgis_gl.qm
|
||||
%%DATADIR%%/i18n/qgis_hi.qm
|
||||
%%DATADIR%%/i18n/qgis_hu.qm
|
||||
%%DATADIR%%/i18n/qgis_id.qm
|
||||
%%DATADIR%%/i18n/qgis_is.qm
|
||||
|
|
@ -2767,7 +2764,8 @@ share/metainfo/org.qgis.qgis.appdata.xml
|
|||
%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.stats.txt
|
||||
%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.stats.zonal.txt
|
||||
%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.stream.extract.txt
|
||||
%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.sun.txt
|
||||
%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.sun.incidout.txt
|
||||
%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.sun.insoltime.txt
|
||||
%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.sunhours.txt
|
||||
%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.sunmask.datetime.txt
|
||||
%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.sunmask.position.txt
|
||||
|
|
@ -3754,6 +3752,7 @@ share/metainfo/org.qgis.qgis.appdata.xml
|
|||
%%DATADIR%%/python/qsci_apis/QScintilla2-2.7.2.api
|
||||
%%DATADIR%%/python/qsci_apis/pyqgis.pap
|
||||
%%DATADIR%%/resources/2to3migration.txt
|
||||
%%DATADIR%%/resources/compdcs.csv
|
||||
%%DATADIR%%/resources/cpt-city-qgis-min/README-qgis.txt
|
||||
%%DATADIR%%/resources/cpt-city-qgis-min/README.txt
|
||||
%%DATADIR%%/resources/cpt-city-qgis-min/VERSION-parent.xml
|
||||
|
|
@ -4955,6 +4954,9 @@ share/metainfo/org.qgis.qgis.appdata.xml
|
|||
%%DATADIR%%/resources/data/world_map.qml
|
||||
%%DATADIR%%/resources/data/world_map.shp
|
||||
%%DATADIR%%/resources/data/world_map.shx
|
||||
%%DATADIR%%/resources/datum_shift.csv
|
||||
%%DATADIR%%/resources/gcs.csv
|
||||
%%DATADIR%%/resources/geoccs.csv
|
||||
%%DATADIR%%/resources/metadata-ISO/LinkPropertyLookupTable.csv
|
||||
%%DATADIR%%/resources/metadata-ISO/country_code_ISO_3166.csv
|
||||
%%DATADIR%%/resources/metadata-ISO/language_codes_ISO_639.csv
|
||||
|
|
@ -4962,6 +4964,7 @@ share/metainfo/org.qgis.qgis.appdata.xml
|
|||
%%DATADIR%%/resources/metadata-ISO/md_scope_codes.csv
|
||||
%%DATADIR%%/resources/metadata-ISO/mime.csv
|
||||
%%DATADIR%%/resources/palettes/new_layer_colors.gpl
|
||||
%%DATADIR%%/resources/pcs.csv
|
||||
%%DATADIR%%/resources/qgis.db
|
||||
%%DATADIR%%/resources/qgis_global_settings.ini
|
||||
%%SERVER%%%%DATADIR%%/resources/server/schemaExtension.xsd
|
||||
|
|
@ -4977,9 +4980,13 @@ share/metainfo/org.qgis.qgis.appdata.xml
|
|||
%%DATADIR%%/resources/themes/Night Mapping/icons/eye.svg
|
||||
%%DATADIR%%/resources/themes/Night Mapping/icons/handle-horizontal.svg
|
||||
%%DATADIR%%/resources/themes/Night Mapping/icons/handle-vertical.svg
|
||||
%%DATADIR%%/resources/themes/Night Mapping/icons/qcheckbox-checked-disabled.svg
|
||||
%%DATADIR%%/resources/themes/Night Mapping/icons/qcheckbox-checked.svg
|
||||
%%DATADIR%%/resources/themes/Night Mapping/icons/qcheckbox-unchecked-disabled.svg
|
||||
%%DATADIR%%/resources/themes/Night Mapping/icons/qcheckbox-unchecked.svg
|
||||
%%DATADIR%%/resources/themes/Night Mapping/icons/qradiobox-checked-disabled.svg
|
||||
%%DATADIR%%/resources/themes/Night Mapping/icons/qradiobox-checked.svg
|
||||
%%DATADIR%%/resources/themes/Night Mapping/icons/qradiobox-unchecked-disabled.svg
|
||||
%%DATADIR%%/resources/themes/Night Mapping/icons/qradiobox-unchecked.svg
|
||||
%%DATADIR%%/resources/themes/Night Mapping/icons/separator-horizontal.svg
|
||||
%%DATADIR%%/resources/themes/Night Mapping/icons/separator-vertical.svg
|
||||
|
|
@ -4987,6 +4994,7 @@ share/metainfo/org.qgis.qgis.appdata.xml
|
|||
%%DATADIR%%/resources/themes/Night Mapping/qscintilla.ini
|
||||
%%DATADIR%%/resources/themes/Night Mapping/style.qss
|
||||
%%DATADIR%%/resources/themes/Night Mapping/variables.qss
|
||||
%%DATADIR%%/resources/vertcs.csv
|
||||
%%DATADIR%%/svg/accommodation/accommodation_alpinehut.svg
|
||||
%%DATADIR%%/svg/accommodation/accommodation_bed_and_breakfast.svg
|
||||
%%DATADIR%%/svg/accommodation/accommodation_camping.svg
|
||||
|
|
|
|||
|
|
@ -3,8 +3,7 @@
|
|||
|
||||
PORTNAME= qgis
|
||||
DISTVERSIONPREFIX= final-
|
||||
DISTVERSION= 3_6_2
|
||||
PORTREVISION= 1
|
||||
DISTVERSION= 3_8_2
|
||||
CATEGORIES= graphics geography
|
||||
|
||||
MAINTAINER= rhurlin@gwdg.de
|
||||
|
|
@ -12,13 +11,14 @@ COMMENT= Free and Open Source Geographic Information System
|
|||
|
||||
LICENSE= GPLv2
|
||||
|
||||
BUILD_DEPENDS= gpsbabel>=1.5.4:astro/gpsbabel \
|
||||
BUILD_DEPENDS= clang${LLVM_VER}:devel/llvm${LLVM_VER} \
|
||||
gpsbabel>=1.5.4:astro/gpsbabel \
|
||||
txt2tags:textproc/txt2tags \
|
||||
${PYTHON_PKGNAMEPREFIX}cycler>=0.10.0:devel/py-cycler@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}dateutil>=2.7.3:devel/py-dateutil@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}dateutil>=2.8.0:devel/py-dateutil@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}future>=0.17.1:devel/py-future@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}httplib2>=0.12.1:www/py-httplib2@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}Jinja2>=2.10:devel/py-Jinja2@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}Jinja2>=2.10.1:devel/py-Jinja2@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}MarkupSafe>=1.1.1:textproc/py-MarkupSafe@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}matplotlib>=2.2.4:math/py-matplotlib@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}mock>=2.0.0:devel/py-mock@${PY_FLAVOR} \
|
||||
|
|
@ -26,8 +26,8 @@ BUILD_DEPENDS= gpsbabel>=1.5.4:astro/gpsbabel \
|
|||
${PYTHON_PKGNAMEPREFIX}pbr>=3.1.1:devel/py-pbr@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pip>=9.0.3:devel/py-pip@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}plotly>=3.0.2:graphics/py-plotly@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pygments>=2.3.0:textproc/py-pygments@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pyproj>=1.9.6:graphics/py-pyproj@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pygments>=2.4.1:textproc/py-pygments@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pyproj>=2.1.3:graphics/py-pyproj@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pytz>=2019.1:devel/py-pytz@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}requests>=2.21.0:www/py-requests@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}six>=1.12.0:devel/py-six@${PY_FLAVOR} \
|
||||
|
|
@ -35,24 +35,30 @@ BUILD_DEPENDS= gpsbabel>=1.5.4:astro/gpsbabel \
|
|||
${PYTHON_PKGNAMEPREFIX}yaml>=5.1:devel/py-yaml@${PY_FLAVOR}
|
||||
RUN_DEPENDS= astyle:devel/astyle \
|
||||
${PYTHON_PKGNAMEPREFIX}cycler>=0.10.0:devel/py-cycler@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}dateutil>=2.7.3:devel/py-dateutil@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}dateutil>=2.8.0:devel/py-dateutil@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}future>=0.17.1:devel/py-future@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}gdal>=2.2.4:graphics/py-gdal@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}gdal>=2.4.1:graphics/py-gdal@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}geojson>=2.3.0:devel/py-geojson@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}httplib2>=0.12.1:www/py-httplib2@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}Jinja2>=2.10:devel/py-Jinja2@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}Jinja2>=2.10.1:devel/py-Jinja2@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}MarkupSafe>=1.1.1:textproc/py-MarkupSafe@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}matplotlib>=2.2.4:math/py-matplotlib@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}mock>=2.0.0:devel/py-mock@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}numpy>=1.11.2:math/py-numpy@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}nbformat>=4.4.0:devel/py-nbformat@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}networkx>=2.1:math/py-networkx@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}numpy>=1.16.1:math/py-numpy@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}OWSLib>=0.17.1:graphics/py-OWSLib@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pbr>=3.1.1:devel/py-pbr@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pillow>=6.0.0:graphics/py-pillow@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pip>=9.0.3:devel/py-pip@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}plotly>=3.0.2:graphics/py-plotly@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}psycopg2>=2.7.7:databases/py-psycopg2@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pygments>=2.3.0:textproc/py-pygments@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pyproj>=1.9.6:graphics/py-pyproj@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}psycopg2>=2.8.3:databases/py-psycopg2@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pygments>=2.4.1:textproc/py-pygments@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pyproj>=2.1.3:graphics/py-pyproj@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pytz>=2019.1:devel/py-pytz@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}requests>=2.21.0:www/py-requests@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}scikit-image>=0.14.2_2:graphics/py-scikit-image@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}Shapely>=1.6.4:devel/py-shapely@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}six>=1.12.0:devel/py-six@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}sqlite3>=3.6.8:databases/py-sqlite3@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}termcolor>=1.1.0:devel/py-termcolor@${PY_FLAVOR} \
|
||||
|
|
@ -100,7 +106,8 @@ CMAKE_ARGS+= -DCMAKE_BUILD_TYPE:STRING=Release \
|
|||
-DPYUIC_PROGRAM:FILEPATH=${LOCALBASE}/bin/pyuic5-${PYTHON_VER} \
|
||||
-DQSCI_SIP_DIR:PATH=${PYQT_SIPDIR}/Qsci \
|
||||
-DQWT_INCLUDE_DIR:PATH=${LOCALBASE}/include/qt5/qwt6 \
|
||||
-DQWT_LIBRARY:FILEPATH=${LOCALBASE}/lib/qt5/libqwt6.so
|
||||
-DQWT_LIBRARY:FILEPATH=${LOCALBASE}/lib/qt5/libqwt6.so \
|
||||
-DCMAKE_POLICY_DEFAULT_CMP0056:STRING=NEW
|
||||
CMAKE_ON= BUILD_TESTING ENABLE_TESTS WITH_3D WITH_ASTYLE \
|
||||
WITH_BINDINGS WITH_CUSTOM_WIDGETS WITH_POSTGRESQL
|
||||
CMAKE_OFF= WITH_GLOBE WITH_QWTPOLAR
|
||||
|
|
@ -129,6 +136,15 @@ SERVER_CMAKE_BOOL= WITH_SERVER
|
|||
|
||||
PLIST_SUB= DISTVERSION=${PORTVERSION}
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
# make describe needs them here, after bsd.port.pre.mk
|
||||
# clang 7.x and 8.x do not build properly
|
||||
LLVM_VER= 90
|
||||
CPP= clang-cpp${LLVM_VER}
|
||||
CC= clang${LLVM_VER}
|
||||
CXX= clang++${LLVM_VER}
|
||||
|
||||
post-patch:
|
||||
@${REINPLACE_CMD} -e 's|markupsafe ||g' \
|
||||
${WRKSRC}/python/ext-libs/CMakeLists.txt
|
||||
|
|
@ -143,4 +159,4 @@ post-install:
|
|||
check:
|
||||
@cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} check
|
||||
|
||||
.include <bsd.port.mk>
|
||||
.include <bsd.port.post.mk>
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1557046440
|
||||
SHA256 (qgis-QGIS-final-3_6_2_GH0.tar.gz) = 10920eaac37ea5986a9f833a2db79ec5d5c359edfc6821643a24cfc68df48638
|
||||
SIZE (qgis-QGIS-final-3_6_2_GH0.tar.gz) = 94662525
|
||||
TIMESTAMP = 1566761570
|
||||
SHA256 (qgis-QGIS-final-3_8_2_GH0.tar.gz) = 85be6520cf4dd35f2f5e6dd43f7fb56ff4ffa9bd00fca734433c31f0fe9e67bd
|
||||
SIZE (qgis-QGIS-final-3_8_2_GH0.tar.gz) = 99980486
|
||||
|
|
|
|||
|
|
@ -17,6 +17,7 @@ include/qgis/Triangulation.h
|
|||
include/qgis/Vector3D.h
|
||||
include/qgis/characterwidget.h
|
||||
include/qgis/mersenne-twister.h
|
||||
include/qgis/nlohmann/json_fwd.hpp
|
||||
include/qgis/qgis.h
|
||||
include/qgis/qgis_3d.h
|
||||
include/qgis/qgis_analysis.h
|
||||
|
|
@ -30,6 +31,7 @@ include/qgis/qgisinterface.h
|
|||
include/qgis/qgisplugin.h
|
||||
include/qgis/qgs25drenderer.h
|
||||
include/qgis/qgs25drendererwidget.h
|
||||
include/qgis/qgs3danimationsettings.h
|
||||
include/qgis/qgs3dmapscene.h
|
||||
include/qgis/qgs3dmapsettings.h
|
||||
include/qgis/qgs3drendererregistry.h
|
||||
|
|
@ -52,9 +54,11 @@ include/qgis/qgsactionmenu.h
|
|||
include/qgis/qgsactionscope.h
|
||||
include/qgis/qgsactionscoperegistry.h
|
||||
include/qgis/qgsadvanceddigitizingdockwidget.h
|
||||
include/qgis/qgsadvanceddigitizingfloater.h
|
||||
include/qgis/qgsaggregatecalculator.h
|
||||
include/qgis/qgsaggregatetoolbutton.h
|
||||
include/qgis/qgsalgorithmimportphotos.h
|
||||
include/qgis/qgsalignmentcombobox.h
|
||||
include/qgis/qgsalignraster.h
|
||||
include/qgis/qgsanalysis.h
|
||||
include/qgis/qgsanimatedicon.h
|
||||
|
|
@ -186,6 +190,7 @@ include/qgis/qgsconfigureshortcutsdialog.h
|
|||
include/qgis/qgsconnectionpool.h
|
||||
include/qgis/qgscontrastenhancement.h
|
||||
include/qgis/qgscontrastenhancementfunction.h
|
||||
include/qgis/qgscoordinateboundspreviewmapwidget.h
|
||||
include/qgis/qgscoordinateformatter.h
|
||||
include/qgis/qgscoordinatereferencesystem.h
|
||||
include/qgis/qgscoordinatetransform.h
|
||||
|
|
@ -335,6 +340,7 @@ include/qgis/qgsfilewidgetplugin.h
|
|||
include/qgis/qgsfillsymbollayer.h
|
||||
include/qgis/qgsfilterlineedit.h
|
||||
include/qgis/qgsfilterlineeditplugin.h
|
||||
include/qgis/qgsfindfilesbypatternwidget.h
|
||||
include/qgis/qgsfloatingwidget.h
|
||||
include/qgis/qgsfocuswatcher.h
|
||||
include/qgis/qgsfontbutton.h
|
||||
|
|
@ -420,6 +426,7 @@ include/qgis/qgshistogramwidget.h
|
|||
include/qgis/qgshstoreutils.h
|
||||
include/qgis/qgshtmlannotation.h
|
||||
include/qgis/qgshtmlutils.h
|
||||
include/qgis/qgshtmlwidgetwrapper.h
|
||||
include/qgis/qgshuesaturationfilter.h
|
||||
include/qgis/qgsidentifymenu.h
|
||||
include/qgis/qgsidwinterpolator.h
|
||||
|
|
@ -466,6 +473,7 @@ include/qgis/qgslayertreeviewitemdelegate.h
|
|||
include/qgis/qgslayout.h
|
||||
include/qgis/qgslayoutaligner.h
|
||||
include/qgis/qgslayoutatlas.h
|
||||
include/qgis/qgslayoutcombobox.h
|
||||
include/qgis/qgslayoutcustomdrophandler.h
|
||||
include/qgis/qgslayoutdesignerinterface.h
|
||||
include/qgis/qgslayouteffect.h
|
||||
|
|
@ -546,9 +554,11 @@ include/qgis/qgsline3dsymbol.h
|
|||
include/qgis/qgsline3dsymbol_p.h
|
||||
include/qgis/qgslinearminmaxenhancement.h
|
||||
include/qgis/qgslinearminmaxenhancementwithclip.h
|
||||
include/qgis/qgslinematerial_p.h
|
||||
include/qgis/qgslinesegment.h
|
||||
include/qgis/qgslinestring.h
|
||||
include/qgis/qgslinesymbollayer.h
|
||||
include/qgis/qgslinevertexdata_p.h
|
||||
include/qgis/qgslinuxnative.h
|
||||
include/qgis/qgslistfieldformatter.h
|
||||
include/qgis/qgslistwidget.h
|
||||
|
|
@ -635,6 +645,7 @@ include/qgis/qgsmeshlayerutils.h
|
|||
include/qgis/qgsmeshmemorydataprovider.h
|
||||
include/qgis/qgsmeshrenderersettings.h
|
||||
include/qgis/qgsmeshspatialindex.h
|
||||
include/qgis/qgsmeshtimesettings.h
|
||||
include/qgis/qgsmeshvectorrenderer.h
|
||||
include/qgis/qgsmessagebar.h
|
||||
include/qgis/qgsmessagebaritem.h
|
||||
|
|
@ -682,6 +693,7 @@ include/qgis/qgsofflineediting.h
|
|||
include/qgis/qgsoffscreen3dengine.h
|
||||
include/qgis/qgsogcutils.h
|
||||
include/qgis/qgsogrhelperfunctions.h
|
||||
include/qgis/qgsonlineterraingenerator.h
|
||||
include/qgis/qgsopacitywidget.h
|
||||
include/qgis/qgsopacitywidgetplugin.h
|
||||
include/qgis/qgsoptional.h
|
||||
|
|
@ -743,6 +755,7 @@ include/qgis/qgsprocessingcontext.h
|
|||
include/qgis/qgsprocessingfeedback.h
|
||||
include/qgis/qgsprocessinggui.h
|
||||
include/qgis/qgsprocessingguiregistry.h
|
||||
include/qgis/qgsprocessingmaplayercombobox.h
|
||||
include/qgis/qgsprocessingmatrixparameterdialog.h
|
||||
include/qgis/qgsprocessingmodelalgorithm.h
|
||||
include/qgis/qgsprocessingmodelchildalgorithm.h
|
||||
|
|
@ -751,6 +764,7 @@ include/qgis/qgsprocessingmodelcomponent.h
|
|||
include/qgis/qgsprocessingmodelerparameterwidget.h
|
||||
include/qgis/qgsprocessingmodeloutput.h
|
||||
include/qgis/qgsprocessingmodelparameter.h
|
||||
include/qgis/qgsprocessingmultipleselectiondialog.h
|
||||
include/qgis/qgsprocessingoutputs.h
|
||||
include/qgis/qgsprocessingparameters.h
|
||||
include/qgis/qgsprocessingparametertype.h
|
||||
|
|
@ -776,6 +790,7 @@ include/qgis/qgsprojectstorage.h
|
|||
include/qgis/qgsprojectstorageregistry.h
|
||||
include/qgis/qgsprojecttranslator.h
|
||||
include/qgis/qgsprojectversion.h
|
||||
include/qgis/qgsprojutils.h
|
||||
include/qgis/qgsproperty.h
|
||||
include/qgis/qgsproperty_p.h
|
||||
include/qgis/qgspropertyassistantwidget.h
|
||||
|
|
@ -955,6 +970,7 @@ include/qgis/qgstablewidgetitem.h
|
|||
include/qgis/qgstabwidget.h
|
||||
include/qgis/qgstaskmanager.h
|
||||
include/qgis/qgstaskmanagerwidget.h
|
||||
include/qgis/qgsterraindownloader.h
|
||||
include/qgis/qgsterrainentity_p.h
|
||||
include/qgis/qgsterraingenerator.h
|
||||
include/qgis/qgsterraintexturegenerator_p.h
|
||||
|
|
@ -977,6 +993,7 @@ include/qgis/qgstextrenderer.h
|
|||
include/qgis/qgstextrenderer_p.h
|
||||
include/qgis/qgsthreadingutils.h
|
||||
include/qgis/qgsticksscalebarrenderer.h
|
||||
include/qgis/qgstilecache.h
|
||||
include/qgis/qgstilingscheme.h
|
||||
include/qgis/qgstininterpolator.h
|
||||
include/qgis/qgstolerance.h
|
||||
|
|
@ -1060,6 +1077,7 @@ include/qgis/qgswkbtypes.h
|
|||
include/qgis/qgsxmlutils.h
|
||||
include/qgis/qgsziputils.h
|
||||
include/qgis/qgszonalstatistics.h
|
||||
include/qgis/qobjectuniqueptr.h
|
||||
include/qgis/ui_qgsarcgisservicesourceselectbase.h
|
||||
include/qgis/ui_qgsauthauthoritieseditor.h
|
||||
include/qgis/ui_qgsauthcertificateinfo.h
|
||||
|
|
@ -1162,6 +1180,7 @@ lib/qgis/plugins/libwmsprovider.so
|
|||
%%QT_PLUGINDIR%%/designer/libqgis_customwidgets.so.%%DISTVERSION%%
|
||||
man/man1/qgis.1.gz
|
||||
share/applications/org.qgis.qgis.desktop
|
||||
share/icons/hicolor/128x128/apps/qgis.png
|
||||
share/icons/hicolor/128x128/mimetypes/qgis-mime.png
|
||||
share/icons/hicolor/128x128/mimetypes/qgis-qgs.png
|
||||
share/icons/hicolor/128x128/mimetypes/qgis-qlr.png
|
||||
|
|
@ -1173,41 +1192,49 @@ share/icons/hicolor/16x16/mimetypes/qgis-qgs.png
|
|||
share/icons/hicolor/16x16/mimetypes/qgis-qlr.png
|
||||
share/icons/hicolor/16x16/mimetypes/qgis-qml.png
|
||||
share/icons/hicolor/16x16/mimetypes/qgis-qpt.png
|
||||
share/icons/hicolor/192x192/apps/qgis.png
|
||||
share/icons/hicolor/192x192/mimetypes/qgis-mime.png
|
||||
share/icons/hicolor/192x192/mimetypes/qgis-qgs.png
|
||||
share/icons/hicolor/192x192/mimetypes/qgis-qlr.png
|
||||
share/icons/hicolor/192x192/mimetypes/qgis-qml.png
|
||||
share/icons/hicolor/192x192/mimetypes/qgis-qpt.png
|
||||
share/icons/hicolor/22x22/apps/qgis.png
|
||||
share/icons/hicolor/22x22/mimetypes/qgis-mime.png
|
||||
share/icons/hicolor/22x22/mimetypes/qgis-qgs.png
|
||||
share/icons/hicolor/22x22/mimetypes/qgis-qlr.png
|
||||
share/icons/hicolor/22x22/mimetypes/qgis-qml.png
|
||||
share/icons/hicolor/22x22/mimetypes/qgis-qpt.png
|
||||
share/icons/hicolor/24x24/apps/qgis.png
|
||||
share/icons/hicolor/24x24/mimetypes/qgis-mime.png
|
||||
share/icons/hicolor/24x24/mimetypes/qgis-qgs.png
|
||||
share/icons/hicolor/24x24/mimetypes/qgis-qlr.png
|
||||
share/icons/hicolor/24x24/mimetypes/qgis-qml.png
|
||||
share/icons/hicolor/24x24/mimetypes/qgis-qpt.png
|
||||
share/icons/hicolor/256x256/apps/qgis.png
|
||||
share/icons/hicolor/256x256/mimetypes/qgis-mime.png
|
||||
share/icons/hicolor/256x256/mimetypes/qgis-qgs.png
|
||||
share/icons/hicolor/256x256/mimetypes/qgis-qlr.png
|
||||
share/icons/hicolor/256x256/mimetypes/qgis-qml.png
|
||||
share/icons/hicolor/256x256/mimetypes/qgis-qpt.png
|
||||
share/icons/hicolor/32x32/apps/qgis.png
|
||||
share/icons/hicolor/32x32/mimetypes/qgis-mime.png
|
||||
share/icons/hicolor/32x32/mimetypes/qgis-qgs.png
|
||||
share/icons/hicolor/32x32/mimetypes/qgis-qlr.png
|
||||
share/icons/hicolor/32x32/mimetypes/qgis-qml.png
|
||||
share/icons/hicolor/32x32/mimetypes/qgis-qpt.png
|
||||
share/icons/hicolor/36x36/apps/qgis.png
|
||||
share/icons/hicolor/36x36/mimetypes/qgis-mime.png
|
||||
share/icons/hicolor/36x36/mimetypes/qgis-qgs.png
|
||||
share/icons/hicolor/36x36/mimetypes/qgis-qlr.png
|
||||
share/icons/hicolor/36x36/mimetypes/qgis-qml.png
|
||||
share/icons/hicolor/36x36/mimetypes/qgis-qpt.png
|
||||
share/icons/hicolor/42x42/apps/qgis.png
|
||||
share/icons/hicolor/42x42/mimetypes/qgis-mime.png
|
||||
share/icons/hicolor/42x42/mimetypes/qgis-qgs.png
|
||||
share/icons/hicolor/42x42/mimetypes/qgis-qlr.png
|
||||
share/icons/hicolor/42x42/mimetypes/qgis-qml.png
|
||||
share/icons/hicolor/42x42/mimetypes/qgis-qpt.png
|
||||
share/icons/hicolor/48x48/apps/qgis.png
|
||||
share/icons/hicolor/48x48/mimetypes/qgis-mime.png
|
||||
share/icons/hicolor/48x48/mimetypes/qgis-qgs.png
|
||||
share/icons/hicolor/48x48/mimetypes/qgis-qlr.png
|
||||
|
|
@ -1219,26 +1246,31 @@ share/icons/hicolor/512x512/mimetypes/qgis-qgs.png
|
|||
share/icons/hicolor/512x512/mimetypes/qgis-qlr.png
|
||||
share/icons/hicolor/512x512/mimetypes/qgis-qml.png
|
||||
share/icons/hicolor/512x512/mimetypes/qgis-qpt.png
|
||||
share/icons/hicolor/64x64/apps/qgis.png
|
||||
share/icons/hicolor/64x64/mimetypes/qgis-mime.png
|
||||
share/icons/hicolor/64x64/mimetypes/qgis-qgs.png
|
||||
share/icons/hicolor/64x64/mimetypes/qgis-qlr.png
|
||||
share/icons/hicolor/64x64/mimetypes/qgis-qml.png
|
||||
share/icons/hicolor/64x64/mimetypes/qgis-qpt.png
|
||||
share/icons/hicolor/72x72/apps/qgis.png
|
||||
share/icons/hicolor/72x72/mimetypes/qgis-mime.png
|
||||
share/icons/hicolor/72x72/mimetypes/qgis-qgs.png
|
||||
share/icons/hicolor/72x72/mimetypes/qgis-qlr.png
|
||||
share/icons/hicolor/72x72/mimetypes/qgis-qml.png
|
||||
share/icons/hicolor/72x72/mimetypes/qgis-qpt.png
|
||||
share/icons/hicolor/80x80/apps/qgis.png
|
||||
share/icons/hicolor/80x80/mimetypes/qgis-mime.png
|
||||
share/icons/hicolor/80x80/mimetypes/qgis-qgs.png
|
||||
share/icons/hicolor/80x80/mimetypes/qgis-qlr.png
|
||||
share/icons/hicolor/80x80/mimetypes/qgis-qml.png
|
||||
share/icons/hicolor/80x80/mimetypes/qgis-qpt.png
|
||||
share/icons/hicolor/8x8/apps/qgis.png
|
||||
share/icons/hicolor/8x8/mimetypes/qgis-mime.png
|
||||
share/icons/hicolor/8x8/mimetypes/qgis-qgs.png
|
||||
share/icons/hicolor/8x8/mimetypes/qgis-qlr.png
|
||||
share/icons/hicolor/8x8/mimetypes/qgis-qml.png
|
||||
share/icons/hicolor/8x8/mimetypes/qgis-qpt.png
|
||||
share/icons/hicolor/96x96/apps/qgis.png
|
||||
share/icons/hicolor/96x96/mimetypes/qgis-mime.png
|
||||
share/icons/hicolor/96x96/mimetypes/qgis-qgs.png
|
||||
share/icons/hicolor/96x96/mimetypes/qgis-qlr.png
|
||||
|
|
@ -1538,6 +1570,9 @@ share/metainfo/org.qgis.qgis.appdata.xml
|
|||
%%GRASS%%%%DATADIR%%/grass/modules/r.fillnulls.1.png
|
||||
%%GRASS%%%%DATADIR%%/grass/modules/r.fillnulls.2.png
|
||||
%%GRASS%%%%DATADIR%%/grass/modules/r.fillnulls.qgm
|
||||
%%GRASS%%%%DATADIR%%/grass/modules/r.geomorphon.1.png
|
||||
%%GRASS%%%%DATADIR%%/grass/modules/r.geomorphon.2.png
|
||||
%%GRASS%%%%DATADIR%%/grass/modules/r.geomorphon.qgm
|
||||
%%GRASS%%%%DATADIR%%/grass/modules/r.grow.1.png
|
||||
%%GRASS%%%%DATADIR%%/grass/modules/r.grow.2.png
|
||||
%%GRASS%%%%DATADIR%%/grass/modules/r.grow.distance.1.png
|
||||
|
|
@ -2376,20 +2411,17 @@ share/metainfo/org.qgis.qgis.appdata.xml
|
|||
%%DATADIR%%/i18n/qgis_da.qm
|
||||
%%DATADIR%%/i18n/qgis_de.qm
|
||||
%%DATADIR%%/i18n/qgis_el.qm
|
||||
%%DATADIR%%/i18n/qgis_eo.qm
|
||||
%%DATADIR%%/i18n/qgis_es.qm
|
||||
%%DATADIR%%/i18n/qgis_et.qm
|
||||
%%DATADIR%%/i18n/qgis_eu.qm
|
||||
%%DATADIR%%/i18n/qgis_fi.qm
|
||||
%%DATADIR%%/i18n/qgis_fr.qm
|
||||
%%DATADIR%%/i18n/qgis_gl.qm
|
||||
%%DATADIR%%/i18n/qgis_hi.qm
|
||||
%%DATADIR%%/i18n/qgis_hu.qm
|
||||
%%DATADIR%%/i18n/qgis_id.qm
|
||||
%%DATADIR%%/i18n/qgis_is.qm
|
||||
%%DATADIR%%/i18n/qgis_it.qm
|
||||
%%DATADIR%%/i18n/qgis_ja.qm
|
||||
%%DATADIR%%/i18n/qgis_km.qm
|
||||
%%DATADIR%%/i18n/qgis_ko.qm
|
||||
%%DATADIR%%/i18n/qgis_ky.qm
|
||||
%%DATADIR%%/i18n/qgis_lt.qm
|
||||
|
|
@ -2551,12 +2583,6 @@ share/metainfo/org.qgis.qgis.appdata.xml
|
|||
%%DATADIR%%/python/plugins/processing/ProcessingPlugin.py
|
||||
%%DATADIR%%/python/plugins/processing/__init__.py
|
||||
%%DATADIR%%/python/plugins/processing/algs/__init__.py
|
||||
%%DATADIR%%/python/plugins/processing/algs/exampleprovider/CMakeLists.txt
|
||||
%%DATADIR%%/python/plugins/processing/algs/exampleprovider/ExampleAlgorithm.py
|
||||
%%DATADIR%%/python/plugins/processing/algs/exampleprovider/ExampleAlgorithmProvider.py
|
||||
%%DATADIR%%/python/plugins/processing/algs/exampleprovider/ProcessingExampleProviderPlugin.py
|
||||
%%DATADIR%%/python/plugins/processing/algs/exampleprovider/__init__.py
|
||||
%%DATADIR%%/python/plugins/processing/algs/exampleprovider/metadata.txt
|
||||
%%DATADIR%%/python/plugins/processing/algs/gdal/AssignProjection.py
|
||||
%%DATADIR%%/python/plugins/processing/algs/gdal/Buffer.py
|
||||
%%DATADIR%%/python/plugins/processing/algs/gdal/ClipRasterByExtent.py
|
||||
|
|
@ -2599,6 +2625,7 @@ share/metainfo/org.qgis.qgis.appdata.xml
|
|||
%%DATADIR%%/python/plugins/processing/algs/gdal/ogr2ogrtabletopostgislist.py
|
||||
%%DATADIR%%/python/plugins/processing/algs/gdal/ogr2ogrtopostgislist.py
|
||||
%%DATADIR%%/python/plugins/processing/algs/gdal/ogrinfo.py
|
||||
%%DATADIR%%/python/plugins/processing/algs/gdal/pansharp.py
|
||||
%%DATADIR%%/python/plugins/processing/algs/gdal/pct2rgb.py
|
||||
%%DATADIR%%/python/plugins/processing/algs/gdal/polygonize.py
|
||||
%%DATADIR%%/python/plugins/processing/algs/gdal/proximity.py
|
||||
|
|
@ -2688,6 +2715,7 @@ share/metainfo/org.qgis.qgis.appdata.xml
|
|||
%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.fill.stats.txt
|
||||
%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.fillnulls.txt
|
||||
%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.flow.txt
|
||||
%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.geomorphon.txt
|
||||
%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.grow.distance.txt
|
||||
%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.grow.txt
|
||||
%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.gwflow.txt
|
||||
|
|
@ -2794,7 +2822,8 @@ share/metainfo/org.qgis.qgis.appdata.xml
|
|||
%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.stats.txt
|
||||
%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.stats.zonal.txt
|
||||
%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.stream.extract.txt
|
||||
%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.sun.txt
|
||||
%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.sun.incidout.txt
|
||||
%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.sun.insoltime.txt
|
||||
%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.sunhours.txt
|
||||
%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.sunmask.datetime.txt
|
||||
%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.sunmask.position.txt
|
||||
|
|
@ -2915,6 +2944,7 @@ share/metainfo/org.qgis.qgis.appdata.xml
|
|||
%%DATADIR%%/python/plugins/processing/algs/grass7/description/v.type.txt
|
||||
%%DATADIR%%/python/plugins/processing/algs/grass7/description/v.univar.txt
|
||||
%%DATADIR%%/python/plugins/processing/algs/grass7/description/v.vect.stats.txt
|
||||
%%DATADIR%%/python/plugins/processing/algs/grass7/description/v.voronoi.skeleton.txt
|
||||
%%DATADIR%%/python/plugins/processing/algs/grass7/description/v.voronoi.txt
|
||||
%%DATADIR%%/python/plugins/processing/algs/grass7/description/v.what.rast.txt
|
||||
%%DATADIR%%/python/plugins/processing/algs/grass7/description/v.what.vect.txt
|
||||
|
|
@ -3022,6 +3052,11 @@ share/metainfo/org.qgis.qgis.appdata.xml
|
|||
%%DATADIR%%/python/plugins/processing/algs/help/__init__.py
|
||||
%%DATADIR%%/python/plugins/processing/algs/help/qgis.yaml
|
||||
%%DATADIR%%/python/plugins/processing/algs/help/saga.yaml
|
||||
%%DATADIR%%/python/plugins/processing/algs/otb/OtbAlgorithm.py
|
||||
%%DATADIR%%/python/plugins/processing/algs/otb/OtbAlgorithmProvider.py
|
||||
%%DATADIR%%/python/plugins/processing/algs/otb/OtbChoiceWidget.py
|
||||
%%DATADIR%%/python/plugins/processing/algs/otb/OtbUtils.py
|
||||
%%DATADIR%%/python/plugins/processing/algs/otb/__init__.py
|
||||
%%DATADIR%%/python/plugins/processing/algs/qgis/AddTableField.py
|
||||
%%DATADIR%%/python/plugins/processing/algs/qgis/Aggregate.py
|
||||
%%DATADIR%%/python/plugins/processing/algs/qgis/Aspect.py
|
||||
|
|
@ -3067,7 +3102,6 @@ share/metainfo/org.qgis.qgis.appdata.xml
|
|||
%%DATADIR%%/python/plugins/processing/algs/qgis/NearestNeighbourAnalysis.py
|
||||
%%DATADIR%%/python/plugins/processing/algs/qgis/Orthogonalize.py
|
||||
%%DATADIR%%/python/plugins/processing/algs/qgis/PointDistance.py
|
||||
%%DATADIR%%/python/plugins/processing/algs/qgis/PointsAlongGeometry.py
|
||||
%%DATADIR%%/python/plugins/processing/algs/qgis/PointsDisplacement.py
|
||||
%%DATADIR%%/python/plugins/processing/algs/qgis/PointsFromLines.py
|
||||
%%DATADIR%%/python/plugins/processing/algs/qgis/PointsFromPolygons.py
|
||||
|
|
@ -3117,6 +3151,7 @@ share/metainfo/org.qgis.qgis.appdata.xml
|
|||
%%DATADIR%%/python/plugins/processing/algs/qgis/StatisticsByCategories.py
|
||||
%%DATADIR%%/python/plugins/processing/algs/qgis/SumLines.py
|
||||
%%DATADIR%%/python/plugins/processing/algs/qgis/TextToFloat.py
|
||||
%%DATADIR%%/python/plugins/processing/algs/qgis/TilesXYZ.py
|
||||
%%DATADIR%%/python/plugins/processing/algs/qgis/TinInterpolation.py
|
||||
%%DATADIR%%/python/plugins/processing/algs/qgis/TopoColors.py
|
||||
%%DATADIR%%/python/plugins/processing/algs/qgis/TruncateTable.py
|
||||
|
|
@ -3663,10 +3698,15 @@ share/metainfo/org.qgis.qgis.appdata.xml
|
|||
%%DATADIR%%/python/plugins/processing/tests/Grass7AlgorithmsVectorTest.py
|
||||
%%DATADIR%%/python/plugins/processing/tests/GuiTest.py
|
||||
%%DATADIR%%/python/plugins/processing/tests/ModelerTest.py
|
||||
%%DATADIR%%/python/plugins/processing/tests/OtbAlgorithmsTest.py
|
||||
%%DATADIR%%/python/plugins/processing/tests/ProcessingGeneralTest.py
|
||||
%%DATADIR%%/python/plugins/processing/tests/ProjectProvider.py
|
||||
%%DATADIR%%/python/plugins/processing/tests/QgisAlgorithmsTest.py
|
||||
%%DATADIR%%/python/plugins/processing/tests/QgisAlgorithmsTest2.py
|
||||
%%DATADIR%%/python/plugins/processing/tests/QgisAlgorithmsTest3.py
|
||||
%%DATADIR%%/python/plugins/processing/tests/QgisAlgorithmsTest4.py
|
||||
%%DATADIR%%/python/plugins/processing/tests/SagaAlgorithmsTest.py
|
||||
%%DATADIR%%/python/plugins/processing/tests/ScriptUtilsTest.py
|
||||
%%DATADIR%%/python/plugins/processing/tests/TestData.py
|
||||
%%DATADIR%%/python/plugins/processing/tests/ToolsTest.py
|
||||
%%DATADIR%%/python/plugins/processing/tests/__init__.py
|
||||
|
|
@ -3708,10 +3748,13 @@ share/metainfo/org.qgis.qgis.appdata.xml
|
|||
%%DATADIR%%/python/pyplugin_installer/__init__.py
|
||||
%%DATADIR%%/python/pyplugin_installer/installer.py
|
||||
%%DATADIR%%/python/pyplugin_installer/installer_data.py
|
||||
%%DATADIR%%/python/pyplugin_installer/plugindependencies.py
|
||||
%%DATADIR%%/python/pyplugin_installer/qgsplugindependenciesdialog.py
|
||||
%%DATADIR%%/python/pyplugin_installer/qgsplugininstallerfetchingdialog.py
|
||||
%%DATADIR%%/python/pyplugin_installer/qgsplugininstallerinstallingdialog.py
|
||||
%%DATADIR%%/python/pyplugin_installer/qgsplugininstallerpluginerrordialog.py
|
||||
%%DATADIR%%/python/pyplugin_installer/qgsplugininstallerrepositorydialog.py
|
||||
%%DATADIR%%/python/pyplugin_installer/ui_qgsplugindependenciesdialogbase.py
|
||||
%%DATADIR%%/python/pyplugin_installer/ui_qgsplugininstallerfetchingbase.py
|
||||
%%DATADIR%%/python/pyplugin_installer/ui_qgsplugininstallerinstallingbase.py
|
||||
%%DATADIR%%/python/pyplugin_installer/ui_qgsplugininstallerpluginerrorbase.py
|
||||
|
|
@ -3748,6 +3791,7 @@ share/metainfo/org.qgis.qgis.appdata.xml
|
|||
%%DATADIR%%/python/qgis/core/additions/__init__.py
|
||||
%%DATADIR%%/python/qgis/core/additions/edit.py
|
||||
%%DATADIR%%/python/qgis/core/additions/fromfunction.py
|
||||
%%DATADIR%%/python/qgis/core/additions/markerlinesymbollayer.py
|
||||
%%DATADIR%%/python/qgis/core/additions/metaenum.py
|
||||
%%DATADIR%%/python/qgis/core/additions/processing.py
|
||||
%%DATADIR%%/python/qgis/core/additions/projectdirtyblocker.py
|
||||
|
|
@ -5004,9 +5048,13 @@ share/metainfo/org.qgis.qgis.appdata.xml
|
|||
%%DATADIR%%/resources/themes/Blend of Gray/icons/close.svg
|
||||
%%DATADIR%%/resources/themes/Blend of Gray/icons/handle-horizontal.svg
|
||||
%%DATADIR%%/resources/themes/Blend of Gray/icons/handle-vertical.svg
|
||||
%%DATADIR%%/resources/themes/Blend of Gray/icons/qcheckbox-checked-disabled.svg
|
||||
%%DATADIR%%/resources/themes/Blend of Gray/icons/qcheckbox-checked.svg
|
||||
%%DATADIR%%/resources/themes/Blend of Gray/icons/qcheckbox-unchecked-disabled.svg
|
||||
%%DATADIR%%/resources/themes/Blend of Gray/icons/qcheckbox-unchecked.svg
|
||||
%%DATADIR%%/resources/themes/Blend of Gray/icons/qradiobox-checked-disabled.svg
|
||||
%%DATADIR%%/resources/themes/Blend of Gray/icons/qradiobox-checked.svg
|
||||
%%DATADIR%%/resources/themes/Blend of Gray/icons/qradiobox-unchecked-disabled.svg
|
||||
%%DATADIR%%/resources/themes/Blend of Gray/icons/qradiobox-unchecked.svg
|
||||
%%DATADIR%%/resources/themes/Blend of Gray/icons/separator-horizontal.svg
|
||||
%%DATADIR%%/resources/themes/Blend of Gray/icons/separator-vertical.svg
|
||||
|
|
@ -5023,9 +5071,13 @@ share/metainfo/org.qgis.qgis.appdata.xml
|
|||
%%DATADIR%%/resources/themes/Night Mapping/icons/eye.svg
|
||||
%%DATADIR%%/resources/themes/Night Mapping/icons/handle-horizontal.svg
|
||||
%%DATADIR%%/resources/themes/Night Mapping/icons/handle-vertical.svg
|
||||
%%DATADIR%%/resources/themes/Night Mapping/icons/qcheckbox-checked-disabled.svg
|
||||
%%DATADIR%%/resources/themes/Night Mapping/icons/qcheckbox-checked.svg
|
||||
%%DATADIR%%/resources/themes/Night Mapping/icons/qcheckbox-unchecked-disabled.svg
|
||||
%%DATADIR%%/resources/themes/Night Mapping/icons/qcheckbox-unchecked.svg
|
||||
%%DATADIR%%/resources/themes/Night Mapping/icons/qradiobox-checked-disabled.svg
|
||||
%%DATADIR%%/resources/themes/Night Mapping/icons/qradiobox-checked.svg
|
||||
%%DATADIR%%/resources/themes/Night Mapping/icons/qradiobox-unchecked-disabled.svg
|
||||
%%DATADIR%%/resources/themes/Night Mapping/icons/qradiobox-unchecked.svg
|
||||
%%DATADIR%%/resources/themes/Night Mapping/icons/separator-horizontal.svg
|
||||
%%DATADIR%%/resources/themes/Night Mapping/icons/separator-vertical.svg
|
||||
|
|
|
|||
|
|
@ -3,8 +3,7 @@
|
|||
|
||||
PORTNAME= inspircd
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 3.2.0
|
||||
PORTREVISION= 1
|
||||
DISTVERSION= 3.3.0
|
||||
CATEGORIES= irc
|
||||
|
||||
MAINTAINER= dg@syrec.org
|
||||
|
|
@ -14,7 +13,7 @@ LICENSE= GPLv2
|
|||
LICENSE_FILE= ${WRKSRC}/docs/LICENSE.txt
|
||||
|
||||
# Configure script is written in perl
|
||||
USES= compiler:c++11-lang cpe gmake perl5
|
||||
USES= compiler:c++11-lang cpe gmake localbase:ldflags perl5
|
||||
USE_GITHUB= yes
|
||||
USE_PERL5= build
|
||||
|
||||
|
|
@ -59,12 +58,13 @@ PLIST_SUB= INSPIRCD_DBDIR=${INSPIRCD_DBDIR} \
|
|||
INSPIRCD_RUNDIR=${INSPIRCD_RUNDIR} \
|
||||
INSPIRCD_USER=${USERS}
|
||||
|
||||
OPTIONS_DEFINE= GNUTLS IPV6 LDAP MYSQL OPENSSL PCRE PGSQL POSIX SQLITE
|
||||
OPTIONS_DEFINE= GNUTLS IPV6 LDAP MBEDTLS MYSQL OPENSSL PCRE PGSQL POSIX SQLITE
|
||||
OPTIONS_DEFAULT= OPENSSL POSIX
|
||||
OPTIONS_SUB= yes
|
||||
|
||||
GNUTLS_DESC= Build m_ssl_gnutls module
|
||||
LDAP_DESC= Build m_ldap module
|
||||
MBEDTLS_DESC= Build m_ssl_mbedtls module
|
||||
MYSQL_DESC= Build m_mysql module
|
||||
OPENSSL_DESC= Build m_ssl_openssl module
|
||||
PCRE_DESC= Build m_regex_pcre module
|
||||
|
|
@ -79,6 +79,9 @@ GNUTLS_VARS= EXTRAS+=m_ssl_gnutls.cpp
|
|||
LDAP_USE= OPENLDAP=yes
|
||||
LDAP_VARS= EXTRAS+=m_ldap.cpp
|
||||
|
||||
MBEDTLS_LIB_DEPENDS= libmbedtls.so:security/mbedtls
|
||||
MBEDTLS_VARS= EXTRAS+=m_ssl_mbedtls.cpp
|
||||
|
||||
MYSQL_USES= mysql
|
||||
MYSQL_VARS= EXTRAS+=m_mysql.cpp
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1562413014
|
||||
SHA256 (inspircd-inspircd-v3.2.0_GH0.tar.gz) = 16d0b92a5610236e6cd2ece2a6a84eda1a16e4217f0e673ab089a25cf4001ef4
|
||||
SIZE (inspircd-inspircd-v3.2.0_GH0.tar.gz) = 799842
|
||||
TIMESTAMP = 1566835663
|
||||
SHA256 (inspircd-inspircd-v3.3.0_GH0.tar.gz) = 9bdf10e5b8f4488c0e9f6870a16d5befe029aea8d31dbf89aa856e532d7b41f2
|
||||
SIZE (inspircd-inspircd-v3.3.0_GH0.tar.gz) = 803449
|
||||
|
|
|
|||
|
|
@ -208,6 +208,7 @@ libexec/inspircd/modules/m_xline_db.so
|
|||
%%LDAP%%libexec/inspircd/modules/m_ldap.so
|
||||
%%LDAP%%libexec/inspircd/modules/m_ldapauth.so
|
||||
%%LDAP%%libexec/inspircd/modules/m_ldapoper.so
|
||||
%%MBEDTLS%%libexec/inspircd/modules/m_ssl_mbedtls.so
|
||||
%%MYSQL%%libexec/inspircd/modules/m_mysql.so
|
||||
%%OPENSSL%%libexec/inspircd/modules/m_ssl_openssl.so
|
||||
%%PCRE%%libexec/inspircd/modules/m_regex_pcre.so
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ RESTRICTED= This documentation is under license and export control.
|
|||
WRKSRC= ${WRKDIR}/docs
|
||||
JDK_VERSION= 11
|
||||
JDK_UPDATE_VERSION= 0
|
||||
JDK_PATCH_VERSION= 3
|
||||
JDK_PATCH_VERSION= 4
|
||||
DOWNLOAD_URL= http://www.oracle.com/technetwork/java/javase/downloads/index.html
|
||||
|
||||
NO_BUILD= yes
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1555978118
|
||||
SHA256 (jdk-11.0.3_doc-all.zip) = ad20c79a5e087f70fdc5a994cc0a07d01a05e9372045b85363356ca1ff235c14
|
||||
SIZE (jdk-11.0.3_doc-all.zip) = 51580899
|
||||
TIMESTAMP = 1567000517
|
||||
SHA256 (jdk-11.0.4_doc-all.zip) = b92ba775afd52b95fd8062d4129dd11f26e9a80bee60b12a0096447f8f300571
|
||||
SIZE (jdk-11.0.4_doc-all.zip) = 51579103
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ RESTRICTED= This documentation is under license and export control.
|
|||
WRKSRC= ${WRKDIR}/docs
|
||||
JDK_VERSION= 12
|
||||
JDK_UPDATE_VERSION= 0
|
||||
JDK_PATCH_VERSION= 1
|
||||
JDK_PATCH_VERSION= 2
|
||||
DOWNLOAD_URL= http://www.oracle.com/technetwork/java/javase/downloads/index.html
|
||||
|
||||
NO_BUILD= yes
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1555978519
|
||||
SHA256 (jdk-12.0.1_doc-all.zip) = d77c9d9b38da262dbef88424d6d7e138a27efa26522313ec762126fde560d63f
|
||||
SIZE (jdk-12.0.1_doc-all.zip) = 51088741
|
||||
TIMESTAMP = 1567000674
|
||||
SHA256 (jdk-12.0.2_doc-all.zip) = 8541ec6ff1d78f7e36ea6b5cfcf8cf84b8431ebe67d0f68a1f29fd00debd12aa
|
||||
SIZE (jdk-12.0.2_doc-all.zip) = 51094535
|
||||
|
|
|
|||
|
|
@ -10,15 +10,16 @@ DISTNAME= jdk-${JDK_VERSION}u${JDK_UPDATE_VER}-docs-all
|
|||
MAINTAINER= java@FreeBSD.org
|
||||
COMMENT= Java Development Kit ${JDK_VERSION} Documentation
|
||||
|
||||
USES= zip
|
||||
|
||||
DOCSDIR?= ${PREFIX}/share/doc/jdk${JDK_VERSION}
|
||||
RESTRICTED= This documentation is under license and export control.
|
||||
|
||||
WRKSRC= ${WRKDIR}/docs
|
||||
JDK_VERSION= 8
|
||||
JDK_UPDATE_VER= 212
|
||||
JDK_UPDATE_VER= 221
|
||||
DOWNLOAD_URL= http://www.oracle.com/technetwork/java/javase/downloads/index.html
|
||||
|
||||
USES= zip
|
||||
NO_BUILD= yes
|
||||
NO_ARCH= yes
|
||||
PORTDOCS= *
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1555977370
|
||||
SHA256 (jdk-8u212-docs-all.zip) = b45cb1e670598edfa6b4ff13c942d359c37f28a06cf7e2b0b3d5a4c32c3e1302
|
||||
SIZE (jdk-8u212-docs-all.zip) = 93779925
|
||||
TIMESTAMP = 1567000010
|
||||
SHA256 (jdk-8u221-docs-all.zip) = 94a5d90bad7d8f845d2a6a61db4340e42b614ce671a3fb10a44169ebffa215f2
|
||||
SIZE (jdk-8u221-docs-all.zip) = 93813538
|
||||
|
|
|
|||
|
|
@ -11,17 +11,21 @@ DISTNAME= jdk-${JDK_VERSION}.${JDK_UPDATE_VERSION}.${JDK_PATCH_VERSION}_linux-x6
|
|||
MAINTAINER= java@FreeBSD.org
|
||||
COMMENT= Oracle Java ${JDK_VERSION} Development Kit for Linux
|
||||
|
||||
DEPRECATED= No longer maintained upstream, please migrate to openjdk11
|
||||
EXPIRATION_DATE=2019-09-28
|
||||
|
||||
ONLY_FOR_ARCHS= amd64
|
||||
RUN_DEPENDS= javavm:java/javavmwrapper
|
||||
|
||||
USES= linux:c7 shebangfix
|
||||
USE_LINUX= xorglibs
|
||||
|
||||
RESTRICTED= Redistribution of repackaged binaries not permitted
|
||||
|
||||
WRKSRC= ${WRKDIR}/jdk-${DL_JDK_VERSION}
|
||||
PLIST_SUB= T=${APP_HOME:S/^${PREFIX}\///} PORTVERSION=${PORTVERSION}
|
||||
|
||||
NO_BUILD= yes
|
||||
USES= linux:c7 shebangfix
|
||||
USE_LINUX= xorglibs
|
||||
|
||||
JDK_VENDOR= oracle
|
||||
JDK_VERSION= 10
|
||||
|
|
|
|||
|
|
@ -11,17 +11,21 @@ DISTNAME= jdk-${JDK_VERSION}.${JDK_UPDATE_VERSION}.${JDK_PATCH_VERSION}_linux-x6
|
|||
MAINTAINER= java@FreeBSD.org
|
||||
COMMENT= Oracle Java ${JDK_VERSION} Development Kit for Linux
|
||||
|
||||
DEPRECATED= No longer maintained upstream, please migrate to openjdk11
|
||||
EXPIRATION_DATE=2019-09-28
|
||||
|
||||
ONLY_FOR_ARCHS= amd64
|
||||
RUN_DEPENDS= javavm:java/javavmwrapper
|
||||
|
||||
USES= linux shebangfix
|
||||
USE_LINUX= xorglibs
|
||||
|
||||
RESTRICTED= Redistribution of repackaged binaries not permitted
|
||||
|
||||
WRKSRC= ${WRKDIR}/jdk-${DL_JDK_VERSION}
|
||||
PLIST_SUB= T=${APP_HOME:S/^${PREFIX}\///} PORTVERSION=${PORTVERSION}
|
||||
|
||||
NO_BUILD= yes
|
||||
USES= linux shebangfix
|
||||
USE_LINUX= xorglibs
|
||||
|
||||
JDK_VENDOR= oracle
|
||||
JDK_VERSION= 9
|
||||
|
|
|
|||
|
|
@ -1,18 +1,15 @@
|
|||
[
|
||||
{ type: install
|
||||
message: <<EOM
|
||||
This OpenJDK implementation requires fdescfs(5) mounted on /dev/fd and
|
||||
procfs(5) mounted on /proc.
|
||||
This OpenJDK implementation requires fdescfs(5) mounted on /dev/fd
|
||||
|
||||
If you have not done it yet, please do the following:
|
||||
|
||||
mount -t fdescfs fdesc /dev/fd
|
||||
mount -t procfs proc /proc
|
||||
|
||||
To make it permanent, you need the following lines in /etc/fstab:
|
||||
|
||||
fdesc /dev/fd fdescfs rw 0 0
|
||||
proc /proc procfs rw 0 0
|
||||
EOM
|
||||
}
|
||||
]
|
||||
|
|
|
|||
|
|
@ -1,18 +1,15 @@
|
|||
[
|
||||
{ type: install
|
||||
message: <<EOM
|
||||
This OpenJDK implementation requires fdescfs(5) mounted on /dev/fd and
|
||||
procfs(5) mounted on /proc.
|
||||
This OpenJDK implementation requires fdescfs(5) mounted on /dev/fd
|
||||
|
||||
If you have not done it yet, please do the following:
|
||||
|
||||
mount -t fdescfs fdesc /dev/fd
|
||||
mount -t procfs proc /proc
|
||||
|
||||
To make it permanent, you need the following lines in /etc/fstab:
|
||||
|
||||
fdesc /dev/fd fdescfs rw 0 0
|
||||
proc /proc procfs rw 0 0
|
||||
EOM
|
||||
}
|
||||
]
|
||||
|
|
|
|||
|
|
@ -1,18 +1,15 @@
|
|||
[
|
||||
{ type: install
|
||||
message: <<EOM
|
||||
This OpenJDK implementation requires fdescfs(5) mounted on /dev/fd and
|
||||
procfs(5) mounted on /proc.
|
||||
This OpenJDK implementation requires fdescfs(5) mounted on /dev/fd
|
||||
|
||||
If you have not done it yet, please do the following:
|
||||
|
||||
mount -t fdescfs fdesc /dev/fd
|
||||
mount -t procfs proc /proc
|
||||
|
||||
To make it permanent, you need the following lines in /etc/fstab:
|
||||
|
||||
fdesc /dev/fd fdescfs rw 0 0
|
||||
proc /proc procfs rw 0 0
|
||||
EOM
|
||||
}
|
||||
]
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= gcc
|
||||
PORTVERSION= 8.3.1.s20190816
|
||||
PORTVERSION= 8.3.1.s20190823
|
||||
CATEGORIES= lang
|
||||
MASTER_SITES= GCC/snapshots/${DIST_VERSION}
|
||||
PKGNAMESUFFIX= ${SUFFIX}-devel
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1566026235
|
||||
SHA256 (gcc-8-20190816.tar.xz) = f5ad4a42df2ce767e050faca2ba8c7c45b72e834fed5afeccdc5071995e020e3
|
||||
SIZE (gcc-8-20190816.tar.xz) = 61897168
|
||||
TIMESTAMP = 1566644718
|
||||
SHA256 (gcc-8-20190823.tar.xz) = 0d7b6a93eae6b90acc6005bd17f8b0d648bcece526954ba381b1bdb8d1037d19
|
||||
SIZE (gcc-8-20190823.tar.xz) = 61898024
|
||||
|
|
|
|||
|
|
@ -20,6 +20,7 @@ GH_ACCOUNT= gnustep
|
|||
GH_TAGNAME= 0db500a
|
||||
|
||||
SSP_UNSAFE= yes
|
||||
LDFLAGS_armv7= -Wl,-znotext
|
||||
|
||||
SHLIB_MAJOR= 4
|
||||
SHLIB_MINOR= 6
|
||||
|
|
|
|||
|
|
@ -2,8 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= dovecot-pigeonhole
|
||||
PORTVERSION= 0.5.7.1
|
||||
PORTREVISION= 1
|
||||
PORTVERSION= 0.5.7.2
|
||||
CATEGORIES= mail
|
||||
MASTER_SITES= http://pigeonhole.dovecot.org/releases/${DOVECOTVERSION}/
|
||||
DISTNAME= ${PORTNAME:C/-/-${DOVECOTVERSION}-/}-${PORTVERSION}
|
||||
|
|
@ -13,8 +12,8 @@ COMMENT= Sieve plugin for the Dovecot 'deliver' LDA and LMTP
|
|||
|
||||
LICENSE= LGPL21
|
||||
|
||||
BUILD_DEPENDS= dovecot>=2.3.6:mail/dovecot
|
||||
RUN_DEPENDS= dovecot>=2.3.6:mail/dovecot
|
||||
BUILD_DEPENDS= dovecot>=2.3.7:mail/dovecot
|
||||
RUN_DEPENDS= dovecot>=2.3.7:mail/dovecot
|
||||
|
||||
DOVECOTVERSION= 2.3
|
||||
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue