Compare commits

..

16 commits

Author SHA1 Message Date
Zdenek Dohnal
eae4b5cd79 - patchlevel 2068 2026-01-09 12:59:59 +01:00
Zdenek Dohnal
676006795a - patchlevel 1999 2025-12-19 07:07:16 +01:00
Zdenek Dohnal
07501bca7a - patchlevel 1972 2025-12-12 07:37:49 +01:00
Zdenek Dohnal
6bbeb2d904 - patchlevel 1952 2025-12-05 06:58:19 +01:00
Zdenek Dohnal
19faaa187e F41 is EOL 2025-11-28 07:56:40 +01:00
Zdenek Dohnal
fef106b849 - patchlevel 1914 2025-11-14 10:30:03 +01:00
Zdenek Dohnal
e847a50297 - patchlevel 1888 2025-10-31 08:34:06 +01:00
Zdenek Dohnal
c8b04c80dd vimrc: Use RestoreCursor from defaults.vim (fedora#2404651)
Fixes setting the cursor at the start of file when committing in Git
2025-10-31 08:08:06 +01:00
Zdenek Dohnal
71c059abc5 - patchlevel 1863 2025-10-17 09:15:06 +02:00
Zdenek Dohnal
5ee4f534a6 Remove make depend workaround 2025-10-17 08:59:22 +02:00
Zdenek Dohnal
0c4cede346 Fix building without wayland
Currently, due broken dependency generation, wayland support is
hardcoded in Makefile. We have to run dependency generation and auto
generation at every `make` call.

Additionally, function prototypes are now generated by python3 and its
clang module during build - added buildrequires for it.
2025-10-10 11:42:54 +02:00
Zdenek Dohnal
61cfcde9de - patchlevel 1845 2025-10-10 07:17:01 +02:00
Zdenek Dohnal
ae2db1ff1d - patchlevel 1818 2025-10-03 10:25:29 +02:00
Zdenek Dohnal
c8b1dc9498 remove XPM support - GVim icons work without it 2025-09-29 18:21:43 +02:00
Zdenek Dohnal
07b3394cbc - patchlevel 1775 2025-09-19 08:58:02 +02:00
Zdenek Dohnal
bc2a0c97cc Restore lost --remote-tab... functionality on wayland (fedora#2393716) 2025-09-10 15:01:43 +02:00
3 changed files with 21 additions and 7 deletions

View file

@ -1,12 +1,12 @@
#!/bin/bash
debug=""
#debug="echo "
branches=( "rawhide" "f43" "f42" "f41" )
releases=( "fc44" "fc43" "fc42" "fc41" )
branches=( "rawhide" "f43" "f42" )
releases=( "fc44" "fc43" "fc42" )
# the first bodhi enabled release is the last without \| - all
# others need to have \|
regexps=( "fc44" "fc43" "\|fc42" "\|fc41" )
bodhi_enabled=( "0" "1" "1" "1" )
regexps=( "fc44" "fc43" "\|fc42" )
bodhi_enabled=( "0" "1" "1" )
needs_update=()
#releases_regexp=fc28\\\|fc27\\\|fc28

View file

@ -122,6 +122,10 @@ BuildRequires: make
# screen handling library
BuildRequires: ncurses-devel
# for building function prototypes
BuildRequires: python3
BuildRequires: python3-clang
# for python plugin
BuildRequires: python3-devel
@ -581,6 +585,9 @@ cp -f %{SOURCE7} %{buildroot}/%{_datadir}/%{name}/vimfiles/template.spec
rm -f README*.info
cd src
# related to the issue with `make depend`, auto/osdef.h
# has to be generated
make auto/osdef.h auto/gui_gtk_gresources.h auto/wayland/wlr-data-control-unstable-v1.h
# Adding STRIP=/bin/true, because Vim wants to strip the binaries by himself
# and put the stripped files into correct dirs. Build system (koji/brew)
# does it for us, so there is no need to do it in Vim
@ -1009,6 +1016,9 @@ mkdir -p %{buildroot}/%{_datadir}/fish/vendor_functions.d/
* Fri Oct 17 2025 Zdenek Dohnal <zdohnal@redhat.com> - 2:9.1.1863-1
- patchlevel 1863
* Fri Oct 10 2025 Zdenek Dohnal <zdohnal@redhat.com> - 2:9.1.1845-1
- patchlevel 1845
* Fri Oct 03 2025 Zdenek Dohnal <zdohnal@redhat.com> - 2:9.1.1818-1
- patchlevel 1818

10
vimrc
View file

@ -54,10 +54,14 @@ if has("autocmd")
" In text files, always limit the width of text to 78 characters
" autocmd BufRead *.txt set tw=78
" When editing a file, always jump to the last cursor position
" (taken from Vim's defaults.vim)
autocmd BufReadPost *
\ if line("'\"") > 0 && line ("'\"") <= line("$") |
\ exe "normal! g'\"" |
\ endif
\ let line = line("'\"")
\ | if line >= 1 && line <= line("$") && &filetype !~# 'commit'
\ && index(['xxd', 'gitrebase', 'tutor'], &filetype) == -1
\ && !&diff
\ | execute "normal! g`\""
\ | endif
" don't write swapfile on most commonly used directories for NFS mounts or USB sticks
autocmd BufNewFile,BufReadPre /media/*,/run/media/*,/mnt/* set directory=~/tmp,/var/tmp,/tmp
" start with spec file template