/dports/devel/checkbashisms/devscripts-2.21.4/scripts/ |
H A D | debchange.pl | 618 until (-f $changelog_path) { 628 if (!-w $changelog_path) { 632 unless (-f $changelog_path) { 638 if (!-w $changelog_path) { 645 . (dirname $changelog_path) 648 if (-f $changelog_path) { 653 . (dirname $changelog_path) 784 if (-e "$changelog_path.dch") { 1121 open S, $changelog_path 1140 open O, ">$changelog_path.dch" [all …]
|
/dports/devel/ros-catkin_pkg/catkin_pkg-0.4.14/src/catkin_pkg/cli/ |
H A D | tag_changelog.py | 77 changelog_path = os.path.join(base_path, pkg_path, CHANGELOG_FILENAME) 78 if not os.path.exists(changelog_path): 81 changelog = get_changelog_from_path(changelog_path, package.name) 97 changelogs.append((package.name, changelog_path, changelog, forthcoming_label)) 106 for (pkg_name, changelog_path, changelog, forthcoming_label) in changelogs: 109 new_changelog_data.append((changelog_path, data)) 112 for (changelog_path, data) in new_changelog_data: 113 with open(changelog_path, 'wb') as f:
|
H A D | prepare_release.py | 330 changelog_path = os.path.join(pkg_path, CHANGELOG_FILENAME) 331 if not os.path.exists(changelog_path): 335 if has_changes(base_path, changelog_path, vcs_type): 336 local_modifications.append(changelog_path) 337 changelog = get_changelog_from_path(changelog_path, package.name) 344 … missing_changelogs_but_forthcoming[package.name] = (changelog_path, changelog, forthcoming_label)
|
H A D | generate_changelog.py | 89 changelog_path = os.path.join(base_path, pkg_path, CHANGELOG_FILENAME) 90 if not os.path.exists(changelog_path):
|
/dports/multimedia/openshot/openshot-qt-2.6.1/src/windows/ |
H A D | about.py | 50 def parse_changelog(changelog_path): argument 53 if not os.path.exists(changelog_path): 59 changelog_path, 'r', encoding=encoding_name 70 … log.warning('Failed to parse log file %s with encoding %s' % (changelog_path, encoding_name)) 74 def parse_new_changelog(changelog_path): argument 76 if not os.path.exists(changelog_path): 81 with codecs.open(changelog_path, 'r', encoding=encoding_name) as changelog_file: 86 log.debug("Parsed {} changelog lines from {}".format(len(matches), changelog_path)) 94 … log.debug('Failed to parse log file %s with encoding %s' % (changelog_path, encoding_name)) 97 log.warning("Parse error reading {}".format(changelog_path), exc_info=1)
|
/dports/devel/desktop-file-utils/desktop-file-utils-0.26/ |
H A D | changelog.py | 6 changelog_path = Path( variable 12 print('Writing changelog to {path}'.format(path=changelog_path)) 14 with open(changelog_path, 'w') as changelog_file:
|
/dports/lang/ruby26/ruby-2.6.9/gems/did_you_mean-1.3.0/doc/ |
H A D | changelog_generator.rb | 8 def initialize(repository, template_path: "CHANGELOG.md.erb", changelog_path: "CHANGELOG.md") 11 @changelog_path = changelog_path 18 File.open(changelog_path, 'w') do |file|
|
/dports/lang/parrot/parrot-8.1.0/tools/dev/ |
H A D | new_changelog_skeleton.pl | 11 my $changelog_path = './Changelog'; 43 my $original_lines = Parrot::BuildUtil::slurp_file($changelog_path); 76 open my $wfh, '>', $changelog_path;
|
/dports/net-im/telegram-desktop/tdesktop-3.2.5-full/Telegram/cmake/ |
H A D | generate_appdata_changelog.cmake | 7 function(generate_appdata_changelog target_name changelog_path appdata_path) 13 -c "${changelog_path}" 19 ${changelog_path}
|
/dports/devel/py-daemon/python-daemon-2.3.0/ |
H A D | version.py | 576 changelog_path = get_changelog_path(command.distribution) 577 if changelog_path is not None: 578 if os.path.exists(changelog_path): 617 self.changelog_path = None 628 if self.changelog_path is None: 629 self.changelog_path = get_changelog_path(self.distribution) 638 self.changelog_path) 672 changelog_path = get_changelog_path(self) 673 version_info = generate_version_info_from_changelog(changelog_path)
|
H A D | test_version.py | 1243 self.assertIs(instance.changelog_path, None) 1295 self.test_instance.changelog_path = None 1299 expected_changelog_path, self.test_instance.changelog_path) 1304 self.test_instance.changelog_path = prior_changelog_path 1308 expected_changelog_path, self.test_instance.changelog_path) 1371 self.fake_changelog_file_path = self.changelog_path 1424 self.test_instance.changelog_path = self.getUniqueString() 1425 return self.test_instance.changelog_path 1463 expected_changelog_path = self.test_instance.changelog_path
|
/dports/devel/ros-catkin_pkg/catkin_pkg-0.4.14/src/catkin_pkg/ |
H A D | package_version.py | 155 for pkg_name, (changelog_path, changelog, forthcoming_label) in changelogs.items(): 157 new_changelog_data[changelog_path] = data 159 for changelog_path, data in new_changelog_data.items(): 160 with open(changelog_path, 'wb') as f:
|
H A D | changelog_generator.py | 105 changelog_path = os.path.join(base_path, pkg_path, CHANGELOG_FILENAME) 106 if os.path.exists(changelog_path): 113 with open(changelog_path, 'wb') as f: 123 changelog_path = os.path.join(base_path, pkg_path, CHANGELOG_FILENAME) 124 with open(changelog_path, 'rb') as f: 127 with open(changelog_path, 'wb') as f:
|
/dports/security/vault/vault-1.8.2/vendor/github.com/apache/arrow/dev/release/ |
H A D | changelog.py | 210 def append_changelog(version, changelog_path): argument 213 with open(changelog_path, 'r') as f: 230 with open(changelog_path, 'w') as f: 244 changelog_path = sys.argv[3] variable 245 append_changelog(version, changelog_path)
|
/dports/net-im/telegram-desktop/tdesktop-3.2.5-full/Telegram/build/ |
H A D | changelog2appdata.py | 8 def parse_changelog(changelog_path): argument 12 with open(changelog_path, "r") as f: 69 parse_changelog(args.changelog_path),
|
/dports/devel/tla/tla-1.3.5/src/tla/libarch/ |
H A D | project-tree.c | 371 t_uchar * changelog_path = 0; in arch_finish_tree_commit() local 380 changelog_path = file_name_in_vicinity (0, tree_root, changelog_loc); in arch_finish_tree_commit() 381 changelog_dir = file_name_directory_file (0, changelog_path); in arch_finish_tree_commit() 384 safe_stat (changelog_path, &statb); in arch_finish_tree_commit() 403 safe_rename (changelog_tmp, changelog_path); in arch_finish_tree_commit() 407 lim_free (0, changelog_path); in arch_finish_tree_commit()
|
H A D | import.c | 312 t_uchar * changelog_path = 0; in arch_prepare_import_pristine() local 319 … changelog_path = file_name_in_vicinity (0, pristine_path, rel_peek_str (inventory, x, 0)); in arch_prepare_import_pristine() 321 safe_stat (changelog_path, &clstatb); in arch_prepare_import_pristine() 330 out_fd = safe_open (changelog_path, O_WRONLY | O_CREAT | O_TRUNC, clmode); in arch_prepare_import_pristine() 337 lim_free (0, changelog_path); in arch_prepare_import_pristine()
|
/dports/net/py-ripe.atlas.sagan/ripe.atlas.sagan-1.3.0/ |
H A D | setup.py | 22 changelog_path = os.path.join(os.path.dirname(__file__), "CHANGES.rst") variable 26 with open(changelog_path) as changelog:
|
/dports/net/kea/kea-2.0.1/doc/sphinx/ |
H A D | conf.py | 31 changelog_path = '../../ChangeLog' variable 42 with open(changelog_path) as changelog_file:
|
/dports/math/gap/gap-4.11.0/pkg/semigroups-3.2.3/libsemigroups/extern/fmt-5.3.0/support/ |
H A D | manage.py | 193 changelog_path = os.path.join(fmt_repo.dir, changelog) 195 changes, version = rst2md.convert(changelog_path) 206 for line in fileinput.input(changelog_path, inplace=True):
|
/dports/graphics/aseprite/aseprite-1.2.9/third_party/fmt/support/ |
H A D | manage.py | 190 changelog_path = os.path.join(fmt_repo.dir, changelog) 192 changes, version = rst2md.convert(changelog_path) 203 for line in fileinput.input(changelog_path, inplace=True):
|
/dports/emulators/yuzu/yuzu-0b47f7a46/externals/dynarmic/externals/fmt/support/ |
H A D | manage.py | 198 changelog_path = os.path.join(fmt_repo.dir, changelog) 200 changes, version = rst2md.convert(changelog_path) 211 for line in fileinput.input(changelog_path, inplace=True):
|
/dports/emulators/dolphin-emu/dolphin-3152428/Externals/fmt/support/ |
H A D | manage.py | 197 changelog_path = os.path.join(fmt_repo.dir, changelog) 199 changes, version = rst2md.convert(changelog_path) 210 for line in fileinput.input(changelog_path, inplace=True):
|
/dports/emulators/citra-qt5/citra-ac98458e0/externals/fmt/support/ |
H A D | manage.py | 222 changelog_path = os.path.join(fmt_repo.dir, changelog) 224 changes, version = rst2md.convert(changelog_path) 235 for line in fileinput.input(changelog_path, inplace=True):
|
/dports/emulators/citra-qt5/citra-ac98458e0/externals/dynarmic/externals/fmt/support/ |
H A D | manage.py | 198 changelog_path = os.path.join(fmt_repo.dir, changelog) 200 changes, version = rst2md.convert(changelog_path) 211 for line in fileinput.input(changelog_path, inplace=True):
|