/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Gustav Hartvigsson
  • Date: 2021-01-07 18:53:14 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20210107185314-px6c1yq11fudjmm6
Start removing Bazaar referencen.
* use breezy instead of bazaar for userappdata in windows installer
* Pointed AppSupportURL to Breezy-vcs.org instead of Canonical's bazaar site
* Removed AppUpdotesURL becouse there are no Windows builds
* Removed --msgid-bugs-address in xgettext command, as this is not their project.
* Updated --copyright-holder to reflect that this is now not a Canonical project.

Show diffs side-by-side

added added

removed removed

Lines of Context:
253
253
        $(PYTHON) setup.py build_ext -i -f $(PYTHON_BUILDFLAGS)
254
254
        $(PYTHON) setup.py py2exe > py2exe.log
255
255
        $(PYTHON) tools/win32/ostools.py copytodir tools/win32/start_brz.bat win32_brz.exe
256
 
        $(PYTHON) tools/win32/ostools.py copytodir tools/win32/bazaar.url win32_brz.exe
 
256
        $(PYTHON) tools/win32/ostools.py copytodir tools/win32/breezy.url win32_brz.exe
 
257
 
257
258
 
258
259
# win32 installer for brz.exe
259
260
installer: exe copy-docs
294
295
po/brz.pot: $(PYFILES) $(DOCFILES)
295
296
        $(PYTHON) ./brz export-pot --include-duplicates > po/brz.pot
296
297
        echo $(TRANSLATABLE_PYFILES) | xargs \
297
 
          xgettext --package-name "brz" \
298
 
          --msgid-bugs-address "<bazaar@canonical.com>" \
299
 
          --copyright-holder "Canonical" \
 
298
          xgettext --package-name "bzr" \
 
299
          --copyright-holder "Canonical Ltd., Breezy Team" \
300
300
          --from-code ISO-8859-1 --join --sort-by-file --add-comments=i18n: \
301
301
          -d bzr -p po -o brz.pot
302
302