From 922123fc5afa3d2e21a782f6fcc3388e32b92cd4 Mon Sep 17 00:00:00 2001 From: v4hn Date: Mon, 23 Nov 2015 12:27:41 +0100 Subject: [PATCH 01/12] gegl: update URL of patch --- graphics/gegl/DETAILS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphics/gegl/DETAILS b/graphics/gegl/DETAILS index 96c2b1ac501..21bf8e5f646 100644 --- a/graphics/gegl/DETAILS +++ b/graphics/gegl/DETAILS @@ -6,7 +6,7 @@ SOURCE4=gegl-0.2.0-CVE-2012-4433.patch SOURCE_URL[0]=http://ftp.gimp.org/pub/gegl/${VERSION%.*} SOURCE_URL[1]=http://ftp.gtk.org/pub/gegl/${VERSION%.*} - SOURCE2_URL=https://raw.github.com/PhantomX/slackbuilds/master/gegl/patches/ + SOURCE2_URL=$PATCH_URL SOURCE3_URL=$PATCH_URL SOURCE4_URL=$PATCH_URL SOURCE_VFY=sha256:df2e6a0d9499afcbc4f9029c18d9d1e0dd5e8710a75e17c9b1d9a6480dd8d426 From 942557e6c76d6a24e16d11ec596bed8ba79b11e8 Mon Sep 17 00:00:00 2001 From: Dennis Veatch Date: Mon, 23 Nov 2015 06:57:16 -0500 Subject: [PATCH 02/12] ppp: fix typo in BUILD --- net/ppp/BUILD | 2 -- 1 file changed, 2 deletions(-) diff --git a/net/ppp/BUILD b/net/ppp/BUILD index 0ef8986d397..6df5b94efca 100644 --- a/net/ppp/BUILD +++ b/net/ppp/BUILD @@ -27,5 +27,3 @@ chmod 600 /etc/ppp/*-secrets if module_installed systemd; then install -D -m644 $SCRIPT_DIRECTORY/system.d/ppp.service /usr/lib/systemd/system/ppp@.service fi - -) > $C_FIFO 2>&1 From 403648c7c3a0600c750737f83812654c5fce98e9 Mon Sep 17 00:00:00 2001 From: v4hn Date: Mon, 23 Nov 2015 13:09:14 +0100 Subject: [PATCH 03/12] ghostscript: forgot to change UPDATED --- printer/ghostscript/DETAILS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/printer/ghostscript/DETAILS b/printer/ghostscript/DETAILS index 7fa6f1f042d..68de260962d 100644 --- a/printer/ghostscript/DETAILS +++ b/printer/ghostscript/DETAILS @@ -5,7 +5,7 @@ SOURCE_VFY=sha256:83daf5bbbb5afbc32cab944a1afa7ceca046dbf0c3712cd5f2bd21a13e484da1 WEB_SITE=http://www.ghostscript.com ENTERED=20041116 - UPDATED=20151006 + UPDATED=20151123 SHORT="GPL ghostscript" cat << EOF From 54bc236f34b87887fa1c8bc47996d4c2d32f1420 Mon Sep 17 00:00:00 2001 From: v4hn Date: Mon, 23 Nov 2015 13:12:11 +0100 Subject: [PATCH 04/12] gimp: optional ghostscript support --- graphics/gimp/DEPENDS | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/graphics/gimp/DEPENDS b/graphics/gimp/DEPENDS index ca053312371..bc844098998 100644 --- a/graphics/gimp/DEPENDS +++ b/graphics/gimp/DEPENDS @@ -47,3 +47,8 @@ optional_depends "libgudev" \ "--with-gudev" \ "--without-gudev" \ "for UDEV glib support" + +optional_depends "ghostscript" \ + "--with-gs" \ + "--without-gs" \ + "for Ghostscript support" From 4635e625855e3e800c6a21ead4b2b7f33a68bc51 Mon Sep 17 00:00:00 2001 From: v4hn Date: Mon, 23 Nov 2015 13:14:23 +0100 Subject: [PATCH 05/12] blender: fix broken " string --- graphics/blender/BUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphics/blender/BUILD b/graphics/blender/BUILD index a4293a769a6..bf2fac29e13 100644 --- a/graphics/blender/BUILD +++ b/graphics/blender/BUILD @@ -15,7 +15,7 @@ -DWITH_PLAYER=1 \ -DWITH_GAMEENGINE=1 \ -DWITH_INSTALL_PORTABLE=0 \ - -DPYTHON_VERSION=3.${PYTHON_VER} && + -DPYTHON_VERSION=3.${PYTHON_VER}" && default_cmake_config && From 660181c266f0db683fdc0217c920aad5b5979bd4 Mon Sep 17 00:00:00 2001 From: Dennis Veatch Date: Mon, 23 Nov 2015 07:32:38 -0500 Subject: [PATCH 06/12] sddm: Adding a POST_INSTALL to generate an initiall /etc/sddm.conf and modifying it to start on VT7 instead of VT1. --- x11-wm/sddm/POST_INSTALL | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 x11-wm/sddm/POST_INSTALL diff --git a/x11-wm/sddm/POST_INSTALL b/x11-wm/sddm/POST_INSTALL new file mode 100644 index 00000000000..3195cb6a773 --- /dev/null +++ b/x11-wm/sddm/POST_INSTALL @@ -0,0 +1,8 @@ + if [ ! -e /etc/sddm.conf ] ; then + sddm --example-config > /etc/sddm.conf && +# Initially sddm starts on VT1. We'll sedit this to VT7 +# then you can make it what you want. + sedit "s:MinimumVT=1:MinimumVT=7:" /etc/sddm.conf + fi + + From fb79d85b5fc7ed2ca63fb7e19e98fdf0e64d7452 Mon Sep 17 00:00:00 2001 From: Dennis Veatch Date: Mon, 23 Nov 2015 07:46:32 -0500 Subject: [PATCH 07/12] sddm: Needs a group and user --- x11-wm/sddm/BUILD | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/x11-wm/sddm/BUILD b/x11-wm/sddm/BUILD index 9dd7ea6ef47..9ec07aca523 100644 --- a/x11-wm/sddm/BUILD +++ b/x11-wm/sddm/BUILD @@ -1,4 +1,8 @@ + groupadd -g 64 sddm && + + useradd -c "SDDM Daemon Owner" -d /var/lib/sddm -u 64 -g sddm -s /bin/false sddm && + OPTS+=" -DDBUS_CONFIG_FILENAME=sddm_org.freedesktop.DisplayManager.conf" && default_cmake_build From 1588082d4b714cd529acb758167d27b867f42cc8 Mon Sep 17 00:00:00 2001 From: Dennis Veatch Date: Mon, 23 Nov 2015 07:55:20 -0500 Subject: [PATCH 08/12] libgit2: fix UPDATED --- libs/libgit2/DETAILS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/libgit2/DETAILS b/libs/libgit2/DETAILS index d152e969021..d0fad52cb98 100644 --- a/libs/libgit2/DETAILS +++ b/libs/libgit2/DETAILS @@ -5,7 +5,7 @@ SOURCE_VFY=sha256:2d5c80426675928cda6e9a313ae38b2a72c1a55b7c3d4884dc21f7b312ff1eae WEB_SITE=http://libgit2.github.com/ ENTERED=20150205 - UPDATED=20151214 + UPDATED=20151114 SHORT="pure C implementation of the Git core methods" cat << EOF From 8740ff25af50dc22afc06c855db3275f18fa2984 Mon Sep 17 00:00:00 2001 From: Dennis Veatch Date: Mon, 23 Nov 2015 08:38:15 -0500 Subject: [PATCH 09/12] sddm: a few more tweaks to BUILD --- x11-wm/sddm/BUILD | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/x11-wm/sddm/BUILD b/x11-wm/sddm/BUILD index 9ec07aca523..2b348389006 100644 --- a/x11-wm/sddm/BUILD +++ b/x11-wm/sddm/BUILD @@ -1,7 +1,7 @@ + mkdir -p /var/lib/sddm && - groupadd -g 64 sddm && - - useradd -c "SDDM Daemon Owner" -d /var/lib/sddm -u 64 -g sddm -s /bin/false sddm && + add_priv_group sddm && + add_priv_user sddm -d /var/lib/sddm -g sddm && OPTS+=" -DDBUS_CONFIG_FILENAME=sddm_org.freedesktop.DisplayManager.conf" && From 407767d842a381b5062249dee4984f7f6de61186 Mon Sep 17 00:00:00 2001 From: Dennis Veatch Date: Mon, 23 Nov 2015 09:37:04 -0500 Subject: [PATCH 10/12] czmq: bump to 3.0.2 --- libs/czmq/DETAILS | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/czmq/DETAILS b/libs/czmq/DETAILS index 545eb35a2df..35120384140 100644 --- a/libs/czmq/DETAILS +++ b/libs/czmq/DETAILS @@ -1,11 +1,11 @@ MODULE=czmq - VERSION=3.0.1 + VERSION=3.0.2 SOURCE=$MODULE-$VERSION.tar.gz SOURCE_URL=http://download.zeromq.org - SOURCE_VFY=sha256:b8a13c7064956ccd01ee9ce5c952a2a859af70bf450389bc33b7e0e3c67b6b17 + SOURCE_VFY=sha256:8bca39ab69375fa4e981daf87b3feae85384d5b40cef6adbe9d5eb063357699a WEB_SITE=http://czmq.zeromq.org/ ENTERED=20150604 - UPDATED=20150604 + UPDATED=20151123 SHORT="High-level C Binding for ZeroMQ" cat << EOF From afad2f4144f22502f674875b601c8df99e1a0c30 Mon Sep 17 00:00:00 2001 From: Dennis Veatch Date: Mon, 23 Nov 2015 10:01:11 -0500 Subject: [PATCH 11/12] ibus: fix BUILD --- libs/ibus/BUILD | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/libs/ibus/BUILD b/libs/ibus/BUILD index 99cbe0c9bfa..1dbc6d4ed95 100644 --- a/libs/ibus/BUILD +++ b/libs/ibus/BUILD @@ -1,5 +1,6 @@ -OPTS+=" --enable-ui --disable-memconf" && + OPTS+=" --enable-ui --disable-memconf" && -./autogen.sh && + touch INSTALL && + ./autogen.sh && -default_build + default_build From 4caf66868cdd00bf29c02d3b8db1050722505791 Mon Sep 17 00:00:00 2001 From: Dennis Veatch Date: Mon, 23 Nov 2015 10:19:37 -0500 Subject: [PATCH 12/12] libpwquality: adding to moonbase, depends for user-manager (plasma) --- libs/libpwquality/DEPENDS | 1 + libs/libpwquality/DETAILS | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 libs/libpwquality/DEPENDS create mode 100644 libs/libpwquality/DETAILS diff --git a/libs/libpwquality/DEPENDS b/libs/libpwquality/DEPENDS new file mode 100644 index 00000000000..934140594d3 --- /dev/null +++ b/libs/libpwquality/DEPENDS @@ -0,0 +1 @@ +depends cracklib diff --git a/libs/libpwquality/DETAILS b/libs/libpwquality/DETAILS new file mode 100644 index 00000000000..49d9ce00d57 --- /dev/null +++ b/libs/libpwquality/DETAILS @@ -0,0 +1,15 @@ + MODULE=libpwquality + VERSION=1.3.0 + SOURCE=$MODULE-$VERSION.tar.bz2 + SOURCE_URL=https://fedorahosted.org/releases/l/i/libpwquality + SOURCE_VFY=sha256:74d2ea90e103323c1f2d6a6cc9617cdae6877573eddb31aaf31a40f354cc2d2a + WEB_SITE=https://fedorahosted.org/libpwquality/ + ENTERED=20151123 + UPDATED=20151123 + SHORT="provide common functions for password quality checking" +cat << EOF +The libpwquality library purpose is to provide common functions for password quality +checking and also scoring them based on their apparent randomness. The library also +provides a function for generating random passwords with good pronounceability. +The library supports reading and parsing of a configuration file. +EOF