Browse Source

Initial requirements added, Sorting improved

master
Dirk Alders 3 years ago
parent
commit
801943401a
10 changed files with 1709 additions and 4 deletions
  1. 23
    0
      .gitignore
  2. 3
    0
      .gitmodules
  3. 1
    1
      fstools
  4. 1
    1
      patt
  5. 17
    0
      requirements/Makefile
  6. 1
    0
      requirements/reqif
  7. BIN
      requirements/requirements.pdf
  8. 1661
    0
      requirements/requirements.reqif
  9. 1
    1
      themes
  10. 1
    1
      users

+ 23
- 0
.gitignore View File

@@ -1,5 +1,6 @@
1 1
 config.py
2 2
 data/
3
+venv
3 4
 
4 5
 # ---> Python
5 6
 # Byte-compiled / optimized / DLL files
@@ -117,3 +118,25 @@ dmypy.json
117 118
 # Pyre type checker
118 119
 .pyre/
119 120
 
121
+# ---> Linux
122
+*~
123
+
124
+# temporary files which can be created if a process still has a handle open of a deleted file
125
+.fuse_hidden*
126
+
127
+# KDE directory preferences
128
+.directory
129
+
130
+# Linux trash folder which might appear on any partition or disk
131
+.Trash-*
132
+
133
+# .nfs files are created when an open file is removed but is still being accessed
134
+.nfs*
135
+
136
+# ---> Backup
137
+*.bak
138
+*.gho
139
+*.ori
140
+*.orig
141
+*.tmp
142
+

+ 3
- 0
.gitmodules View File

@@ -13,3 +13,6 @@
13 13
 [submodule "users"]
14 14
 	path = users
15 15
 	url = https://git.mount-mockery.de/django_lib/users.git
16
+[submodule "requirements/reqif"]
17
+	path = requirements/reqif
18
+	url = https://git.mount-mockery.de/pylib/reqif.git

+ 1
- 1
fstools

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

+ 1
- 1
patt

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

+ 17
- 0
requirements/Makefile View File

@@ -0,0 +1,17 @@
1
+SPEC_FILENAME=requirements
2
+
3
+.PHONY: specification
4
+
5
+specification:
6
+	venv/bin/python reqif/__init__.py $(SPEC_FILENAME).reqif
7
+	@$(MAKE) --no-print-directory clean
8
+	xdg-open $(SPEC_FILENAME).pdf
9
+
10
+clean:
11
+	@echo Removing generated files for target
12
+	@rm -f $(SPEC_FILENAME).tex $(SPEC_FILENAME).aux $(SPEC_FILENAME).log $(SPEC_FILENAME).out $(SPEC_FILENAME).toc *~
13
+
14
+
15
+cleanall: clean
16
+	@echo Removing target
17
+	@rm -f $(SPEC_FILENAME).pdf

+ 1
- 0
requirements/reqif

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

BIN
requirements/requirements.pdf View File


+ 1661
- 0
requirements/requirements.reqif
File diff suppressed because it is too large
View File


+ 1
- 1
themes

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

+ 1
- 1
users

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

Loading…
Cancel
Save