diff --git a/desktop/misc/xdg-user-dirs/pspec.xml b/desktop/misc/xdg-user-dirs/pspec.xml index 6d2b3129cc..ac1affdd58 100644 --- a/desktop/misc/xdg-user-dirs/pspec.xml +++ b/desktop/misc/xdg-user-dirs/pspec.xml @@ -41,6 +41,13 @@ + + 2018-08-15 + 0.17 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + 2018-03-18 0.17 diff --git a/desktop/pisilinux/pisilinux-desktop-services/pspec.xml b/desktop/pisilinux/pisilinux-desktop-services/pspec.xml index db45c3e091..ba91847f6c 100644 --- a/desktop/pisilinux/pisilinux-desktop-services/pspec.xml +++ b/desktop/pisilinux/pisilinux-desktop-services/pspec.xml @@ -33,6 +33,13 @@ + + 2018-08-15 + 2.1.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + 2017-09-01 2.1.0 diff --git a/multimedia/graphics/libjpeg-turbo/pspec.xml b/multimedia/graphics/libjpeg-turbo/pspec.xml index a0aadb0ed7..e0195d4785 100644 --- a/multimedia/graphics/libjpeg-turbo/pspec.xml +++ b/multimedia/graphics/libjpeg-turbo/pspec.xml @@ -67,7 +67,7 @@ 2018-07-25 1.5.3 - Rebuild. + Rebuild Pisi Linux Community admin@pisilinux.org diff --git a/multimedia/graphics/tiff/pspec.xml b/multimedia/graphics/tiff/pspec.xml index 7fa4b2ef9a..5bd44b724b 100644 --- a/multimedia/graphics/tiff/pspec.xml +++ b/multimedia/graphics/tiff/pspec.xml @@ -83,7 +83,7 @@ 2018-07-27 4.0.9 - Version Bump. + Version Bump Pisi Linux Community admin@pisilinux.org diff --git a/multimedia/misc/libopus/actions.py b/multimedia/misc/libopus/actions.py index b65cc1b250..39dbd1ee90 100644 --- a/multimedia/misc/libopus/actions.py +++ b/multimedia/misc/libopus/actions.py @@ -1,19 +1,28 @@ #!/usr/bin/python # -*- coding: utf-8 -*- # -# Licensed under the GNU General Public License, version 3. -# See the file http://www.gnu.org/copyleft/gpl.txt. +# Licensed under the GNU General Public License, version 2 +# See the file http://www.gnu.org/copyleft/gpl.txt +from pisi.actionsapi import get from pisi.actionsapi import autotools from pisi.actionsapi import pisitools -from pisi.actionsapi import get - +from pisi.actionsapi import shelltools def setup(): - autotools.autoreconf("-vif") - autotools.configure("--enable-custom-modes \ - --disable-static \ - --disable-doc") + autotools.autoreconf("-fiv") + options = "\ + --disable-static \ + " + + if get.buildTYPE() == "_emul32": + options += " --libdir=/usr/lib32 \ + " + shelltools.export("PKG_CONFIG_PATH", "/usr/lib32/pkgconfig") + + autotools.configure(options) + + pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ") def build(): autotools.make() @@ -21,4 +30,6 @@ def build(): def install(): autotools.rawInstall("DESTDIR=%s" % get.installDIR()) - pisitools.dodoc("COPYING", "ChangeLog", "README") + + if get.buildTYPE() == "_emul32": + pisitools.dodoc("README", "NEWS", "AUTHORS") diff --git a/multimedia/misc/libopus/pspec.xml b/multimedia/misc/libopus/pspec.xml index 5a258896cb..bce235d1f7 100644 --- a/multimedia/misc/libopus/pspec.xml +++ b/multimedia/misc/libopus/pspec.xml @@ -13,6 +13,9 @@ Opus is a totally open, royalty-free, highly versatile audio codec Opus is unmatched for interactive speech and music transmission over the Internet, but is also intended for storage and streaming applications. It is standardized by the Internet Engineering Task Force (IETF) as RFC 6716 which incorporated technology from Skype's SILK codec and Xiph.Org's CELT codec. http://downloads.xiph.org/releases/opus/opus-1.2.1.tar.gz + + doxygen + @@ -33,6 +36,7 @@ /usr/include /usr/lib/pkgconfig + /usr/lib32/pkgconfig @@ -46,8 +50,28 @@ /usr/share/doc/ + + + libopus-32bit + emul32 + 32-bit shared libraries for libopus + emul32 + + libopus + + + /usr/lib32 + + + + 2018-08-16 + 1.2.1 + Rebuild 32bit. + Pisi Linux Community + admin@pisilinux.org + 2018-08-01 1.2.1 diff --git a/multimedia/video/gst-plugins-base/pspec.xml b/multimedia/video/gst-plugins-base/pspec.xml index 99dce261a4..3a6f81c088 100644 --- a/multimedia/video/gst-plugins-base/pspec.xml +++ b/multimedia/video/gst-plugins-base/pspec.xml @@ -12,7 +12,7 @@ library Basepack of plugins for gstreamer GStreamer base plugins are a well-groomed and well-maintained collection of GStreamer plugins and elements, spanning the range of possible types of elements one would want to write for GStreamer. It also contains helper libraries and base classes useful for writing elements. A wide range of video and audio decoders, encoders, and filters are included. - http://ftp.gnome.org/pub/gnome/sources/gst-plugins-base/1.12/gst-plugins-base-1.12.0.tar.xz + http://ftp.gnome.org/pub/gnome/sources/gst-plugins-base/1.12/gst-plugins-base-1.12.4.tar.xz orc-devel cdparanoia @@ -21,7 +21,7 @@ libXv-devel libogg-devel libXext-devel - + libopus-devel alsa-lib-devel libvorbis-devel libtheora-devel @@ -46,7 +46,7 @@ libX11 libogg libXext - + libopus alsa-lib libvorbis libvisual @@ -78,6 +78,7 @@ pango-32bit libogg-32bit libX11-32bit + libopus-32bit alsa-lib-32bit libtheora-32bit libvorbis-32bit @@ -94,6 +95,7 @@ pango-32bit libogg-32bit libX11-32bit + libopus-32bit libxml2-32bit libXext-32bit alsa-lib-32bit @@ -129,6 +131,13 @@ + + 2018-08-16 + 1.12.0 + Version bump. + Pisi Linux Community + admin@pisilinux.org + 2018-08-11 1.12.0 diff --git a/programming/build/ant/pspec.xml b/programming/build/ant/pspec.xml index ab00fbaeb6..ba052a5260 100644 --- a/programming/build/ant/pspec.xml +++ b/programming/build/ant/pspec.xml @@ -41,6 +41,13 @@ + + 2018-08-16 + 1.9.9 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + 2018-01-16 1.9.9 diff --git a/programming/language/java/eclipse-ecj/pspec.xml b/programming/language/java/eclipse-ecj/pspec.xml index a45a41a9be..493cd3ca52 100644 --- a/programming/language/java/eclipse-ecj/pspec.xml +++ b/programming/language/java/eclipse-ecj/pspec.xml @@ -37,6 +37,13 @@ + + 2018-08-16 + 4.4.2_201502041700 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + 2017-05-15 4.4.2_201502041700 @@ -59,4 +66,4 @@ osman.erkan@pisilinux.org - \ No newline at end of file + diff --git a/programming/language/java/fastjar/pspec.xml b/programming/language/java/fastjar/pspec.xml index 126e34fc0a..8f45ba7744 100644 --- a/programming/language/java/fastjar/pspec.xml +++ b/programming/language/java/fastjar/pspec.xml @@ -30,6 +30,13 @@ + + 2018-08-16 + 0.98 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + 2017-05-11 0.98 @@ -52,4 +59,4 @@ admins@pisilinux.org - \ No newline at end of file + diff --git a/programming/language/java/java7-openjdk/actions.py b/programming/language/java/java7-openjdk/actions.py old mode 100644 new mode 100755 index 6d00ae6f0d..512cfb426b --- a/programming/language/java/java7-openjdk/actions.py +++ b/programming/language/java/java7-openjdk/actions.py @@ -24,13 +24,14 @@ def setup(): --with-parallel-jobs=%s \ --enable-nss \ --with-rhino \ + --bindir=/usr/bin \ --disable-system-kerberos \ --disable-system-pcsc \ --disable-system-sctp \ --enable-bootstrap \ --with-ecj-jar=/usr/share/java/ecj.jar \ --with-jdk-home=/usr/lib/jvm/java-7-openjdk \ - --with-pkgversion='PisiLinux build 7.u121_2.6.8' \ + --with-pkgversion='PisiLinux build 7u_181.2.6.14' \ " % get.makeJOBS().replace("-j", "")) def build(): diff --git a/programming/language/java/java7-openjdk/pspec.xml b/programming/language/java/java7-openjdk/pspec.xml old mode 100644 new mode 100755 index cffb0721f5..1c6ed4e008 --- a/programming/language/java/java7-openjdk/pspec.xml +++ b/programming/language/java/java7-openjdk/pspec.xml @@ -12,7 +12,7 @@ app:gui Open Java Development Kit OpenJDK (Open Java Development Kit) is a free and open source implementation of the Java Platform, Standard Edition (Java SE). - http://icedtea.wildebeest.org/download/source/icedtea-2.6.8.tar.gz + http://icedtea.wildebeest.org/download/source/icedtea-2.6.14.tar.gz ant wget @@ -300,6 +300,13 @@ + + 2018-08-15 + 7u_181.2.6.14 + Release Bump + Pisi Linux Community + admin@pisilinux.org + 2017-02-18 7u_121.2.6.8 diff --git a/programming/language/java/npapi-sdk/pspec.xml b/programming/language/java/npapi-sdk/pspec.xml index c08ae962af..194ec10261 100644 --- a/programming/language/java/npapi-sdk/pspec.xml +++ b/programming/language/java/npapi-sdk/pspec.xml @@ -35,6 +35,13 @@ + + 2018-08-16 + 0.27.2 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + 2017-01-08 0.27.2 diff --git a/programming/language/java/rhino/pspec.xml b/programming/language/java/rhino/pspec.xml index fd7aff0a8d..e8e58cff15 100644 --- a/programming/language/java/rhino/pspec.xml +++ b/programming/language/java/rhino/pspec.xml @@ -11,7 +11,7 @@ GPL2 Open-source implementation of JavaScript written entirely in Java Open-source implementation of JavaScript written entirely in Java - https://github.com/mozilla/rhino/archive/Rhino1_7_7_1_RELEASE.tar.gz + https://github.com/mozilla/rhino/archive/Rhino1_7_7_1_RELEASE.tar.gz http://archive.apache.org/dist/xmlbeans/binaries/xmlbeans-2.6.0.tgz rhino @@ -40,6 +40,13 @@ + + 2018-08-16 + 1.7.7.1 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + 2017-05-11 1.7.7.1 @@ -62,4 +69,4 @@ alihan@pisilinux.org - \ No newline at end of file + diff --git a/programming/language/python/python-Babel/pspec.xml b/programming/language/python/python-Babel/pspec.xml index b4f8aa0ad7..8e18e1d5c0 100644 --- a/programming/language/python/python-Babel/pspec.xml +++ b/programming/language/python/python-Babel/pspec.xml @@ -12,7 +12,7 @@ library A collection of tools for internationalizing Python applications Babel is composed of two major parts: 1) tools to build and work with gettext message catalogs , 2) a Python interface to the CLDR (Common Locale Data Repository), providing access to various locale display names, localized number and date formatting, etc. - https://github.com/python-babel/babel/archive/v2.5.3.tar.gz + https://github.com/python-babel/babel/archive/v2.6.0.tar.gz python-devel python-pytz @@ -34,6 +34,13 @@ + + 2018-08-15 + 2.6.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + 2018-02-26 2.5.3 diff --git a/programming/language/python/python-Jinja2/pspec.xml b/programming/language/python/python-Jinja2/pspec.xml index c73f3103eb..72b68aa5dd 100644 --- a/programming/language/python/python-Jinja2/pspec.xml +++ b/programming/language/python/python-Jinja2/pspec.xml @@ -40,6 +40,13 @@ + + 2018-08-15 + 2.10 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + 2018-02-26 2.10 diff --git a/programming/language/python/python-MarkupSafe/pspec.xml b/programming/language/python/python-MarkupSafe/pspec.xml index 7fddd5efb8..27047ca310 100644 --- a/programming/language/python/python-MarkupSafe/pspec.xml +++ b/programming/language/python/python-MarkupSafe/pspec.xml @@ -27,6 +27,13 @@ + + 2018-08-15 + 1.0 + Rebuild + Pisi Linux Community + admin@pisilinux.org + 2018-02-26 1.0 diff --git a/programming/language/python/python-Pygments/pspec.xml b/programming/language/python/python-Pygments/pspec.xml index 84febe52db..cd2f3a961f 100644 --- a/programming/language/python/python-Pygments/pspec.xml +++ b/programming/language/python/python-Pygments/pspec.xml @@ -36,6 +36,13 @@ + + 2018-08-15 + 2.2.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + 2017-01-25 2.2.0 diff --git a/programming/language/python/python-imagesize/pspec.xml b/programming/language/python/python-imagesize/pspec.xml index 39f3d58015..7e17320bff 100644 --- a/programming/language/python/python-imagesize/pspec.xml +++ b/programming/language/python/python-imagesize/pspec.xml @@ -12,7 +12,7 @@ library Getting image size from png/jpeg/jpeg2000/gif file. This module analyzes jpeg/jpeg2000/png/gif image header and return image size. - https://github.com/shibukawa/imagesize_py/archive/0.7.1.tar.gz + https://files.pythonhosted.org/packages/c6/3f/1db2da33804e8d7ef3a868b27b7bdc1aae6a4f693f0162d2aeeaf503864f/imagesize-1.0.0.tar.gz python-devel python-setuptools @@ -32,6 +32,13 @@ + + 2018-08-15 + 1.0.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + 2017-01-29 0.7.1 diff --git a/programming/language/python/python-pytz/pspec.xml b/programming/language/python/python-pytz/pspec.xml index 95a2a2ab6f..6ee287b838 100644 --- a/programming/language/python/python-pytz/pspec.xml +++ b/programming/language/python/python-pytz/pspec.xml @@ -13,7 +13,7 @@ library World Timezone Definitions for Python python-pytz brings the Olson tz database into Python. This library allows accurate and cross platform timezone calculations using Python. It also solves the issue of ambiguous times at the end of daylight savings, which you can read more about in the Python Library Reference (datetime.tzinfo).Almost all (over 540) of the Olson timezones are supported. - https://pypi.python.org/packages/1b/50/4cdc62fc0753595fc16c8f722a89740f487c6e5670c644eb8983946777be/pytz-2018.3.tar.gz + https://files.pythonhosted.org/packages/10/76/52efda4ef98e7544321fd8d5d512e11739c1df18b0649551aeccfb1c8376/pytz-2018.4.tar.gz @@ -25,6 +25,13 @@ + + 2018-05-15 + 2018.4 + Version Bump + Pisi Linux Community + admin@pisilinux.org + 2018-02-26 2018.3 diff --git a/programming/language/python/python-requests/pspec.xml b/programming/language/python/python-requests/pspec.xml index 446053bc63..a6f09eedb6 100644 --- a/programming/language/python/python-requests/pspec.xml +++ b/programming/language/python/python-requests/pspec.xml @@ -11,7 +11,7 @@ Requests is an Apache2 Licensed HTTP library, written in Python, for human beings. Python’s standard urllib2 module provides most of the HTTP capabilities you need MIT - https://pypi.python.org/packages/16/09/37b69de7c924d318e51ece1c4ceb679bf93be9d05973bb30c35babd596e2/requests-2.13.0.tar.gz + https://files.pythonhosted.org/packages/54/1f/782a5734931ddf2e1494e4cd615a51ff98e1879cbe9eecbdfeaf09aa75e9/requests-2.19.1.tar.gz python-devel python-setuptools @@ -30,6 +30,13 @@ + + 2018-08-15 + 2.19.1 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + 2017-09-04 2.13.0 diff --git a/programming/language/python/python-sphinx-alabaster-theme/pspec.xml b/programming/language/python/python-sphinx-alabaster-theme/pspec.xml index fe091a3152..adf343c884 100644 --- a/programming/language/python/python-sphinx-alabaster-theme/pspec.xml +++ b/programming/language/python/python-sphinx-alabaster-theme/pspec.xml @@ -12,7 +12,7 @@ library Sphinx default theme. Alabaster is a visually (c)lean, responsive, configurable theme for the Sphinx documentation system. It is Python 2+3 compatible. - https://github.com/bitprophet/alabaster/archive/0.7.10.tar.gz + https://github.com/bitprophet/alabaster/archive/0.7.11.tar.gz python-devel python-setuptools @@ -32,6 +32,13 @@ + + 2018-08-15 + 0.7.11 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2018-02-25 0.7.10 diff --git a/programming/language/python/python-sphinx/actions.py b/programming/language/python/python-sphinx/actions.py index 8fdb979cde..b9ca3a4a6f 100644 --- a/programming/language/python/python-sphinx/actions.py +++ b/programming/language/python/python-sphinx/actions.py @@ -21,8 +21,8 @@ def install(): load_grammar('%s/usr/lib/%s/site-packages/sphinx/pycode/Grammar-py2.txt')\"" %(get.installDIR(), get.curPYTHON(), ) ) # create sphinx documentation using itself - pythonmodules.run("sphinx-build.py doc doc/_build/html") - pisitools.dohtml("doc/_build/html/*") + #pythonmodules.run("sphinx-build.py doc doc/_build/html") + #pisitools.dohtml("doc/_build/html/*") pisitools.dodoc("CHANGES", "EXAMPLES") diff --git a/programming/language/python/python-sphinx/pspec.xml b/programming/language/python/python-sphinx/pspec.xml index b5fa191bf4..9799599a99 100644 --- a/programming/language/python/python-sphinx/pspec.xml +++ b/programming/language/python/python-sphinx/pspec.xml @@ -12,7 +12,7 @@ app:console Python documentation generator. It can generate HTML or Latex outputs It's a very common documentation generator especially using for python based documentation.It can generate HTML or PDF, Ps outputs with Latex output support. - https://pypi.python.org/packages/e3/87/e271f7f0d498c7fdaec009c27955401d18ef357c0d468e1eb2be36bdc68c/Sphinx-1.5.2.tar.gz + https://files.pythonhosted.org/packages/8b/7e/b188d9a3b9c938e736e02a74c1363c2888e095d770df2c72b4c312f9fdcb/Sphinx-1.6.5.tar.gz docutils python-six @@ -52,6 +52,13 @@ + + 2018-08-15 + 1.6.5 + Version Bump + Pisi Linux Community + admin@pisilinux.org + 2017-01-29 1.5.2 diff --git a/programming/language/python3/gonullu/pspec.xml b/programming/language/python3/gonullu/pspec.xml index 465136761e..aec42512b1 100644 --- a/programming/language/python3/gonullu/pspec.xml +++ b/programming/language/python3/gonullu/pspec.xml @@ -12,7 +12,7 @@ app:console Volunteer application is developed to compile the packages for Pisi distributions Application build the packages waiting at queue of build system as PISI packages using docker images and again, sent them to build system. - https://github.com/PisiLinuxNew/gonullu/archive/v1.1.7.tar.gz + https://github.com/PisiLinuxNew/gonullu/archive/v1.1.9.tar.gz python3-devel python3-setuptools @@ -46,6 +46,13 @@ + + 2018-08-16 + 1.1.9 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2018-01-31 1.1.7 @@ -103,4 +110,4 @@ alihan@pisilinux.org - \ No newline at end of file + diff --git a/programming/misc/yajl/pspec.xml b/programming/misc/yajl/pspec.xml index ddbddc8e43..3c2ac104ad 100644 --- a/programming/misc/yajl/pspec.xml +++ b/programming/misc/yajl/pspec.xml @@ -41,6 +41,13 @@ + + 2018-08-15 + 2.1.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + 2017-04-21 2.1.0 diff --git a/util/admin/utempter/pspec.xml b/util/admin/utempter/pspec.xml index 9b18ebb6e8..9140d91c3a 100644 --- a/util/admin/utempter/pspec.xml +++ b/util/admin/utempter/pspec.xml @@ -44,6 +44,13 @@ + + 2018-08-15 + 1.1.6 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + 2017-01-30 1.1.6 @@ -66,4 +73,4 @@ suvarice@gmail.com - \ No newline at end of file + diff --git a/x11/library/libSM/pspec.xml b/x11/library/libSM/pspec.xml index 8a0bd845c6..0cc07214a7 100644 --- a/x11/library/libSM/pspec.xml +++ b/x11/library/libSM/pspec.xml @@ -76,7 +76,7 @@ libomxil-bellagio:rebuild 2018-07-24 1.2.2 - Rebuild + Rebuild. PisiLinux Community admin@pisilinux.org diff --git a/x11/library/libXcomposite/pspec.xml b/x11/library/libXcomposite/pspec.xml index 9e11aedc3b..67ec93426a 100644 --- a/x11/library/libXcomposite/pspec.xml +++ b/x11/library/libXcomposite/pspec.xml @@ -69,7 +69,7 @@ 2018-07-25 0.4.4 - Rebuild + Rebuild. PisiLinux Community admin@pisilinux.org diff --git a/x11/library/libxcb/pspec.xml b/x11/library/libxcb/pspec.xml index a5181f53f2..d20b004977 100644 --- a/x11/library/libxcb/pspec.xml +++ b/x11/library/libxcb/pspec.xml @@ -83,7 +83,7 @@ 2018-07-23 1.12 - Rebuild + Rebuild. PisiLinux Community admin@pisilinux.org diff --git a/x11/terminal/xterm/pspec.xml b/x11/terminal/xterm/pspec.xml index 36412db71d..160e945be7 100644 --- a/x11/terminal/xterm/pspec.xml +++ b/x11/terminal/xterm/pspec.xml @@ -14,7 +14,7 @@ app:gui Terminal emulator for the X Window System The xterm program is a terminal emulator for the X Window System. It provides DEC VT102 and Tektronix 4014 compatible terminals for programs that can't use the window system directly. - ftp://invisible-island.net/xterm/xterm-327.tgz + http://invisible-mirror.net/archives/xterm/xterm-331.tgz fontconfig-devel libICE-devel @@ -66,6 +66,13 @@ + + 2018-08-15 + 331 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + 2017-02-16 327 diff --git a/x11/terminal/yakuake/pspec.xml b/x11/terminal/yakuake/pspec.xml index 2041b5dc26..acf747a01b 100644 --- a/x11/terminal/yakuake/pspec.xml +++ b/x11/terminal/yakuake/pspec.xml @@ -84,6 +84,13 @@ + + 2018-08-15 + 3.0.5 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + 2018-04-01 3.0.5