Merge branch 'master' of github.com:pisilinux/main

This commit is contained in:
blue-devil
2020-01-12 23:35:33 +03:00
60 changed files with 2253 additions and 160 deletions
@@ -34,6 +34,7 @@
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
@@ -18,7 +18,8 @@ def setup():
--localstatedir=/var \
--disable-api-docs \
--disable-html-docs \
--disable-static")
--disable-static \
PYTHON_VERSION=3")
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
@@ -38,4 +39,4 @@ def install():
# remove dbus-python-common files in py3 package
pisitools.removeDir("/usr/include/")
pisitools.removeDir("/usr/lib/pkgconfig")
pisitools.removeDir("/usr/share/")
#pisitools.removeDir("/usr/share/")
@@ -13,7 +13,7 @@
<IsA>library</IsA>
<Summary>D-Bus Python bindings</Summary>
<Description>dbus-python provides a Python module which wraps the D-Bus programming API.</Description>
<Archive sha1sum="078a76d760ba649991b0ac0ae2eaeda41c00ca5b" type="targz">https://dbus.freedesktop.org/releases/dbus-python/dbus-python-1.2.4.tar.gz</Archive>
<Archive sha1sum="7ccb3c5870d3411439a91e695f5780bf2527ed93" type="targz">https://dbus.freedesktop.org/releases/dbus-python/dbus-python-1.2.14.tar.gz</Archive>
<BuildDependencies>
<Dependency>python3-devel</Dependency>
<Dependency>dbus-devel</Dependency>
@@ -43,6 +43,13 @@
</Package>
<History>
<Update release="6">
<Date>2020-01-12</Date>
<Version>1.2.14</Version>
<Comment>Version bump</Comment>
<Name>Idris Kalp</Name>
<Email>idriskalp@gmail.com</Email>
</Update>
<Update release="5">
<Date>2018-08-03</Date>
<Version>1.2.4</Version>
+1 -1
View File
@@ -86,7 +86,7 @@
<History>
<Update release="10">
<Date>2020-01-06</Date>
<Date>2020-01-12</Date>
<Version>1.72.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
+6 -2
View File
@@ -12,10 +12,14 @@ from pisi.actionsapi import get
def setup():
pisitools.dosed("configure.ac", "-O3", "")
shelltools.export("CPPFLAGS", get.CXXFLAGS())
shelltools.export("LDFLAGS", "%s -lpthread" % get.LDFLAGS())
shelltools.system("./autogen.sh")
#shelltools.system("./autogen.sh")
autotools.configure("--disable-static \
--enable-glib")
--enable-glib \
--disable-ecore \
--disable-examples")
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
@@ -0,0 +1,9 @@
--- libdbus-c++-0.9.0/src/pipe.cpp.writechar 2017-02-16 11:07:13.591950169 +0000
+++ libdbus-c++-0.9.0/src/pipe.cpp 2017-02-16 11:04:17.158796092 +0000
@@ -83,5 +83,5 @@
void Pipe::signal()
{
// TODO: ignoring return of read/write generates warning; maybe relevant for eventloop work...
- ::write(_fd_write, '\0', 1);
+ ::write(_fd_write, "", 1);
}
@@ -0,0 +1,10 @@
--- src/eventloop-integration.cpp.orig 2012-05-09 11:22:09.683290763 +0200
+++ src/eventloop-integration.cpp 2012-05-09 11:22:44.313288912 +0200
@@ -38,6 +38,7 @@
#include <cassert>
#include <sys/poll.h>
#include <fcntl.h>
+#include <unistd.h>
using namespace DBus;
using namespace std;
+10 -4
View File
@@ -13,17 +13,16 @@
<Summary>C++ bindings for DBus library</Summary>
<Description>dbus-c++ attempts to provide a C++ API for D-BUS. The library has a glib/gtk and an Ecore mainloop integration. It also offers an optional own main loop.</Description>
<!--http://www.filewatcher.com/m/dbus-c++_0~20090907.orig.tar.gz.855848-0.html-->
<Archive sha1sum="ffb89c619a9cc126a92b319d7ce72cf12e22b4eb" type="targz">http://source.pisilinux.org/1.0/dbus-c++.tar.gz</Archive>
<Archive sha1sum="105bc04c9ad03c69e612a41e83acd04b7dfd3a41" type="targz">https://sourceforge.net/projects/dbus-cplusplus/files/dbus-c%2B%2B/0.9.0/libdbus-c%2B%2B-0.9.0.tar.gz</Archive>
<BuildDependencies>
<Dependency>dbus-devel</Dependency>
<Dependency>expat-devel</Dependency>
<Dependency>glib2-devel</Dependency>
</BuildDependencies>
<Patches>
<Patch level="1">dbus-c++-build-fix.patch</Patch>
<Patch level="1">dbus-c++-linkfix.patch</Patch>
<Patch level="1">gcc-44.patch</Patch>
<Patch level="1">disable-threading.patch</Patch>
<Patch level="1">fix-writechar.patch</Patch>
<Patch level="0">gcc47.patch</Patch>
</Patches>
</Source>
@@ -57,6 +56,13 @@
</Package>
<History>
<Update release="5">
<Date>2020-01-12</Date>
<Version>0.9.0</Version>
<Comment>Rebuild.</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="4">
<Date>2018-08-03</Date>
<Version>0.0_20090907</Version>
+1 -1
View File
@@ -41,7 +41,7 @@ def install():
pisitools.removeDir("/_emul32")
for f in shelltools.ls("%s/usr/lib32/pkgconfig" % get.installDIR()):
pisitools.dosed("%s/usr/lib32/pkgconfig/%s" % (get.installDIR(), f), "_emul32", "usr")
pisitools.dosed("%s/usr/lib32/icu/64.2/Makefile.inc" % get.installDIR(), "_emul32", "usr")
pisitools.dosed("%s/usr/lib32/icu/%s/Makefile.inc" % ( get.installDIR(), get.srcVERSION()), "_emul32", "usr")
pisitools.dosed("%s/usr/bin/icu-config-32" % get.installDIR(), "_emul32", "usr")
return
+8 -1
View File
@@ -14,7 +14,7 @@
<Description>ICU is a mature, widely used set of C/C++ and Java libraries for Unicode support, software internationalization and globalization (i18n/g11n). This package contains the C/C++ libraries.</Description>
<!-- CAUTION! This package has a great potential to break API/ABI in minor version bumps, check for a file like:
http://source.icu-project.org/repos/icu/icu/tags/release-55-1/APIChangeReport.html -->
<Archive sha1sum="3127155ecf2b75ab4835f501b7478e39c07bb852" type="targz">http://download.icu-project.org/files/icu4c/64.2/icu4c-64_2-src.tgz</Archive>
<Archive sha1sum="d1e6b58aea606894cfb2495b6eb1ad533ccd2a25" type="targz">https://github.com/unicode-org/icu/releases/download/release-65-1/icu4c-65_1-src.tgz</Archive>
<BuildDependencies>
<Dependency>libgcc</Dependency>
</BuildDependencies>
@@ -72,6 +72,13 @@
</Package>
<History>
<Update release="10">
<Date>2020-01-12</Date>
<Version>65.1</Version>
<Comment>Version bump.</Comment>
<Name>Idris Kalp</Name>
<Email>idriskalp@gmail.com</Email>
</Update>
<Update release="9">
<Date>2020-01-06</Date>
<Version>64.2</Version>
+10 -3
View File
@@ -12,9 +12,9 @@
<IsA>library</IsA>
<Summary>A library to execute a function when a specific event occurs on a file descriptor</Summary>
<Description>The libevent API provides a mechanism to execute a callback function when a specific event occurs on a file descriptor or after a timeout has been reached. libevent is meant to replace the asynchronous event loop found in event driven network servers. An application just needs to call event_dispatch() and can then add or remove events dynamically without having to change the event loop.</Description>
<Archive sha1sum="8a37ad06dd28ed3da785819da297b1a3b2ea9307" type="targz">https://github.com/libevent/libevent/archive/release-2.1.8-stable.tar.gz</Archive>
<Archive sha1sum="43cd4462b63c1fe9f155a1579817e12377d44580" type="targz">https://github.com/libevent/libevent/archive/release-2.1.11-stable.tar.gz</Archive>
<BuildDependencies>
<Dependency versionFrom="1.0.2j">openssl-devel</Dependency>
<Dependency versionFrom="1.1.1d">openssl-devel</Dependency>
<Dependency>zlib-devel</Dependency>
</BuildDependencies>
<Patches>
@@ -27,7 +27,7 @@
<Package>
<Name>libevent</Name>
<RuntimeDependencies>
<Dependency versionFrom="1.0.2j">openssl</Dependency>
<Dependency versionFrom="1.1.1d">openssl</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
@@ -50,6 +50,13 @@
</Package>
<History>
<Update release="5">
<Date>2020-01-12</Date>
<Version>2.1.11</Version>
<Comment>Version bump</Comment>
<Name>İdris Kalp</Name>
<Email>aidriskalp@gmail.com</Email>
</Update>
<Update release="4">
<Date>2018-08-05</Date>
<Version>2.1.8</Version>
+8 -1
View File
@@ -12,7 +12,7 @@
<IsA>library</IsA>
<Summary>Typesafe signal framework for C++</Summary>
<Description>libsigc++ is a library which implements a full callback system for use in widget libraries, abstract interfaces, and general programming.</Description>
<Archive sha1sum="7807a12a1e90a98bd8c9440e5b312d3cb1121bf7" type="tarxz">mirrors://gnome/libsigc++/2.10/libsigc++-2.10.0.tar.xz</Archive>
<Archive sha1sum="9250f1c54d1985fb1a36c9650b963ecdae1227de" type="tarxz">mirrors://gnome/libsigc++/2.10/libsigc++-2.10.2.tar.xz</Archive>
</Source>
<Package>
@@ -48,6 +48,13 @@
</Package>
<History>
<Update release="6">
<Date>2020-01-12</Date>
<Version>2.10.2</Version>
<Comment>Version Bump.</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="4">
<Date>2018-09-16</Date>
<Version>2.10.0</Version>
+8 -1
View File
@@ -12,7 +12,7 @@
<IsA>library</IsA>
<Summary>C++ wrapper for the libxml2 XML parser library</Summary>
<Description>libxml++ is a C++ wrapper for the libxml XML parser library.</Description>
<Archive sha1sum="00a4082da23f8293bc8cf7d529977171ccf020bb" type="tarxz">http://ftp.acc.umu.se/pub/GNOME/sources/libxml++/3.0/libxml++-3.0.1.tar.xz</Archive>
<Archive sha1sum="583de9193ad9d3d82924be01b2ea3adf65d77a78" type="tarxz">http://ftp.acc.umu.se/pub/GNOME/sources/libxml++/3.2/libxml++-3.2.0.tar.xz</Archive>
<BuildDependencies>
<Dependency>glibmm-devel</Dependency>
<Dependency>libsigc++-devel</Dependency>
@@ -59,6 +59,13 @@
</Package>
<History>
<Update release="5">
<Date>2020-01-12</Date>
<Version>3.2.0</Version>
<Comment>Version Bump</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="4">
<Date>2018-09-16</Date>
<Version>3.0.1</Version>
+8 -1
View File
@@ -13,7 +13,7 @@
<IsA>app:console</IsA>
<Summary>ODBC Interface for Linux</Summary>
<Description>The unixODBC Project goals are to develop and promote unixODBC to be the definitive standard for ODBC on non MS Windows platforms.</Description>
<Archive sha1sum="22b9254626d303be95d1eeafa34d452a45792545" type="targz">ftp://ftp.unixodbc.org/pub/unixODBC/unixODBC-2.3.5.tar.gz</Archive>
<Archive sha1sum="a066c4f3fcb19befbaf5a5801b830ec41b7318df" type="targz">ftp://ftp.unixodbc.org/pub/unixODBC/unixODBC-2.3.7.tar.gz</Archive>
<BuildDependencies>
<Dependency>libtool-ltdl</Dependency>
</BuildDependencies>
@@ -56,6 +56,13 @@
</Package>
<History>
<Update release="4">
<Date>2020-01-12</Date>
<Version>2.3.7</Version>
<Comment>Version Bump</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="4">
<Date>2018-07-31</Date>
<Version>2.3.5</Version>