From fc7d8763d75217e7994de8d98c43672f4dcee4c1 Mon Sep 17 00:00:00 2001 From: CoprDistGit Date: Tue, 11 Apr 2023 23:00:59 +0000 Subject: automatic import of python-afdko --- .gitignore | 1 + python-afdko.spec | 128 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 130 insertions(+) create mode 100644 python-afdko.spec create mode 100644 sources diff --git a/.gitignore b/.gitignore index e69de29..be764b8 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/afdko-3.9.4.tar.gz diff --git a/python-afdko.spec b/python-afdko.spec new file mode 100644 index 0000000..e712569 --- /dev/null +++ b/python-afdko.spec @@ -0,0 +1,128 @@ +%global _empty_manifest_terminate_build 0 +Name: python-afdko +Version: 3.9.4 +Release: 1 +Summary: Adobe Font Development Kit for OpenType +License: Apache License, Version 2.0 +URL: https://github.com/adobe-type-tools/afdko +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/ff/65/2812669e53d745dcb6787b093b1e7f97e217c3f24567819b07de5d01007e/afdko-3.9.4.tar.gz + +Requires: python3-lxml +Requires: python3-booleanOperations +Requires: python3-defcon[lxml,pens] +Requires: python3-fontMath +Requires: python3-fontTools[lxml,ufo,unicode,woff] +Requires: python3-psautohint +Requires: python3-tqdm +Requires: python3-ufonormalizer +Requires: python3-ufoProcessor + +%description +The AFDKO is a set of tools for building OpenType font files from +PostScript and TrueType font data. +This repository contains the data files, Python scripts, and sources for +the command line programs that comprise the AFDKO. The project uses the +[Apache 2.0 Open Source license](https://opensource.org/licenses/Apache-2.0). +Please note that the AFDKO makes use of several dependencies, listed in the +requirements.txt file, which will automatically be installed if you install +AFDKO with `pip`. Most of these dependencies are BSD or MIT license, with +the exception of `tqdm`, which is [MPL 2.0](https://www.mozilla.org/en-US/MPL/2.0/). +Please refer to the +[AFDKO Overview](https://adobe-type-tools.github.io/afdko/AFDKO-Overview.html) +for a more detailed description of what is included in the package. +Please see the +[wiki](https://github.com/adobe-type-tools/afdko/wiki) +for additional information, such as links to reference materials and related +projects. + +%package -n python3-afdko +Summary: Adobe Font Development Kit for OpenType +Provides: python-afdko +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +BuildRequires: python3-cffi +BuildRequires: gcc +BuildRequires: gdb +%description -n python3-afdko +The AFDKO is a set of tools for building OpenType font files from +PostScript and TrueType font data. +This repository contains the data files, Python scripts, and sources for +the command line programs that comprise the AFDKO. The project uses the +[Apache 2.0 Open Source license](https://opensource.org/licenses/Apache-2.0). +Please note that the AFDKO makes use of several dependencies, listed in the +requirements.txt file, which will automatically be installed if you install +AFDKO with `pip`. Most of these dependencies are BSD or MIT license, with +the exception of `tqdm`, which is [MPL 2.0](https://www.mozilla.org/en-US/MPL/2.0/). +Please refer to the +[AFDKO Overview](https://adobe-type-tools.github.io/afdko/AFDKO-Overview.html) +for a more detailed description of what is included in the package. +Please see the +[wiki](https://github.com/adobe-type-tools/afdko/wiki) +for additional information, such as links to reference materials and related +projects. + +%package help +Summary: Development documents and examples for afdko +Provides: python3-afdko-doc +%description help +The AFDKO is a set of tools for building OpenType font files from +PostScript and TrueType font data. +This repository contains the data files, Python scripts, and sources for +the command line programs that comprise the AFDKO. The project uses the +[Apache 2.0 Open Source license](https://opensource.org/licenses/Apache-2.0). +Please note that the AFDKO makes use of several dependencies, listed in the +requirements.txt file, which will automatically be installed if you install +AFDKO with `pip`. Most of these dependencies are BSD or MIT license, with +the exception of `tqdm`, which is [MPL 2.0](https://www.mozilla.org/en-US/MPL/2.0/). +Please refer to the +[AFDKO Overview](https://adobe-type-tools.github.io/afdko/AFDKO-Overview.html) +for a more detailed description of what is included in the package. +Please see the +[wiki](https://github.com/adobe-type-tools/afdko/wiki) +for additional information, such as links to reference materials and related +projects. + +%prep +%autosetup -n afdko-3.9.4 + +%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-afdko -f filelist.lst +%dir %{python3_sitearch}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Tue Apr 11 2023 Python_Bot - 3.9.4-1 +- Package Spec generated diff --git a/sources b/sources new file mode 100644 index 0000000..a4686c3 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +f03dac467e8368ceded1699540855cdd afdko-3.9.4.tar.gz -- cgit v1.2.3