aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/pull/registry.py
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2019-02-19 21:41:28 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2019-02-19 21:41:28 +0300
commit123b1584daba4d4c13cce5b73a9fb4ccd4a229e8 (patch)
tree34ff0cfcd10d919589aa8934ac462e85e3e6eb5b /pull/registry.py
parentreduce log verbosity (diff)
downloadcgitize-123b1584daba4d4c13cce5b73a9fb4ccd4a229e8.tar.gz
cgitize-123b1584daba4d4c13cce5b73a9fb4ccd4a229e8.zip
refactor to make for proper code
Diffstat (limited to 'pull/registry.py')
-rw-r--r--pull/registry.py56
1 files changed, 56 insertions, 0 deletions
diff --git a/pull/registry.py b/pull/registry.py
new file mode 100644
index 0000000..0e3e951
--- /dev/null
+++ b/pull/registry.py
@@ -0,0 +1,56 @@
+from pull.definitions import BitbucketRepo, GithubRepo, Repo
+
+
+MY_REPOS = (
+ GithubRepo('personal/aes-tools'),
+ GithubRepo('personal/blog'),
+ GithubRepo('personal/chess-games'),
+ GithubRepo('personal/cmake-common'),
+ GithubRepo('personal/config-links'),
+ GithubRepo('personal/cv'),
+ GithubRepo('personal/egor-tensin.github.io'),
+ GithubRepo('personal/filters'),
+ GithubRepo('personal/linux-home'),
+ GithubRepo('personal/linux-status'),
+ GithubRepo('personal/notes'),
+ GithubRepo('personal/pdb-repo'),
+ GithubRepo('personal/privilege-check'),
+ GithubRepo('personal/simple-interpreter'),
+ GithubRepo('personal/sorting-algorithms'),
+ GithubRepo('personal/vk-scripts'),
+ GithubRepo('personal/windows-env'),
+ GithubRepo('personal/windows-home'),
+ GithubRepo('personal/windows-tmp'),
+ GithubRepo('personal/windows7-drivers'),
+ GithubRepo('personal/writable-dirs'),
+
+ BitbucketRepo('etc/etc-tensin-laptop1'),
+ BitbucketRepo('etc/etc-tensin-laptop2'),
+ BitbucketRepo('etc/etc-tensin-pc1'),
+ BitbucketRepo('etc/etc-tensin-raspi1'),
+ BitbucketRepo('etc/etc-tensin-raspi2'),
+ BitbucketRepo('fr24/fr24-cover-letter'),
+ BitbucketRepo('fr24/fr24-home'),
+ BitbucketRepo('fr24/fr24-tmp'),
+ BitbucketRepo('netwrix/etc-wiki'),
+ BitbucketRepo('netwrix/netwrix-copyright'),
+ BitbucketRepo('netwrix/netwrix-lab'),
+ BitbucketRepo('netwrix/netwrix-logs'),
+ #BitbucketRepo('netwrix/netwrix-webapi'),
+ BitbucketRepo('netwrix/netwrix-xml'),
+ BitbucketRepo('netwrix/netwrix.sh'),
+ BitbucketRepo('netwrix/wiki-backup'),
+ BitbucketRepo('shadow'),
+ BitbucketRepo('staging/361_Tensin_E_D_report'),
+ BitbucketRepo('staging/361_Tensin_E_D_slides'),
+ BitbucketRepo('staging/461_Tensin_E_D_report'),
+ BitbucketRepo('staging/461_Tensin_E_D_slides'),
+ BitbucketRepo('staging/cgit-repos'),
+ BitbucketRepo('staging/deposit-calculator'),
+ BitbucketRepo('staging/raspi-temp-client'),
+ BitbucketRepo('staging/raspi-temp-server'),
+ BitbucketRepo('staging/x64-decoder'),
+
+ Repo('fr24/key_mgmt', 'ssh://egor@tensin-raspi2/~/tmp/key_mgmt.git'),
+ Repo('fr24/openfortivpn', 'ssh://egor@tensin-raspi2/~/tmp/openfortivpn.git'),
+)