summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--python-lor-deckcodes.spec192
-rw-r--r--sources1
3 files changed, 194 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..8f6e3fd 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/lor_deckcodes-5.0.0.tar.gz
diff --git a/python-lor-deckcodes.spec b/python-lor-deckcodes.spec
new file mode 100644
index 0000000..5f37f7d
--- /dev/null
+++ b/python-lor-deckcodes.spec
@@ -0,0 +1,192 @@
+%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
+* Tue Apr 11 2023 Python_Bot <Python_Bot@openeuler.org> - 5.0.0-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..feebfdc
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+9ecdb2b65fb1007970a6ed16378730fd lor_deckcodes-5.0.0.tar.gz