mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-21 18:22:30 +01:00
fix data file inclusion in source distributions
This commit is contained in:
parent
6c86fbfe2a
commit
ce98a86c0e
8
.gitignore
vendored
8
.gitignore
vendored
@ -10,6 +10,7 @@ __pycache__/
|
||||
# Distribution / packaging
|
||||
.Python
|
||||
env/
|
||||
data/
|
||||
build/
|
||||
develop-eggs/
|
||||
dist/
|
||||
@ -58,13 +59,6 @@ docs/_build/
|
||||
# PyBuilder
|
||||
target/
|
||||
|
||||
# Manpages
|
||||
gallery-dl.1
|
||||
gallery-dl.conf.5
|
||||
|
||||
# Bash completion
|
||||
gallery-dl.bash_completion
|
||||
|
||||
# Snap packaging specific
|
||||
/snap/.snapcraft/
|
||||
/parts/
|
||||
|
@ -1,5 +1,9 @@
|
||||
# Changelog
|
||||
|
||||
## Unreleased
|
||||
### Fixes
|
||||
- Fix inclusion of bash completion and man pages in source distributions
|
||||
|
||||
## 1.11.0 - 2019-11-08
|
||||
### Additions
|
||||
- Support for
|
||||
|
11
Makefile
11
Makefile
@ -10,6 +10,7 @@ all: man completion docs/supportedsites.rst
|
||||
|
||||
clean:
|
||||
$(RM) -r build/
|
||||
$(RM) -r data/
|
||||
|
||||
install: man completion
|
||||
$(PYTHON) setup.py install
|
||||
@ -23,20 +24,20 @@ test:
|
||||
executable:
|
||||
scripts/pyinstaller.py
|
||||
|
||||
completion: build/completion/gallery-dl
|
||||
completion: data/completion/gallery-dl
|
||||
|
||||
man: build/man/gallery-dl.1 build/man/gallery-dl.conf.5
|
||||
man: data/man/gallery-dl.1 data/man/gallery-dl.conf.5
|
||||
|
||||
.PHONY: all clean install release test executable completion man
|
||||
|
||||
docs/supportedsites.rst: gallery_dl/*/*.py scripts/supportedsites.py
|
||||
$(PYTHON) scripts/supportedsites.py
|
||||
|
||||
build/man/gallery-dl.1: gallery_dl/option.py gallery_dl/version.py scripts/man.py
|
||||
data/man/gallery-dl.1: gallery_dl/option.py gallery_dl/version.py scripts/man.py
|
||||
$(PYTHON) scripts/man.py
|
||||
|
||||
build/man/gallery-dl.conf.5: docs/configuration.rst gallery_dl/version.py scripts/man.py
|
||||
data/man/gallery-dl.conf.5: docs/configuration.rst gallery_dl/version.py scripts/man.py
|
||||
$(PYTHON) scripts/man.py
|
||||
|
||||
build/completion/gallery-dl: gallery_dl/option.py scripts/bash_completion.py
|
||||
data/completion/gallery-dl: gallery_dl/option.py scripts/bash_completion.py
|
||||
$(PYTHON) scripts/bash_completion.py
|
||||
|
@ -6,4 +6,4 @@
|
||||
# it under the terms of the GNU General Public License version 2 as
|
||||
# published by the Free Software Foundation.
|
||||
|
||||
__version__ = "1.11.0"
|
||||
__version__ = "1.11.1-dev"
|
||||
|
@ -47,7 +47,7 @@ for action in option.build_parser()._actions:
|
||||
if opt.startswith("--"):
|
||||
opts.append(opt)
|
||||
|
||||
PATH = util.path("build/completion/gallery-dl")
|
||||
PATH = util.path("data/completion/gallery-dl")
|
||||
with open(PATH, "w", encoding="utf-8") as file:
|
||||
file.write(TEMPLATE % {
|
||||
"opts" : " ".join(opts),
|
||||
|
@ -99,7 +99,7 @@ and https://github.com/mikf/gallery-dl/graphs/contributors
|
||||
))
|
||||
|
||||
if not path:
|
||||
path = util.path("build/man/gallery-dl.1")
|
||||
path = util.path("data/man/gallery-dl.1")
|
||||
with open(path, "w", encoding="utf-8") as file:
|
||||
file.write(TEMPLATE.lstrip() % {
|
||||
"options": "\n".join(options),
|
||||
@ -217,7 +217,7 @@ and https://github.com/mikf/gallery-dl/graphs/contributors
|
||||
content.append(strip_rst(text, field != "Example"))
|
||||
|
||||
if not path:
|
||||
path = util.path("build/man/gallery-dl.conf.5")
|
||||
path = util.path("data/man/gallery-dl.conf.5")
|
||||
with open(path, "w", encoding="utf-8") as file:
|
||||
file.write(TEMPLATE.lstrip() % {
|
||||
"options": "\n".join(content),
|
||||
|
@ -27,6 +27,7 @@ update() {
|
||||
|
||||
sed -i "s#\"${PYVERSION}\"#\"${NEWVERSION}\"#" "gallery_dl/version.py"
|
||||
sed -i "s#v${OLDVERSION}#v${NEWVERSION}#" "${README}"
|
||||
make man
|
||||
}
|
||||
|
||||
update-dev() {
|
||||
|
6
setup.py
6
setup.py
@ -36,9 +36,9 @@ VERSION = re.search(
|
||||
FILES = [
|
||||
(path, [f for f in files if check_file(f)])
|
||||
for (path, files) in [
|
||||
("share/bash-completion/completions", ["build/completion/gallery-dl"]),
|
||||
("share/man/man1" , ["build/man/gallery-dl.1"]),
|
||||
("share/man/man5" , ["build/man/gallery-dl.conf.5"]),
|
||||
("share/bash-completion/completions", ["data/completion/gallery-dl"]),
|
||||
("share/man/man1" , ["data/man/gallery-dl.1"]),
|
||||
("share/man/man5" , ["data/man/gallery-dl.conf.5"]),
|
||||
]
|
||||
]
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user