change ocurrences of ChangeLog to CHANGELOG

in commit 9b45103995 ChangeLog was renamed
to CHANGELOG ; but not all ocurrences of this file change in the code.
This commit is contained in:
Guillermo Reisch 2023-09-15 09:18:29 -03:00
parent 40a17ec4ed
commit 43bc6049c7
4 changed files with 5 additions and 5 deletions

2
dist/debian/rules vendored
View file

@ -24,7 +24,7 @@ override_dh_auto_install:
mv $(DESTDIR)/usr/share/m64py/m64py/m64py $(DESTDIR)/usr/share/m64py/m64py_run
override_dh_installchangelogs:
dh_installchangelogs ChangeLog
dh_installchangelogs CHANGELOG
override_dh_gencontrol:
dh_gencontrol -pm64py -u-v$(VERSION)-$(RELEASE)

View file

@ -2,7 +2,7 @@ Name: m64py
Homepage: http://m64py.sourceforge.net/
Bug-Database: https://github.com/mupen64plus/mupen64plus-ui-python/issues
Bug-Submit: https://github.com/mupen64plus/mupen64plus-ui-python/issues/new
Changelog: https://github.com/mupen64plus/mupen64plus-ui-python/blob/master/ChangeLog
Changelog: https://github.com/mupen64plus/mupen64plus-ui-python/blob/master/CHANGELOG
Contact: mupen64plus@googlegroups.com
Repository: https://github.com/mupen64plus/mupen64plus-ui-python.git
Repository-Browse: https://github.com/mupen64plus/mupen64plus-ui-python

View file

@ -36,7 +36,7 @@ Source: "m64py\PyQt5\*"; DestDir: "{app}\PyQt5"; Flags: recursesubdirs
Source: "m64py\AUTHORS"; DestDir: "{app}";
Source: "m64py\COPYING"; DestDir: "{app}";
Source: "m64py\README.rst"; DestDir: "{app}";
Source: "m64py\ChangeLog"; DestDir: "{app}";
Source: "m64py\CHANGELOG"; DestDir: "{app}";
[Icons]
Name: {group}\M64Py; Filename: {app}\m64py.exe; Tasks: desktopicon;

View file

@ -116,7 +116,7 @@ class BuildDmg(setuptools.Command):
if not os.path.exists(dest_path):
os.mkdir(dest_path)
shutil.move(os.path.join(self.dist_dir, "M64Py.app"), dest_path)
for file_name in ["AUTHORS", "ChangeLog", "COPYING", "LICENSES", "README.rst"]:
for file_name in ["AUTHORS", "CHANGELOG", "COPYING", "LICENSES", "README.rst"]:
shutil.copy(os.path.join(BASE_DIR, file_name), dest_path)
shutil.copy(os.path.join(BASE_DIR, "test", "mupen64plus.v64"), dest_path)
@ -229,7 +229,7 @@ class BuildExe(setuptools.Command):
shutil.copy(os.path.join(rar_dir, "UnRAR.exe"), dest_path)
shutil.copy(os.path.join(rar_dir, "license.txt"),
os.path.join(dest_path, "doc", "unrar-license.txt"))
for file_name in ["AUTHORS", "ChangeLog", "COPYING", "LICENSES", "README.rst"]:
for file_name in ["AUTHORS", "CHANGELOG", "COPYING", "LICENSES", "README.rst"]:
shutil.copy(os.path.join(BASE_DIR, file_name), dest_path)
def remove_files(self):