public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-text/wv/, app-text/wv/files/
@ 2024-06-08  9:38 Florian Schmaus
  0 siblings, 0 replies; 2+ messages in thread
From: Florian Schmaus @ 2024-06-08  9:38 UTC (permalink / raw
  To: gentoo-commits

commit:     6607bbc3810bc50e801efe8cf9d13cd33ec4916d
Author:     Brahmajit Das <brahmajit.xyz <AT> gmail <DOT> com>
AuthorDate: Tue Feb 20 18:36:01 2024 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Sat Jun  8 09:37:56 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6607bbc3

app-text/wv: Fix incompatible function pointer types assigning

Closes: https://bugs.gentoo.org/883207
Closes: https://bugs.gentoo.org/921570
Signed-off-by: Brahmajit Das <brahmajit.xyz <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/35446
Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>

 app-text/wv/files/wv-1.2.9-gcc14-build-fix.patch | 22 ++++++++
 app-text/wv/wv-1.2.9-r4.ebuild                   | 68 ++++++++++++++++++++++++
 2 files changed, 90 insertions(+)

diff --git a/app-text/wv/files/wv-1.2.9-gcc14-build-fix.patch b/app-text/wv/files/wv-1.2.9-gcc14-build-fix.patch
new file mode 100644
index 000000000000..ea3a0649bc38
--- /dev/null
+++ b/app-text/wv/files/wv-1.2.9-gcc14-build-fix.patch
@@ -0,0 +1,22 @@
+Bug: https://bugs.gentoo.org/921570
+Bug: https://bugs.gentoo.org/883207
+--- a/wvConfig.c
++++ b/wvConfig.c
+@@ -158,7 +158,7 @@ wvReleaseStateData (state_data * data)
+ 
+ 
+ static void
+-exstartElement (void *userData, const char *name, const char **atts)
++exstartElement (void *userData, const unsigned char *name, const unsigned char **atts)
+ {
+     unsigned int token_type;
+     expand_data *mydata = (expand_data *) userData;
+@@ -3371,7 +3371,7 @@ wvendElement (void *userData, const XML_Char *name)
+ }
+ 
+ static void
+-exendElement (void *userData, const char *name)
++exendElement (void *userData, const unsigned char *name)
+ {
+     /*
+        expand_data *mydata = (expand_data *)userData;

diff --git a/app-text/wv/wv-1.2.9-r4.ebuild b/app-text/wv/wv-1.2.9-r4.ebuild
new file mode 100644
index 000000000000..4f6cf22d4f1e
--- /dev/null
+++ b/app-text/wv/wv-1.2.9-r4.ebuild
@@ -0,0 +1,68 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="Tool for conversion of MSWord doc and rtf files to something readable"
+HOMEPAGE="http://wvware.sourceforge.net/"
+SRC_URI="http://abiword.org/downloads/${PN}/${PV}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-solaris"
+IUSE="tools wmf"
+
+RDEPEND="
+	>=dev-libs/glib-2:2
+	>=gnome-extra/libgsf-1.13:=
+	sys-libs/zlib
+	media-libs/libpng:0=
+	dev-libs/libxml2:2
+	tools? (
+		app-text/texlive-core
+		dev-texlive/texlive-latex
+	)
+	wmf? ( >=media-libs/libwmf-0.2.2 )"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+PATCHES=(
+	"${FILESDIR}"/${P}-format-security.patch
+	"${FILESDIR}"/${P}-C99-decls.patch
+	"${FILESDIR}"/${P}-gcc14-build-fix.patch
+)
+
+src_prepare() {
+	default
+
+	# remove -ansi flag, since it disables POSIX
+	# function declarations (bug #874396)
+	sed -i -e 's/-ansi//' configure || die
+
+	if ! use tools; then
+		sed -i -e '/bin_/d' GNUmakefile.am || die
+		sed -i -e '/SUBDIRS/d' GNUmakefile.am || die
+		sed -i -e '/\/GNUmakefile/d' configure.ac || die
+		sed -i -e '/wv[[:upper:]]/d' configure.ac || die
+		sed -i -e 's/-ansi//' configure.ac || die
+
+		# automake-1.13 fix, bug #467620
+		sed -i -e 's|AM_CONFIG_HEADER|AC_CONFIG_HEADERS|g' configure.ac || die
+
+		eautoreconf
+	fi
+}
+
+src_configure() {
+	econf $(use_with wmf libwmf)
+}
+
+src_install() {
+	default
+	find "${ED}" -name '*.la' -delete || die
+
+	rm -f "${ED}"/usr/share/man/man1/wvConvert.1 || die
+	use tools && dosym wvWare.1 /usr/share/man/man1/wvConvert.1
+}


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-text/wv/, app-text/wv/files/
@ 2024-08-27  8:25 Pacho Ramos
  0 siblings, 0 replies; 2+ messages in thread
From: Pacho Ramos @ 2024-08-27  8:25 UTC (permalink / raw
  To: gentoo-commits

commit:     95cd17a35eee9b5231c985a4504fa8ed147785ae
Author:     Vilius Sutkus '89 <Vilius <AT> ViliusSutkus89 <DOT> com>
AuthorDate: Tue Aug 20 13:44:10 2024 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Tue Aug 27 08:24:49 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95cd17a3

app-text/wv: Add gsf-doc-meta-data.patch

Signed-off-by: Vilius Sutkus '89 <Vilius <AT> ViliusSutkus89.com>
Closes: https://github.com/gentoo/gentoo/pull/38218
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>

 app-text/wv/files/wv-1.2.9-gsf-doc-meta-data.patch | 11 +++++++++++
 app-text/wv/wv-1.2.9-r4.ebuild                     |  1 +
 2 files changed, 12 insertions(+)

diff --git a/app-text/wv/files/wv-1.2.9-gsf-doc-meta-data.patch b/app-text/wv/files/wv-1.2.9-gsf-doc-meta-data.patch
new file mode 100644
index 000000000000..64aa7576224a
--- /dev/null
+++ b/app-text/wv/files/wv-1.2.9-gsf-doc-meta-data.patch
@@ -0,0 +1,11 @@
+Bug: https://bugs.gentoo.org/936163
+--- wvSummary.c
++++ wvSummary.c	2024-08-20 16:14:11.260000000 +0300
+@@ -33,6 +33,7 @@
+ #include <gsf/gsf-msole-utils.h>
+ #include <gsf/gsf-docprop-vector.h>
+ #include <gsf/gsf-meta-names.h>
++#include <gsf/gsf-doc-meta-data.h>
+ 
+ #include <stdio.h>
+ #include <stdlib.h>

diff --git a/app-text/wv/wv-1.2.9-r4.ebuild b/app-text/wv/wv-1.2.9-r4.ebuild
index 4f6cf22d4f1e..e0ca468a887f 100644
--- a/app-text/wv/wv-1.2.9-r4.ebuild
+++ b/app-text/wv/wv-1.2.9-r4.ebuild
@@ -32,6 +32,7 @@ PATCHES=(
 	"${FILESDIR}"/${P}-format-security.patch
 	"${FILESDIR}"/${P}-C99-decls.patch
 	"${FILESDIR}"/${P}-gcc14-build-fix.patch
+	"${FILESDIR}"/${P}-gsf-doc-meta-data.patch
 )
 
 src_prepare() {


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-08-27  8:25 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-08  9:38 [gentoo-commits] repo/gentoo:master commit in: app-text/wv/, app-text/wv/files/ Florian Schmaus
  -- strict thread matches above, loose matches on Subject: below --
2024-08-27  8:25 Pacho Ramos

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox