8000 mu/Makefile at spanish · andreagrandi/mu · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
{"payload":{"allShortcutsEnabled":false,"fileTree":{"":{"items":[{"name":"conf","path":"conf","contentType":"directory"},{"name":"debian","path":"debian","contentType":"directory"},{"name":"docs","path":"docs","contentType":"directory"},{"name":"mu","path":"mu","contentType":"directory"},{"name":"package","path":"package","contentType":"directory"},{"name":"tests","path":"tests","contentType":"directory"},{"name":"utils","path":"utils","contentType":"directory"},{"name":".appveyor.yml","path":".appveyor.yml","contentType":"file"},{"name":".coveragerc","path":".coveragerc","contentType":"file"},{"name":".gitignore","path":".gitignore","contentType":"file"},{"name":".travis.yml","path":".travis.yml","contentType":"file"},{"name":"AUTHORS.rst","path":"AUTHORS.rst","contentType":"file"},{"name":"CHANGES.rst","path":"CHANGES.rst","contentType":"file"},{"name":"CODE_OF_CONDUCT.rst","path":"CODE_OF_CONDUCT.rst","contentType":"file"},{"name":"CONTRIBUTING.rst","path":"CONTRIBUTING.rst","contentType":"file"},{"name":"ISSUE_TEMPLATE.rst","path":"ISSUE_TEMPLATE.rst","contentType":"file"},{"name":"LICENSE","path":"LICENSE","contentType":"file"},{"name":"MANIFEST.in","path":"MANIFEST.in","contentType":"file"},{"name":"Makefile","path":"Makefile","contentType":"file"},{"name":"README.rst","path":"README.rst","contentType":"file"},{"name":"ROADMAP.rst","path":"ROADMAP.rst","contentType":"file"},{"name":"make.cmd","path":"make.cmd","contentType":"file"},{"name":"make.py","path":"make.py","contentType":"file"},{"name":"requirements.txt","path":"requirements.txt","contentType":"file"},{"name":"requirements_pi.txt","path":"requirements_pi.txt","contentType":"file"},{"name":"run.py","path":"run.py","contentType":"file"},{"name":"setup.py","path":"setup.py","contentType":"file"},{"name":"todo.txt","path":"todo.txt","contentType":"file"},{"name":"win_installer.py","path":"win_installer.py","contentType":"file"},{"name":"win_installer32.cfg","path":"win_installer32.cfg","contentType":"file"},{"name":"win_installer64.cfg","path":"win_installer64.cfg","contentType":"file"}],"totalCount":31}},"fileTreeProcessingTime":8.512197,"foldersToFetch":[],"incompleteFileTree":false,"repo":{"id":140605393,"defaultBranch":"master","name":"mu","ownerLogin":"andreagrandi","currentUserCanPush":false,"isFork":true,"isEmpty":false,"createdAt":"2018-07-11T17:01:16.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/636391?v=4","public":true,"private":false,"isOrgOwned":false},"codeLineWrapEnabled":false,"symbolsExpanded":false,"treeExpanded":true,"refInfo":{"name":"spanish","listCacheKey":"v0:1620914681.656909","canEdit":false,"refType":"branch","currentOid":"b78fcbf58ad3df2c235f11adf4fe847672d6a211"},"path":"Makefile","currentUser":null,"blob":{"rawLines":["XARGS := xargs -0 $(shell test $$(uname) = Linux \u0026\u0026 echo -r)","GREP_T_FLAG := $(shell test $$(uname) = Linux \u0026\u0026 echo -T)","export PYFLAKES_BUILTINS=_","","all:","\t@echo \"\\nThere is no default Makefile target right now. Try:\\n\"","\t@echo \"make run - run the local development version of Mu.\"","\t@echo \"make clean - reset the project and remove auto-generated assets.\"","\t@echo \"make pyflakes - run the PyFlakes code checker.\"","\t@echo \"make pycodestyle - run the PEP8 style checker.\"","\t@echo \"make test - run the test suite.\"","\t@echo \"make coverage - view a report on test coverage.\"","\t@echo \"make check - run all the checkers and tests.\"","\t@echo \"make dist - make a dist/wheel for the project.\"","\t@echo \"make publish-test - publish the project to PyPI test instance.\"","\t@echo \"make publish-live - publish the project to PyPI production.\"","\t@echo \"make docs - run sphinx to create project documentation.\"","\t@echo \"make translate - create a messages.pot file for translations.\"","\t@echo \"make translateall - as with translate but for all API strings.\"","\t@echo \"make win32 - create a 32bit Windows installer for Mu.\"","\t@echo \"make win64 - create a 64bit Windows installer for Mu.\\n\"","","clean:","\trm -rf build","\trm -rf dist","\trm -rf mu_editor.egg-info","\trm -rf .coverage","\trm -rf .eggs","\trm -rf docs/_build","\trm -rf .pytest_cache","\trm -rf lib","\trm -rf pynsist_pkgs","\trm -rf pynsist_tkinter*","\trm -rf macOS","\tfind . \\( -name '*.py[co]' -o -name dropin.cache \\) -delete","\tfind . \\( -name '*.bak' -o -name dropin.cache \\) -delete","\tfind . \\( -name '*.tgz' -o -name dropin.cache \\) -delete","\tfind . | grep -E \"(__pycache__)\" | xargs rm -rf","","run: clean","ifeq ($(VIRTUAL_ENV),)","\t@echo \"\\n\\nCannot run Mu. Your Python virtualenv is not activated.\"","else","\tpython run.py","endif","","pyflakes:","\tfind . \\( -name _build -o -name var -o -path ./docs -o -path ./mu/contrib -o -path ./utils -o -path ./venv \\) -type d -prune -o -name '*.py' -print0 | $(XARGS) pyflakes","","pycodestyle:","\tfind . \\( -name _build -o -name var \\) -type d -prune -o -name '*.py' -print0 | $(XARGS) -n 1 pycodestyle --repeat --exclude=build/*,docs/*,mu/contrib*,mu/modes/api/*,utils/*,venv/*,.vscode/* --ignore=E731,E402,W504","","test: clean","\tpytest","","coverage: clean","\tpytest --cov-config .coveragerc --cov-report term-missing --cov=mu tests/","","check: clean pycodestyle pyflakes coverage","","dist: check","\t@echo \"\\nChecks pass, good to package...\"","\tpython setup.py sdist bdist_wheel","","publish-test: dist","\t@echo \"\\nPackaging complete... Uploading to PyPi...\"","\ttwine upload -r test --sign dist/*","","publish-live: dist ","\t@echo \"\\nPackaging complete... Uploading to PyPi...\"","\ttwine upload --sign dist/*","","docs: clean","\t$(MAKE) -C docs html","\t@echo \"\\nDocumentation can be found here:\"","\t@echo file://`pwd`/docs/_build/html/index.html","\t@echo \"\\n\"","","translate:","\tfind . \\( -name _build -o -name var -o -path ./docs -o -path ./mu/contrib -o -path ./utils -o -path ./mu/modes/api \\) -type d -prune -o -name '*.py' -print0 | $(XARGS) pygettext","\t@echo \"\\nNew messages.pot file created.\"","\t@echo \"Remember to update the translation strings found in the locale directory.\"","","translateall:","\tpygettext mu/* mu/debugger/* mu/modes/* mu/resources/*","\t@echo \"\\nNew messages.pot file created.\"","\t@echo \"Remember to update the translation strings found in the locale directory.\"","","win32: check","\t@echo \"\\nBuilding 32bit Windows installer.\"","\tpython win_installer.py 32","","win64: check","\t@echo \"\\nBuilding 64bit Windows installer.\"","\tpython win_installer.py 64"],"stylingDirectives":null,"colorizedLines":null,"csv":null,"csvError":null,"dependabotInfo":{"showConfigurationBanner":false,"configFilePath":null,"networkDependabotPath":"/andreagrandi/mu/network/updates","dismissConfigurationNoticePath":"/settings/dismiss-notice/dependabot_configuration_notice","configurationNoticeDismissed":null},"displayName":"Makefile","displayUrl":"https://github.com/andreagrandi/mu/blob/spanish/Makefile?raw=true","headerInfo":{"blobSize":"3.33 KB","deleteTooltip":"You must be signed in to make or propose changes","editTooltip":"You must be signed in to make or propose changes","ghDesktopPath":"https://desktop.github.com","isGitLfs":false,"onBranch":true,"shortPath":"abf3213","siteNavLoginPath":"/login?return_to=https%3A%2F%2Fgithub.com%2Fandreagrandi%2Fmu%2Fblob%2Fspanish%2FMakefile","isCSV":false,"isRichtext":false,"toc":null,"lineInfo":{"truncatedLoc":"95","truncatedSloc":"79"},"mode":"file"},"image":false,"isCodeownersFile":null,"isPlain":false,"isValidLegacyIssueTemplate":false,"issueTemplate":null,"discussionTemplate":null,"language":"Makefile","languageID":220,"large":false,"planSupportInfo":{"repoIsFork":null,"repoOwnedByCurrentUser":null,"requestFullPath":"/andreagrandi/mu/blob/spanish/Makefile","showFreeOrgGatedFeatureMessage":null,"showPlanSupportBanner":null,"upgradeDataAttributes":null,"upgradePath":null},"publishBannersInfo":{"dismissActionNoticePath":"/settings/dismiss-notice/publish_action_from_dockerfile","releasePath":"/andreagrandi/mu/releases/new?marketplace=true","showPublishActionBanner":false},"rawBlobUrl":"https://github.com/andreagrandi/mu/raw/refs/heads/spanish/Makefile","renderImageOrRaw":false,"richText":null,"renderedFileInfo":null,"shortPath":null,"symbolsEnabled":true,"tabSize":8,"topBannersInfo":{"overridingGlobalFundingFile":false,"globalPreferredFundingPath":null,"showInvalidCitationWarning":false,"citationHelpUrl":"https://docs.github.com/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/about-citation-files","actionsOnboardingTip":null},"truncated":false,"viewable":true,"workflowRedirectUrl":null,"symbols":{"timed_out":false,"not_analyzed":true,"symbols":[]}},"copilotInfo":null,"copilotAccessAllowed":false,"modelsAccessAllowed":false,"modelsRepoIntegrationEnabled":false,"csrf_tokens":{"/andreagrandi/mu/branches":{"post":"ue-MR_OskEC4jw3m5L2_fahBU0dzgo9WTYHgSi07dRo6dml9OjOgbn7FUEFhglAqW7Vsc-E9tGfZljLDuLJvgw"},"/repos/preferences":{"post":"NpcqD90FvxawfAGYw_ZKAQsD9B7Wa4_7pi5HrTZanKBqSkMU42b3tD9qUsm6fYqm4Bu152AIJE5nqPNAFDHnEQ"}}},"title":"mu/Makefile at spanish · andreagrandi/mu","appPayload":{"helpUrl":"https://docs.github.com","findFileWorkerPath":"/assets-cdn/worker/find-file-worker-263cab1760dd.js","findInFileWorkerPath":"/assets-cdn/worker/find-in-file-worker-1b17b3e7786a.js","githubDevUrl":null,"enabled_features":{"code_nav_ui_events":false,"react_blob_overlay":false,"accessible_code_button":true}}}
0