Initial requirements added, Sorting improved
This commit is contained in:
parent
edd41d1ef7
commit
801943401a
23
.gitignore
vendored
23
.gitignore
vendored
@ -1,5 +1,6 @@
|
|||||||
config.py
|
config.py
|
||||||
data/
|
data/
|
||||||
|
venv
|
||||||
|
|
||||||
# ---> Python
|
# ---> Python
|
||||||
# Byte-compiled / optimized / DLL files
|
# Byte-compiled / optimized / DLL files
|
||||||
@ -117,3 +118,25 @@ dmypy.json
|
|||||||
# Pyre type checker
|
# Pyre type checker
|
||||||
.pyre/
|
.pyre/
|
||||||
|
|
||||||
|
# ---> Linux
|
||||||
|
*~
|
||||||
|
|
||||||
|
# temporary files which can be created if a process still has a handle open of a deleted file
|
||||||
|
.fuse_hidden*
|
||||||
|
|
||||||
|
# KDE directory preferences
|
||||||
|
.directory
|
||||||
|
|
||||||
|
# Linux trash folder which might appear on any partition or disk
|
||||||
|
.Trash-*
|
||||||
|
|
||||||
|
# .nfs files are created when an open file is removed but is still being accessed
|
||||||
|
.nfs*
|
||||||
|
|
||||||
|
# ---> Backup
|
||||||
|
*.bak
|
||||||
|
*.gho
|
||||||
|
*.ori
|
||||||
|
*.orig
|
||||||
|
*.tmp
|
||||||
|
|
||||||
|
3
.gitmodules
vendored
3
.gitmodules
vendored
@ -13,3 +13,6 @@
|
|||||||
[submodule "users"]
|
[submodule "users"]
|
||||||
path = users
|
path = users
|
||||||
url = https://git.mount-mockery.de/django_lib/users.git
|
url = https://git.mount-mockery.de/django_lib/users.git
|
||||||
|
[submodule "requirements/reqif"]
|
||||||
|
path = requirements/reqif
|
||||||
|
url = https://git.mount-mockery.de/pylib/reqif.git
|
||||||
|
2
fstools
2
fstools
@ -1 +1 @@
|
|||||||
Subproject commit ada1f74d4c05a35bad9d2b258f3d0b4ccdfd1653
|
Subproject commit f5da43b01631147dace87242a94227acfb3e9bc5
|
2
patt
2
patt
@ -1 +1 @@
|
|||||||
Subproject commit 8d5ce7ccaee646de5afb9831a4413a3b4b0a623f
|
Subproject commit 63e9af4d65a486309e55bb0925866fb1eaec99cb
|
17
requirements/Makefile
Normal file
17
requirements/Makefile
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
SPEC_FILENAME=requirements
|
||||||
|
|
||||||
|
.PHONY: specification
|
||||||
|
|
||||||
|
specification:
|
||||||
|
venv/bin/python reqif/__init__.py $(SPEC_FILENAME).reqif
|
||||||
|
@$(MAKE) --no-print-directory clean
|
||||||
|
xdg-open $(SPEC_FILENAME).pdf
|
||||||
|
|
||||||
|
clean:
|
||||||
|
@echo Removing generated files for target
|
||||||
|
@rm -f $(SPEC_FILENAME).tex $(SPEC_FILENAME).aux $(SPEC_FILENAME).log $(SPEC_FILENAME).out $(SPEC_FILENAME).toc *~
|
||||||
|
|
||||||
|
|
||||||
|
cleanall: clean
|
||||||
|
@echo Removing target
|
||||||
|
@rm -f $(SPEC_FILENAME).pdf
|
1
requirements/reqif
Submodule
1
requirements/reqif
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit ed0d9da2435d75a79ff6298dbf324dd7e3181016
|
BIN
requirements/requirements.pdf
Normal file
BIN
requirements/requirements.pdf
Normal file
Binary file not shown.
1661
requirements/requirements.reqif
Normal file
1661
requirements/requirements.reqif
Normal file
File diff suppressed because it is too large
Load Diff
2
themes
2
themes
@ -1 +1 @@
|
|||||||
Subproject commit b0106a3d5cc302844dacc681f75f047876525e5e
|
Subproject commit d3b38d9e7a5d01708380dd9632b0ca7a544a5cef
|
2
users
2
users
@ -1 +1 @@
|
|||||||
Subproject commit 277352fe9bbf0e67b52bdb19a5ba7fa6281dad6e
|
Subproject commit 8cf64464ba094df60fe81442dd0d728075368344
|
Loading…
x
Reference in New Issue
Block a user