[arch-commits] Commit in lynx/repos/extra-x86_64 (3 files)

Pierre Schmitz pierre at archlinux.org
Thu Jul 19 16:44:49 UTC 2018


    Date: Thursday, July 19, 2018 @ 16:44:49
  Author: pierre
Revision: 329060

archrelease: copy trunk to extra-x86_64

Added:
  lynx/repos/extra-x86_64/PKGBUILD
    (from rev 329059, lynx/trunk/PKGBUILD)
Deleted:
  lynx/repos/extra-x86_64/PKGBUILD
  lynx/repos/extra-x86_64/lynx-2.8.8-openssl.patch

--------------------------+
 PKGBUILD                 |   89 ++++++++++++++++++++-------------------------
 lynx-2.8.8-openssl.patch |   11 -----
 2 files changed, 41 insertions(+), 59 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2018-07-19 16:44:40 UTC (rev 329059)
+++ PKGBUILD	2018-07-19 16:44:49 UTC (rev 329060)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Pierre Schmitz <pierre at archlinux.de>
-# Contributor: Douglas Soares de Andrade <douglas at archlinux.org>
-# Contributor: Tom Newsom <Jeepster at gmx.co.uk>
-
-pkgname=lynx
-pkgver=2.8.8
-_relver=${pkgver}rel.2
-pkgrel=5
-pkgdesc="A text browser for the World Wide Web"
-url="http://lynx.isc.org/"
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('openssl' 'libidn')
-backup=('etc/lynx.cfg')
-source=(http://invisible-mirror.net/archives/lynx/tarballs/${pkgname}${_relver}.tar.bz2{,.asc}
-        lynx-2.8.8-openssl.patch)
-sha256sums=('6980e75cf0d677fd52c116e2e0dfd3884e360970c88c8356a114338500d5bee7'
-            'SKIP'
-            '08a331c9fc07547f5a59c9b83077bf18ece0a6012d77a6f3e0dff2be27a07769')
-validpgpkeys=('0AFD1FFEEA2EA063B959ACDA5DDF8FB7688E31A6')
-
-prepare() {
-  cd ${srcdir}/${pkgname}${pkgver//./-}
-  patch -Np1 -i ../lynx-2.8.8-openssl.patch
-}
-  
-build() {
-  cd ${srcdir}/${pkgname}${pkgver//./-}
-  ./configure --prefix=/usr \
-    --sysconfdir=/etc \
-    --with-ssl=/usr \
-    --enable-nls \
-    --enable-ipv6 \
-    --mandir=/usr/share/man
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}${pkgver//./-}
-  make DESTDIR=${pkgdir} install
-
-  # FS#20404 - points to local help
-  sed -i -e "s|^HELPFILE.*$|HELPFILE:file:///usr/share/doc/lynx/lynx_help/lynx_help_main.html|" ${pkgdir}/etc/lynx.cfg
-
-  install -d ${pkgdir}/usr/share/doc/lynx
-  cp -rf lynx_help ${pkgdir}/usr/share/doc/lynx
-}

Copied: lynx/repos/extra-x86_64/PKGBUILD (from rev 329059, lynx/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2018-07-19 16:44:49 UTC (rev 329060)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Pierre Schmitz <pierre at archlinux.de>
+# Contributor: Douglas Soares de Andrade <douglas at archlinux.org>
+# Contributor: Tom Newsom <Jeepster at gmx.co.uk>
+
+pkgname=lynx
+pkgver=2.8.9
+_relver=${pkgver}rel.1
+pkgrel=1
+pkgdesc="A text browser for the World Wide Web"
+url="https://lynx.browser.org/"
+arch=('x86_64')
+license=('GPL')
+depends=('openssl' 'libidn')
+backup=('etc/lynx.cfg')
+source=(https://invisible-mirror.net/archives/lynx/tarballs/${pkgname}${_relver}.tar.bz2{,.asc})
+sha256sums=('387f193d7792f9cfada14c60b0e5c0bff18f227d9257a39483e14fa1aaf79595'
+            'SKIP')
+validpgpkeys=('C52048C0C0748FEE227D47A2702353E0F7E48EDB')
+  
+build() {
+  cd ${srcdir}/${pkgname}${_relver}
+  ./configure --prefix=/usr \
+    --sysconfdir=/etc \
+    --with-ssl=/usr \
+    --enable-nls \
+    --enable-ipv6 \
+    --mandir=/usr/share/man
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}${_relver}
+  make DESTDIR=${pkgdir} install
+
+  # FS#20404 - points to local help
+  sed -i -e "s|^HELPFILE.*$|HELPFILE:file:///usr/share/doc/lynx/lynx_help/lynx_help_main.html|" ${pkgdir}/etc/lynx.cfg
+
+  install -d ${pkgdir}/usr/share/doc/lynx
+  cp -rf lynx_help ${pkgdir}/usr/share/doc/lynx
+}

Deleted: lynx-2.8.8-openssl.patch
===================================================================
--- lynx-2.8.8-openssl.patch	2018-07-19 16:44:40 UTC (rev 329059)
+++ lynx-2.8.8-openssl.patch	2018-07-19 16:44:49 UTC (rev 329060)
@@ -1,11 +0,0 @@
---- lynx2-8-8/WWW/Library/Implementation/HTTP.c.orig	2017-03-16 09:24:30.608537810 +0000
-+++ lynx2-8-8/WWW/Library/Implementation/HTTP.c	2017-03-16 09:25:21.728457895 +0000
-@@ -720,7 +720,7 @@
- #elif SSLEAY_VERSION_NUMBER >= 0x0900
- #ifndef USE_NSS_COMPAT_INCL
- 	if (!try_tls) {
--	    handle->options |= SSL_OP_NO_TLSv1;
-+	    SSL_set_options(handle, SSL_OP_NO_TLSv1);
- #if OPENSSL_VERSION_NUMBER >= 0x0090806fL && !defined(OPENSSL_NO_TLSEXT)
- 	} else {
- 	    int ret = (int) SSL_set_tlsext_host_name(handle, ssl_host);



More information about the arch-commits mailing list