-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
python-pyliblo: rebuild against cython
**Summary** - Rebuild against cython
- Loading branch information
1 parent
debb197
commit b88b80a
Showing
4 changed files
with
64 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
diff -urN pyliblo-0.10.0-orig/src/liblo.pxd pyliblo-0.10.0/src/liblo.pxd | ||
--- pyliblo-0.10.0-orig/src/liblo.pxd 2015-03-14 23:32:24.000000000 -0300 | ||
+++ pyliblo-0.10.0/src/liblo.pxd 2023-08-02 04:17:47.601508337 -0400 | ||
@@ -53,20 +53,20 @@ | ||
int lo_send_bundle_from(lo_address targ, lo_server serv, lo_bundle b) | ||
|
||
# server | ||
- lo_server lo_server_new_with_proto(char *port, int proto, lo_err_handler err_h) | ||
+ lo_server lo_server_new_with_proto(char *port, int proto, void(*err_h)(int num, const_char *msg, const_char *where) except * nogil) | ||
void lo_server_free(lo_server s) | ||
char *lo_server_get_url(lo_server s) | ||
int lo_server_get_port(lo_server s) | ||
int lo_server_get_protocol(lo_server s) | ||
- lo_method lo_server_add_method(lo_server s, char *path, char *typespec, lo_method_handler h, void *user_data) | ||
+ lo_method lo_server_add_method(lo_server s, char *path, char *typespec, int(*h)(const_char *path, const_char *types, lo_arg **argv, int argc, lo_message msg, void *user_data) except?-1 nogil, void *user_data) | ||
void lo_server_del_method(lo_server s, char *path, char *typespec) | ||
- int lo_server_add_bundle_handlers(lo_server s, lo_bundle_start_handler sh, lo_bundle_end_handler eh, void *user_data) | ||
+ int lo_server_add_bundle_handlers(lo_server s, int(*sh)(lo_timetag time, void *user_data) except?-1 nogil , int(*eh)(void *user_data) except?-1 nogil, void *user_data) | ||
int lo_server_recv(lo_server s) nogil | ||
int lo_server_recv_noblock(lo_server s, int timeout) nogil | ||
int lo_server_get_socket_fd(lo_server s) | ||
|
||
# server thread | ||
- lo_server_thread lo_server_thread_new_with_proto(char *port, int proto, lo_err_handler err_h) | ||
+ lo_server_thread lo_server_thread_new_with_proto(char *port, int proto, void(*err_h)(int num, const_char *msg, const_char *where) except * nogil) | ||
void lo_server_thread_free(lo_server_thread st) | ||
lo_server lo_server_thread_get_server(lo_server_thread st) | ||
void lo_server_thread_start(lo_server_thread st) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
<PISI> | ||
<Source> | ||
<Name>python-pyliblo</Name> | ||
<Homepage>https://pypi.org/project/pyliblo/</Homepage> | ||
<Packager> | ||
<Name>Joey Riches</Name> | ||
<Email>[email protected]</Email> | ||
<Name>Jakob Gezelius</Name> | ||
<Email>[email protected]</Email> | ||
</Packager> | ||
<License>LGPL-2.1-or-later</License> | ||
<PartOf>programming.python</PartOf> | ||
|
@@ -32,12 +33,12 @@ | |
</Files> | ||
</Package> | ||
<History> | ||
<Update release="7"> | ||
<Date>2024-02-14</Date> | ||
<Update release="8"> | ||
<Date>2024-06-05</Date> | ||
<Version>0.10.0</Version> | ||
<Comment>Packaging update</Comment> | ||
<Name>Joey Riches</Name> | ||
<Email>[email protected]</Email> | ||
<Name>Jakob Gezelius</Name> | ||
<Email>[email protected]</Email> | ||
</Update> | ||
</History> | ||
</PISI> |