Initial requirements added, Sorting improved

This commit is contained in:
Dirk Alders 2021-01-17 15:01:19 +01:00
parent edd41d1ef7
commit 801943401a
10 changed files with 1709 additions and 4 deletions

23
.gitignore vendored
View File

@ -1,5 +1,6 @@
config.py
data/
venv
# ---> Python
# Byte-compiled / optimized / DLL files
@ -117,3 +118,25 @@ dmypy.json
# Pyre type checker
.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
View File

@ -13,3 +13,6 @@
[submodule "users"]
path = users
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

@ -1 +1 @@
Subproject commit ada1f74d4c05a35bad9d2b258f3d0b4ccdfd1653
Subproject commit f5da43b01631147dace87242a94227acfb3e9bc5

2
patt

@ -1 +1 @@
Subproject commit 8d5ce7ccaee646de5afb9831a4413a3b4b0a623f
Subproject commit 63e9af4d65a486309e55bb0925866fb1eaec99cb

17
requirements/Makefile Normal file
View 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

@ -0,0 +1 @@
Subproject commit ed0d9da2435d75a79ff6298dbf324dd7e3181016

Binary file not shown.

File diff suppressed because it is too large Load Diff

2
themes

@ -1 +1 @@
Subproject commit b0106a3d5cc302844dacc681f75f047876525e5e
Subproject commit d3b38d9e7a5d01708380dd9632b0ca7a544a5cef

2
users

@ -1 +1 @@
Subproject commit 277352fe9bbf0e67b52bdb19a5ba7fa6281dad6e
Subproject commit 8cf64464ba094df60fe81442dd0d728075368344