Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Unified Diff: tools/telemetry/third_party/gsutil/third_party/python-gflags/Makefile

Issue 1260493004: Revert "Add gsutil 4.13 to telemetry/third_party" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tools/telemetry/third_party/gsutil/third_party/python-gflags/Makefile
diff --git a/tools/telemetry/third_party/gsutil/third_party/python-gflags/Makefile b/tools/telemetry/third_party/gsutil/third_party/python-gflags/Makefile
deleted file mode 100644
index 6627c32a5e8cb76cd31b01f56eac8430c96705b9..0000000000000000000000000000000000000000
--- a/tools/telemetry/third_party/gsutil/third_party/python-gflags/Makefile
+++ /dev/null
@@ -1,69 +0,0 @@
-
-prep:
- @echo
- # Install needed packages
- sudo apt-get install subversion fakeroot python-setuptools python-subversion
- #
- @echo
- # Check that the person has .pypirc
- @if [ ! -e ~/.pypirc ]; then \
- echo "Please create a ~/.pypirc with the following contents:"; \
- echo "[server-login]"; \
- echo "username:google_opensource"; \
- echo "password:<see valentine>"; \
- fi
- #
- @echo
- # FIXME(tansell): Check that the person has .dputrc for PPA
-
-clean:
- # Clean up any build files.
- python setup.py clean --all
- #
- # Clean up the debian stuff
- fakeroot ./debian/rules clean
- #
- # Clean up everything else
- rm MANIFEST || true
- rm -rf build-*
- #
- # Clean up the egg files
- rm -rf *egg*
- #
- # Remove dist
- rm -rf dist
-
-dist:
- # Generate the tarball based on MANIFEST.in
- python setup.py sdist
- #
- # Build the debian packages
- fakeroot ./debian/rules binary
- mv ../python-gflags*.deb ./dist/
- #
- # Build the python Egg
- python setup.py bdist_egg
- #
- @echo
- @echo "Files to upload:"
- @echo "--------------------------"
- @ls -l ./dist/
-
-push:
- # Send the updates to svn
- # Upload the source package to code.google.com
- - /home/build/opensource/tools/googlecode_upload.py \
- -p python-gflags ./dist/*
- #
- # Upload the package to PyPi
- - python setup.py sdist upload
- - python setup.py bdist_egg upload
- #
- # Upload the package to the ppa
- # FIXME(tansell): dput should run here
-
-check:
- # Run all the tests.
- for test in tests/*.py; do PYTHONPATH=. python $$test || exit 1; done
-
-.PHONY: prep dist clean push check

Powered by Google App Engine
This is Rietveld 408576698