summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2013-01-09 06:38:16 -0800
committerZac Medico <zmedico@gentoo.org>2013-01-09 09:09:44 -0800
commit12c795d81251b03f3d33d02696dc8db1299dee78 (patch)
tree9e3a3983bb2fb65064f5b1a056ac4c36280a9e5d /bin
parent97e8df7eaa171d68da6b3e111c419e2a16dfaf4c (diff)
downloadportage-12c795d81251b03f3d33d02696dc8db1299dee78.tar.gz
portage-12c795d81251b03f3d33d02696dc8db1299dee78.tar.bz2
portage-12c795d81251b03f3d33d02696dc8db1299dee78.zip
Add emirrordist, a tool for mirroring distfiles.
Special thanks to Brian Harring, author of the mirror-dist program from which emirrordist is derived.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/emirrordist13
1 files changed, 13 insertions, 0 deletions
diff --git a/bin/emirrordist b/bin/emirrordist
new file mode 100755
index 000000000..8d93de9c0
--- /dev/null
+++ b/bin/emirrordist
@@ -0,0 +1,13 @@
+#!/usr/bin/python
+# Copyright 2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+import sys
+
+import portage
+portage._internal_caller = True
+portage._disable_legacy_globals()
+from portage._emirrordist.main import emirrordist_main
+
+if __name__ == "__main__":
+ sys.exit(emirrordist_main(sys.argv[1:]))