Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package python3 libdecsync
@ 2022-09-13 16:44 08A
  2022-09-13 16:45 ` classabbyamp
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: 08A @ 2022-09-13 16:44 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1326 bytes --]

There is a new pull request by 08A against master on the void-packages repository

https://github.com/08A/void-packages new-package-python3-libdecsync
https://github.com/void-linux/void-packages/pull/39259

New package python3 libdecsync
<!-- Uncomment relevant sections and delete options which are not applicable -->

# IMPORTANT

https://github.com/void-linux/void-packages/pull/39258 should be merged first. 

#### Testing the changes
- I tested the changes in this PR: **briefly** (`./xbps-src -Q pkg python3-libdecsync`)

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)

#### Notes

* The patch forces the python library to use the installed `.so*`.


A patch file from https://github.com/void-linux/void-packages/pull/39259.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-new-package-python3-libdecsync-39259.patch --]
[-- Type: text/x-diff, Size: 6225 bytes --]

From 3d08646fafba86a1c82528f40b576e29f7fe957e Mon Sep 17 00:00:00 2001
From: Alexis Ehret <git@08a.re>
Date: Tue, 13 Sep 2022 13:33:29 +0200
Subject: [PATCH 1/2] New package: libdecsync-2.2.1

---
 common/shlibs               |  1 +
 srcpkgs/libdecsync-devel    |  1 +
 srcpkgs/libdecsync/template | 33 +++++++++++++++++++++++++++++++++
 3 files changed, 35 insertions(+)
 create mode 120000 srcpkgs/libdecsync-devel
 create mode 100644 srcpkgs/libdecsync/template

diff --git a/common/shlibs b/common/shlibs
index ae39d4551d59..9791506fa73e 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -4161,3 +4161,4 @@ libsyncthingconnector.so.1.2.3 syncthingtray-1.2.3_1
 libglibutil.so.1 libglibutil-1.0.64_1
 libgbinder.so.1 libgbinder-1.1.20_1
 libsunpinyin.so.3 libsunpinyin-3.0.0rc2_1
+libdecsync.so.0 libdecsync-2.2.1_1
diff --git a/srcpkgs/libdecsync-devel b/srcpkgs/libdecsync-devel
new file mode 120000
index 000000000000..e72513c6dcf1
--- /dev/null
+++ b/srcpkgs/libdecsync-devel
@@ -0,0 +1 @@
+libdecsync
\ No newline at end of file
diff --git a/srcpkgs/libdecsync/template b/srcpkgs/libdecsync/template
new file mode 100644
index 000000000000..928ed07b8b57
--- /dev/null
+++ b/srcpkgs/libdecsync/template
@@ -0,0 +1,33 @@
+# Template file for 'libdecsync'
+pkgname=libdecsync
+version=2.2.1
+revision=1
+archs="x86_64"
+build_style=gnu-makefile
+hostmakedepends="gradle openjdk8 patchelf pkg-config tar"
+makedepends="ncurses-devel"
+short_desc="Multiplatform library for synchronizing using DecSync"
+maintainer="08a <dev@08a.re>"
+license="LGPL-2.0-or-later"
+homepage="https://github.com/39aldo39/libdecsync"
+distfiles="${homepage}/archive/refs/tags/v${version}.tar.gz"
+checksum=3e08b35efed3bafb079aa52a8dcd51217f6602cde64accba1a10cf5c25029d45
+disable_parallel_build=yes
+
+export JAVA_HOME=/usr/lib/jvm/java-1.8-openjdk
+
+pre_install() {
+	patchelf --set-soname libdecsync.so.0 build/bin/linuxX64/releaseShared/libdecsync.so
+}
+
+post_install() {
+	ln -rsf "${DESTDIR}/usr/lib/libdecsync.so" "${DESTDIR}/usr/lib/libdecsync.so.0"
+}
+
+libdecsync-devel_package() {
+	short_desc+=" - development files"
+		pkg_install() {
+			vmove usr/include
+			vmove usr/share/pkgconfig
+		}
+}

From 41d4c2496742f181b3cd270d0b7366c8071dba17 Mon Sep 17 00:00:00 2001
From: Alexis Ehret <git@08a.re>
Date: Tue, 13 Sep 2022 18:18:15 +0200
Subject: [PATCH 2/2] New package: python3-libdecsync-2.2.1

---
 .../0001-hardcode-libpath-for-voidlinux.patch | 64 +++++++++++++++++++
 srcpkgs/python3-libdecsync/template           | 15 +++++
 2 files changed, 79 insertions(+)
 create mode 100644 srcpkgs/python3-libdecsync/patches/0001-hardcode-libpath-for-voidlinux.patch
 create mode 100644 srcpkgs/python3-libdecsync/template

diff --git a/srcpkgs/python3-libdecsync/patches/0001-hardcode-libpath-for-voidlinux.patch b/srcpkgs/python3-libdecsync/patches/0001-hardcode-libpath-for-voidlinux.patch
new file mode 100644
index 000000000000..f55a0a11bf07
--- /dev/null
+++ b/srcpkgs/python3-libdecsync/patches/0001-hardcode-libpath-for-voidlinux.patch
@@ -0,0 +1,64 @@
+From 5a2024669f4cc03e79c2a5ae856edd635bd87b9e Mon Sep 17 00:00:00 2001
+From: Alexis Ehret <git@08a.re>
+Date: Tue, 13 Sep 2022 18:04:32 +0200
+Subject: [PATCH 1/1] hardcode libpath for voidlinux
+
+Signed-off-by: Alexis Ehret <git@08a.re>
+---
+ libdecsync/__init__.py | 27 +--------------------------
+ setup.py               |  1 -
+ 2 files changed, 1 insertion(+), 27 deletions(-)
+
+diff --git a/libdecsync/__init__.py b/libdecsync/__init__.py
+index fa2d14d..484c6dc 100644
+--- a/libdecsync/__init__.py
++++ b/libdecsync/__init__.py
+@@ -29,32 +29,7 @@ import sys
+ class DecsyncException(Exception):
+     pass
+ 
+-os_name = platform.system()
+-machine_type = platform.machine()
+-platform_bits = platform.architecture()[0]
+-if os_name == "Linux":
+-    if machine_type == "x86_64":
+-        libpath = resource_filename(__name__, "libs/libdecsync_amd64.so")
+-    elif machine_type.startswith("arm") or machine_type.startswith("aarch"):
+-        if platform_bits == "64bit":
+-            libpath = resource_filename(__name__, "libs/libdecsync_arm64.so")
+-        else:
+-            libpath = resource_filename(__name__, "libs/libdecsync_arm32.so")
+-    else:
+-        raise Exception("libdecsync: Machine type '" + machine_type + "' not supported")
+-elif os_name == "Windows":
+-    if platform_bits == "64bit":
+-        libpath = resource_filename(__name__, "libs/decsync_x64.dll")
+-    else:
+-        libpath = resource_filename(__name__, "libs/decsync_x86.dll")
+-elif os_name == "Darwin":
+-    if machine_type == "x86_64":
+-        libpath = resource_filename(__name__, "libs/libdecsync_amd64.dylib")
+-    else:
+-        libpath = resource_filename(__name__, "libs/libdecsync_arm64.dylib")
+-else:
+-    raise Exception("libdecsync: Operating system '" + os_name + "' not supported")
+-
++libpath = "/usr/lib/libdecsync.so.0"
+ _libdecsync = CDLL(libpath)
+ 
+ def _errcheckDecsync(result, func, args):
+diff --git a/setup.py b/setup.py
+index a79755a..6853f70 100644
+--- a/setup.py
++++ b/setup.py
+@@ -14,7 +14,6 @@ setup(
+     keywords=["decsync"],
+     license="LGPLv2+",
+     packages=["libdecsync"],
+-    package_data={"libdecsync":["libs/*"]},
+     classifiers=[
+         "Programming Language :: Python :: 3",
+         "Operating System :: POSIX :: Linux",
+-- 
+2.37.3
+
diff --git a/srcpkgs/python3-libdecsync/template b/srcpkgs/python3-libdecsync/template
new file mode 100644
index 000000000000..d3ce51029249
--- /dev/null
+++ b/srcpkgs/python3-libdecsync/template
@@ -0,0 +1,15 @@
+# Template file for 'python3-libdecsync'
+pkgname=python3-libdecsync
+version=2.2.1
+revision=1
+wrksrc="libdecsync-bindings-python3-${version}"
+archs="x86_64"
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="python3 libdecsync-${version}_${revision}"
+short_desc="Python3 wrapper around libdecsync for synchronizing using DecSync."
+maintainer="Alexis Ehret <dev@08a.re>"
+license="LGPL-2.0-or-later"
+homepage="https://github.com/39aldo39/libdecsync-bindings-python3"
+distfiles="${homepage}/archive/refs/tags/v${version}.tar.gz"
+checksum=68e0452c128306981dc8e7aa58248cc57855a2de241326b37fbeb5469446d10e

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: New package python3 libdecsync
  2022-09-13 16:44 [PR PATCH] New package python3 libdecsync 08A
@ 2022-09-13 16:45 ` classabbyamp
  2022-09-13 17:15 ` [PR PATCH] [Updated] " 08A
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: classabbyamp @ 2022-09-13 16:45 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 226 bytes --]

New comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/39259#issuecomment-1245675658

Comment:
> IMPORTANT: #39258 should be merged first.

they should go in the same pr then

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PR PATCH] [Updated] New package python3 libdecsync
  2022-09-13 16:44 [PR PATCH] New package python3 libdecsync 08A
  2022-09-13 16:45 ` classabbyamp
@ 2022-09-13 17:15 ` 08A
  2022-09-13 17:17 ` 08A
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: 08A @ 2022-09-13 17:15 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1333 bytes --]

There is an updated pull request by 08A against master on the void-packages repository

https://github.com/08A/void-packages new-package-python3-libdecsync
https://github.com/void-linux/void-packages/pull/39259

New package python3 libdecsync
<!-- Uncomment relevant sections and delete options which are not applicable -->

# IMPORTANT: https://github.com/void-linux/void-packages/pull/39258 should be merged first. 



#### Testing the changes
- I tested the changes in this PR: **briefly** (`./xbps-src -Q pkg python3-libdecsync`)

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)

#### Notes

* The patch forces the python library to use the installed `.so*`.


A patch file from https://github.com/void-linux/void-packages/pull/39259.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-new-package-python3-libdecsync-39259.patch --]
[-- Type: text/x-diff, Size: 6251 bytes --]

From 3d08646fafba86a1c82528f40b576e29f7fe957e Mon Sep 17 00:00:00 2001
From: Alexis Ehret <git@08a.re>
Date: Tue, 13 Sep 2022 13:33:29 +0200
Subject: [PATCH 1/2] New package: libdecsync-2.2.1

---
 common/shlibs               |  1 +
 srcpkgs/libdecsync-devel    |  1 +
 srcpkgs/libdecsync/template | 33 +++++++++++++++++++++++++++++++++
 3 files changed, 35 insertions(+)
 create mode 120000 srcpkgs/libdecsync-devel
 create mode 100644 srcpkgs/libdecsync/template

diff --git a/common/shlibs b/common/shlibs
index ae39d4551d59..9791506fa73e 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -4161,3 +4161,4 @@ libsyncthingconnector.so.1.2.3 syncthingtray-1.2.3_1
 libglibutil.so.1 libglibutil-1.0.64_1
 libgbinder.so.1 libgbinder-1.1.20_1
 libsunpinyin.so.3 libsunpinyin-3.0.0rc2_1
+libdecsync.so.0 libdecsync-2.2.1_1
diff --git a/srcpkgs/libdecsync-devel b/srcpkgs/libdecsync-devel
new file mode 120000
index 000000000000..e72513c6dcf1
--- /dev/null
+++ b/srcpkgs/libdecsync-devel
@@ -0,0 +1 @@
+libdecsync
\ No newline at end of file
diff --git a/srcpkgs/libdecsync/template b/srcpkgs/libdecsync/template
new file mode 100644
index 000000000000..928ed07b8b57
--- /dev/null
+++ b/srcpkgs/libdecsync/template
@@ -0,0 +1,33 @@
+# Template file for 'libdecsync'
+pkgname=libdecsync
+version=2.2.1
+revision=1
+archs="x86_64"
+build_style=gnu-makefile
+hostmakedepends="gradle openjdk8 patchelf pkg-config tar"
+makedepends="ncurses-devel"
+short_desc="Multiplatform library for synchronizing using DecSync"
+maintainer="08a <dev@08a.re>"
+license="LGPL-2.0-or-later"
+homepage="https://github.com/39aldo39/libdecsync"
+distfiles="${homepage}/archive/refs/tags/v${version}.tar.gz"
+checksum=3e08b35efed3bafb079aa52a8dcd51217f6602cde64accba1a10cf5c25029d45
+disable_parallel_build=yes
+
+export JAVA_HOME=/usr/lib/jvm/java-1.8-openjdk
+
+pre_install() {
+	patchelf --set-soname libdecsync.so.0 build/bin/linuxX64/releaseShared/libdecsync.so
+}
+
+post_install() {
+	ln -rsf "${DESTDIR}/usr/lib/libdecsync.so" "${DESTDIR}/usr/lib/libdecsync.so.0"
+}
+
+libdecsync-devel_package() {
+	short_desc+=" - development files"
+		pkg_install() {
+			vmove usr/include
+			vmove usr/share/pkgconfig
+		}
+}

From 451ae1a15ba44aa45d8d114732f470318ec67c29 Mon Sep 17 00:00:00 2001
From: Alexis Ehret <git@08a.re>
Date: Tue, 13 Sep 2022 18:18:15 +0200
Subject: [PATCH 2/2] New package: python3-libdecsync-2.2.1

---
 .../0001-hardcode-libpath-for-voidlinux.patch | 64 +++++++++++++++++++
 srcpkgs/python3-libdecsync/template           | 16 +++++
 2 files changed, 80 insertions(+)
 create mode 100644 srcpkgs/python3-libdecsync/patches/0001-hardcode-libpath-for-voidlinux.patch
 create mode 100644 srcpkgs/python3-libdecsync/template

diff --git a/srcpkgs/python3-libdecsync/patches/0001-hardcode-libpath-for-voidlinux.patch b/srcpkgs/python3-libdecsync/patches/0001-hardcode-libpath-for-voidlinux.patch
new file mode 100644
index 000000000000..f55a0a11bf07
--- /dev/null
+++ b/srcpkgs/python3-libdecsync/patches/0001-hardcode-libpath-for-voidlinux.patch
@@ -0,0 +1,64 @@
+From 5a2024669f4cc03e79c2a5ae856edd635bd87b9e Mon Sep 17 00:00:00 2001
+From: Alexis Ehret <git@08a.re>
+Date: Tue, 13 Sep 2022 18:04:32 +0200
+Subject: [PATCH 1/1] hardcode libpath for voidlinux
+
+Signed-off-by: Alexis Ehret <git@08a.re>
+---
+ libdecsync/__init__.py | 27 +--------------------------
+ setup.py               |  1 -
+ 2 files changed, 1 insertion(+), 27 deletions(-)
+
+diff --git a/libdecsync/__init__.py b/libdecsync/__init__.py
+index fa2d14d..484c6dc 100644
+--- a/libdecsync/__init__.py
++++ b/libdecsync/__init__.py
+@@ -29,32 +29,7 @@ import sys
+ class DecsyncException(Exception):
+     pass
+ 
+-os_name = platform.system()
+-machine_type = platform.machine()
+-platform_bits = platform.architecture()[0]
+-if os_name == "Linux":
+-    if machine_type == "x86_64":
+-        libpath = resource_filename(__name__, "libs/libdecsync_amd64.so")
+-    elif machine_type.startswith("arm") or machine_type.startswith("aarch"):
+-        if platform_bits == "64bit":
+-            libpath = resource_filename(__name__, "libs/libdecsync_arm64.so")
+-        else:
+-            libpath = resource_filename(__name__, "libs/libdecsync_arm32.so")
+-    else:
+-        raise Exception("libdecsync: Machine type '" + machine_type + "' not supported")
+-elif os_name == "Windows":
+-    if platform_bits == "64bit":
+-        libpath = resource_filename(__name__, "libs/decsync_x64.dll")
+-    else:
+-        libpath = resource_filename(__name__, "libs/decsync_x86.dll")
+-elif os_name == "Darwin":
+-    if machine_type == "x86_64":
+-        libpath = resource_filename(__name__, "libs/libdecsync_amd64.dylib")
+-    else:
+-        libpath = resource_filename(__name__, "libs/libdecsync_arm64.dylib")
+-else:
+-    raise Exception("libdecsync: Operating system '" + os_name + "' not supported")
+-
++libpath = "/usr/lib/libdecsync.so.0"
+ _libdecsync = CDLL(libpath)
+ 
+ def _errcheckDecsync(result, func, args):
+diff --git a/setup.py b/setup.py
+index a79755a..6853f70 100644
+--- a/setup.py
++++ b/setup.py
+@@ -14,7 +14,6 @@ setup(
+     keywords=["decsync"],
+     license="LGPLv2+",
+     packages=["libdecsync"],
+-    package_data={"libdecsync":["libs/*"]},
+     classifiers=[
+         "Programming Language :: Python :: 3",
+         "Operating System :: POSIX :: Linux",
+-- 
+2.37.3
+
diff --git a/srcpkgs/python3-libdecsync/template b/srcpkgs/python3-libdecsync/template
new file mode 100644
index 000000000000..897ac14bbb9e
--- /dev/null
+++ b/srcpkgs/python3-libdecsync/template
@@ -0,0 +1,16 @@
+# Template file for 'python3-libdecsync'
+pkgname=python3-libdecsync
+version=2.2.1
+revision=1
+archs="x86_64"
+wrksrc="libdecsync-bindings-python3-${version}"
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="python3 libdecsync-${version}_${revision}"
+checkdepends="${depends}"
+short_desc="Python3 wrapper around libdecsync for synchronizing using DecSync"
+maintainer="Alexis Ehret <dev@08a.re>"
+license="LGPL-2.0-or-later"
+homepage="https://github.com/39aldo39/libdecsync-bindings-python3"
+distfiles="${homepage}/archive/refs/tags/v${version}.tar.gz"
+checksum=68e0452c128306981dc8e7aa58248cc57855a2de241326b37fbeb5469446d10e

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: New package python3 libdecsync
  2022-09-13 16:44 [PR PATCH] New package python3 libdecsync 08A
  2022-09-13 16:45 ` classabbyamp
  2022-09-13 17:15 ` [PR PATCH] [Updated] " 08A
@ 2022-09-13 17:17 ` 08A
  2022-09-13 17:18 ` 08A
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: 08A @ 2022-09-13 17:17 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 388 bytes --]

New comment by 08A on void-packages repository

https://github.com/void-linux/void-packages/pull/39259#issuecomment-1245710998

Comment:
> > IMPORTANT: #39258 should be merged first.
> 
> they should go in the same pr then

Is it a problem to have one PR that three packages (and how to name the PR)? I want to add libdecsync -> python3-libdecsync -> python-radicale_storage_decsync.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: New package python3 libdecsync
  2022-09-13 16:44 [PR PATCH] New package python3 libdecsync 08A
                   ` (2 preceding siblings ...)
  2022-09-13 17:17 ` 08A
@ 2022-09-13 17:18 ` 08A
  2022-09-13 17:19 ` classabbyamp
  2022-09-13 17:22 ` [PR PATCH] [Closed]: New package: python3-libdecsync 08A
  5 siblings, 0 replies; 7+ messages in thread
From: 08A @ 2022-09-13 17:18 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 388 bytes --]

New comment by 08A on void-packages repository

https://github.com/void-linux/void-packages/pull/39259#issuecomment-1245710998

Comment:
> > IMPORTANT: #39258 should be merged first.
> 
> they should go in the same pr then

Is it a problem to have one PR with three packages (and how to name the PR)? I want to add libdecsync -> python3-libdecsync -> python-radicale_storage_decsync.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: New package python3 libdecsync
  2022-09-13 16:44 [PR PATCH] New package python3 libdecsync 08A
                   ` (3 preceding siblings ...)
  2022-09-13 17:18 ` 08A
@ 2022-09-13 17:19 ` classabbyamp
  2022-09-13 17:22 ` [PR PATCH] [Closed]: New package: python3-libdecsync 08A
  5 siblings, 0 replies; 7+ messages in thread
From: classabbyamp @ 2022-09-13 17:19 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 261 bytes --]

New comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/39259#issuecomment-1245712334

Comment:
no it's fine, just one commit per package. name it in a way that summarizes the changes, it's not super important 

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PR PATCH] [Closed]: New package: python3-libdecsync
  2022-09-13 16:44 [PR PATCH] New package python3 libdecsync 08A
                   ` (4 preceding siblings ...)
  2022-09-13 17:19 ` classabbyamp
@ 2022-09-13 17:22 ` 08A
  5 siblings, 0 replies; 7+ messages in thread
From: 08A @ 2022-09-13 17:22 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1163 bytes --]

There's a closed pull request on the void-packages repository

New package: python3-libdecsync
https://github.com/void-linux/void-packages/pull/39259

Description:
<!-- Uncomment relevant sections and delete options which are not applicable -->

# IMPORTANT: https://github.com/void-linux/void-packages/pull/39258 should be merged first. 



#### Testing the changes
- I tested the changes in this PR: **briefly** (`./xbps-src -Q pkg python3-libdecsync`)

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)

#### Notes

* The patch forces the python library to use the installed `.so*`.


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2022-09-13 17:22 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-13 16:44 [PR PATCH] New package python3 libdecsync 08A
2022-09-13 16:45 ` classabbyamp
2022-09-13 17:15 ` [PR PATCH] [Updated] " 08A
2022-09-13 17:17 ` 08A
2022-09-13 17:18 ` 08A
2022-09-13 17:19 ` classabbyamp
2022-09-13 17:22 ` [PR PATCH] [Closed]: New package: python3-libdecsync 08A

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).