%global _empty_manifest_terminate_build 0 Name: python-lor-deckcodes Version: 5.0.0 Release: 1 Summary: Legends of Runeterra deck coder and decoder License: MIT URL: https://github.com/Rafalonso/LoRDeckCodesPython Source0: https://mirrors.nju.edu.cn/pypi/web/packages/d6/c0/ae9ef82b077ca494576d6963f040e01f05fd60dc6a31f9c80741945cae12/lor_deckcodes-5.0.0.tar.gz BuildArch: noarch %description # Python Implementation ## Install python >=3.5 required pip >= 19.0.0 ``` pip install lor-deckcodes ``` ## Usage Ever expanding rich API with method to display cards conveniently ```python from lor_deckcodes import LoRDeck, CardCodeAndCount # Decoding deck = LoRDeck.from_deckcode('CEBAIAIFB4WDANQIAEAQGDAUDAQSIJZUAIAQCBIFAEAQCBAA') # list all cards with card format 3:01SI001 list(deck) card = deck.cards[0] # instance of CardCodeAndCount card.faction # SI/FR... card.card_id # 111 card.set # 01 # Encoding # These are equivalent deck = LoRDeck(['3:01SI015', '3:01SI044']) deck = LoRDeck([ CardCodeAndCount.from_card_string('3:01SI015'), CardCodeAndCount('01SI015', 3)] ) # returns encoded string deck.encode() ``` %package -n python3-lor-deckcodes Summary: Legends of Runeterra deck coder and decoder Provides: python-lor-deckcodes BuildRequires: python3-devel BuildRequires: python3-setuptools BuildRequires: python3-pip %description -n python3-lor-deckcodes # Python Implementation ## Install python >=3.5 required pip >= 19.0.0 ``` pip install lor-deckcodes ``` ## Usage Ever expanding rich API with method to display cards conveniently ```python from lor_deckcodes import LoRDeck, CardCodeAndCount # Decoding deck = LoRDeck.from_deckcode('CEBAIAIFB4WDANQIAEAQGDAUDAQSIJZUAIAQCBIFAEAQCBAA') # list all cards with card format 3:01SI001 list(deck) card = deck.cards[0] # instance of CardCodeAndCount card.faction # SI/FR... card.card_id # 111 card.set # 01 # Encoding # These are equivalent deck = LoRDeck(['3:01SI015', '3:01SI044']) deck = LoRDeck([ CardCodeAndCount.from_card_string('3:01SI015'), CardCodeAndCount('01SI015', 3)] ) # returns encoded string deck.encode() ``` %package help Summary: Development documents and examples for lor-deckcodes Provides: python3-lor-deckcodes-doc %description help # Python Implementation ## Install python >=3.5 required pip >= 19.0.0 ``` pip install lor-deckcodes ``` ## Usage Ever expanding rich API with method to display cards conveniently ```python from lor_deckcodes import LoRDeck, CardCodeAndCount # Decoding deck = LoRDeck.from_deckcode('CEBAIAIFB4WDANQIAEAQGDAUDAQSIJZUAIAQCBIFAEAQCBAA') # list all cards with card format 3:01SI001 list(deck) card = deck.cards[0] # instance of CardCodeAndCount card.faction # SI/FR... card.card_id # 111 card.set # 01 # Encoding # These are equivalent deck = LoRDeck(['3:01SI015', '3:01SI044']) deck = LoRDeck([ CardCodeAndCount.from_card_string('3:01SI015'), CardCodeAndCount('01SI015', 3)] ) # returns encoded string deck.encode() ``` %prep %autosetup -n lor-deckcodes-5.0.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-lor-deckcodes -f filelist.lst %dir %{python3_sitelib}/* %files help -f doclist.lst %{_docdir}/* %changelog * Sun Apr 23 2023 Python_Bot - 5.0.0-1 - Package Spec generated