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 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
@@ -0,0 +1,3 @@
1
+ #!/bin/sh
2
+
3
+ sqlite3 ~/.local/share/ghdl/db "DELETE FROM records WHERE repo = '$1' ;" '.exit'
ghdl/__init__.py CHANGED
@@ -1,3 +1,3 @@
1
- __version__ = "0.4.10"
1
+ __version__ = "0.4.11"
2
2
 
3
3
  from ghdl.main import main, set_dry, set_single
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ghdl
3
- Version: 0.4.10
3
+ Version: 0.4.11
4
4
  Summary: Binary Manager for Github Releases
5
5
  Author-email: Imran Khan <imran@khan.ovh>
6
6
  License: GNU AFFERO GENERAL PUBLIC LICENSE
@@ -1,11 +1,13 @@
1
- ghdl/__init__.py,sha256=4k8UKZNZ1Khk_RiSMF6XwUd1rrN3U6i1jnEBx7IYfaE,72
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-0.4.10.dist-info/METADATA,sha256=CifkRc8mjkHdufc258RGm-pLlsCKYCThybBkx2ISRro,40239
9
- ghdl-0.4.10.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
10
- ghdl-0.4.10.dist-info/licenses/LICENSE,sha256=DZak_2itbUtvHzD3E7GNUYSRK6jdOJ-GqncQ2weavLA,34523
11
- ghdl-0.4.10.dist-info/RECORD,,
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