1
0
forked from pool/libtranscript

libtranscript 0.3.4

This commit is contained in:
Jan Engelhardt 2024-11-25 17:22:39 +01:00
parent e55daad0bb
commit 2823655146
7 changed files with 16 additions and 55 deletions

View File

@ -1,48 +0,0 @@
From de2a4b8974bf05c8dbf55a9cd20c45834164d5bf Mon Sep 17 00:00:00 2001
From: Jan Engelhardt <jengelh@inai.de>
Date: Sat, 2 Nov 2024 23:15:00 +0100
Subject: [PATCH] build: fix configure failure in gcc-14
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
References: https://github.com/gphalkes/transcript/pull/1
```
$ ./configure
Checking for opendir/readdir/closedir/dirent.h/stdint.h... no
!! Some required functionality is not available. See config.log for details.
$ cat config.log
.config.c:12:9: error: implicit declaration of function puts [-Wimplicit-function-declaration]
// once the right prototype is in view:
.config.c:13:27: error: passing argument 1 of puts makes pointer from integer without a cast [-Wint-conversion]
```
---
dist/config.pkg | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/dist/config.pkg b/dist/config.pkg
index e2f1d64..0ecd653 100644
--- a/config.pkg
+++ b/config.pkg
@@ -66,6 +66,7 @@ config() {
#include <sys/types.h>
#include <stdint.h>
#include <dirent.h>
+#include <stdio.h>
int main(int argc, char *argv[]) {
DIR *dir;
@@ -74,7 +75,7 @@ int main(int argc, char *argv[]) {
dir = opendir(".");
entry = readdir(dir);
- puts(entry->d_name[0]);
+ puts(entry->d_name);
closedir(dir);
return 0;
}
--
2.47.0

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1f8c19f257da5d6fad0ed9a7e5bd2442819e910a19907c38e115116a3955f5fa
size 1960626

Binary file not shown.

BIN
libtranscript-0.3.4.tar.bz2 (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Mon Nov 25 00:29:31 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
- Update to release 0.3.4
* GCC 14 support
- Delete 0001-build-fix-configure-failure-in-gcc-14.patch (merged)
-------------------------------------------------------------------
Sat Nov 2 22:22:48 UTC 2024 - Jan Engelhardt <jengelh@inai.de>

View File

@ -1,7 +1,7 @@
#
# spec file for package libtranscript
#
# Copyright (c) 2019 SUSE LLC
# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -18,7 +18,7 @@
Name: libtranscript
%define lname libtranscript1
Version: 0.3.3
Version: 0.3.4
Release: 0
Summary: A character set conversion library
License: GPL-3.0-only
@ -28,7 +28,6 @@ URL: https://os.ghalkes.nl/libtranscript.html
Source: https://os.ghalkes.nl/dist/%name-%version.tar.bz2
Source2: https://os.ghalkes.nl/dist/%name-%version.tar.bz2.sig
Source3: %name.keyring
Patch1: 0001-build-fix-configure-failure-in-gcc-14.patch
BuildRequires: fdupes
BuildRequires: gettext-tools
BuildRequires: libtool
@ -63,7 +62,10 @@ applications that want to make use of libtranscript.
%build
export CC=gcc
%configure --docdir="%_docdir/%name"
# not autoconf :-/
# includedir intentional, cf. bugzilla.opensuse.org/795968
./configure --prefix="%_prefix" --includedir="%_includedir/transcript" \
--libdir="%_libdir" --docdir="%_docdir/%name"
%make_build
%install