commit 2ab5080de0bc3606a98e93f4a4e4fc88302dad1ca8d36f302f04e768dda3f665 Author: Todd R Date: Thu May 24 20:56:40 2018 +0000 Accepting request 612013 from devel:languages:python:misc Mach-O header analysis and editing OBS-URL: https://build.opensuse.org/request/show/612013 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-macholib?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/macholib-1.9.tar.gz b/macholib-1.9.tar.gz new file mode 100644 index 0000000..b700a88 --- /dev/null +++ b/macholib-1.9.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9aeec52d7da59912b15445d08b08d95cee48414f01dd035be06f04a825973c08 +size 578425 diff --git a/python-macholib.changes b/python-macholib.changes new file mode 100644 index 0000000..e162d89 --- /dev/null +++ b/python-macholib.changes @@ -0,0 +1,22 @@ +------------------------------------------------------------------- +Thu May 24 17:35:17 UTC 2018 - toddrme2178@gmail.com + +- Update to 1.9 + + Features: + * Add definition for ``macholib.mach_o.reloc_type_generic``, which + was used in code but never defined. + * #22: Add LICENSE file + * #23: Added "--help" option for "python -m macholib" + * Added function ``macholib.MachO.lc_str_value`` which should + help in decoding value of ``macholib.mach_o.lc_str``. Those + values are offsets in the data of a load command, the function + will return the actually value as a byte string. + + Bug fixes: + * Pull request #15: Fix typo in thread_command class +- Spec file cleanups +- Fix rpmlint issues + +------------------------------------------------------------------- +Thu Oct 19 00:50:50 UTC 2017 - toddrme2178@gmail.com + +- Initial version diff --git a/python-macholib.spec b/python-macholib.spec new file mode 100644 index 0000000..6fc86f6 --- /dev/null +++ b/python-macholib.spec @@ -0,0 +1,76 @@ +# +# spec file for package python-macholib +# +# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via http://bugs.opensuse.org/ + + +%{?!python_module:%define python_module() python-%{**} python3-%{**}} +Name: python-macholib +Version: 1.9 +Release: 0 +License: MIT +Summary: Mach-O header analysis and editing +Url: http://bitbucket.org/ronaldoussoren/macholib +Group: Development/Languages/Python +Source: https://files.pythonhosted.org/packages/source/m/macholib/macholib-%{version}.tar.gz +BuildRequires: %{python_module devel} +BuildRequires: %{python_module setuptools} +BuildRequires: fdupes +BuildRequires: python-rpm-macros +# SECTION test requirements +BuildRequires: %{python_module altgraph >= 0.13} +# /SECTION +Requires: python-altgraph >= 0.13 +BuildArch: noarch + +%python_subpackages + +%description +macholib can be used to analyze and edit Mach-O headers, the executable +format used by Mac OS X. + +It's typically used as a dependency analysis tool, and also to rewrite dylib +references in Mach-O headers to be @executable_path relative. + +Though this tool targets a platform specific file format, it is pure python +code that is platform and endian independent. + +%prep +%setup -q -n macholib-%{version} +sed -i -e '/^#!\//, 1d' macholib/macho_dump.py +sed -i -e '/^#!\//, 1d' macholib/macho_find.py +sed -i -e '/^#!\//, 1d' macholib/macho_standalone.py + +%build +%python_build + +%install +%python_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} + +%if %{with test} +%check +%python_exec setup.py test +%endif + +%files %{python_files} +%defattr(-,root,root,-) +%doc README.txt +%license doc/license.rst +%python3_only %{_bindir}/macho_find +%python3_only %{_bindir}/macho_standalone +%python3_only %{_bindir}/macho_dump +%{python_sitelib}/* + +%changelog