From 80823bee6f4c49eb7fcb4224c541c8c8d3d5aee9 Mon Sep 17 00:00:00 2001 From: alihanozturk Date: Thu, 2 Feb 2017 18:03:38 +0300 Subject: [PATCH 01/20] llvm:v.bump --- multimedia/graphics/jbigkit/actions.py | 4 ++-- programming/build/llvm/pspec.xml | 17 ++++++++++++----- .../python3/python3-pygobject3/actions.py | 2 +- 3 files changed, 15 insertions(+), 8 deletions(-) diff --git a/multimedia/graphics/jbigkit/actions.py b/multimedia/graphics/jbigkit/actions.py index ec8a2d2b92..bc0f31b9aa 100644 --- a/multimedia/graphics/jbigkit/actions.py +++ b/multimedia/graphics/jbigkit/actions.py @@ -9,11 +9,11 @@ from pisi.actionsapi import pisitools from pisi.actionsapi import get def build(): - autotools.make("CC=%s CFLAGS='%s'" % (get.CC(), get.CFLAGS())) + autotools.make("-j1 CC=%s CFLAGS='%s'" % (get.CC(), get.CFLAGS())) def check(): autotools.make("-j1 test") - + def install(): pisitools.insinto("/usr/include/", "libjbig/jbig*.h") pisitools.insinto("/usr/lib/", "libjbig/libjbig*.so") diff --git a/programming/build/llvm/pspec.xml b/programming/build/llvm/pspec.xml index c4610c0d5d..36068da221 100644 --- a/programming/build/llvm/pspec.xml +++ b/programming/build/llvm/pspec.xml @@ -11,11 +11,11 @@ NCSA The Low Level Virtual Machine The LLVM Project is a collection of modular and reusable compiler and toolchain technologies. Despite its name, LLVM has little to do with traditional virtual machines, though it does provide helpful libraries that can be used to build them. - http://llvm.org/releases/3.8.0/llvm-3.8.0.src.tar.xz - http://llvm.org/releases/3.8.0/cfe-3.8.0.src.tar.xz - http://llvm.org/releases/3.8.0/clang-tools-extra-3.8.0.src.tar.xz - http://llvm.org/releases/3.8.0/lldb-3.8.0.src.tar.xz - http://llvm.org/releases/3.8.0/compiler-rt-3.8.0.src.tar.xz + http://releases.llvm.org/3.9.1/llvm-3.9.1.src.tar.xz + http://releases.llvm.org/3.9.1/cfe-3.9.1.src.tar.xz + http://releases.llvm.org/3.9.1/clang-tools-extra-3.9.1.src.tar.xz + http://releases.llvm.org/3.9.1/lldb-3.9.1.src.tar.xz + http://releases.llvm.org/3.9.1/compiler-rt-3.9.1.src.tar.xz zlib-devel libxml2-devel @@ -200,6 +200,13 @@ + + 2017-02-02 + 3.9.1 + Version Bump + Pisi Linux Community + admin@pisilinux.org + 2016-06-09 3.8.0 diff --git a/programming/language/python3/python3-pygobject3/actions.py b/programming/language/python3/python3-pygobject3/actions.py index ae65d87c45..40e10ee3b0 100755 --- a/programming/language/python3/python3-pygobject3/actions.py +++ b/programming/language/python3/python3-pygobject3/actions.py @@ -11,7 +11,7 @@ from pisi.actionsapi import get def setup(): pisitools.dosed("configure", "-Werror=format", "#-Werror=format") - shelltools.export("PYTHON", "/usr/bin/python3.4") + shelltools.export("PYTHON", "/usr/bin/python3.6") shelltools.system("./configure --prefix=/usr \ --localstatedir=/var \ --disable-static") From 63853188fe5a83c0229d139c534b50bc29af4064 Mon Sep 17 00:00:00 2001 From: alihanozturk Date: Thu, 2 Feb 2017 18:30:22 +0300 Subject: [PATCH 02/20] python3-pygobject3:fix --- programming/language/python3/python3-pygobject3/pspec.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/programming/language/python3/python3-pygobject3/pspec.xml b/programming/language/python3/python3-pygobject3/pspec.xml index 9c04c74334..a7dfcfca2b 100755 --- a/programming/language/python3/python3-pygobject3/pspec.xml +++ b/programming/language/python3/python3-pygobject3/pspec.xml @@ -35,8 +35,8 @@ /usr/share/doc /usr/share/pygobject - /usr/lib/python3.4 - /usr/lib/libpyglib-gi-2.0-python3.4.so* + /usr/lib/python3* + /usr/lib/libpyglib-gi-2.0-python3*.so* From a1dc382255acd1cd7a5a93a19205c33e989226d4 Mon Sep 17 00:00:00 2001 From: alihanozturk Date: Thu, 2 Feb 2017 20:54:51 +0300 Subject: [PATCH 03/20] llvm:fix --- programming/build/llvm/actions.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/programming/build/llvm/actions.py b/programming/build/llvm/actions.py index 739ab071b7..ba3da80aa2 100644 --- a/programming/build/llvm/actions.py +++ b/programming/build/llvm/actions.py @@ -63,14 +63,14 @@ def setup(): cmaketools.configure("-DCMAKE_BUILD_TYPE=Release \ %s \ - -DLLVM_ENABLE_FFI=ON \ - -DLLVM_BUILD_DOCS=OFF \ - -DBUILD_SHARED_LIBS=ON \ - -DLLVM_ENABLE_RTTI=ON \ - -DLLVM_INCLUDEDIR=/usr/include \ - -DLLVM_ENABLE_ASSERTIONS=OFF \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DLLVM_ENABLE_FFI=ON \ + -DCMAKE_BUILD_TYPE=Release \ + -DLLVM_BUILD_LLVM_DYLIB=ON \ + -DLLDB_DISABLE_LIBEDIT=1 \ + -DLLVM_INCLUDEDIR=/usr/include \ -DFFI_INCLUDE_DIR=/usr/lib/libffi-3.2.1/include \ - -DENABLE_SHARED=ON" % options, sourceDir=".." ) + -DLLVM_TARGETS_TO_BUILD='host;AMDGPU'" % options, sourceDir=".." ) def build(): shelltools.makedirs("build") From 010503856535c256696bac8b2ce9496d13f76fef Mon Sep 17 00:00:00 2001 From: alihanozturk Date: Thu, 2 Feb 2017 21:12:46 +0300 Subject: [PATCH 04/20] libXfont:v.bump --- x11/library/libXfont/pspec.xml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/x11/library/libXfont/pspec.xml b/x11/library/libXfont/pspec.xml index be2bebbe1e..10987021e0 100644 --- a/x11/library/libXfont/pspec.xml +++ b/x11/library/libXfont/pspec.xml @@ -12,7 +12,7 @@ library X.Org Xfont library libXfont is the Xorg library that allows using various types of fonts. - mirrors://xorg/individual/lib/libXfont-1.5.1.tar.bz2 + mirrors://xorg/individual/lib/libXfont-1.5.2.tar.bz2 libfontenc-devel util-macros @@ -20,7 +20,6 @@ xorg-proto xtrans zlib-devel - freetype-devel @@ -28,8 +27,8 @@ libXfont libfontenc - zlib - freetype + zlib + freetype /usr/lib @@ -52,6 +51,13 @@ + + 2017-02-02 + 1.5.2 + Version bump + PisiLinux Community + admin@pisilinux.org + 2016-04-30 1.5.1 From 84aac0fb27300d84c8c35e3a8cceafd9bfffb4d0 Mon Sep 17 00:00:00 2001 From: alihanozturk Date: Thu, 2 Feb 2017 21:16:11 +0300 Subject: [PATCH 05/20] libXrender:rebuild --- x11/library/libXrender/pspec.xml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/x11/library/libXrender/pspec.xml b/x11/library/libXrender/pspec.xml index 27ab0b2b92..1b40f41b78 100644 --- a/x11/library/libXrender/pspec.xml +++ b/x11/library/libXrender/pspec.xml @@ -53,7 +53,6 @@ 32-bit shared libraries for libXrender emul32 - libX11-32bit @@ -67,6 +66,13 @@ + + 2017-02-02 + 0.9.10 + Rebuild. + PisiLinux Community + admin@pisilinux.org + 2016-11-02 0.9.10 From 96b677b98cbb47420d690cf720530bb04c50cf72 Mon Sep 17 00:00:00 2001 From: alihanozturk Date: Thu, 2 Feb 2017 21:18:13 +0300 Subject: [PATCH 06/20] libXcursor:rebuild --- x11/library/libXcursor/pspec.xml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/x11/library/libXcursor/pspec.xml b/x11/library/libXcursor/pspec.xml index 260869f14e..e14797e2b1 100644 --- a/x11/library/libXcursor/pspec.xml +++ b/x11/library/libXcursor/pspec.xml @@ -65,7 +65,6 @@ libXcursor - libX11-32bit libXfixes-32bit libXrender-32bit @@ -76,6 +75,13 @@ + + 2017-02-02 + 1.1.14 + Rebuild. + PisiLinux Community + admin@pisilinux.org + 2016-04-30 1.1.14 From b10c20f6ae7961d58c31ab87d0e3267da920d6cd Mon Sep 17 00:00:00 2001 From: alihanozturk Date: Thu, 2 Feb 2017 21:30:07 +0300 Subject: [PATCH 07/20] fontconfig:v.bump --- .../0001-fix-test-with-freetype2-2.7.1.patch | 41 +++++++++++++++++++ desktop/font/fontconfig/pspec.xml | 12 +++++- 2 files changed, 51 insertions(+), 2 deletions(-) create mode 100644 desktop/font/fontconfig/files/0001-fix-test-with-freetype2-2.7.1.patch diff --git a/desktop/font/fontconfig/files/0001-fix-test-with-freetype2-2.7.1.patch b/desktop/font/fontconfig/files/0001-fix-test-with-freetype2-2.7.1.patch new file mode 100644 index 0000000000..9c35730c95 --- /dev/null +++ b/desktop/font/fontconfig/files/0001-fix-test-with-freetype2-2.7.1.patch @@ -0,0 +1,41 @@ +From 165f0f012f8d4bebb12d188c1c2a369d233d586e Mon Sep 17 00:00:00 2001 +From: Christian Hesse +Date: Tue, 10 Jan 2017 10:01:54 +0100 +Subject: [PATCH 1/1] fix test with freetype2 2.7.1 + +Upstream freetype2 applied a patch from openSuSE [0]: + +[pcf] Enrich family name with foundry name and glyph width info. +3576487add2f0e9691e8c43f8b0cd8e61aebf14f + +This prepends the foundry name plus a space to the family name. We needs +change the font name in expexted test output. + +[0] http://git.savannah.gnu.org/cgit/freetype/freetype2.git/commit/?id=3576487add2f0e9691e8c43f8b0cd8e61aebf14f + +Signed-off-by: Christian Hesse +--- + test/out.expected | 12 ++++++------ + 1 file changed, 6 insertions(+), 6 deletions(-) + +diff --git a/test/out.expected b/test/out.expected +index 39634c5..f3a8856 100644 +--- a/test/out.expected ++++ b/test/out.expected +@@ -1,8 +1,8 @@ +-Fixed:pixelsize=16 +-Fixed:pixelsize=6 ++Misc Fixed:pixelsize=6 ++Sony Fixed:pixelsize=16 + = +-Fixed:pixelsize=16 +-Fixed:pixelsize=6 ++Misc Fixed:pixelsize=6 ++Sony Fixed:pixelsize=16 + = +-Fixed:pixelsize=16 +-Fixed:pixelsize=6 ++Misc Fixed:pixelsize=6 ++Sony Fixed:pixelsize=16 +-- +2.11.0 \ No newline at end of file diff --git a/desktop/font/fontconfig/pspec.xml b/desktop/font/fontconfig/pspec.xml index e8280ae4bb..c80063a37d 100644 --- a/desktop/font/fontconfig/pspec.xml +++ b/desktop/font/fontconfig/pspec.xml @@ -12,17 +12,18 @@ library A library for configuring and customizing font access Fontconfig is a library designed to provide system-wide font configuration, customization and application access. - http://www.freedesktop.org/software/fontconfig/release/fontconfig-2.11.1.tar.bz2 + https://www.freedesktop.org/software/fontconfig/release/fontconfig-2.12.1.tar.bz2 freetype-devel expat-devel + 0001-fix-test-with-freetype2-2.7.1.patch prefer_dejavu.patch anymetrics_urw.patch use_legacy_lcdfilter_on_small_monospace.patch - add_hinting_and_antialiasing_to_proper_fonts.patch + fontconfig-2.8.0-sleep-less.patch @@ -87,6 +88,13 @@ + + 2016-06-09 + 2.12.1 + Version Bump + Pisi Linux Community + admin@pisilinux.org + 2016-06-09 2.11.1 From b9a6130bda869ababa794947119096d0e457c9e6 Mon Sep 17 00:00:00 2001 From: alihanozturk Date: Thu, 2 Feb 2017 21:31:11 +0300 Subject: [PATCH 08/20] libXft:rebuild --- x11/library/libXft/pspec.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x11/library/libXft/pspec.xml b/x11/library/libXft/pspec.xml index 5adaea6c77..8b9bafeef2 100644 --- a/x11/library/libXft/pspec.xml +++ b/x11/library/libXft/pspec.xml @@ -83,9 +83,9 @@ - 2017-01-31 + 2017-02-02 2.3.2 - Release bump + Rebuild Ayhan Yalçınsoy ayhanyalcinsoy@pisilinux.org From 7d784d966104be985f5e62f80a9e1ddae1819e71 Mon Sep 17 00:00:00 2001 From: alihanozturk Date: Thu, 2 Feb 2017 21:34:07 +0300 Subject: [PATCH 09/20] libXinerama:rebuild --- x11/library/libXinerama/pspec.xml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/x11/library/libXinerama/pspec.xml b/x11/library/libXinerama/pspec.xml index ffb97060f3..4798da19be 100644 --- a/x11/library/libXinerama/pspec.xml +++ b/x11/library/libXinerama/pspec.xml @@ -69,6 +69,13 @@ + + 2017-02-02 + 1.1.3 + Rebuild + PisiLinux Community + admin@pisilinux.org + 2016-04-30 1.1.3 From 5b10da2574b002f3980edf711f131047f23b5e24 Mon Sep 17 00:00:00 2001 From: alihanozturk Date: Thu, 2 Feb 2017 21:36:53 +0300 Subject: [PATCH 10/20] libxkbcommon:v.bump --- x11/library/libXcomposite/pspec.xml | 9 ++++++++- x11/library/libxkbcommon/pspec.xml | 11 +++++++++-- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/x11/library/libXcomposite/pspec.xml b/x11/library/libXcomposite/pspec.xml index b55e3690e4..473e8d585d 100644 --- a/x11/library/libXcomposite/pspec.xml +++ b/x11/library/libXcomposite/pspec.xml @@ -15,7 +15,7 @@ mirrors://xorg/individual/lib/libXcomposite-0.4.4.tar.bz2 libX11-devel - libXfixes-devel + libXfixes-devel util-macros @@ -66,6 +66,13 @@ + + 2017-02-02 + 0.4.4 + Rebuild + PisiLinux Community + admin@pisilinux.org + 2016-04-30 0.4.4 diff --git a/x11/library/libxkbcommon/pspec.xml b/x11/library/libxkbcommon/pspec.xml index c53570af83..c91320ce65 100644 --- a/x11/library/libxkbcommon/pspec.xml +++ b/x11/library/libxkbcommon/pspec.xml @@ -13,10 +13,10 @@ library Library to convert evdev keycodes to keysyms Library to convert evdev keycodes to keysyms - https://github.com/xkbcommon/libxkbcommon/archive/xkbcommon-0.6.1.tar.gz + https://github.com/xkbcommon/libxkbcommon/archive/xkbcommon-0.7.1.tar.gz util-macros - libxcb-devel + libxcb-devel @@ -62,6 +62,13 @@ + + 2017-02-02 + 0.7.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + 2016-04-27 0.6.1 From 5a9bec3999cafb13d405014b1b08f81b43e24c3c Mon Sep 17 00:00:00 2001 From: alihanozturk Date: Thu, 2 Feb 2017 21:40:53 +0300 Subject: [PATCH 11/20] libxkbfile:rebuild --- x11/library/libxkbfile/pspec.xml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/x11/library/libxkbfile/pspec.xml b/x11/library/libxkbfile/pspec.xml index f98cc8fd4c..b242d4bfba 100644 --- a/x11/library/libxkbfile/pspec.xml +++ b/x11/library/libxkbfile/pspec.xml @@ -45,6 +45,13 @@ + + 2017-02-02 + 1.0.9 + Rebuild + PisiLinux Community + admin@pisilinux.org + 2016-04-30 1.0.9 From d42d3f0e5e469647239f8af0231d604cd1907f8d Mon Sep 17 00:00:00 2001 From: alihanozturk Date: Thu, 2 Feb 2017 21:42:46 +0300 Subject: [PATCH 12/20] libXmu:rebuild --- x11/library/libXmu/pspec.xml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/x11/library/libXmu/pspec.xml b/x11/library/libXmu/pspec.xml index 7800aa1671..753fe9cd96 100644 --- a/x11/library/libXmu/pspec.xml +++ b/x11/library/libXmu/pspec.xml @@ -26,7 +26,7 @@ libXmu libXt - libX11 + libX11 libXext @@ -73,6 +73,13 @@ + + 2017-02-02 + 1.1.2 + Rebuild + PisiLinux Community + admin@pisilinux.org + 2016-04-30 1.1.2 From 93cfb74801229dc62eb065ee4b82f21b40783652 Mon Sep 17 00:00:00 2001 From: alihanozturk Date: Thu, 2 Feb 2017 21:46:23 +0300 Subject: [PATCH 13/20] libXp:rebuild --- x11/library/libXp/pspec.xml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/x11/library/libXp/pspec.xml b/x11/library/libXp/pspec.xml index ad8fecc059..d0e0c29da8 100644 --- a/x11/library/libXp/pspec.xml +++ b/x11/library/libXp/pspec.xml @@ -73,6 +73,13 @@ + + 2017-02-02 + 1.0.3 + Rebuild + PisiLinux Community + admin@pisilinux.org + 2016-04-30 1.0.3 From f340e75da90b81ab69bf8e001d1e63af4b2e5f1a Mon Sep 17 00:00:00 2001 From: alihanozturk Date: Thu, 2 Feb 2017 21:50:02 +0300 Subject: [PATCH 14/20] libXpm:v.bump --- x11/library/libXpm/pspec.xml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/x11/library/libXpm/pspec.xml b/x11/library/libXpm/pspec.xml index a88cb4a52b..ebc72e63d7 100644 --- a/x11/library/libXpm/pspec.xml +++ b/x11/library/libXpm/pspec.xml @@ -12,7 +12,7 @@ library X.Org Xpm library LibXpm is the X pixmap library. - mirrors://xorg/individual/lib/libXpm-3.5.11.tar.bz2 + mirrors://xorg/individual/lib/libXpm-3.5.12.tar.bz2 util-macros libXext-devel @@ -72,6 +72,13 @@ + + 2017-02-02 + 3.5.12 + Version bump + PisiLinux Community + admin@pisilinux.org + 2016-04-30 3.5.11 From ce0dfbd5a15499bc31a7a0dbeab5f2ea05b7740c Mon Sep 17 00:00:00 2001 From: alihanozturk Date: Thu, 2 Feb 2017 21:54:06 +0300 Subject: [PATCH 15/20] libXrandr:rebuidl --- x11/library/libXrandr/pspec.xml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/x11/library/libXrandr/pspec.xml b/x11/library/libXrandr/pspec.xml index cbbaec4e26..ccf8312224 100644 --- a/x11/library/libXrandr/pspec.xml +++ b/x11/library/libXrandr/pspec.xml @@ -76,6 +76,13 @@ + + 2017-02-02 + 1.5.1 + Rebuild. + PisiLinux Community + admin@pisilinux.org + 2016-11-02 1.5.1 From c88ba632bbf447b4deedab5e76c2771fdb975a8a Mon Sep 17 00:00:00 2001 From: alihanozturk Date: Thu, 2 Feb 2017 21:59:16 +0300 Subject: [PATCH 16/20] libXres:rebuild --- x11/library/libXres/pspec.xml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/x11/library/libXres/pspec.xml b/x11/library/libXres/pspec.xml index cc2b7efcaf..e2c358ee2c 100644 --- a/x11/library/libXres/pspec.xml +++ b/x11/library/libXres/pspec.xml @@ -47,6 +47,13 @@ + + 2017-02-02 + 1.0.7 + Rebuild. + PisiLinux Community + admin@pisilinux.org + 2016-04-30 1.0.7 From c26d61909057ffcdca075c82f431b7039360c509 Mon Sep 17 00:00:00 2001 From: alihanozturk Date: Thu, 2 Feb 2017 22:03:41 +0300 Subject: [PATCH 17/20] libScrnSaver:rebuild --- x11/library/libXScrnSaver/pspec.xml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/x11/library/libXScrnSaver/pspec.xml b/x11/library/libXScrnSaver/pspec.xml index 8c84cb2c09..d872fce26b 100644 --- a/x11/library/libXScrnSaver/pspec.xml +++ b/x11/library/libXScrnSaver/pspec.xml @@ -69,6 +69,13 @@ + + 2017-02-02 + 1.2.2 + Rebuild. + PisiLinux Community + admin@pisilinux.org + 2016-04-30 1.2.2 From 0a2ad61fa03b7fb5096c48e49f45c130e2b54275 Mon Sep 17 00:00:00 2001 From: alihanozturk Date: Thu, 2 Feb 2017 22:23:34 +0300 Subject: [PATCH 18/20] libXt:rebuild --- x11/library/libXt/pspec.xml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/x11/library/libXt/pspec.xml b/x11/library/libXt/pspec.xml index 2573379b17..e4df2b9e74 100644 --- a/x11/library/libXt/pspec.xml +++ b/x11/library/libXt/pspec.xml @@ -18,7 +18,7 @@ libSM-devel xorg-proto libX11-devel - util-macros + util-macros @@ -78,6 +78,13 @@ + + 2017-02-02 + 1.1.5 + Rebuild + PisiLinux Community + admin@pisilinux.org + 2016-04-30 1.1.5 From 6f879beca4b8a9b9f169574cd0b082520f61adc9 Mon Sep 17 00:00:00 2001 From: alihanozturk Date: Thu, 2 Feb 2017 22:25:12 +0300 Subject: [PATCH 19/20] libXvMC:rebuild --- x11/library/libXvMC/pspec.xml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/x11/library/libXvMC/pspec.xml b/x11/library/libXvMC/pspec.xml index 032ae8ec95..6aa79f064a 100644 --- a/x11/library/libXvMC/pspec.xml +++ b/x11/library/libXvMC/pspec.xml @@ -74,6 +74,13 @@ + + 2017-02-02 + 1.0.10 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + 2016-11-03 1.0.10 From f36d58b2e25a1d57f6575b626f7e69297bf96939 Mon Sep 17 00:00:00 2001 From: alihanozturk Date: Thu, 2 Feb 2017 22:27:07 +0300 Subject: [PATCH 20/20] libXxf86dga:rebuild --- x11/library/libXxf86dga/pspec.xml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/x11/library/libXxf86dga/pspec.xml b/x11/library/libXxf86dga/pspec.xml index f6c2ecc368..d2f91f5809 100644 --- a/x11/library/libXxf86dga/pspec.xml +++ b/x11/library/libXxf86dga/pspec.xml @@ -65,6 +65,13 @@ + + 2017-02-02 + 1.1.4 + Rebuild. + PisiLinux Community + admin@pisilinux.org + 2016-04-30 1.1.4