From d36fbe28c1f4a7006155bd4343564d99bdbeca1e Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 6 Jan 2024 11:19:56 +0100 Subject: [PATCH] package created using the webbuild interface [release 0.9.0-1mamba;Mon Dec 21 2015] --- README.md | 2 ++ python-jmespath.spec | 43 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 45 insertions(+) create mode 100644 python-jmespath.spec diff --git a/README.md b/README.md index 66b1359..a701e6d 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-jmespath +JMESPath allows you to declaratively specify how to extract elements from a JSON document. + diff --git a/python-jmespath.spec b/python-jmespath.spec new file mode 100644 index 0000000..4d6b102 --- /dev/null +++ b/python-jmespath.spec @@ -0,0 +1,43 @@ +Name: python-jmespath +Version: 0.9.0 +Release: 1mamba +Summary: JMESPath allows you to declaratively specify how to extract elements from a JSON document +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://github.com/jmespath/jmespath.py +Source: https://pypi.python.org/packages/source/j/jmespath/jmespath-%{version}.tar.gz +License: MIT +## AUTOBUILDREQ-BEGIN +BuildRequires: libpython-devel +## AUTOBUILDREQ-END +Requires: python >= %python_version +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +%{summary}. + +%prep +%setup -q -n jmespath-%{version} + +%build +CFLAGS="%{optflags}" %{__python} setup.py build + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%{__python} setup.py install \ + -O1 --skip-build \ + --root="%{buildroot}" \ + --install-headers=%{_includedir}/python \ + --install-lib=%{python_sitearch} \ + --record=%{name}.filelist + +sed -i "\,\.egg-info/,d;s,.*/man/.*,&.gz," %{name}.filelist + +%files -f %{name}.filelist +%defattr(-,root,root) + +%changelog +* Mon Dec 21 2015 Silvan Calarco 0.9.0-1mamba +- package created using the webbuild interface