ghdl 0.4.10__py3-none-any.whl → 0.4.11__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- bin/ghdl +26 -0
- bin/ghdl-delete-repo +3 -0
- ghdl/__init__.py +1 -1
- {ghdl-0.4.10.dist-info → ghdl-0.4.11.dist-info}/METADATA +1 -1
- {ghdl-0.4.10.dist-info → ghdl-0.4.11.dist-info}/RECORD +7 -5
- {ghdl-0.4.10.dist-info → ghdl-0.4.11.dist-info}/WHEEL +0 -0
- {ghdl-0.4.10.dist-info → ghdl-0.4.11.dist-info}/licenses/LICENSE +0 -0
bin/ghdl
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
#!/bin/env hy
|
|
2
|
+
|
|
3
|
+
"ghdl
|
|
4
|
+
|
|
5
|
+
Usage:
|
|
6
|
+
ghdl
|
|
7
|
+
ghdl [-n | --dry-run]
|
|
8
|
+
ghdl (-h | --help)
|
|
9
|
+
ghdl (-v | --version)
|
|
10
|
+
ghdl [-n] (-f <repo> | --force <repo>)
|
|
11
|
+
|
|
12
|
+
Options:
|
|
13
|
+
-h --help Show this screen.
|
|
14
|
+
-v --version Show version.
|
|
15
|
+
-n --dry-run Don't download, just show plan.
|
|
16
|
+
-f repo --force=repo Force update a single repo.
|
|
17
|
+
"
|
|
18
|
+
|
|
19
|
+
(import docopt [docopt])
|
|
20
|
+
(import ghdl)
|
|
21
|
+
|
|
22
|
+
(when (= __name__ "__main__")
|
|
23
|
+
(setv args (docopt __doc__ :version ghdl.__version__))
|
|
24
|
+
(when (get args "--dry-run") (ghdl.set-dry))
|
|
25
|
+
(when (setx repo (get args "--force")) (ghdl.set-single (.lower repo)))
|
|
26
|
+
(ghdl.main))
|
bin/ghdl-delete-repo
ADDED
ghdl/__init__.py
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
ghdl/__init__.py,sha256=
|
|
1
|
+
ghdl/__init__.py,sha256=k4SjwuAiP3VVuwU5Q-nXNdeLPp7hBGErjvqemmpRvzQ,72
|
|
2
2
|
ghdl/config.hy,sha256=Phq5jyoTizCGQMVtVFljx1MByqo9rBLaciZ69PsS-IE,1550
|
|
3
3
|
ghdl/local.hy,sha256=1StKPJ-l3mo6QdtaYfwL9FvZK97MdYIHrRRSF6S06OU,1687
|
|
4
4
|
ghdl/main.hy,sha256=D1dNJPeW-X0WRbh7974Oecxc_LtLH_AJGgBR5kiNuPc,4710
|
|
5
5
|
ghdl/remote.hy,sha256=is-pU8qxVk8rckxRY6Y3YAJCEl49klC2kfV-KoT7ADg,1610
|
|
6
6
|
ghdl/schema.hy,sha256=sXKjpaBVzBAPAx8Ko3RbCJB2GGbE5pilx-E3gVHtFMY,708
|
|
7
7
|
ghdl/utils.hy,sha256=DZpjuemTpuyex-2ShLRyNxMzMKPM0jia9CCnqMdizfA,1604
|
|
8
|
-
ghdl
|
|
9
|
-
ghdl-
|
|
10
|
-
ghdl-0.4.
|
|
11
|
-
ghdl-0.4.
|
|
8
|
+
bin/ghdl,sha256=COv8sAI-zeTEcxkSvob6lAonVJ71vpAWmsnCfsa6HO8,618
|
|
9
|
+
bin/ghdl-delete-repo,sha256=b2X42MFFmvvJ6ldLAHyrcCkI5LB40Tuefbc3FMAtu54,92
|
|
10
|
+
ghdl-0.4.11.dist-info/METADATA,sha256=TpBcXx2zC8M9QW1e9tGqzBBgP29F66-K0Vo7wdXwhHA,40239
|
|
11
|
+
ghdl-0.4.11.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
12
|
+
ghdl-0.4.11.dist-info/licenses/LICENSE,sha256=DZak_2itbUtvHzD3E7GNUYSRK6jdOJ-GqncQ2weavLA,34523
|
|
13
|
+
ghdl-0.4.11.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|