Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SVN to GIT #5

Open
wants to merge 52 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
52 commits
Select commit Hold shift + click to select a range
804dd57
remove svn dependencies: change variables, different tool for changel…
matyaskopp May 27, 2024
aa60ed6
remove endline from version #3
matyaskopp May 27, 2024
486180a
update git ignore and add empty directories #3
matyaskopp May 28, 2024
490a9bb
fix paths in package patches #3
matyaskopp May 28, 2024
d37101b
remove temporary archive, fix version comment #3
matyaskopp May 28, 2024
4ea449e
remove svn dependency from dep package build #3
matyaskopp May 28, 2024
27441e9
remove svn dependency from rpm #3
matyaskopp May 29, 2024
1ee67d4
unix_install is not a part of repository - removing "svn update"(/"gi…
matyaskopp May 29, 2024
674667d
update main documentation file (#3)
matyaskopp May 29, 2024
93ddd87
changelog script clean up #3
matyaskopp May 29, 2024
1e9d524
remove repository url from update_version #3
matyaskopp May 29, 2024
6abbe40
change SVN_VERSION placeholder to DEV_VERSION #3
matyaskopp May 29, 2024
a4514b7
use git as a source for unix_install folder #3
matyaskopp May 29, 2024
dd621bc
fix version in documentation patching #3
matyaskopp May 29, 2024
9496fa2
fix comments, remove svn2cl #3
matyaskopp May 29, 2024
6ba44e0
change setting for mac #3
matyaskopp Jun 12, 2024
30cded4
fix gitignore #3
matyaskopp Jun 14, 2024
2f3bfe8
force using -std=c89 when compiling Tk::JPEG on macOS #8
matyaskopp Jun 14, 2024
4620b87
add Tk::JPEG patch to configuration #8
matyaskopp Jun 14, 2024
ff103fc
extend gitignore
matyaskopp Sep 30, 2024
8fddd1c
use perlbrew in mac releaser (the default perlbrew perl !!!)
matyaskopp Sep 30, 2024
d09986d
add missing prerequisity for Test-Simple-1.302204
matyaskopp Sep 30, 2024
aa238f3
add missing prerequisity for Tk-CodeText-0.53
matyaskopp Sep 30, 2024
f9fb6f4
add missing prerequisity for Tk-CodeText-0.53
matyaskopp Sep 30, 2024
2102913
add missing prerequisity for Syntax-Kamelon-0.25
matyaskopp Sep 30, 2024
02256c4
add missing prerequisity for XML-TokeParser-0.05
matyaskopp Sep 30, 2024
8aa7057
add missing prerequisity for Syntax-Kamelon-0.25 and XML-Parser-2.47
matyaskopp Sep 30, 2024
dcc5c56
add missing prerequisity for Template-Toolkit-3.102,XML-Parser-2.47,T…
matyaskopp Sep 30, 2024
4659f4b
add missing prerequisity for Tk-ColorEntry-0.08
matyaskopp Sep 30, 2024
a3fb8b8
add missing prerequisity for Convert-Color-0.18
matyaskopp Sep 30, 2024
bc41af8
add missing prerequisity for XML-LibXML-2.0210
matyaskopp Sep 30, 2024
4ba7cbd
add missing prerequisity for Alien-Build-2.83
matyaskopp Sep 30, 2024
b72aad7
add missing prerequisity for XML-LibXML-2.0210
matyaskopp Sep 30, 2024
5bdba74
add missing prerequisity for Alien-Libxml2-0.19
matyaskopp Sep 30, 2024
79df812
add missing prerequisity for Alien-Build-Plugin-Download-GitLab-0.01
matyaskopp Oct 1, 2024
afdd3f4
add missing prerequisity for URI-5.29
matyaskopp Oct 1, 2024
69217a3
add missing prerequisity for Graph-0.9732
matyaskopp Oct 1, 2024
42e89c0
add missing prerequisity for Test-Fatal-0.017
matyaskopp Oct 1, 2024
c124607
add missing prerequisity for HTTP-Message-6.46
matyaskopp Oct 1, 2024
3e8736a
add missing prerequisity for Clone-0.47
matyaskopp Oct 1, 2024
ca163de
update LWP::UserAgent version
matyaskopp Oct 1, 2024
47ecc1e
prerequisities reorder
matyaskopp Oct 2, 2024
396db70
prerequisities reorder
matyaskopp Oct 2, 2024
ef5a4c1
prerequisities reorder
matyaskopp Oct 2, 2024
9c267e8
add missing prerequisity for libwww-perl-6.77 and Alien-Build-2.83
matyaskopp Oct 2, 2024
493ace2
prerequisities reorder
matyaskopp Oct 2, 2024
ff83555
prerequisities reorder
matyaskopp Oct 2, 2024
961b979
prerequisities reorder
matyaskopp Oct 2, 2024
28491c4
add missing prerequisity for Alien-Build-2.83
matyaskopp Oct 2, 2024
4493e6c
add missing prerequisity for HTML-Parser-3.83
matyaskopp Oct 2, 2024
2d6ea52
add info prints
matyaskopp Oct 18, 2024
9581aa8
Merge branch 'svn2git' of github.com:ufal/TrEd into svn2git
Oct 18, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions tred_refactored/devel/update_version.pl
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
die "Did not find $version_file!" if !-f $version_file;

my $git_date = `git log -1 --date=format:"\%Y\%m\%d" --format="%ad"`;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Backslashes not needed.

chomp $git_date;
my $VER = '3.' . $git_date;

print $VER,"\n" unless $opts{'quiet'};
Expand Down