parent
47ade802ce
commit
6e61ccec91
2 changed files with 115 additions and 3 deletions
114
srcpkgs/libsearpc/patches/001-python3-support.patch
Normal file
114
srcpkgs/libsearpc/patches/001-python3-support.patch
Normal file
|
@ -0,0 +1,114 @@
|
|||
upstream: yes
|
||||
|
||||
From b0079d2a0c3ce0cb4698a162498b108244726912 Mon Sep 17 00:00:00 2001
|
||||
From: Xiangyue Cai <caixiangyue007@gmail.com>
|
||||
Date: Mon, 8 Jun 2020 15:09:06 +0800
|
||||
Subject: [PATCH] configure with python3 (#53)
|
||||
|
||||
* configure with python3
|
||||
|
||||
* remove future
|
||||
---
|
||||
configure.ac | 2 +-
|
||||
pysearpc/client.py | 1 -
|
||||
pysearpc/named_pipe.py | 3 ---
|
||||
pysearpc/pygencode.py | 3 ---
|
||||
pysearpc/server.py | 2 --
|
||||
pysearpc/test_pysearpc.py | 1 -
|
||||
pysearpc/transport.py | 2 --
|
||||
pysearpc/utils.py | 1 -
|
||||
8 files changed, 1 insertion(+), 14 deletions(-)
|
||||
|
||||
diff --git configure.ac configure.ac
|
||||
index 53d7438..9c2159a 100644
|
||||
--- configure.ac
|
||||
+++ configure.ac
|
||||
@@ -98,7 +98,7 @@ PKG_CHECK_MODULES(JANSSON, [jansson >= $JANSSON_REQUIRED])
|
||||
AC_SUBST(JANSSON_CFLAGS)
|
||||
AC_SUBST(JANSSON_LIBS)
|
||||
|
||||
-AM_PATH_PYTHON([2.4])
|
||||
+AM_PATH_PYTHON([3.5])
|
||||
if test "$bwin32" = true; then
|
||||
if test x$PYTHON_DIR != x; then
|
||||
# set pyexecdir to somewhere like /c/Python26/Lib/site-packages
|
||||
diff --git pysearpc/client.py pysearpc/client.py
|
||||
index 20e5535..3650cb1 100644
|
||||
--- pysearpc/client.py
|
||||
+++ pysearpc/client.py
|
||||
@@ -1,4 +1,3 @@
|
||||
-from builtins import object
|
||||
import json
|
||||
from .common import SearpcError
|
||||
|
||||
diff --git pysearpc/named_pipe.py pysearpc/named_pipe.py
|
||||
index a0ca619..73df576 100644
|
||||
--- pysearpc/named_pipe.py
|
||||
+++ pysearpc/named_pipe.py
|
||||
@@ -2,9 +2,6 @@
|
||||
RPC client/server implementation based on named pipe transport.
|
||||
"""
|
||||
|
||||
-from future import standard_library
|
||||
-standard_library.install_aliases()
|
||||
-from builtins import object
|
||||
import json
|
||||
import logging
|
||||
import os
|
||||
diff --git pysearpc/pygencode.py pysearpc/pygencode.py
|
||||
index 62a635b..8c718ce 100644
|
||||
--- pysearpc/pygencode.py
|
||||
+++ pysearpc/pygencode.py
|
||||
@@ -1,8 +1,5 @@
|
||||
#!/usr/bin/python
|
||||
|
||||
-
|
||||
-from __future__ import print_function
|
||||
-from builtins import str
|
||||
import string
|
||||
import sys
|
||||
|
||||
diff --git pysearpc/server.py pysearpc/server.py
|
||||
index a7ec7be..94d9bac 100644
|
||||
--- pysearpc/server.py
|
||||
+++ pysearpc/server.py
|
||||
@@ -1,5 +1,3 @@
|
||||
-from builtins import str
|
||||
-from builtins import object
|
||||
import json
|
||||
|
||||
from .common import SearpcError
|
||||
diff --git pysearpc/test_pysearpc.py pysearpc/test_pysearpc.py
|
||||
index a9c6f8b..64a455d 100755
|
||||
--- pysearpc/test_pysearpc.py
|
||||
+++ pysearpc/test_pysearpc.py
|
||||
@@ -1,7 +1,6 @@
|
||||
#!/usr/bin/env python
|
||||
#coding: UTF-8
|
||||
|
||||
-from builtins import object
|
||||
import json
|
||||
import logging
|
||||
import os
|
||||
diff --git pysearpc/transport.py pysearpc/transport.py
|
||||
index 3c6e821..3deb42c 100644
|
||||
--- pysearpc/transport.py
|
||||
+++ pysearpc/transport.py
|
||||
@@ -1,5 +1,3 @@
|
||||
-
|
||||
-from builtins import object
|
||||
class SearpcTransport(object):
|
||||
"""
|
||||
A transport is repsonsible to send the serialized request to the
|
||||
diff --git pysearpc/utils.py pysearpc/utils.py
|
||||
index 2aeda93..451ad4e 100644
|
||||
--- pysearpc/utils.py
|
||||
+++ pysearpc/utils.py
|
||||
@@ -1,4 +1,3 @@
|
||||
-from builtins import bytes
|
||||
import os
|
||||
import socket
|
||||
|
||||
--
|
||||
2.30.0
|
||||
|
|
@ -2,9 +2,8 @@
|
|||
# WARNING: upstream sometimes retag source. Wait for official announcement
|
||||
pkgname=libsearpc
|
||||
version=3.2.0
|
||||
revision=3
|
||||
revision=4
|
||||
build_style=gnu-configure
|
||||
pycompile_module="pysearpc"
|
||||
configure_args="PYTHON=python3 --disable-static --disable-compile-demo"
|
||||
hostmakedepends="automake libtool pkg-config python3 glib-devel"
|
||||
makedepends="libglib-devel jansson-devel"
|
||||
|
@ -48,7 +47,6 @@ libsearpc-codegen_package() {
|
|||
|
||||
libsearpc-python3_package() {
|
||||
short_desc+=" - Python3 bindings"
|
||||
pycompile_module="pysearpc"
|
||||
depends="python3"
|
||||
pkg_install() {
|
||||
vmove usr/lib/python3*
|
||||
|
|
Loading…
Reference in a new issue