commit
62dc147760
@ -0,0 +1,2 @@
|
|||||||
|
SOURCES/Tk-804.036.tar.gz
|
||||||
|
SOURCES/perl-Tk-debian.patch.gz
|
@ -0,0 +1,2 @@
|
|||||||
|
fbb27fdaf21c38e680f37297e26fc6aa2ca0d754 SOURCES/Tk-804.036.tar.gz
|
||||||
|
219fc1765a7868e00ed86b6778e46c67f95ae0c1 SOURCES/perl-Tk-debian.patch.gz
|
@ -0,0 +1,46 @@
|
|||||||
|
From c4cd966ed0997e2acb1fdcaf112c55a78ed50847 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Christopher Chavez <chrischavez@gmx.us>
|
||||||
|
Date: Mon, 19 Feb 2024 14:18:43 -0600
|
||||||
|
Subject: [PATCH] Avoid using incompatible pointer type for `old_warn`
|
||||||
|
|
||||||
|
See https://github.com/eserte/perl-tk/issues/98#issuecomment-1944054296
|
||||||
|
---
|
||||||
|
Event/Event.xs | 2 +-
|
||||||
|
tkGlue.c | 7 +------
|
||||||
|
2 files changed, 2 insertions(+), 7 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/Event/Event.xs b/Event/Event.xs
|
||||||
|
index 82bbb244..f2c95234 100644
|
||||||
|
--- a/Event/Event.xs
|
||||||
|
+++ b/Event/Event.xs
|
||||||
|
@@ -1532,7 +1532,7 @@ PROTOTYPES: DISABLE
|
||||||
|
BOOT:
|
||||||
|
{
|
||||||
|
#ifdef pWARN_NONE
|
||||||
|
- SV *old_warn = PL_curcop->cop_warnings;
|
||||||
|
+ void *old_warn = PL_curcop->cop_warnings;
|
||||||
|
PL_curcop->cop_warnings = pWARN_NONE;
|
||||||
|
#endif
|
||||||
|
newXS("Tk::Event::INIT", XS_Tk__Event_INIT, file);
|
||||||
|
diff --git a/tkGlue.c b/tkGlue.c
|
||||||
|
index 68a7e0fa..ca4a13aa 100644
|
||||||
|
--- a/tkGlue.c
|
||||||
|
+++ b/tkGlue.c
|
||||||
|
@@ -5543,13 +5543,8 @@ _((pTHX))
|
||||||
|
char *XEventMethods = "abcdfhkmopstvwxyABDEKNRSTWXY#";
|
||||||
|
char buf[128];
|
||||||
|
CV *cv;
|
||||||
|
-#if PERL_REVISION > 5 || (PERL_REVISION == 5 && PERL_VERSION >= 9)
|
||||||
|
-#define COP_WARNINGS_TYPE STRLEN*
|
||||||
|
-#else
|
||||||
|
-#define COP_WARNINGS_TYPE SV*
|
||||||
|
-#endif
|
||||||
|
#ifdef pWARN_NONE
|
||||||
|
- COP_WARNINGS_TYPE old_warn = PL_curcop->cop_warnings;
|
||||||
|
+ void *old_warn = PL_curcop->cop_warnings;
|
||||||
|
PL_curcop->cop_warnings = pWARN_NONE;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
--
|
||||||
|
2.43.0
|
||||||
|
|
@ -0,0 +1,45 @@
|
|||||||
|
From a26233c844c52f49ef9cca5f88dd9063aac60d0f Mon Sep 17 00:00:00 2001
|
||||||
|
From: Niko Tyni <ntyni@debian.org>
|
||||||
|
Date: Thu, 11 Jan 2024 18:28:58 +0000
|
||||||
|
Subject: [PATCH] Fix STRLEN vs int pointer confusion in
|
||||||
|
Tcl_GetByteArrayFromObj()
|
||||||
|
|
||||||
|
Perl 5.37.2, more precisely commit
|
||||||
|
|
||||||
|
https://github.com/Perl/perl5/commit/1ef9039bccbfe64f47f201b6cfb7d6d23e0b08a7
|
||||||
|
|
||||||
|
changed the implementation of SvPV() et al., breaking t/balloon.t,
|
||||||
|
t/canvas2.t and t/photo.t on big-endian 64-bit architectures such as
|
||||||
|
ppc64 and s390x because StringMatchGIF() no longer recognized GIF files.
|
||||||
|
|
||||||
|
This is because Tcl_GetByteArrayFromObj() was calling SvPV() with an int
|
||||||
|
pointer instead of a correct STRLEN pointer, and the new implementation
|
||||||
|
is more sensitive to this: it assigns the pointers as-is, resulting in
|
||||||
|
the int pointer pointing at the wrong end of the 64-bit length.
|
||||||
|
|
||||||
|
Other functions taking a length pointer, at least Tcl_GetStringFromObj()
|
||||||
|
already seem to do things correctly, so presumably this is not a
|
||||||
|
systematic issue.
|
||||||
|
---
|
||||||
|
objGlue.c | 5 ++++-
|
||||||
|
1 file changed, 4 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/objGlue.c b/objGlue.c
|
||||||
|
index d4927ea..dbd6a50 100644
|
||||||
|
--- a/objGlue.c
|
||||||
|
+++ b/objGlue.c
|
||||||
|
@@ -627,7 +627,10 @@ Tcl_GetByteArrayFromObj(Tcl_Obj * objPtr, int * lengthPtr)
|
||||||
|
sv_utf8_downgrade(objPtr, 0);
|
||||||
|
if (lengthPtr)
|
||||||
|
{
|
||||||
|
- return (unsigned char *) SvPV(objPtr, *lengthPtr);
|
||||||
|
+ STRLEN len;
|
||||||
|
+ unsigned char *s = SvPV(objPtr, len);
|
||||||
|
+ *lengthPtr = len;
|
||||||
|
+ return s;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
--
|
||||||
|
2.30.2
|
||||||
|
|
@ -0,0 +1,12 @@
|
|||||||
|
diff -up Tk-804.036/pTk/Xlib.t.orig Tk-804.036/pTk/Xlib.t
|
||||||
|
--- Tk-804.036/pTk/Xlib.t.orig 2024-02-15 10:07:51.542657507 +0100
|
||||||
|
+++ Tk-804.036/pTk/Xlib.t 2024-02-15 10:08:51.500167194 +0100
|
||||||
|
@@ -331,7 +331,7 @@ VFUNC(int,XIntersectRegion,V_XIntersectR
|
||||||
|
#endif /* !DO_X_EXCLUDE */
|
||||||
|
|
||||||
|
#ifndef XKeycodeToKeysym
|
||||||
|
-VFUNC(KeySym,XKeycodeToKeysym,V_XKeycodeToKeysym,_ANSI_ARGS_((Display *, unsigned int, int)))
|
||||||
|
+VFUNC(KeySym,XKeycodeToKeysym,V_XKeycodeToKeysym,_ANSI_ARGS_((Display *, KeyCode, int)))
|
||||||
|
#endif /* #ifndef XKeycodeToKeysym */
|
||||||
|
|
||||||
|
#ifndef XKeysymToString
|
@ -0,0 +1,12 @@
|
|||||||
|
diff -up Tk-804.036/pTk/mTk/generic/tkCanvText.c.orig Tk-804.036/pTk/mTk/generic/tkCanvText.c
|
||||||
|
--- Tk-804.036/pTk/mTk/generic/tkCanvText.c.orig 2024-02-16 13:50:00.966946199 +0100
|
||||||
|
+++ Tk-804.036/pTk/mTk/generic/tkCanvText.c 2024-02-16 13:50:26.060152547 +0100
|
||||||
|
@@ -1234,7 +1234,7 @@ GetTextIndex(interp, canvas, itemPtr, ob
|
||||||
|
* index. */
|
||||||
|
{
|
||||||
|
TextItem *textPtr = (TextItem *) itemPtr;
|
||||||
|
- size_t length;
|
||||||
|
+ int length;
|
||||||
|
int c;
|
||||||
|
TkCanvas *canvasPtr = (TkCanvas *) canvas;
|
||||||
|
Tk_CanvasTextInfo *textInfoPtr = textPtr->textInfoPtr;
|
@ -0,0 +1,81 @@
|
|||||||
|
Avoid implicit ints and implicit function declarations. These
|
||||||
|
language features have been removed from C in 1999. Future compilers
|
||||||
|
are likely to stop accepting these constructs by default.
|
||||||
|
|
||||||
|
Submitted upstream: <https://github.com/eserte/perl-tk/pull/91>
|
||||||
|
|
||||||
|
diff -ur Tk-804.036.orig/config/signedchar.c Tk-804.036/config/signedchar.c
|
||||||
|
--- Tk-804.036.orig/config/signedchar.c 2023-02-24 10:48:08.060779006 +0100
|
||||||
|
+++ Tk-804.036/config/signedchar.c 2023-02-24 10:48:58.315268904 +0100
|
||||||
|
@@ -1,4 +1,4 @@
|
||||||
|
-main()
|
||||||
|
+int main(void)
|
||||||
|
{
|
||||||
|
signed char x = 'a';
|
||||||
|
return (x - 'a');
|
||||||
|
diff -ur Tk-804.036.orig/config/unsigned.c Tk-804.036/config/unsigned.c
|
||||||
|
--- Tk-804.036.orig/config/unsigned.c 2023-02-24 10:48:08.054779067 +0100
|
||||||
|
+++ Tk-804.036/config/unsigned.c 2023-02-24 10:49:27.580971854 +0100
|
||||||
|
@@ -1,15 +1,16 @@
|
||||||
|
+#include <stdio.h>
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
char x[] = "\377";
|
||||||
|
if (x[0] > 0)
|
||||||
|
{
|
||||||
|
printf("char is unsigned type\n");
|
||||||
|
- exit(0);
|
||||||
|
+ return 0;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
printf("char is signed type\n");
|
||||||
|
- exit(1);
|
||||||
|
+ return 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
diff -ur Tk-804.036.orig/pTk/config/Hstrdup.c Tk-804.036/pTk/config/Hstrdup.c
|
||||||
|
--- Tk-804.036.orig/pTk/config/Hstrdup.c 2023-02-24 10:48:08.010779514 +0100
|
||||||
|
+++ Tk-804.036/pTk/config/Hstrdup.c 2023-02-24 10:53:04.326771841 +0100
|
||||||
|
@@ -6,7 +6,7 @@
|
||||||
|
{char *e;
|
||||||
|
char *p = strdup(STRING);
|
||||||
|
if (!p || strcmp(p,STRING))
|
||||||
|
- exit(1);
|
||||||
|
+ return 1;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
diff -ur Tk-804.036.orig/pTk/config/Hstrtoul.c Tk-804.036/pTk/config/Hstrtoul.c
|
||||||
|
--- Tk-804.036.orig/pTk/config/Hstrtoul.c 2023-02-24 10:48:08.013779483 +0100
|
||||||
|
+++ Tk-804.036/pTk/config/Hstrtoul.c 2023-02-24 10:50:13.205508745 +0100
|
||||||
|
@@ -1,4 +1,5 @@
|
||||||
|
#include <stdlib.h>
|
||||||
|
+#include <string.h>
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{char *e;
|
||||||
|
diff -ur Tk-804.036.orig/pTk/mTk/generic/tkEvent.c Tk-804.036/pTk/mTk/generic/tkEvent.c
|
||||||
|
--- Tk-804.036.orig/pTk/mTk/generic/tkEvent.c 2023-02-24 10:48:07.324786476 +0100
|
||||||
|
+++ Tk-804.036/pTk/mTk/generic/tkEvent.c 2023-02-24 10:54:20.859995000 +0100
|
||||||
|
@@ -1153,6 +1153,7 @@
|
||||||
|
Time
|
||||||
|
TkCurrentTime(dispPtr, fallbackCurrent)
|
||||||
|
TkDisplay *dispPtr; /* Display for which the time is desired. */
|
||||||
|
+ int fallbackCurrent;
|
||||||
|
{
|
||||||
|
register XEvent *eventPtr;
|
||||||
|
ThreadSpecificData *tsdPtr = (ThreadSpecificData *)
|
||||||
|
diff -ur Tk-804.036.orig/pTk/mTk/generic/tkImage.c Tk-804.036/pTk/mTk/generic/tkImage.c
|
||||||
|
--- Tk-804.036.orig/pTk/mTk/generic/tkImage.c 2023-02-24 10:48:07.321786507 +0100
|
||||||
|
+++ Tk-804.036/pTk/mTk/generic/tkImage.c 2023-02-24 10:55:56.174027554 +0100
|
||||||
|
@@ -1083,6 +1083,8 @@
|
||||||
|
int y;
|
||||||
|
int width;
|
||||||
|
int height;
|
||||||
|
+int imgWidth;
|
||||||
|
+int imgHeight;
|
||||||
|
{
|
||||||
|
Tk_Tile tile = (Tk_Tile) clientData;
|
||||||
|
Tk_TileChange *handler;
|
@ -0,0 +1,24 @@
|
|||||||
|
From 5c646b1cc55e18648918f101961afd1589a58168 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Christopher Chavez <chrischavez@gmx.us>
|
||||||
|
Date: Mon, 19 Feb 2024 13:50:44 -0600
|
||||||
|
Subject: [PATCH] pregcomp2.c: Avoid using incompatible pointer type
|
||||||
|
|
||||||
|
See https://github.com/eserte/perl-tk/issues/98#issuecomment-1948125587
|
||||||
|
---
|
||||||
|
config/pregcomp2.c | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/config/pregcomp2.c b/config/pregcomp2.c
|
||||||
|
index 98506999..bb0b4539 100644
|
||||||
|
--- a/config/pregcomp2.c
|
||||||
|
+++ b/config/pregcomp2.c
|
||||||
|
@@ -4,5 +4,5 @@
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
SV* sv = newSViv(0);
|
||||||
|
- regexp* rx = pregcomp(sv, 0);
|
||||||
|
+ void* rx = pregcomp(sv, 0);
|
||||||
|
}
|
||||||
|
--
|
||||||
|
2.43.0
|
||||||
|
|
@ -0,0 +1,33 @@
|
|||||||
|
diff -up Tk-804.028/pTk/mTk/generic/tkConfig.c.seg Tk-804.028/pTk/mTk/generic/tkConfig.c
|
||||||
|
--- Tk-804.028/pTk/mTk/generic/tkConfig.c.seg 2008-03-11 23:29:39.000000000 -0400
|
||||||
|
+++ Tk-804.028/pTk/mTk/generic/tkConfig.c 2008-03-11 23:28:09.000000000 -0400
|
||||||
|
@@ -1210,11 +1210,11 @@ GetOptionFromObj(interp, objPtr, tablePt
|
||||||
|
* First, check to see if the object already has the answer cached.
|
||||||
|
*/
|
||||||
|
|
||||||
|
- if (objPtr->typePtr == &tkOptionObjType) {
|
||||||
|
+/* if (objPtr->typePtr == &tkOptionObjType) {
|
||||||
|
if (objPtr->internalRep.twoPtrValue.ptr1 == (VOID *) tablePtr) {
|
||||||
|
return (Option *) objPtr->internalRep.twoPtrValue.ptr2;
|
||||||
|
}
|
||||||
|
- }
|
||||||
|
+ }*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* The answer isn't cached.
|
||||||
|
@@ -2277,9 +2277,15 @@ Tk_GetOptionValue(interp, recordPtr, opt
|
||||||
|
if (optionPtr == NULL) {
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
+
|
||||||
|
+ if (optionPtr->specPtr == NULL) {
|
||||||
|
+ return NULL;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
if (optionPtr->specPtr->type == TK_OPTION_SYNONYM) {
|
||||||
|
optionPtr = optionPtr->extra.synonymPtr;
|
||||||
|
}
|
||||||
|
+
|
||||||
|
if (optionPtr->specPtr->objOffset >= 0) {
|
||||||
|
resultPtr = *((Tcl_Obj **) (recordPtr + optionPtr->specPtr->objOffset));
|
||||||
|
if (resultPtr == NULL) {
|
@ -0,0 +1,26 @@
|
|||||||
|
--- demos/widget.orig 2008-01-02 13:24:14.000000000 +0100
|
||||||
|
+++ demos/widget 2008-01-02 13:27:10.000000000 +0100
|
||||||
|
@@ -3,7 +3,8 @@
|
||||||
|
use 5.008;
|
||||||
|
use Config;
|
||||||
|
use Tk 804.000;
|
||||||
|
-use lib Tk->findINC( 'demos/widget_lib' );
|
||||||
|
+#use lib Tk->findINC( 'demos/widget_lib' );
|
||||||
|
+use lib "@demopath@/widget_lib";
|
||||||
|
use Tk::widgets qw/ DialogBox ErrorDialog LabEntry ROText /;
|
||||||
|
use Tk::Config ();
|
||||||
|
use WidgetDemo;
|
||||||
|
@@ -62,9 +63,11 @@
|
||||||
|
$l->destroy;
|
||||||
|
}
|
||||||
|
|
||||||
|
-my $widget_lib = Tk->findINC('demos/widget_lib');
|
||||||
|
+#my $widget_lib = Tk->findINC('demos/widget_lib');
|
||||||
|
+my $widget_lib = "@demopath@/widget_lib";
|
||||||
|
my $wd = "$widget_lib/WidgetDemo.pm";
|
||||||
|
-$WIDTRIB = Tk->findINC('demos/widtrib');
|
||||||
|
+#$WIDTRIB = Tk->findINC('demos/widtrib');
|
||||||
|
+$WIDTRIB = "@demopath@/widtrib";
|
||||||
|
unless (Tk::tainting) {
|
||||||
|
$WIDTRIB = $ENV{WIDTRIB} if defined $ENV{WIDTRIB};
|
||||||
|
$WIDTRIB = $ARGV[0] if defined $ARGV[0];
|
@ -0,0 +1,597 @@
|
|||||||
|
%global use_x11_tests 1
|
||||||
|
%if 0%{?fedora} || 0%{?rhel} > 9
|
||||||
|
%global use_xwayland_run 1
|
||||||
|
%endif
|
||||||
|
|
||||||
|
Name: perl-Tk
|
||||||
|
Version: 804.036
|
||||||
|
Release: 16%{?dist}
|
||||||
|
Summary: Perl Graphical User Interface ToolKit
|
||||||
|
|
||||||
|
License: (GPL-1.0-or-later OR Artistic-1.0-Perl) AND SWL
|
||||||
|
URL: https://metacpan.org/release/Tk
|
||||||
|
Source0: https://cpan.metacpan.org/authors/id/S/SR/SREZIC/Tk-%{version}.tar.gz
|
||||||
|
Patch0: perl-Tk-widget.patch
|
||||||
|
# modified version of http://ftp.de.debian.org/debian/pool/main/p/perl-tk/perl-tk_804.027-8.diff.gz
|
||||||
|
Patch1: perl-Tk-debian.patch.gz
|
||||||
|
# fix segfaults as in #235666 because of broken cashing code
|
||||||
|
Patch2: perl-Tk-seg.patch
|
||||||
|
Patch3: perl-Tk-c99.patch
|
||||||
|
# Fix STRLEN vs int pointer confusion in Tcl_GetByteArrayFromObj()
|
||||||
|
# It breaks tests with Perl 5.38 on s390* (BZ#2222638)
|
||||||
|
Patch4: perl-Tk-Fix-STRLEN-vs-int-pointer-confusion-in-Tcl_GetByteAr.patch
|
||||||
|
|
||||||
|
# Fix build with clang 16
|
||||||
|
# https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=271521
|
||||||
|
Patch5: perl-Tk-Fix-build-with-clang-16.patch
|
||||||
|
# Avoid using incompatible pointer type in pregcomp2.c
|
||||||
|
Patch6: perl-Tk-pregcomp2.c-Avoid-using-incompatible-pointer-type.patch
|
||||||
|
# Avoid using incompatible pointer type for `old_warn`
|
||||||
|
# https://github.com/eserte/perl-tk/issues/98
|
||||||
|
Patch7: perl-Tk-Avoid-using-incompatible-pointer-type-for-old_warn.patch
|
||||||
|
# Avoid using incompatible pointer type in function 'GetTextIndex'
|
||||||
|
# https://github.com/eserte/perl-tk/issues/103
|
||||||
|
Patch8: perl-Tk-Fix-incompatible-pointer-type-in-function-GetTextIndex.patch
|
||||||
|
|
||||||
|
# Versions before this have Unicode issues
|
||||||
|
BuildRequires: make
|
||||||
|
BuildRequires: gcc-c++
|
||||||
|
BuildRequires: perl-devel >= 3:5.8.3
|
||||||
|
BuildRequires: perl-generators
|
||||||
|
BuildRequires: freetype-devel
|
||||||
|
BuildRequires: libjpeg-devel
|
||||||
|
BuildRequires: libpng-devel
|
||||||
|
BuildRequires: libX11-devel
|
||||||
|
BuildRequires: libXft-devel
|
||||||
|
BuildRequires: perl(Config)
|
||||||
|
BuildRequires: perl(Cwd)
|
||||||
|
BuildRequires: perl(ExtUtils::MakeMaker)
|
||||||
|
BuildRequires: perl(File::Copy)
|
||||||
|
BuildRequires: perl(lib)
|
||||||
|
BuildRequires: perl(open)
|
||||||
|
BuildRequires: perl(strict)
|
||||||
|
BuildRequires: perl(Test)
|
||||||
|
|
||||||
|
%if %{use_x11_tests}
|
||||||
|
# Run-time:
|
||||||
|
BuildRequires: perl(AutoLoader)
|
||||||
|
BuildRequires: perl(base)
|
||||||
|
BuildRequires: perl(Carp)
|
||||||
|
BuildRequires: perl(DirHandle)
|
||||||
|
BuildRequires: perl(DynaLoader)
|
||||||
|
BuildRequires: perl(Encode)
|
||||||
|
BuildRequires: perl(Exporter)
|
||||||
|
BuildRequires: perl(File::Basename)
|
||||||
|
BuildRequires: perl(File::Spec)
|
||||||
|
BuildRequires: perl(if)
|
||||||
|
BuildRequires: perl(locale)
|
||||||
|
# Image::Info is optional
|
||||||
|
BuildRequires: perl(IO::Handle)
|
||||||
|
BuildRequires: perl(overload)
|
||||||
|
BuildRequires: perl(subs)
|
||||||
|
BuildRequires: perl(Symbol)
|
||||||
|
BuildRequires: perl(Text::Tabs)
|
||||||
|
BuildRequires: perl(vars)
|
||||||
|
BuildRequires: perl(warnings)
|
||||||
|
BuildRequires: perl(XSLoader)
|
||||||
|
|
||||||
|
# Tests:
|
||||||
|
# X11 tests:
|
||||||
|
%if 0%{?use_xwayland_run}
|
||||||
|
BuildRequires: xwayland-run
|
||||||
|
BuildRequires: mutter
|
||||||
|
BuildRequires: mesa-dri-drivers
|
||||||
|
%else
|
||||||
|
BuildRequires: xorg-x11-server-Xvfb
|
||||||
|
%endif
|
||||||
|
BuildRequires: google-noto-sans-fonts
|
||||||
|
BuildRequires: font(:lang=en)
|
||||||
|
# Specific font is needed for tests, bug #1141117, CPAN RT#98831
|
||||||
|
BuildRequires: liberation-sans-fonts
|
||||||
|
BuildRequires: perl(blib)
|
||||||
|
BuildRequires: perl(constant)
|
||||||
|
BuildRequires: perl(Data::Dumper)
|
||||||
|
BuildRequires: perl(Devel::Peek)
|
||||||
|
BuildRequires: perl(ExtUtils::Command::MM)
|
||||||
|
BuildRequires: perl(File::Spec::Functions)
|
||||||
|
BuildRequires: perl(File::Temp)
|
||||||
|
BuildRequires: perl(FindBin)
|
||||||
|
BuildRequires: perl(Getopt::Long)
|
||||||
|
BuildRequires: perl(IO::Socket)
|
||||||
|
BuildRequires: perl(POSIX)
|
||||||
|
BuildRequires: perl(Test::More)
|
||||||
|
BuildRequires: perl(utf8)
|
||||||
|
# Optional tests:
|
||||||
|
BuildRequires: perl(MIME::Base64)
|
||||||
|
%endif
|
||||||
|
|
||||||
|
Requires: perl(locale)
|
||||||
|
Provides: perl(Tk::LabRadio) = 4.004
|
||||||
|
Provides: perl(Tk) = %{version}
|
||||||
|
|
||||||
|
%{?perl_default_filter}
|
||||||
|
# Explicity filter "useless" unversioned provides. For some reason, rpm is
|
||||||
|
# detecting these both with and without version.
|
||||||
|
%global __provides_exclude %{?__provides_exclude:%__provides_exclude|}perl\\(Tk\\)
|
||||||
|
%global __provides_exclude %__provides_exclude|perl\\(Tk::Clipboard\\)$
|
||||||
|
%global __provides_exclude %__provides_exclude|perl\\(Tk::Frame\\)$
|
||||||
|
%global __provides_exclude %__provides_exclude|perl\\(Tk::Listbox\\)$
|
||||||
|
%global __provides_exclude %__provides_exclude|perl\\(Tk::Scale\\)$
|
||||||
|
%global __provides_exclude %__provides_exclude|perl\\(Tk::Scrollbar\\)$
|
||||||
|
%global __provides_exclude %__provides_exclude|perl\\(Tk::Table\\)$
|
||||||
|
%global __provides_exclude %__provides_exclude|perl\\(Tk::Toplevel\\)$
|
||||||
|
%global __provides_exclude %__provides_exclude|perl\\(Tk::Widget\\)$
|
||||||
|
%global __provides_exclude %__provides_exclude|perl\\(Tk::Wm\\)$
|
||||||
|
|
||||||
|
# Filter modules bundled for tests
|
||||||
|
%global __provides_exclude_from %{?__provides_exclude_from:%__provides_exclude_from|}^%{_libexecdir}
|
||||||
|
%global __requires_exclude %{?__requires_exclude:%__requires_exclude|}^perl\\(TkTest\\)
|
||||||
|
|
||||||
|
%description
|
||||||
|
This a re-port of a perl interface to Tk8.4.
|
||||||
|
C code is derived from Tcl/Tk8.4.5.
|
||||||
|
It also includes all the C code parts of Tix8.1.4 from SourceForge.
|
||||||
|
The perl code corresponding to Tix's Tcl code is not fully implemented.
|
||||||
|
|
||||||
|
Perl API is essentially the same as Tk800 series Tk800.025 but has not
|
||||||
|
been verified as compliant. There ARE differences see pod/804delta.pod.
|
||||||
|
|
||||||
|
%package devel
|
||||||
|
Summary: perl-Tk ExtUtils::MakeMaker support module
|
||||||
|
Requires: perl-Tk = %{version}-%{release}
|
||||||
|
|
||||||
|
%description devel
|
||||||
|
%{summary}
|
||||||
|
|
||||||
|
%package tests
|
||||||
|
Summary: Tests for %{name}
|
||||||
|
Requires: %{name} = %{?epoch:%{epoch}:}%{version}-%{release}
|
||||||
|
Requires: perl-Test-Harness
|
||||||
|
# X11 tests:
|
||||||
|
%if 0%{?use_xwayland_run}
|
||||||
|
Requires: xwayland-run
|
||||||
|
Requires: mutter
|
||||||
|
Requires: mesa-dri-drivers
|
||||||
|
%else
|
||||||
|
Requires: xorg-x11-server-Xvfb
|
||||||
|
%endif
|
||||||
|
Requires: google-noto-sans-fonts
|
||||||
|
Requires: font(:lang=en)
|
||||||
|
Requires: liberation-sans-fonts
|
||||||
|
|
||||||
|
%description tests
|
||||||
|
Tests from %{name}. Execute them
|
||||||
|
with "%{_libexecdir}/%{name}/test".
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n Tk-%{version}
|
||||||
|
find . -type f -exec perl -MConfig -pi -e \
|
||||||
|
's,^(#!)(/usr/local)?/bin/perl\b,$Config{startperl}, if ($. == 1)' {} \;
|
||||||
|
chmod -x pod/Popup.pod Tixish/lib/Tk/balArrow.xbm
|
||||||
|
# fix for widget as docs
|
||||||
|
%patch -P 0
|
||||||
|
perl -pi -e \
|
||||||
|
's,\@demopath\@,%{?_pkgdocdir}%{!?_pkgdocdir:%{_docdir}/%{name}-%{version}}/demos,g' demos/widget
|
||||||
|
# debian patch
|
||||||
|
#%%patch -P 1 -p1
|
||||||
|
# patch to fix #235666 ... seems like caching code is broken
|
||||||
|
%patch -P 2 -p1 -b .seg
|
||||||
|
%patch -P 3 -p1 -b .c99
|
||||||
|
%patch -P 4 -p1
|
||||||
|
%patch -P 5 -p1
|
||||||
|
%patch -P 6 -p1
|
||||||
|
%patch -P 7 -p1
|
||||||
|
%patch -P 8 -p1
|
||||||
|
|
||||||
|
# Help generators to recognize Perl scripts
|
||||||
|
for F in t/*.t; do
|
||||||
|
perl -i -MConfig -ple 'print $Config{startperl} if $. == 1 && !s{\A#!.*perl\b}{$Config{startperl}}' "$F"
|
||||||
|
chmod +x "$F"
|
||||||
|
done
|
||||||
|
|
||||||
|
%build
|
||||||
|
perl Makefile.PL INSTALLDIRS=vendor X11LIB=%{_libdir} XFT=1 NO_PACKLIST=1 NO_PERLLOCAL=1
|
||||||
|
find . -name Makefile | xargs perl -pi -e 's/^\tLD_RUN_PATH=[^\s]+\s*/\t/'
|
||||||
|
%{make_build}
|
||||||
|
|
||||||
|
%check
|
||||||
|
%if %{use_x11_tests}
|
||||||
|
%if 0%{?use_xwayland_run}
|
||||||
|
xwfb-run -c mutter -- make test
|
||||||
|
%else
|
||||||
|
xvfb-run -d make test
|
||||||
|
%endif
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%install
|
||||||
|
%{make_install}
|
||||||
|
|
||||||
|
find %{buildroot} -type f -name '*.bs' -size 0 -delete
|
||||||
|
|
||||||
|
chmod -R u+rwX,go+rX,go-w %{buildroot}/*
|
||||||
|
mkdir __demos
|
||||||
|
cp -pR %{buildroot}%{perl_vendorarch}/Tk/demos __demos
|
||||||
|
find __demos/ -type f -exec chmod -x {} \;
|
||||||
|
|
||||||
|
# Install tests
|
||||||
|
mkdir -p %{buildroot}%{_libexecdir}/%{name}
|
||||||
|
cp -a t %{buildroot}%{_libexecdir}/%{name}
|
||||||
|
rm %{buildroot}%{_libexecdir}/%{name}/t/pod.t
|
||||||
|
mkdir -p %{buildroot}%{_libexecdir}/%{name}/demos/demos/images
|
||||||
|
cp demos/demos/images/cursor* %{buildroot}%{_libexecdir}/%{name}/demos/demos/images
|
||||||
|
perl -i -pe 's{-Mblib", "blib/script}{%{_bindir}}' %{buildroot}%{_libexecdir}/%{name}/t/exefiles.t
|
||||||
|
perl -i -ne 'print $_ unless m{gedi}' %{buildroot}%{_libexecdir}/%{name}/t/exefiles.t
|
||||||
|
|
||||||
|
cat > %{buildroot}%{_libexecdir}/%{name}/test << 'EOF'
|
||||||
|
#!/bin/bash
|
||||||
|
set -e
|
||||||
|
# Some tests write into temporary files/directories
|
||||||
|
DIR=$(mktemp -d)
|
||||||
|
pushd "$DIR"
|
||||||
|
cp -a %{_libexecdir}/%{name}/* ./
|
||||||
|
%if 0%{?use_xwayland_run}
|
||||||
|
xwfb-run -c mutter -- prove -I . -j "$(getconf _NPROCESSORS_ONLN)"
|
||||||
|
%else
|
||||||
|
xvfb-run -d prove -I . -j "$(getconf _NPROCESSORS_ONLN)"
|
||||||
|
%endif
|
||||||
|
popd
|
||||||
|
rm -rf "$DIR"
|
||||||
|
EOF
|
||||||
|
chmod +x %{buildroot}%{_libexecdir}/%{name}/test
|
||||||
|
|
||||||
|
%files
|
||||||
|
%doc Changes README README.linux ToDo pTk/*license* __demos/demos demos/widget COPYING
|
||||||
|
%doc blib/man1/widget.1
|
||||||
|
%{_bindir}/p*
|
||||||
|
%{_bindir}/tkjpeg
|
||||||
|
%{perl_vendorarch}/auto/Tk
|
||||||
|
%{perl_vendorarch}/Tie*
|
||||||
|
%{perl_vendorarch}/Tk*
|
||||||
|
%exclude %{perl_vendorarch}/Tk/MMutil.pm
|
||||||
|
%exclude %{perl_vendorarch}/Tk/install.pm
|
||||||
|
%exclude %{perl_vendorarch}/Tk/MakeDepend.pm
|
||||||
|
%{_mandir}/man1/ptked*
|
||||||
|
%{_mandir}/man1/ptksh*
|
||||||
|
%{_mandir}/man1/tkjpeg*
|
||||||
|
%{_mandir}/man3/Tie*
|
||||||
|
%{_mandir}/man3/Tk*
|
||||||
|
%exclude %{_mandir}/man1/widget.1*
|
||||||
|
%exclude %{_bindir}/gedi
|
||||||
|
%exclude %{_bindir}/widget
|
||||||
|
%exclude %{perl_vendorarch}/Tk/demos
|
||||||
|
|
||||||
|
%files devel
|
||||||
|
%dir %{perl_vendorarch}/Tk
|
||||||
|
%{perl_vendorarch}/Tk/MMutil.pm
|
||||||
|
%{perl_vendorarch}/Tk/install.pm
|
||||||
|
%{perl_vendorarch}/Tk/MakeDepend.pm
|
||||||
|
|
||||||
|
%files tests
|
||||||
|
%{_libexecdir}/%{name}
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Tue Nov 26 2024 MSVSphere Packaging Team <packager@msvsphere-os.ru> - 804.036-16
|
||||||
|
- Rebuilt for MSVSphere 10
|
||||||
|
|
||||||
|
* Thu Aug 08 2024 Troy Dawson <tdawson@redhat.com> - 804.036-16
|
||||||
|
- Bump release for Aug 2024 java mass rebuild
|
||||||
|
|
||||||
|
* Mon Jul 08 2024 Jitka Plesnikova <jplesnik@redhat.com> - 804.036-15
|
||||||
|
- Resolves: RHEL-36643, RHEL-41058
|
||||||
|
- Move away from xvfb-run
|
||||||
|
|
||||||
|
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 804.036-14
|
||||||
|
- Bump release for June 2024 mass rebuild
|
||||||
|
|
||||||
|
* Fri Mar 22 2024 Jitka Plesnikova <jplesnik@redhat.com> - 804.036-13
|
||||||
|
- Fix failing build and tests
|
||||||
|
- Resolves: RHEL-25977
|
||||||
|
|
||||||
|
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 804.036-12
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 11 2023 Jitka Plesnikova <jplesnik@redhat.com> - 804.036-11
|
||||||
|
- Perl 5.38 rebuild
|
||||||
|
|
||||||
|
* Thu Jun 01 2023 Michal Josef Špaček <mspacek@redhat.com> - 804.036-10
|
||||||
|
- Fix %%patch macro
|
||||||
|
- Update license to SPDX format
|
||||||
|
|
||||||
|
* Fri Feb 24 2023 Florian Weimer <fweimer@redhat.com> - 804.036-9
|
||||||
|
- Port to C99
|
||||||
|
|
||||||
|
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 804.036-8
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 804.036-7
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon May 30 2022 Jitka Plesnikova <jplesnik@redhat.com> - 804.036-6
|
||||||
|
- Perl 5.36 rebuild
|
||||||
|
|
||||||
|
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 804.036-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 804.036-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jun 28 2021 Xavier Bachelot <xavier@bachelot.org> - 804.036-3
|
||||||
|
- Add specfile patch from Mauro Carvalho Chehab to fix building with FreeType
|
||||||
|
support (RHBZ#1803711, RHBZ#1853802)
|
||||||
|
|
||||||
|
* Fri May 21 2021 Jitka Plesnikova <jplesnik@redhat.com> - 804.036-2
|
||||||
|
- Perl 5.34 rebuild
|
||||||
|
|
||||||
|
* Wed Feb 17 2021 Xavier Bachelot <xavier@bachelot.org> - 804.036-1
|
||||||
|
- Update to 0.36 (RHBZ#1928507)
|
||||||
|
|
||||||
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 804.035-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 804.035-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 10 2020 Petr Pisar <ppisar@redhat.com> - 804.035-3
|
||||||
|
- Run-require locale module
|
||||||
|
|
||||||
|
* Tue Jun 23 2020 Jitka Plesnikova <jplesnik@redhat.com> - 804.035-2
|
||||||
|
- Perl 5.32 rebuild
|
||||||
|
|
||||||
|
* Wed Jun 17 2020 Jitka Plesnikova <jplesnik@redhat.com> - 804.035-1
|
||||||
|
- 804.035 bump
|
||||||
|
|
||||||
|
* Mon Feb 17 2020 Petr Pisar <ppisar@redhat.com> - 804.034-9
|
||||||
|
- Build-require blib module for tests
|
||||||
|
|
||||||
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 804.034-8
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 804.034-7
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu May 30 2019 Jitka Plesnikova <jplesnik@redhat.com> - 804.034-6
|
||||||
|
- Perl 5.30 rebuild
|
||||||
|
|
||||||
|
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 804.034-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 804.034-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jun 27 2018 Jitka Plesnikova <jplesnik@redhat.com> - 804.034-3
|
||||||
|
- Perl 5.28 rebuild
|
||||||
|
|
||||||
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 804.034-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Aug 28 2017 Jitka Plesnikova <jplesnik@redhat.com> - 804.034-1
|
||||||
|
- 804.034 bump
|
||||||
|
|
||||||
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 804.033-9
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 804.033-8
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jun 04 2017 Jitka Plesnikova <jplesnik@redhat.com> - 804.033-7
|
||||||
|
- Perl 5.26 rebuild
|
||||||
|
|
||||||
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 804.033-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun May 15 2016 Jitka Plesnikova <jplesnik@redhat.com> - 804.033-5
|
||||||
|
- Perl 5.24 rebuild
|
||||||
|
|
||||||
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 804.033-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 804.033-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jun 03 2015 Jitka Plesnikova <jplesnik@redhat.com> - 804.033-2
|
||||||
|
- Perl 5.22 rebuild
|
||||||
|
|
||||||
|
* Wed May 06 2015 Jitka Plesnikova <jplesnik@redhat.com> - 804.033-1
|
||||||
|
- 804.033 bump
|
||||||
|
|
||||||
|
* Fri Nov 07 2014 Petr Pisar <ppisar@redhat.com> - 804.032-5
|
||||||
|
- Restore compatibility with perl-ExtUtils-MakeMaker-7.00 (bug #1161470)
|
||||||
|
|
||||||
|
* Fri Sep 12 2014 Petr Pisar <ppisar@redhat.com> - 804.032-4
|
||||||
|
- Fix freetype detection
|
||||||
|
- Fix creating a window with perl 5.20 (bug #1141117)
|
||||||
|
- Enable X11 tests
|
||||||
|
- Specify all dependencies
|
||||||
|
- Fix t/fileevent2.t failure with /dev/null on stdin (bug #1141117)
|
||||||
|
|
||||||
|
* Tue Aug 26 2014 Jitka Plesnikova <jplesnik@redhat.com> - 804.032-3
|
||||||
|
- Perl 5.20 rebuild
|
||||||
|
|
||||||
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 804.032-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 31 2014 Jitka Plesnikova <jplesnik@redhat.com> - 804.032-1
|
||||||
|
- 804.032 bump
|
||||||
|
|
||||||
|
* Fri Jun 20 2014 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
|
||||||
|
- 804.031-6
|
||||||
|
- add patch from Yaakov Selkowitz to fix freetype detection (rhbz#1110872)
|
||||||
|
|
||||||
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 804.031-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Aug 10 2013 Ville Skyttä <ville.skytta@iki.fi> - 804.031-4
|
||||||
|
- Use %%{_pkgdocdir} where available.
|
||||||
|
|
||||||
|
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 804.031-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 30 2013 Jitka Plesnikova <jplesnik@redhat.com> - 804.031-2
|
||||||
|
- Update license
|
||||||
|
- Package COPYING
|
||||||
|
- Specify all dependencies
|
||||||
|
- Replace PERL_INSTALL_ROOT with DESTDIR
|
||||||
|
|
||||||
|
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 804.031-1
|
||||||
|
- 804.031 bump
|
||||||
|
|
||||||
|
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 804.030-5
|
||||||
|
- Perl 5.18 rebuild
|
||||||
|
|
||||||
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 804.030-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jan 21 2013 Adam Tkac <atkac redhat com> - 804.030-3
|
||||||
|
- rebuild due to "jpeg8-ABI" feature drop
|
||||||
|
|
||||||
|
* Fri Dec 21 2012 Adam Tkac <atkac redhat com> - 804.030-2
|
||||||
|
- rebuild against new libjpeg
|
||||||
|
|
||||||
|
* Wed Aug 29 2012 Jitka Plesnikova <jplesnik@redhat.com> - 804.030-1
|
||||||
|
- 804.030 bump, update source link
|
||||||
|
|
||||||
|
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 804.029-9
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jun 07 2012 Petr Pisar <ppisar@redhat.com> - 804.029-8
|
||||||
|
- Perl 5.16 rebuild
|
||||||
|
|
||||||
|
* Thu Jun 07 2012 Petr Pisar <ppisar@redhat.com> - 804.029-7
|
||||||
|
- Perl 5.16 rebuild
|
||||||
|
|
||||||
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 804.029-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Nov 10 2011 Iain Arnell <iarnell@gmail.com> 804.029-5
|
||||||
|
- Rebuild for libpng 1.5
|
||||||
|
|
||||||
|
* Fri Oct 21 2011 Ralf Corsépius <corsepiu@fedoraproject.org> 804.029-4
|
||||||
|
- Split out Tk/MMutil.pm, Tk/install.pm, Tk/MakeDepend.pm into perl-Tk-devel.
|
||||||
|
(Avoid dependency on perl-devel - BZ 741777).
|
||||||
|
|
||||||
|
* Tue Jun 21 2011 Iain Arnell <iarnell@gmail.com> 804.029-3
|
||||||
|
- Perl mass rebuild
|
||||||
|
|
||||||
|
* Tue Jun 21 2011 Iain Arnell <iarnell@gmail.com> 804.029-2
|
||||||
|
- properly filter useless provides
|
||||||
|
|
||||||
|
* Fri Jun 17 2011 Iain Arnell <iarnell@gmail.com> 804.029-1
|
||||||
|
- update to 804.029_500 development version to fix FTBFS with perl 5.14
|
||||||
|
- clean up spec for modern rpmbuild
|
||||||
|
- use perl_default_filter and filter useless provides
|
||||||
|
|
||||||
|
* Fri Jun 17 2011 Marcela Mašláňová <mmaslano@redhat.com> - 804.028-16
|
||||||
|
- Perl mass rebuild
|
||||||
|
|
||||||
|
* Thu Jun 09 2011 Marcela Mašláňová <mmaslano@redhat.com> - 804.028-15
|
||||||
|
- Perl 5.14 mass rebuild
|
||||||
|
|
||||||
|
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 804.028-14
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Dec 23 2010 Marcela Maslanova <mmaslano@redhat.com> - 804.028-13
|
||||||
|
- 661697 rebuild for fixing problems with vendorach/lib
|
||||||
|
|
||||||
|
* Fri May 07 2010 Marcela Maslanova <mmaslano@redhat.com> - 804.028-12
|
||||||
|
- Mass rebuild with perl-5.12.0 & update to development release
|
||||||
|
|
||||||
|
* Fri Dec 4 2009 Stepan Kasal <skasal@redhat.com> - 804.028-11
|
||||||
|
- rebuild against perl 5.10.1
|
||||||
|
|
||||||
|
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 804.028-10
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jun 22 2009 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
|
||||||
|
- 804.028-9
|
||||||
|
- fix getOpenFile (#487122)
|
||||||
|
|
||||||
|
* Mon Jun 15 2009 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
|
||||||
|
- 804.028-8
|
||||||
|
- fix events (#489228, #491536, #506496)
|
||||||
|
|
||||||
|
* Thu Mar 19 2009 Stepan Kasal <skasal@redhat.com> - 804.028-7
|
||||||
|
- perl-Tk-XIM.patch (#489228)
|
||||||
|
|
||||||
|
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 804.028-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Mar 11 2008 Tom "spot" Callaway <tcallawa@redhat.com> 804.028-5
|
||||||
|
- rework patch2 to fix menu and test case failures (bz 431330, upstream 33880)
|
||||||
|
|
||||||
|
* Tue Feb 05 2008 Tom "spot" Callaway <tcallawa@redhat.com>
|
||||||
|
- 804.028-4
|
||||||
|
- rebuild for new perl
|
||||||
|
|
||||||
|
* Tue Feb 05 2008 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
|
||||||
|
- 804.028-3
|
||||||
|
- fix #431529 gif overflow in tk (see also #431518)
|
||||||
|
|
||||||
|
* Fri Jan 04 2008 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
|
||||||
|
- 804.028-2
|
||||||
|
- add relevant parts of debian patch
|
||||||
|
- add patch for #235666
|
||||||
|
|
||||||
|
* Wed Jan 02 2008 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
|
||||||
|
- 804.028-1
|
||||||
|
- version upgrade
|
||||||
|
- fix #210718 SIGSEGV on exit from texdoctk
|
||||||
|
- fix #234404 Cannot manage big listboxes
|
||||||
|
- fix #235666 Segfault occurs when using Perl-Tk on FC6
|
||||||
|
|
||||||
|
* Wed Dec 19 2007 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
|
||||||
|
- 804.027-13
|
||||||
|
- fix BR
|
||||||
|
|
||||||
|
* Wed Aug 22 2007 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
|
||||||
|
- 804.027-12
|
||||||
|
- rebuild for buildid
|
||||||
|
|
||||||
|
* Sun Apr 01 2007 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
|
||||||
|
804.027-11
|
||||||
|
- F7 rebuild (#234404)
|
||||||
|
|
||||||
|
* Fri Sep 15 2006 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
|
||||||
|
804.027-10
|
||||||
|
- FE6 rebuild
|
||||||
|
|
||||||
|
* Thu Feb 16 2006 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
|
||||||
|
804.027-9
|
||||||
|
- Rebuild for Fedora Extras 5
|
||||||
|
|
||||||
|
* Fri Nov 25 2005 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
|
||||||
|
804.027-8
|
||||||
|
- modular xorg integration
|
||||||
|
|
||||||
|
* Sun Jul 31 2005 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
|
||||||
|
804.027-7
|
||||||
|
- fix #164716
|
||||||
|
|
||||||
|
* Mon Jun 20 2005 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
|
||||||
|
804.027-6
|
||||||
|
- some small cleanups
|
||||||
|
- add dist tag
|
||||||
|
|
||||||
|
* Thu Jun 16 2005 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
|
||||||
|
804.027-5
|
||||||
|
- exclude gedi
|
||||||
|
- move widget to doc dir and patch it to work from there
|
||||||
|
|
||||||
|
* Wed Jun 15 2005 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
|
||||||
|
804.027-4
|
||||||
|
- more cleanups from Ville Skyttä
|
||||||
|
|
||||||
|
* Wed Jun 15 2005 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
|
||||||
|
804.027-3
|
||||||
|
- more cleanups
|
||||||
|
|
||||||
|
* Tue Jun 14 2005 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
|
||||||
|
804.027-2
|
||||||
|
- add some stuff (e.g. xft) suggested by Steven Pritchard
|
||||||
|
|
||||||
|
* Tue Jun 14 2005 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
|
||||||
|
804.027-1
|
||||||
|
- rebuild for fc4
|
||||||
|
|
||||||
|
* Fri Jun 04 2004 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
|
||||||
|
0:804.027-0.fdr.1
|
||||||
|
- Initial Version (thanks to perl-Archive-Zip spec)
|
Loading…
Reference in new issue