* [Buildroot] [PATCH 1/1] package/python-augeas: bump to version 1.2.0
@ 2024-09-14 21:40 James Hilliard
2024-09-14 21:53 ` Thomas Petazzoni via buildroot
0 siblings, 1 reply; 2+ messages in thread
From: James Hilliard @ 2024-09-14 21:40 UTC (permalink / raw)
To: buildroot; +Cc: James Hilliard, Asaf Kahlon, Thomas Petazzoni
Drop patch which is now upstream.
Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
---
...-Use-CFFI-in-out-of-line-API-mode-49.patch | 101 ------------------
package/python-augeas/python-augeas.hash | 2 +-
package/python-augeas/python-augeas.mk | 2 +-
3 files changed, 2 insertions(+), 103 deletions(-)
delete mode 100644 package/python-augeas/0001-Use-CFFI-in-out-of-line-API-mode-49.patch
diff --git a/package/python-augeas/0001-Use-CFFI-in-out-of-line-API-mode-49.patch b/package/python-augeas/0001-Use-CFFI-in-out-of-line-API-mode-49.patch
deleted file mode 100644
index da9093d723..0000000000
--- a/package/python-augeas/0001-Use-CFFI-in-out-of-line-API-mode-49.patch
+++ /dev/null
@@ -1,101 +0,0 @@
-From 9de73fefbe83c74840a93c039258845c49271b9b Mon Sep 17 00:00:00 2001
-From: Jeffery To <jeffery.to@gmail.com>
-Date: Sun, 8 Nov 2020 21:51:09 +0800
-Subject: [PATCH] Use CFFI in out-of-line API mode (#49)
-
-Currently, ffi.py is called during setup to generate augeas.py; this
-file would normally be used for out-of-line ABI mode. ffi.py is also
-imported at run-time, instead of the generated augeas.py, and used in
-in-line ABI mode.
-
-This changes usage of CFFI to out-of-line API mode (CFFI's "main mode of
-usage"): ffi.py is called during setup to generate _augeas.abi3.so (a C
-extension module); this generated module is imported at run-time.
-
-With this change, the headers/development files for augeas (i.e.
-libaugeas-dev on Debian, augeas-devel on Fedora, etc.) and the C
-compiler are required for build/setup. (These were not necessary
-previously.)
-
-Closes https://github.com/hercules-team/python-augeas/issues/48.
-
-Upstream: commit 712c2028568df7760bc98d95577e35709078bfea
-Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
----
- augeas/__init__.py | 2 +-
- augeas/ffi.py | 27 ++++++++++++++++++++++-----
- setup.py | 1 +
- 3 files changed, 24 insertions(+), 6 deletions(-)
-
-diff --git a/augeas/__init__.py b/augeas/__init__.py
-index 9bd97bf..1c0f580 100644
---- a/augeas/__init__.py
-+++ b/augeas/__init__.py
-@@ -32,7 +32,7 @@ format and the transformation into a tree.
-
- from sys import version_info as _pyver
-
--from augeas.ffi import ffi, lib
-+from _augeas import ffi, lib
-
- __author__ = "Nathaniel McCallum <nathaniel@natemccallum.com>"
- __credits__ = """Jeff Schroeder <jeffschroeder@computer.org>
-diff --git a/augeas/ffi.py b/augeas/ffi.py
-index a24daf5..1931764 100644
---- a/augeas/ffi.py
-+++ b/augeas/ffi.py
-@@ -1,9 +1,28 @@
-+import os
-+import subprocess
-+
- from cffi import FFI
-
-+def get_include_dirs():
-+ XML2_CONFIG = os.environ.get('XML2_CONFIG', 'xml2-config')
-+ PKG_CONFIG = os.environ.get('PKG_CONFIG', 'pkg-config')
-+ try:
-+ stdout = subprocess.check_output([XML2_CONFIG, '--cflags'])
-+ except (OSError, subprocess.CalledProcessError):
-+ try:
-+ stdout = subprocess.check_output([PKG_CONFIG, '--cflags', 'libxml-2.0'])
-+ except (OSError, subprocess.CalledProcessError):
-+ stdout = b''
-+ cflags = stdout.decode('utf-8').split()
-+ return [cflag[2:] for cflag in cflags if cflag.startswith('-I')]
-+
- ffi = FFI()
--ffi.set_source("augeas",
-- None,
-- libraries=['augeas'])
-+ffi.set_source("_augeas",
-+ """
-+ #include <augeas.h>
-+ """,
-+ libraries=['augeas'],
-+ include_dirs=get_include_dirs())
-
- ffi.cdef("""
- typedef struct augeas augeas;
-@@ -44,7 +63,5 @@ const char *aug_error_details(augeas *aug);
- void free(void *);
- """)
-
--lib = ffi.dlopen("augeas")
--
- if __name__ == "__main__":
- ffi.compile(verbose=True)
-diff --git a/setup.py b/setup.py
-index 7d55877..17f9516 100755
---- a/setup.py
-+++ b/setup.py
-@@ -22,6 +22,7 @@ setup(name=name,
- setup_requires=["cffi>=1.0.0"],
- cffi_modules=["augeas/ffi.py:ffi"],
- install_requires=["cffi>=1.0.0"],
-+ zip_safe=False,
- url="http://augeas.net/",
- classifiers=[
- "Programming Language :: Python :: 2.7",
---
-2.31.1
-
diff --git a/package/python-augeas/python-augeas.hash b/package/python-augeas/python-augeas.hash
index f4f4209875..d56eaef6a0 100644
--- a/package/python-augeas/python-augeas.hash
+++ b/package/python-augeas/python-augeas.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 1a1d2cdaf2ad4c091ed5ec7976c52d16e14ecfbf40b1bdcaced2465255fb0f87 python-augeas-1.1.0.tar.gz
+sha256 ee2c1e74cad61124097c5f540f063fa2dd3b8cd3159f1706f11167814c9bfcd5 python-augeas-1.2.0.tar.gz
sha256 dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551 COPYING
diff --git a/package/python-augeas/python-augeas.mk b/package/python-augeas/python-augeas.mk
index 7adaa84f49..6d2a08a090 100644
--- a/package/python-augeas/python-augeas.mk
+++ b/package/python-augeas/python-augeas.mk
@@ -4,7 +4,7 @@
#
################################################################################
-PYTHON_AUGEAS_VERSION = 1.1.0
+PYTHON_AUGEAS_VERSION = 1.2.0
PYTHON_AUGEAS_SITE = $(call github,hercules-team,python-augeas,v$(PYTHON_AUGEAS_VERSION))
PYTHON_AUGEAS_SETUP_TYPE = setuptools
PYTHON_AUGEAS_LICENSE = LGPL-2.1+
--
2.34.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [Buildroot] [PATCH 1/1] package/python-augeas: bump to version 1.2.0
2024-09-14 21:40 [Buildroot] [PATCH 1/1] package/python-augeas: bump to version 1.2.0 James Hilliard
@ 2024-09-14 21:53 ` Thomas Petazzoni via buildroot
0 siblings, 0 replies; 2+ messages in thread
From: Thomas Petazzoni via buildroot @ 2024-09-14 21:53 UTC (permalink / raw)
To: James Hilliard; +Cc: Asaf Kahlon, buildroot
On Sat, 14 Sep 2024 15:40:01 -0600
James Hilliard <james.hilliard1@gmail.com> wrote:
> Drop patch which is now upstream.
>
> Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
> ---
> ...-Use-CFFI-in-out-of-line-API-mode-49.patch | 101 ------------------
> package/python-augeas/python-augeas.hash | 2 +-
> package/python-augeas/python-augeas.mk | 2 +-
> 3 files changed, 2 insertions(+), 103 deletions(-)
> delete mode 100644 package/python-augeas/0001-Use-CFFI-in-out-of-line-API-mode-49.patch
Applied to master, thanks.
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-09-14 21:54 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-14 21:40 [Buildroot] [PATCH 1/1] package/python-augeas: bump to version 1.2.0 James Hilliard
2024-09-14 21:53 ` Thomas Petazzoni via buildroot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox