diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-casbin.spec | 109 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 111 insertions, 0 deletions
@@ -0,0 +1 @@ +/casbin-1.18.2.tar.gz diff --git a/python-casbin.spec b/python-casbin.spec new file mode 100644 index 0000000..bdddbe4 --- /dev/null +++ b/python-casbin.spec @@ -0,0 +1,109 @@ +%global _empty_manifest_terminate_build 0 +Name: python-casbin +Version: 1.18.2 +Release: 1 +Summary: An authorization library that supports access control models like ACL, RBAC, ABAC in Python +License: Apache 2.0 +URL: https://github.com/casbin/pycasbin +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/7b/a8/426c7e8e0a62dcf4d2629f85b8f0efe36ea489a07625fee37fbfc61daed2/casbin-1.18.2.tar.gz +BuildArch: noarch + +Requires: python3-simpleeval + +%description +[](https://github.com/casbin/pycasbin/actions) +[](https://coveralls.io/github/casbin/pycasbin) +[](https://pypi.org/project/casbin/) +[](https://pypi.org/project/casbin/) +[](https://pypi.org/project/casbin/) +[](https://pypi.org/project/casbin/) +[](https://gitter.im/casbin/lobby) +💖 [**Looking for an open-source identity and access management solution like Okta, Auth0, Keycloak ? Learn more about: Casdoor**](https://casdoor.org/) +<a href="https://casdoor.org/"><img src="https://user-images.githubusercontent.com/3787410/147868267-6ac74908-5654-4f9c-ac79-8852af9ff925.png" alt="casdoor" style="width: 50%; height: 50%"/></a> +**News**: Async version PyCasbin can be found at: https://pypi.org/project/asynccasbin/ +**News**: still worry about how to write the correct Casbin policy? ``Casbin online editor`` is coming to help! Try it at: http://casbin.org/editor/ +Casbin is a powerful and efficient open-source access control library for Python projects. It provides support for enforcing authorization based on various [access control models](https://en.wikipedia.org/wiki/Computer_security_model). +## All the languages supported by Casbin: + +%package -n python3-casbin +Summary: An authorization library that supports access control models like ACL, RBAC, ABAC in Python +Provides: python-casbin +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-casbin +[](https://github.com/casbin/pycasbin/actions) +[](https://coveralls.io/github/casbin/pycasbin) +[](https://pypi.org/project/casbin/) +[](https://pypi.org/project/casbin/) +[](https://pypi.org/project/casbin/) +[](https://pypi.org/project/casbin/) +[](https://gitter.im/casbin/lobby) +💖 [**Looking for an open-source identity and access management solution like Okta, Auth0, Keycloak ? Learn more about: Casdoor**](https://casdoor.org/) +<a href="https://casdoor.org/"><img src="https://user-images.githubusercontent.com/3787410/147868267-6ac74908-5654-4f9c-ac79-8852af9ff925.png" alt="casdoor" style="width: 50%; height: 50%"/></a> +**News**: Async version PyCasbin can be found at: https://pypi.org/project/asynccasbin/ +**News**: still worry about how to write the correct Casbin policy? ``Casbin online editor`` is coming to help! Try it at: http://casbin.org/editor/ +Casbin is a powerful and efficient open-source access control library for Python projects. It provides support for enforcing authorization based on various [access control models](https://en.wikipedia.org/wiki/Computer_security_model). +## All the languages supported by Casbin: + +%package help +Summary: Development documents and examples for casbin +Provides: python3-casbin-doc +%description help +[](https://github.com/casbin/pycasbin/actions) +[](https://coveralls.io/github/casbin/pycasbin) +[](https://pypi.org/project/casbin/) +[](https://pypi.org/project/casbin/) +[](https://pypi.org/project/casbin/) +[](https://pypi.org/project/casbin/) +[](https://gitter.im/casbin/lobby) +💖 [**Looking for an open-source identity and access management solution like Okta, Auth0, Keycloak ? Learn more about: Casdoor**](https://casdoor.org/) +<a href="https://casdoor.org/"><img src="https://user-images.githubusercontent.com/3787410/147868267-6ac74908-5654-4f9c-ac79-8852af9ff925.png" alt="casdoor" style="width: 50%; height: 50%"/></a> +**News**: Async version PyCasbin can be found at: https://pypi.org/project/asynccasbin/ +**News**: still worry about how to write the correct Casbin policy? ``Casbin online editor`` is coming to help! Try it at: http://casbin.org/editor/ +Casbin is a powerful and efficient open-source access control library for Python projects. It provides support for enforcing authorization based on various [access control models](https://en.wikipedia.org/wiki/Computer_security_model). +## All the languages supported by Casbin: + +%prep +%autosetup -n casbin-1.18.2 + +%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-casbin -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Tue Apr 11 2023 Python_Bot <Python_Bot@openeuler.org> - 1.18.2-1 +- Package Spec generated @@ -0,0 +1 @@ +ceec1a60c6a5a078fb983bba190ae90e casbin-1.18.2.tar.gz |