1
0
Fork 0
mirror of https://github.com/evilhero/mylar synced 2024-12-31 20:15:21 +00:00
mylar/lib/rarfile/Makefile
evilhero 2623bbcbaf IMP: Updated CT to a newer version - changed to use rarfile, fixes size invalid errors with some cbr's encountered during conversions, IMP: Search and Post-Processing Queues now added in order to queue up all searches/post-processing in sequence instead of loading lists and iterating through it and encountering various lock-related errors, IMP: In most cases, will now post-process directly against comicid/issueid/storyarcid instead of relying on relationship via nzb/torrent, FIX: realigned some checkboxes on series detail page, FIX: in configuration, indicated that ComicRN cannot be used when Completed Download Handling is enabled for a client now, FIX: Fix for issues named as 'special' that are part of the annuals section, but would not work in various portions (also will allow for naming differences in the future hopefully), FIX: Will now trap error properly when file cannot be located during dupecheck so that post-processing can continue without error, FIX: Fixed newznab test option on configuration screen so that it will return the correct response (previous was an invalid api endpoint), FIX: When retrieving image for storyarcs would error when no image was present and stop the process, FIX: accounted for some incorrect newznab responses that would return a non-api endpoint when retrieving via rss, which resulted in invalid nzbs, FIX: in some cases, weekly pull snatches would not update properly on the weekly page due to some db values not being written
2018-06-14 13:07:39 -04:00

35 lines
600 B
Makefile

prefix = /usr/local
all:
pyflakes3 rarfile.py
tox
install:
python setup.py install --prefix=$(prefix)
tgz: clean
python setup.py sdist
clean:
rm -rf __pycache__ build dist
rm -f *.pyc MANIFEST *.orig *.rej *.html *.class
rm -rf doc/_build doc/_static doc/_templates doc/html
rm -rf .coverage cover*
rm -rf *.egg-info
rm -f test/files/*.rar.[pjt]* *.diffs
toxclean: clean
rm -rf .tox
rbuild:
curl -X POST https://readthedocs.org/build/6715
upload:
python setup.py sdist upload
ack:
for fn in test/files/*.py27; do \
cp $$fn `echo $$fn | sed 's/py27/exp/'` || exit 1; \
done