diff options
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | python-mozzarilla.spec | 208 | ||||
| -rw-r--r-- | sources | 1 |
3 files changed, 210 insertions, 0 deletions
@@ -0,0 +1 @@ +/mozzarilla-1.10.0.tar.gz diff --git a/python-mozzarilla.spec b/python-mozzarilla.spec new file mode 100644 index 0000000..1749988 --- /dev/null +++ b/python-mozzarilla.spec @@ -0,0 +1,208 @@ +%global _empty_manifest_terminate_build 0 +Name: python-mozzarilla +Version: 1.10.0 +Release: 1 +Summary: A variant of Binilla for editing binary structures for games built with the Blam engine. +License: GPLv3 +URL: https://github.com/Sigmmma/mozzarilla +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/2e/05/34edd6479846795581b882935bb4c40f50294c5c78534c9f3b35819d584e/mozzarilla-1.10.0.tar.gz +BuildArch: noarch + +Requires: python3-reclaimer +Requires: python3-binilla +Requires: python3-arbytmap +Requires: python3-supyr-struct + +%description +Mozzarilla is a file editing program, and is intended to be a complete replacement for Halo Custom Edition's Guerilla, with additional tools and ease of use upgrades. This is a screenshot of it with some of its extra tools shown. + + + +Here is a current list of the most prominent features of mozz: + +* Is able to switch between creating regular tags, open sauce tags, and gametypes. + +* Is able to view/edit hidden data(edit the config to enable it) + +* Is able to load corrupt tags for debugging purposes. + +* Can export/import blocks(pieces of a tag) + +* Makes backups of tags before editing. + +* Highly customizable user interface colors, widget sizes, hotkeys, etc. + +* Contains a customizable undo/redo feature. + +* Contains a hierarchy view for easily browsing a tags directory and loading tags. + +* Allows choosing any number of tags directories and switching between them at will. + + + +Mozzarilla also contains a few special tools for aiding in modding: + + +* Broken dependency scanner: For locating broken dependencies in the specified types of tags in the specified folder. + +* Dependency viewer: For easily seeing which tags a tag refers to and opening any of them. + +* Tag zipper: For making a zip folder containing a tag and every tag it depends on. + + + +## Who do I talk to? + + + +* Devin Bobadilla (Original author of mozzarilla) MoeMakesStuff@gmail.com + + + + +%package -n python3-mozzarilla +Summary: A variant of Binilla for editing binary structures for games built with the Blam engine. +Provides: python-mozzarilla +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-mozzarilla +Mozzarilla is a file editing program, and is intended to be a complete replacement for Halo Custom Edition's Guerilla, with additional tools and ease of use upgrades. This is a screenshot of it with some of its extra tools shown. + + + +Here is a current list of the most prominent features of mozz: + +* Is able to switch between creating regular tags, open sauce tags, and gametypes. + +* Is able to view/edit hidden data(edit the config to enable it) + +* Is able to load corrupt tags for debugging purposes. + +* Can export/import blocks(pieces of a tag) + +* Makes backups of tags before editing. + +* Highly customizable user interface colors, widget sizes, hotkeys, etc. + +* Contains a customizable undo/redo feature. + +* Contains a hierarchy view for easily browsing a tags directory and loading tags. + +* Allows choosing any number of tags directories and switching between them at will. + + + +Mozzarilla also contains a few special tools for aiding in modding: + + +* Broken dependency scanner: For locating broken dependencies in the specified types of tags in the specified folder. + +* Dependency viewer: For easily seeing which tags a tag refers to and opening any of them. + +* Tag zipper: For making a zip folder containing a tag and every tag it depends on. + + + +## Who do I talk to? + + + +* Devin Bobadilla (Original author of mozzarilla) MoeMakesStuff@gmail.com + + + + +%package help +Summary: Development documents and examples for mozzarilla +Provides: python3-mozzarilla-doc +%description help +Mozzarilla is a file editing program, and is intended to be a complete replacement for Halo Custom Edition's Guerilla, with additional tools and ease of use upgrades. This is a screenshot of it with some of its extra tools shown. + + + +Here is a current list of the most prominent features of mozz: + +* Is able to switch between creating regular tags, open sauce tags, and gametypes. + +* Is able to view/edit hidden data(edit the config to enable it) + +* Is able to load corrupt tags for debugging purposes. + +* Can export/import blocks(pieces of a tag) + +* Makes backups of tags before editing. + +* Highly customizable user interface colors, widget sizes, hotkeys, etc. + +* Contains a customizable undo/redo feature. + +* Contains a hierarchy view for easily browsing a tags directory and loading tags. + +* Allows choosing any number of tags directories and switching between them at will. + + + +Mozzarilla also contains a few special tools for aiding in modding: + + +* Broken dependency scanner: For locating broken dependencies in the specified types of tags in the specified folder. + +* Dependency viewer: For easily seeing which tags a tag refers to and opening any of them. + +* Tag zipper: For making a zip folder containing a tag and every tag it depends on. + + + +## Who do I talk to? + + + +* Devin Bobadilla (Original author of mozzarilla) MoeMakesStuff@gmail.com + + + + +%prep +%autosetup -n mozzarilla-1.10.0 + +%build +%py3_build + +%install +%py3_install +install -d -m755 %{buildroot}/%{_pkgdocdir} +if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi +if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi +if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi +if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi +pushd %{buildroot} +if [ -d usr/lib ]; then + find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/lib64 ]; then + find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/bin ]; then + find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/sbin ]; then + find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst +fi +touch doclist.lst +if [ -d usr/share/man ]; then + find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst +fi +popd +mv %{buildroot}/filelist.lst . +mv %{buildroot}/doclist.lst . + +%files -n python3-mozzarilla -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Wed May 31 2023 Python_Bot <Python_Bot@openeuler.org> - 1.10.0-1 +- Package Spec generated @@ -0,0 +1 @@ +f3bcc543013baf734fcf42d9075a904f mozzarilla-1.10.0.tar.gz |
