dbus-python move
This commit is contained in:
@@ -1,26 +1,25 @@
|
|||||||
|
|
||||||
(0001/182) Calculating build dep of busybox
|
(0001/181) Calculating build dep of busybox
|
||||||
(0002/182) Calculating build dep of libuser
|
(0004/181) Calculating build dep of libpipeline
|
||||||
(0003/182) Calculating build dep of less
|
(0005/181) Calculating build dep of liblogging
|
||||||
(0004/182) Calculating build dep of libpipeline
|
(0006/181) Calculating build dep of alternatives
|
||||||
(0005/182) Calculating build dep of liblogging
|
(0007/181) Calculating build dep of kbd
|
||||||
(0006/182) Calculating build dep of alternatives
|
(0003/181) Calculating build dep of less
|
||||||
(0007/182) Calculating build dep of kbd
|
(0002/181) Calculating build dep of libuser
|
||||||
(0008/182) Calculating build dep of spidermonkey ---> borks in 'libX11-devel'
|
(0008/181) Calculating build dep of spidermonkey
|
||||||
|
(0009/181) Calculating build dep of sysvinit
|
||||||
(0009/182) Calculating build dep of sysvinit
|
(0010/181) Calculating build dep of gc
|
||||||
(0010/182) Calculating build dep of gc
|
(0011/181) Calculating build dep of findutils ---> borks in 'libX11-devel'
|
||||||
(0011/182) Calculating build dep of findutils
|
|
||||||
(0012/182) Calculating build dep of rsyslog
|
(0012/181) Calculating build dep of rsyslog
|
||||||
(0013/182) Calculating build dep of popt
|
(0013/181) Calculating build dep of popt
|
||||||
(0014/182) Calculating build dep of gdbm
|
(0014/181) Calculating build dep of gdbm
|
||||||
(0015/182) Calculating build dep of python-pyliblzma
|
(0015/181) Calculating build dep of python-pyliblzma
|
||||||
(0016/182) Calculating build dep of cython
|
(0016/181) Calculating build dep of cython
|
||||||
(0017/182) Calculating build dep of pisilinux-python
|
(0017/181) Calculating build dep of pisilinux-python
|
||||||
(0018/182) Calculating build dep of mingetty
|
(0018/181) Calculating build dep of mingetty
|
||||||
(0019/182) Calculating build dep of scons
|
(0019/181) Calculating build dep of scons
|
||||||
(0020/182) Calculating build dep of grub2
|
(0020/181) Calculating build dep of grub2
|
||||||
(0021/182) Calculating build dep of snappy
|
|
||||||
(0021/181) Calculating build dep of snappy
|
(0021/181) Calculating build dep of snappy
|
||||||
(0022/181) Calculating build dep of gnuconfig
|
(0022/181) Calculating build dep of gnuconfig
|
||||||
(0023/181) Calculating build dep of os-prober
|
(0023/181) Calculating build dep of os-prober
|
||||||
|
|||||||
@@ -1,49 +0,0 @@
|
|||||||
#!/usr/bin/python
|
|
||||||
# -*- coding: utf-8 -*-
|
|
||||||
#
|
|
||||||
# Licensed under the GNU General Public License, version 3.
|
|
||||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
|
||||||
|
|
||||||
from pisi.actionsapi import shelltools
|
|
||||||
from pisi.actionsapi import autotools
|
|
||||||
from pisi.actionsapi import pisitools
|
|
||||||
from pisi.actionsapi import get
|
|
||||||
|
|
||||||
def setup():
|
|
||||||
shelltools.makedirs("build-python2")
|
|
||||||
shelltools.makedirs("build-python3")
|
|
||||||
autotools.autoreconf("-fi")
|
|
||||||
|
|
||||||
shelltools.cd("build-python3")
|
|
||||||
shelltools.system("PYTHON=python3 ../configure --prefix=/usr \
|
|
||||||
--localstatedir=/var \
|
|
||||||
--disable-api-docs \
|
|
||||||
--disable-html-docs \
|
|
||||||
--disable-static")
|
|
||||||
|
|
||||||
shelltools.cd("../build-python2")
|
|
||||||
shelltools.system("../configure --prefix=/usr \
|
|
||||||
--localstatedir=/var \
|
|
||||||
--disable-api-docs \
|
|
||||||
--disable-html-docs \
|
|
||||||
--disable-static")
|
|
||||||
|
|
||||||
def build():
|
|
||||||
shelltools.cd("build-python3")
|
|
||||||
autotools.make()
|
|
||||||
|
|
||||||
shelltools.cd("../build-python2")
|
|
||||||
autotools.make()
|
|
||||||
|
|
||||||
def check():
|
|
||||||
#autotools.make("check")
|
|
||||||
pass
|
|
||||||
|
|
||||||
def install():
|
|
||||||
pisitools.dodoc("AUTHORS", "ChangeLog", "NEWS", "README")
|
|
||||||
|
|
||||||
shelltools.cd("build-python3")
|
|
||||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
|
||||||
|
|
||||||
shelltools.cd("../build-python2")
|
|
||||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
diff -Naur dbus-python-0.83.0.orig/dbus/connection.py dbus-python-0.83.0/dbus/connection.py
|
|
||||||
--- dbus-python-0.83.0.orig/dbus/connection.py 2009-04-22 13:58:33.000000000 +0300
|
|
||||||
+++ dbus-python-0.83.0/dbus/connection.py 2009-04-22 13:58:40.000000000 +0300
|
|
||||||
@@ -239,7 +239,7 @@
|
|
||||||
ProxyObjectClass = ProxyObject
|
|
||||||
|
|
||||||
def __init__(self, *args, **kwargs):
|
|
||||||
- super(Connection, self).__init__(*args, **kwargs)
|
|
||||||
+ super(Connection, self).__init__()
|
|
||||||
|
|
||||||
# this if-block is needed because shared bus connections can be
|
|
||||||
# __init__'ed more than once
|
|
||||||
@@ -1,117 +0,0 @@
|
|||||||
<?xml version="1.0" ?>
|
|
||||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
|
||||||
<PISI>
|
|
||||||
<Source>
|
|
||||||
<Name>dbus-python</Name>
|
|
||||||
<Homepage>http://dbus.freedesktop.org/</Homepage>
|
|
||||||
<Packager>
|
|
||||||
<Name>PisiLinux Community</Name>
|
|
||||||
<Email>admins@pisilinux.org</Email>
|
|
||||||
</Packager>
|
|
||||||
<License>GPLv2</License>
|
|
||||||
<License>AFL-2.1</License>
|
|
||||||
<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="7a00f7861d26683ab7e3f4418860bd426deed9b5" type="targz">http://dbus.freedesktop.org/releases/dbus-python/dbus-python-1.2.0.tar.gz</Archive>
|
|
||||||
<BuildDependencies>
|
|
||||||
<Dependency>python-devel</Dependency>
|
|
||||||
<Dependency>python3</Dependency>
|
|
||||||
<Dependency>dbus-devel</Dependency>
|
|
||||||
<Dependency>dbus-glib-devel</Dependency>
|
|
||||||
<Dependency>glib2-devel</Dependency>
|
|
||||||
<Dependency>libpcre-devel</Dependency>
|
|
||||||
</BuildDependencies>
|
|
||||||
<Patches>
|
|
||||||
<Patch level="1">suppress-warnings.patch</Patch>
|
|
||||||
</Patches>
|
|
||||||
</Source>
|
|
||||||
|
|
||||||
<Package>
|
|
||||||
<Name>dbus-python-common</Name>
|
|
||||||
<Summary>Common dbus-python files shared between dbus-python and dbus-python3</Summary>
|
|
||||||
<RuntimeDependencies>
|
|
||||||
<Dependency>dbus</Dependency>
|
|
||||||
</RuntimeDependencies>
|
|
||||||
<Files>
|
|
||||||
<Path fileType="header">/usr/include</Path>
|
|
||||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
|
||||||
<Path fileType="doc">/usr/share/doc</Path>
|
|
||||||
</Files>
|
|
||||||
</Package>
|
|
||||||
|
|
||||||
<Package>
|
|
||||||
<Name>dbus-python</Name>
|
|
||||||
<RuntimeDependencies>
|
|
||||||
<Dependency release="current">dbus-python-common</Dependency>
|
|
||||||
<Dependency>python</Dependency>
|
|
||||||
<Dependency>dbus</Dependency>
|
|
||||||
<Dependency>glib2</Dependency>
|
|
||||||
<Dependency>dbus-glib</Dependency>
|
|
||||||
</RuntimeDependencies>
|
|
||||||
<Files>
|
|
||||||
<Path fileType="library">/usr/lib/python2*</Path>
|
|
||||||
</Files>
|
|
||||||
</Package>
|
|
||||||
|
|
||||||
<Package>
|
|
||||||
<Name>dbus-python3</Name>
|
|
||||||
<PartOf>programming.language.python</PartOf>
|
|
||||||
<Summary>D-Bus Python3 bindings</Summary>
|
|
||||||
<RuntimeDependencies>
|
|
||||||
<Dependency release="current">dbus-python-common</Dependency>
|
|
||||||
<Dependency>python3</Dependency>
|
|
||||||
<Dependency>dbus</Dependency>
|
|
||||||
<Dependency>glib2</Dependency>
|
|
||||||
<Dependency>dbus-glib</Dependency>
|
|
||||||
</RuntimeDependencies>
|
|
||||||
<Files>
|
|
||||||
<Path fileType="library">/usr/lib/python3*</Path>
|
|
||||||
</Files>
|
|
||||||
</Package>
|
|
||||||
|
|
||||||
<History>
|
|
||||||
<Update release="6">
|
|
||||||
<Date>2015-04-01</Date>
|
|
||||||
<Version>1.2.0</Version>
|
|
||||||
<Comment>Release bump.</Comment>
|
|
||||||
<Name>Kamil Atlı</Name>
|
|
||||||
<Email>suvarice@gmail.com</Email>
|
|
||||||
</Update>
|
|
||||||
<Update release="5">
|
|
||||||
<Date>2014-05-11</Date>
|
|
||||||
<Version>1.2.0</Version>
|
|
||||||
<Comment>Release bump.</Comment>
|
|
||||||
<Name>Marcin Bojara</Name>
|
|
||||||
<Email>marcin@pisilinux.org</Email>
|
|
||||||
</Update>
|
|
||||||
<Update release="4">
|
|
||||||
<Date>2013-10-28</Date>
|
|
||||||
<Version>1.2.0</Version>
|
|
||||||
<Comment>rebuild.</Comment>
|
|
||||||
<Name>Marcin Bojara</Name>
|
|
||||||
<Email>marcin@pisilinux.org</Email>
|
|
||||||
</Update>
|
|
||||||
<Update release="3">
|
|
||||||
<Date>2013-07-23</Date>
|
|
||||||
<Version>1.2.0</Version>
|
|
||||||
<Comment>Version bump. Remove dbus-devel from runtime dependencies.</Comment>
|
|
||||||
<Name>Marcin Bojara</Name>
|
|
||||||
<Email>marcin@pisilinux.org</Email>
|
|
||||||
</Update>
|
|
||||||
<Update release="2">
|
|
||||||
<Date>2013-04-25</Date>
|
|
||||||
<Version>1.1.1</Version>
|
|
||||||
<Comment>Dep Fixed.</Comment>
|
|
||||||
<Name>PisiLinux Community</Name>
|
|
||||||
<Email>admins@pisilinux.org</Email>
|
|
||||||
</Update>
|
|
||||||
<Update release="1">
|
|
||||||
<Date>2012-11-10</Date>
|
|
||||||
<Version>1.1.1</Version>
|
|
||||||
<Comment>First release</Comment>
|
|
||||||
<Name>Marcin Bojara</Name>
|
|
||||||
<Email>marcin@pisilinux.org</Email>
|
|
||||||
</Update>
|
|
||||||
</History>
|
|
||||||
</PISI>
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
<?xml version="1.0" ?>
|
|
||||||
<PISI>
|
|
||||||
<Source>
|
|
||||||
<Name>dbus-python</Name>
|
|
||||||
<Summary xml:lang="tr">D-Bus için Python bağlayıcıları</Summary>
|
|
||||||
</Source>
|
|
||||||
</PISI>
|
|
||||||
Reference in New Issue
Block a user