commit 80b78d5d5765b8b7ef6f4810009378bfad2682b1
Author: Witold Filipczyk <[email protected]>
Date:   Tue Dec 26 13:02:24 2023 +0100

    - updated to 0.17.0 (bconds curl and libcss)
    - note that HOME_ETC was dropped, use ~/.config/elinks/ , $ELINKS_CONFDIR 
or $XDG_CONFIG_HOME instead

 elinks.spec  | 24 ++++++++++++++++--------
 gemini.patch | 19 -------------------
 2 files changed, 16 insertions(+), 27 deletions(-)
---
diff --git a/elinks.spec b/elinks.spec
index d0102b7..0b9621e 100644
--- a/elinks.spec
+++ b/elinks.spec
@@ -2,6 +2,7 @@
 # Conditional build:
 # - protocols
 %bcond_without bittorrent      # BitTorrent protocol support
+%bcond_without curl            # FTPes, SFTP, HTTP/2, etc.
 %bcond_without fsp             # FSP support
 %bcond_without idn             # Internation Domain Names support
 %bcond_without ipv6            # IPv6 support
@@ -12,6 +13,7 @@
 %bcond_without cgi             # Local CGI support
 %bcond_without brotli          # Brotli compression support
 %bcond_without js              # experimental (yet quite usable) JavaScript 
support (using quickjs)
+%bcond_without libcss          # libcss support
 %bcond_with    lzma            # LZMA support (old API, incompatible with 
xz-libs)
 %bcond_without zstd    # zstd compression support
 # - scripting
@@ -33,23 +35,27 @@
 %undefine      with_openssl
 %endif
 
+%if %{with js}
+%define                with_libcss     1
+%endif
+
 Summary:       Experimantal Links (text WWW browser)
 Summary(es.UTF-8):     El links es un browser para modo texto, similar a lynx
 Summary(pl.UTF-8):     Eksperymentalny Links (tekstowa przeglądarka WWW)
 Summary(pt_BR.UTF-8):  O links é um browser para modo texto, similar ao lynx
 Name:          elinks
-Version:       0.16.1.1
-Release:       2
+Version:       0.17.0
+Release:       1
 Epoch:         1
 License:       GPL v2
 Group:         Applications/Networking
 Source0:       
https://github.com/rkd77/elinks/releases/download/v%{version}/%{name}-%{version}.tar.xz
-# Source0-md5: 09ba9bf3f222da893a830f6e27a6cc3d
+# Source0-md5: 6bb43cd9037ad83cded1df85d95dbd73
 Source1:       %{name}.desktop
 Source2:       links.png
-Patch0:                gemini.patch
 URL:           http://www.elinks.cz/
 BuildRequires: bzip2-devel
+%{?with_curl:BuildRequires:    curl-devel}
 BuildRequires: expat-devel
 %{?with_fsp:BuildRequires:     fsplib-devel}
 BuildRequires: gettext-tools
@@ -57,11 +63,12 @@ BuildRequires:      git-core
 %{?with_gnutls:BuildRequires:  gnutls-devel >= 1.2.5}
 BuildRequires: gpm-devel
 %{?with_guile:BuildRequires: guile-devel}
+%{?with_libcss:BuildRequires:  libCSS-devel >= 0.9.1}
 BuildRequires: libstdc++-devel
-%{?with_js:BuildRequires:      libxml++5-devel >= 5.0.1-2}
 BuildRequires: rpmbuild(macros) >= 1.736
 %{?with_js:BuildRequires:      sqlite3-devel}
 %{?with_brotli:BuildRequires:  libbrotli-devel}
+%{?with_js:BuildRequires:      libdom-devel >= 0.4.1}
 %{?with_libevent:BuildRequires:        libevent-devel}
 %{?with_idn:BuildRequires:     libidn-devel}
 %{?with_smb:BuildRequires:     libsmbclient-devel}
@@ -114,7 +121,6 @@ keepalive.
 
 %prep
 %setup -q
-%patch0 -p1
 
 %build
 %meson build \
@@ -155,7 +161,9 @@ keepalive.
        %{?with_ruby:-Druby=true} \
        %{?with_js:-Dquickjs=true} \
        %{?with_x:-Dx=true} \
-       %{?with_libevent:-Dlibevent=true}
+       %{?with_libevent:-Dlibevent=true} \
+       %{!?with_curl:-Dlibcurl=false} \
+       %{!?with_libcss:-Dlibcss=false}
 
 %ninja_build -C build
 
@@ -173,7 +181,7 @@ cp -a %{SOURCE2} $RPM_BUILD_ROOT%{_pixmapsdir}/%{name}.png
 %{?with_lua:install contrib/lua/*.lua $RPM_BUILD_ROOT%{_sysconfdir}}
 sed -i -e 's|bin/lua|bin/lua5.3|g' $RPM_BUILD_ROOT%{_sysconfdir}/*lua
 
-install AUTHORS BUGS ChangeLog NEWS README SITES TODO 
$RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}
+install AUTHORS BUGS ChangeLog NEWS README.md SITES TODO 
$RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}
 install contrib/{keybind*,wipe-out-ssl*,lua/elinks-remote} 
contrib/conv/{*awk,*.pl,*.sh} $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}
 
 %find_lang %{name}
diff --git a/gemini.patch b/gemini.patch
deleted file mode 100644
index eb0f376..0000000
--- a/gemini.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-commit 3ff58b17e4272c18139db62af298ea3cc2450b7a
-Author: Witold Filipczyk <[email protected]>
-Date:   Tue Jun 27 16:06:58 2023 +0200
-
-    [gemini] Missing LIs. Refs #242
-
-diff --git a/src/document/gemini/renderer.c b/src/document/gemini/renderer.c
-index 7fbaf5a1..2702c235 100644
---- a/src/document/gemini/renderer.c
-+++ b/src/document/gemini/renderer.c
-@@ -180,6 +180,8 @@ render_gemini_document(struct cache_entry *cached, struct 
document *document,
-                                                       in_list = 1;
-                                                       add_to_string(&html, 
"<ul>\n");
-                                                       
add_string_to_string(&html, &html_line);
-+                                              } else {
-+                                                      
add_string_to_string(&html, &html_line);
-                                               }
-                                       } else if (in_list) {
-                                               in_list = 0;
================================================================

---- gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/elinks.git/commitdiff/80b78d5d5765b8b7ef6f4810009378bfad2682b1

_______________________________________________
pld-cvs-commit mailing list
[email protected]
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit

Reply via email to