commit 6c1b1130927f9126e0aacfe840ca0c788dbfda1e6455c97261392d4250109c15 Author: OBS User unknown Date: Mon Jan 15 22:49:14 2007 +0000 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ImageMagick?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/ImageMagick-6.3.0-0.tar.bz2 b/ImageMagick-6.3.0-0.tar.bz2 new file mode 100644 index 0000000..16fca3f --- /dev/null +++ b/ImageMagick-6.3.0-0.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1595f9462b4d083944d7f1a28fead810399a709cc834ca7cfd4b6336597b41cb +size 5348178 diff --git a/ImageMagick-6.3.0.0-CVE-2006-5456.patch b/ImageMagick-6.3.0.0-CVE-2006-5456.patch new file mode 100644 index 0000000..bac4b71 --- /dev/null +++ b/ImageMagick-6.3.0.0-CVE-2006-5456.patch @@ -0,0 +1,40 @@ +--- coders/dcm.c ++++ coders/dcm.c +@@ -2950,7 +2950,7 @@ + /* + Photometric interpretation. + */ +- for (i=0; i < (long) length; i++) ++ for (i=0; i < (long) Min(length, MaxTextExtent-1); i++) + photometric[i]=(char) data[i]; + photometric[i]='\0'; + break; +--- coders/palm.c ++++ coders/palm.c +@@ -398,7 +398,7 @@ + image->compression=RLECompression; + for (i=0; i < (long) bytes_per_row; ) + { +- count=ReadBlobByte(image); ++ count=Min(ReadBlobByte(image), bytes_per_row-i); + byte=ReadBlobByte(image); + (void) ResetMagickMemory(one_row+i,(int) byte,count); + i+=count; +@@ -431,6 +431,8 @@ + indexes=GetIndexes(image); + if (bits_per_pixel == 16) + { ++ if (image->columns > 2*bytes_per_row) ++ ThrowReaderException(CorruptImageError,"ImproperImageHeader"); + for (x=0; x < (long) image->columns; x++) + { + color16=(*ptr++ << 8); +@@ -447,6 +449,8 @@ + bit=8-bits_per_pixel; + for (x=0; x < (long) image->columns; x++) + { ++ if (ptr - one_row >= bytes_per_row) ++ ThrowReaderException(CorruptImageError,"ImproperImageHeader"); + index=(IndexPacket) (mask-(((*ptr) & (mask << bit)) >> bit)); + indexes[x]=index; + *q++=image->colormap[index]; diff --git a/ImageMagick-6.3.0.0-doc.patch b/ImageMagick-6.3.0.0-doc.patch new file mode 100644 index 0000000..0d7d0d4 --- /dev/null +++ b/ImageMagick-6.3.0.0-doc.patch @@ -0,0 +1,11 @@ +--- configure.ac ++++ configure.ac +@@ -1976,7 +1976,7 @@ + + # + # Path to ImageMagick document files +-MagickDocumentSubdir="${PACKAGE_NAME}-${PACKAGE_VERSION}" ++MagickDocumentSubdir="packages/${PACKAGE_NAME}" + MagickDocumentPath="${DATA_DIR}/doc/${MagickDocumentSubdir}" + MagickDocumentPathDefine="${MagickDocumentPath}/" + if test "$native_win32_build" = 'yes' diff --git a/ImageMagick-6.3.0.0-examples.patch b/ImageMagick-6.3.0.0-examples.patch new file mode 100644 index 0000000..2630cd3 --- /dev/null +++ b/ImageMagick-6.3.0.0-examples.patch @@ -0,0 +1,11 @@ +--- Magick++/demo/makefile.2 ++++ Magick++/demo/makefile.2 +@@ -0,0 +1,8 @@ ++LDFLAGS= $(shell Magick-config --ldflags) ++LOADLIBES=-lMagick++ $(shell Magick-config --libs) ++CPPFLAGS=$(shell Magick-config --cflags) $(shell Magick-config --cppflags) ++ ++all: button demo detrans flip shapes ++ ++ ++ diff --git a/ImageMagick.changes b/ImageMagick.changes new file mode 100644 index 0000000..96546e3 --- /dev/null +++ b/ImageMagick.changes @@ -0,0 +1,629 @@ +------------------------------------------------------------------- +Mon Oct 30 17:29:59 CET 2006 - nadvornik@suse.cz + +- fixed overflows in dcm and palm codecs CVE-2006-5456 [#215685] + +------------------------------------------------------------------- +Wed Oct 18 15:52:37 CEST 2006 - postadal@suse.cz + +- disabled -fstack-protector for %suse_version <= 1000 + +------------------------------------------------------------------- +Tue Oct 17 17:43:59 CEST 2006 - nadvornik@suse.cz + +- updated to 1.3.0-0 + * enhanced -fx + * many bugfixes, see ChangeLog + +------------------------------------------------------------------- +Thu Jul 13 10:42:24 CEST 2006 - nadvornik@suse.cz + +- updated to 1.2.8-1 + * security fixes merged upstream + * fixed compilation with new libpng + * many other fixes + +------------------------------------------------------------------- +Wed Mar 15 11:02:41 CET 2006 - nadvornik@suse.cz + +- fixed rpath in perl module + +------------------------------------------------------------------- +Fri Feb 3 17:13:20 CET 2006 - nadvornik@suse.cz + +- better fix for format string vulnerability + CVE-2006-0082 [#141390] +- fixed shell metacharacters in file names passed into delegates + CVE-2005-4601 [#141999] +- added version numbers to devel subpackage requirements + +------------------------------------------------------------------- +Wed Jan 25 21:32:48 CET 2006 - mls@suse.de + +- converted neededforbuild to BuildRequires + +------------------------------------------------------------------- +Mon Jan 16 18:08:04 CET 2006 - meissner@suse.de + +- Use -fstack-protector. + +------------------------------------------------------------------- +Tue Dec 20 18:39:12 CET 2005 - nadvornik@suse.cz + +- updated to 6.2.5 + +------------------------------------------------------------------- +Wed Sep 21 18:08:42 CEST 2005 - nadvornik@suse.cz + +- updated to 6.2.4 + +------------------------------------------------------------------- +Sun Sep 18 00:47:48 CEST 2005 - postadal@suse.cz + +- parallelize build + +------------------------------------------------------------------- +Wed Sep 7 15:47:40 CEST 2005 - nadvornik@suse.cz + +- fixed URL in man pages [#115568] + +------------------------------------------------------------------- +Thu Jul 21 10:47:30 CEST 2005 - nadvornik@suse.cz + +- moved .la files back to main package, they are needed for runtime + +------------------------------------------------------------------- +Fri Jul 15 14:57:43 CEST 2005 - nadvornik@suse.cz + +- updated to 6.2.3 +- fixed incorrect char type usage [#95086] + +------------------------------------------------------------------- +Tue May 3 14:01:49 CEST 2005 - nadvornik@suse.cz + +- updated to 6.2.2, fixes crash in PNM reader [#80428] + +------------------------------------------------------------------- +Wed Mar 9 12:04:14 CET 2005 - nadvornik@suse.cz + +- fixed format string vulnerability [#67273] + +------------------------------------------------------------------- +Wed Mar 02 14:43:29 CET 2005 - nadvornik@suse.cz + +- linked PerlMagick correcly +- added xorg-x11-devel to requires of devel subpackage + +------------------------------------------------------------------- +Sat Jan 22 11:17:44 CET 2005 - ro@suse.de + +- fix libltdl removal on lib64 + +------------------------------------------------------------------- +Tue Jan 18 14:38:36 CET 2005 - nadvornik@suse.cz + +- updated to 6.1.8 + * fixed .psd file read overflow (CAN-2005-0005) [#49839] + +------------------------------------------------------------------- +Mon Nov 01 15:44:49 CET 2004 - nadvornik@suse.cz + +- fixed integer overflow in EXIF handling [#47745] + +------------------------------------------------------------------- +Tue Sep 14 18:46:03 CEST 2004 - nadvornik@suse.cz + +- branched new subpackage ImageMagick-Magick++-devel [#45245] + +------------------------------------------------------------------- +Tue Sep 14 14:48:53 CEST 2004 - nadvornik@suse.cz + +- removed Requires: ImageMagick-devel from ImageMagick-Magick++ [#45245] + +------------------------------------------------------------------- +Tue Sep 07 17:01:00 CEST 2004 - nadvornik@suse.cz + +- updated to 6.0.7 + * fixed possible miscompilation of included headers + * fixed PerlMagick's Profile crash [#44710] + * other bugfixes + +------------------------------------------------------------------- +Tue Aug 31 15:51:19 CEST 2004 - nadvornik@suse.cz + +- updated to 6.0.6-2: + * fixed decoding runlength-encoded BMP [#44081] + * enabled LZW compression + +------------------------------------------------------------------- +Mon Aug 9 18:56:19 CEST 2004 - ro@suse.de + +- fix build with current automake + +------------------------------------------------------------------- +Mon Jun 28 16:20:33 CEST 2004 - nadvornik@suse.cz + +- updated to 6.0.2 + +------------------------------------------------------------------- +Fri Mar 26 17:59:34 CET 2004 - nadvornik@suse.cz + +- adjusted default fonts + +------------------------------------------------------------------- +Fri Feb 06 15:44:35 CET 2004 - nadvornik@suse.cz + +- update to 5.5.7-16 +- added run_ldconfig macro +- build as user + +------------------------------------------------------------------- +Tue Sep 09 15:34:52 CEST 2003 - nadvornik@suse.cz + +- fixed annotate function [29748] + +------------------------------------------------------------------- +Mon Sep 08 17:34:35 CEST 2003 - nadvornik@suse.cz + +- fixed reading of tiff images [#25552] + +------------------------------------------------------------------- +Thu Aug 28 18:15:55 CEST 2003 - nadvornik@suse.cz + +- fixed output from Magick++-config --version +- compiled with -fno-strict-aliasing + +------------------------------------------------------------------- +Wed Aug 20 17:04:55 CEST 2003 - mjancar@suse.cz + +- require the perl version we build with + +------------------------------------------------------------------- +Tue Jul 29 12:15:32 CEST 2003 - nadvornik@suse.cz + +- lib64 fixed +- filelist fixed + +------------------------------------------------------------------- +Fri Jul 25 11:23:44 CEST 2003 - nadvornik@suse.cz + +- updated to 5.5.7-10 +- used perl_process_packlist + +------------------------------------------------------------------- +Mon Feb 10 18:44:41 CET 2003 - nadvornik@suse.cz + +- updated to 5.5.4-4: + - fixed bug [#23111] +- copied ltdl sources from libtool package + +------------------------------------------------------------------- +Thu Dec 19 13:59:00 CET 2002 - adrian@suse.de + +- add liblcms-devel to #neededforbuild + +------------------------------------------------------------------- +Thu Nov 21 19:14:43 CET 2002 - nadvornik@suse.cz + +- updated to 5.5.1 + +------------------------------------------------------------------- +Wed Nov 20 01:48:48 CET 2002 - ro@suse.de + +- fix build with latest automake + +------------------------------------------------------------------- +Fri Nov 01 11:48:35 CET 2002 - nadvornik@suse.cz + +- fixed detection of lpr [#21187] +- fixed to compile with new libjasper + +------------------------------------------------------------------- +Tue Sep 03 10:59:13 CEST 2002 - nadvornik@suse.cz + +- do not try to detect supported ghostscript devices [#18424] + +------------------------------------------------------------------- +Thu Aug 29 19:12:23 CEST 2002 - nadvornik@suse.cz + +- fixed typo in delegates.mgk + +------------------------------------------------------------------- +Sat Aug 10 17:30:02 CEST 2002 - kukuk@suse.de + +- Fix filelist for threaded perl + +------------------------------------------------------------------- +Fri Jul 26 21:45:42 CEST 2002 - adrian@suse.de + +- fix neededforbuild + +------------------------------------------------------------------- +Fri Jul 26 10:59:04 CEST 2002 - nadvornik@suse.cz + +- update to 5.4.7-4 + +------------------------------------------------------------------- +Tue Jul 2 13:41:13 CEST 2002 - nadvornik@suse.cz + +- update to 5.4.7 + +------------------------------------------------------------------- +Fri May 3 12:13:01 CEST 2002 - meissner@suse.de + +- %_lib fixes + +------------------------------------------------------------------- +Wed Mar 6 11:09:45 CET 2002 - nadvornik@suse.cz + +- added symlink index.html->ImageMagick.html in doc directory + +------------------------------------------------------------------- +Mon Feb 4 10:45:44 CET 2002 - nadvornik@suse.cz + +- update to 5.4.2-3, xtp updated to 5.4.3 + +------------------------------------------------------------------- +Fri Feb 1 00:26:08 CET 2002 - ro@suse.de + +- changed neededforbuild to + +------------------------------------------------------------------- +Thu Jan 17 10:34:38 CET 2002 - nadvornik@suse.cz + +- html files installed correctly + +------------------------------------------------------------------- +Tue Jan 15 14:31:52 CET 2002 - nadvornik@suse.cz + +- update to 5.4.2: + - new scripting language utility, conjure + +------------------------------------------------------------------- +Mon Dec 3 14:28:28 CET 2001 - nadvornik@suse.cz + +- update to 5.4.1: + - better SVG support + - changed default background color to none + - eliminated the libMagick.so dependancy on libtiff, libpng, libjpeg + - coders/wmf.c updated for libwmf 0.2 + +------------------------------------------------------------------- +Thu Oct 18 09:33:39 CEST 2001 - nadvornik@suse.cz + +- update to 5.4.0: + - Text drawing now handles UTF8-encoding + - Added a MATLAB encoder + - Uses SHA instead of MD5 for image signatures + +------------------------------------------------------------------- +Fri Aug 24 15:56:13 CEST 2001 - nadvornik@suse.cz + +- update to 5.3.8: + - Added a new method SetImageClipMask(). + - Added @ to the image geometry specification. Use it to specify + the square-root of the maximum area in pixels of an image + - many bugfixes + +------------------------------------------------------------------- +Tue Aug 21 12:19:07 CEST 2001 - nadvornik@suse.cz + +- removed wv-devel from neededforbuild, it is no longer needed +- fixed segfault in svg converting +- fixed doc installation + +------------------------------------------------------------------- +Wed Aug 15 10:14:51 CEST 2001 - nadvornik@suse.cz + +- compiled with libjasper + +------------------------------------------------------------------- +Tue Jul 24 13:43:46 CEST 2001 - nadvornik@suse.cz + +- update to 5.3.7 + +------------------------------------------------------------------- +Fri Jul 20 12:06:42 CEST 2001 - kukuk@suse.de + +- changed neededforbuild to +- changed neededforbuild to +- changed neededforbuild to +- changed neededforbuild to + +------------------------------------------------------------------- +Wed Jun 27 14:09:22 CEST 2001 - nadvornik@suse.cz + +- update to 5.3.6 +- dropped ImageMagick-pictures subpackage + +------------------------------------------------------------------- +Tue Jun 12 10:52:58 CEST 2001 - nadvornik@suse.cz + +- update to 5.3.5 +- fixed to compile with new autoconf + +------------------------------------------------------------------- +Tue Apr 17 16:27:01 CEST 2001 - kukuk@suse.de + +- Remove magickcpp_version macro + +------------------------------------------------------------------- +Thu Apr 5 08:47:01 CEST 2001 - nadvornik@suse.cz + +- updated to 5.3.1 + +------------------------------------------------------------------- +Tue Mar 27 14:29:57 CEST 2001 - ro@suse.de + +- libtoolize main dir as well + +------------------------------------------------------------------- +Tue Mar 27 00:49:07 CEST 2001 - ro@suse.de + +- libtoolize + +------------------------------------------------------------------- +Fri Mar 9 10:26:04 CET 2001 - nadvornik@suse.cz + +- updated to 5.3.0 +- fixed neededforbuild + +------------------------------------------------------------------- +Mon Feb 19 13:53:09 CET 2001 - nadvornik@suse.cz + +- fixed filelist + +------------------------------------------------------------------- +Tue Feb 13 10:35:43 CET 2001 - nadvornik@suse.cz + +- update to 5.2.9 + +------------------------------------------------------------------- +Tue Dec 12 11:31:17 CET 2000 - nadvornik@suse.cz + +- compiled with option --with-threads + +------------------------------------------------------------------- +Tue Dec 5 12:38:47 CET 2000 - nadvornik@suse.cz + +- update to 5.2.6 +- now uses freetype2 + +------------------------------------------------------------------- +Thu Nov 16 16:23:27 CET 2000 - nadvornik@suse.cz + +- update to 5.2.5 + +------------------------------------------------------------------- +Tue Nov 14 10:10:35 CET 2000 - nadvornik@suse.cz + +- fixed writing transparent xpm files + +------------------------------------------------------------------- +Wed Nov 8 11:05:39 CET 2000 - nadvornik@suse.cz + +- changed to long names +- imagemag -> ImageMagick +- magickd -> ImageMagick-devel +- magickpp -> ImageMagick-Magick++ +- plmagick -> perl-PerlMagick +- impict -> ImageMagick-pictures + +------------------------------------------------------------------- +Wed Oct 18 14:30:55 CEST 2000 - nadvornik@suse.cz + +- update to 5.2.4 +- compiled with --with-modules + +------------------------------------------------------------------- +Mon Sep 18 10:15:50 CEST 2000 - nadvornik@suse.cz + +- fixed usage of suse_update_config + +------------------------------------------------------------------- +Thu Sep 14 18:21:45 CEST 2000 - nadvornik@suse.cz + +- drop subpackage imfilm, removed povray from neededforbuild +- povray scripts are now in /usr/share/doc/imagemag/scenes + +------------------------------------------------------------------- +Thu Sep 14 14:35:20 CEST 2000 - nadvornik@suse.cz + +- update to 5.2.3 +- new subpackage magickd for includes and static libs +- changed prefix to /usr +- removed --without-largefiles + +------------------------------------------------------------------- +Wed Aug 23 00:05:39 CEST 2000 - ro@suse.de + +- fixed perl path + +------------------------------------------------------------------- +Thu Jun 8 08:29:04 CEST 2000 - nadvornik@suse.cz + +- update to latest source from ftp +- added source url + +------------------------------------------------------------------- +Tue Jun 6 09:28:47 CEST 2000 - nadvornik@suse.cz + +- images, scenes -> /usr/share/ImageMagick +- doc -> %{_defaultdocdir}/imagemag + +------------------------------------------------------------------- +Mon Jun 5 11:49:23 CEST 2000 - nadvornik@suse.cz + +- used --without-largefiles + +------------------------------------------------------------------- +Thu Jun 1 09:33:32 CEST 2000 - nadvornik@suse.cz + +- xtp updated to 5.2.0 + +------------------------------------------------------------------- +Mon May 29 08:13:38 CEST 2000 - nadvornik@suse.cz + +- updated to 5.2.0 + +------------------------------------------------------------------- +Fri May 19 11:23:14 CEST 2000 - nadvornik@suse.cz + +- used %{_defaultdocdir} +- changed group + +------------------------------------------------------------------- +Fri Apr 28 11:04:11 MEST 2000 - nadvornik@suse.cz + +- fixed to compile with xf86-4.0 + +------------------------------------------------------------------- +Mon Apr 10 16:18:44 CEST 2000 - nadvornik@suse.cz + +- added URL + +------------------------------------------------------------------- +Fri Apr 7 17:51:07 CEST 2000 - bk@suse.de + +- added suse config update macro + +------------------------------------------------------------------- +Thu Apr 6 15:39:12 CEST 2000 - nadvornik@suse.cz + +- update to 5.1.1 +- added BuildRoot + +------------------------------------------------------------------- +Wed Jan 19 15:35:24 CET 2000 - ro@suse.de + +- fixed specfile + +------------------------------------------------------------------- +Mon Jan 3 01:50:26 CET 2000 - ro@suse.de + +- update to 5.1.0 + +------------------------------------------------------------------- +Mon Sep 27 16:31:01 CEST 1999 - bs@suse.de + +- fixed requirements for sub packages + +------------------------------------------------------------------- +Mon Sep 13 17:23:57 CEST 1999 - bs@suse.de + +- ran old prepare_spec on spec file to switch to new prepare_spec. + +------------------------------------------------------------------- +Thu Sep 2 01:34:11 CEST 1999 - ro@suse.de + +- update to 4.2.9 + +------------------------------------------------------------------- +Mon Jun 28 19:25:23 MEST 1999 - ro@suse.de + +- update to 4.2.7 + +------------------------------------------------------------------- +Wed May 19 13:25:48 MEST 1999 - ro@suse.de + +- fixed path in specfile + +------------------------------------------------------------------- +Wed May 19 10:05:36 MEST 1999 - ro@suse.de + +- fixed specfile + +------------------------------------------------------------------- +Wed May 19 01:06:01 MEST 1999 - ro@suse.de + +- update to 4.2.5 +- new subpackage: magickpp (aka Magick++) a C++-API for libmagick + +------------------------------------------------------------------- +Fri Feb 19 12:29:08 MET 1999 - ro@suse.de + +- update to 4.2.0 + +------------------------------------------------------------------- +Mon Jan 18 17:41:46 MET 1999 - bs@suse.de + +- set libraries to 755 + +------------------------------------------------------------------- +Wed Jan 13 16:46:00 MET 1999 - ro@suse.de + +- update to 4.1.7 / PerlMagick 1.58 + +------------------------------------------------------------------- +Mon Dec 14 09:27:13 MET 1998 - ro@suse.de + +- update to 4.1.6 +- disabled unix98/ptys in configure.in + +------------------------------------------------------------------- +Tue Dec 1 11:05:32 MET 1998 - ro@suse.de + +- update to 4.1.5 / PerlMagick 1.53 + +------------------------------------------------------------------- +Tue Nov 17 11:52:34 MET 1998 - ro@suse.de + +- update to 4.1.4 +- switched to use configure instead of imake + +------------------------------------------------------------------- +Mon Aug 17 22:23:59 MEST 1998 - ro@suse.de + +- update to 4.0.9 + +------------------------------------------------------------------- +Fri Aug 14 16:02:00 MEST 1998 - ro@suse.de + +- fixed online documentation + /usr/doc/packages/ImageMagick/ImageMagick.html is start page +- added new subpackage PerlMagick "plmagick" + +------------------------------------------------------------------- +Thu Aug 13 17:47:24 MEST 1998 - ro@suse.de + +- update to 4.0.8 + fixed default for printCommand in Display with a app-defaults file + +------------------------------------------------------------------- +Mon Jun 29 09:09:33 MEST 1998 - ro@suse.de + +- update to version 4.0.7 + needs libpng-1.0.1 (and povray built with that version) + +------------------------------------------------------------------- +Tue Apr 7 17:39:35 MEST 1998 - ro@suse.de + +- update to version 4.0.4 + added freetype support + needs libpng-1.0.1 (and povray built with that version) + +------------------------------------------------------------------- +Sun Mar 1 12:19:28 MET 1998 - ro@suse.de + +- update to version 4.0.1 + +------------------------------------------------------------------- +Sun Nov 16 13:36:57 MET 1997 - ro@suse.de + +- fixed Symlink /usr/doc/packages/ImageMagick + +------------------------------------------------------------------- +Fri Nov 14 14:05:34 MET 1997 - ro@suse.de + +- new version 3.9.2 + +------------------------------------------------------------------- +Tue Nov 11 16:08:36 MET 1997 - ro@suse.de + +- imfilm and impict are built from same specfile + +------------------------------------------------------------------- +Mon Nov 3 17:49:58 MET 1997 - ro@suse.de + +- ready for autobuild + diff --git a/ImageMagick.spec b/ImageMagick.spec new file mode 100644 index 0000000..16fa3f9 --- /dev/null +++ b/ImageMagick.spec @@ -0,0 +1,581 @@ +# +# spec file for package ImageMagick (Version 6.3.0.0) +# +# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany. +# This file and all modifications and additions to the pristine +# package are under the same license as the package itself. +# +# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# + +# norootforbuild + +Name: ImageMagick +BuildRequires: dcraw freetype2-devel gcc-c++ ghostscript-fonts-other ghostscript-fonts-std ghostscript-library glib libexif libjasper liblcms-devel libtiff-devel libwmf-devel libxml2-devel pkgconfig +Obsoletes: imagemag +Provides: imagemag +%define xtp_version 5.4.3 +%define prefix /usr +%define perl_prefix /usr +License: Public Domain, Freeware, Other License(s), see package +Group: Productivity/Graphics/Other +Autoreqprov: on +Version: 6.3.0.0 +Release: 6 +Summary: Viewer and Converter for Images +URL: http://www.imagemagick.org +Source: ImageMagick-6.3.0-0.tar.bz2 +Source2: xtp-%{xtp_version}.tar.bz2 +Patch1: ImageMagick-%{version}-examples.patch +Patch2: ImageMagick-%{version}-doc.patch +Patch3: ImageMagick-%{version}-CVE-2006-5456.patch +BuildRoot: %{_tmppath}/%{name}-%{version}-build +%package -n perl-PerlMagick +Requires: perl = %{perl_version} +Summary: Perl interface for ImageMagick +Group: Development/Libraries/Perl +Autoreqprov: on +%package devel +Requires: ImageMagick = %{version} libtiff-devel libjpeg-devel liblcms-devel freetype2-devel xorg-x11-devel libpng-devel bzip2 libxml2-devel libjasper libwmf-devel +Summary: Include Files and Libraries Mandatory for Development. +Group: Development/Libraries/C and C++ +Autoreqprov: on +%package Magick++ +Requires: ImageMagick = %{version} +Obsoletes: magickpp +Provides: magickpp +Summary: C++ Interface for ImageMagick - runtime library +Group: Development/Libraries/C and C++ +Autoreqprov: on +%package Magick++-devel +Requires: ImageMagick-Magick++ = %{version} ImageMagick-devel = %{version} libstdc++-devel +Summary: C++ Interface for ImageMagick - files mandatory for development +Group: Development/Libraries/C and C++ +Autoreqprov: on +%prep +rm -rf xtp-%{xtp_version} +%setup -n ImageMagick-6.3.0 -b 2 +%patch1 +%patch2 +%patch3 + +%build +cp -f /usr/share/libtool/libltdl/*.{c,h} ltdl +mv ltdl/ltdl.c ltdl/ltdl.c.orig +sed -e "s:::" ltdl/ltdl.c.orig >ltdl/ltdl.c +%{?suse_update_config:%{suse_update_config -f ltdl }} +autoreconf --force --install +pushd ../xtp-%{xtp_version} +%{?suse_update_config:%{suse_update_config -f }} +autoreconf --force --install +popd +export CFLAGS="$RPM_OPT_FLAGS" +export CXXFLAGS="$RPM_OPT_FLAGS" +%if %suse_version > 1000 + export CFLAGS="$CFLAGS -fstack-protector-all" + export CFLAGS="$CXXFLAGS -fstack-protector-all" +%endif +export LDFLAGS="-L%{_libdir}" +./configure --prefix=%{prefix} --libdir=%{_libdir} \ + --mandir=%{_mandir} --enable-shared --without-frozenpaths \ + --with-largefiles --with-magick_plus_plus --with-modules\ + --with-threads --without-perl +make %{?jobs:-j%jobs} all +cd PerlMagick +perl Makefile.PL +make %{?jobs:-j%jobs} LD_RUN_PATH="/usr/%{_lib}:/usr/X11R6/%{_lib}" +# +cd ../../xtp-%{xtp_version} +export CFLAGS="$RPM_OPT_FLAGS -D_GNU_SOURCE" +export CXXFLAGS="$RPM_OPT_FLAGS" +./configure --prefix=%{prefix} --libdir=%{_libdir} --mandir=%{_mandir} +make %{?jobs:-j%jobs} + +%install +rm -rf $RPM_BUILD_ROOT +install -d $RPM_BUILD_ROOT/%{_defaultdocdir}/%{name}/images +make install \ + DESTDIR=$RPM_BUILD_ROOT \ + pkgdocdir=%{_defaultdocdir}/%{name}/ +install -m 644 ChangeLog \ + QuickStart.txt README.txt \ + $RPM_BUILD_ROOT/%{_defaultdocdir}/%{name}/ +cd PerlMagick +make DESTDIR=$RPM_BUILD_ROOT LD_RUN_PATH="/usr/%{_lib}:/usr/X11R6/%{_lib}" install_vendor +%perl_process_packlist +cd ../Magick++ + rm -rf demo/{.deps,.libs,*.C,*.o,Makefile*,run_demos.bat} `find demo -type f -perm +111` + mv demo/makefile.2 demo/Makefile +cd .. +pushd ../xtp-%{xtp_version} + make DESTDIR=$RPM_BUILD_ROOT install +popd +mv -f $RPM_BUILD_ROOT/usr/share/ImageMagick*/config/* $RPM_BUILD_ROOT/%{_libdir}/ImageMagick*/config +rmdir $RPM_BUILD_ROOT/usr/share/ImageMagick*/config +mv -f $RPM_BUILD_ROOT/usr/share/ImageMagick*/* $RPM_BUILD_ROOT/%{_defaultdocdir}/%{name}/ +cp -a scenes $RPM_BUILD_ROOT/%{_defaultdocdir}/%{name}/ +find $RPM_BUILD_ROOT/%{_libdir} -name "*.la" -print0 | xargs -0 -r perl -spi -e "s@ -L/usr/src[^ ]*@@g;s@ /usr/lib/libltdl.la@@g" +rm -f $RPM_BUILD_ROOT/usr/%_lib/libltdl.* + +%clean +rm -rf $RPM_BUILD_ROOT + +%post +%run_ldconfig + +%postun +%run_ldconfig + +%post Magick++ +%run_ldconfig + +%postun Magick++ +%run_ldconfig + +%files +%defattr(-,root,root) +%docdir %{_defaultdocdir}/%{name} +%{_defaultdocdir}/%{name} +%dir %{_libdir}/ImageMagick*/config +%config %{_libdir}/ImageMagick*/config/* +%{prefix}/bin/[^MW]* +%{_libdir}/libMagick.so.* +%{_libdir}/libWand.so.* +%doc %{_mandir}/man1/* +# +%dir %{_libdir}/ImageMagick* +%dir %{_libdir}/ImageMagick*/modules* +%dir %{_libdir}/ImageMagick*/modules*/* +%{_libdir}/ImageMagick*/modules*/*/*.so +%{_libdir}/ImageMagick*/modules*/*/*.la + +%files devel +%defattr(-,root,root) +%{_libdir}/libMagick.so +%{_libdir}/libMagick.a +%{_libdir}/libMagick.la +%{_libdir}/libWand.so +%{_libdir}/libWand.a +%{_libdir}/libWand.la +%{prefix}/include/magick +%{prefix}/include/wand +%{prefix}/bin/Magick-config +%{prefix}/bin/Wand-config +%{_libdir}/pkgconfig/ImageMagick.pc +%{_libdir}/pkgconfig/Wand.pc +# +%{_libdir}/ImageMagick*/modules*/*/*.a + +%files -n perl-PerlMagick +%defattr(-,root,root) +%doc PerlMagick/README.txt +%doc PerlMagick/demo +/var/adm/perl-modules/ImageMagick +%doc %{_mandir}/man3/Image::Magick.3pm* +%{perl_vendorarch}/auto/Image +%{perl_vendorarch}/Image + +%files Magick++ +%defattr(-,root,root) +%doc Magick++/NEWS Magick++/README Magick++/AUTHORS Magick++/COPYING +%{_libdir}/libMagick++.so.* + +%files Magick++-devel +%defattr(-,root,root) +%doc Magick++/demo +%{_libdir}/libMagick++.a +%{_libdir}/libMagick++.so +%{_libdir}/libMagick++.la +%{prefix}/include/Magick++.h +%{prefix}/include/Magick++ +%{prefix}/bin/Magick++-config +%{_libdir}/pkgconfig/ImageMagick++.pc + +%description +ImageMagick is a robust collection of tools and libraries to read, +write, and manipulate an image in many image formats, including popular +formats like TIFF, JPEG, PNG, PDF, PhotoCD, and GIF. With ImageMagick, +you can create images dynamically, making it suitable for Web +applications. You can also resize, rotate, sharpen, color-reduce, or +add special effects to an image and save your completed work in many +different image formats. Image processing operations are available from +the command line as well as through C, C++, and PERL-based programming +interfaces. + + + +Authors: +-------- + John Cristy + + +%description devel +ImageMagick is a robust collection of tools and libraries to read, +write, and manipulate an image in many image formats, including popular +formats like TIFF, JPEG, PNG, PDF, PhotoCD, and GIF. With ImageMagick, +you can create images dynamically, making it suitable for Web +applications. You can also resize, rotate, sharpen, color-reduce, or +add special effects to an image and save your completed work in many +different image formats. Image processing operations are available from +the command line as well as through C, C++, and PERL-based programming +interfaces. + + + +Authors: +-------- + John Cristy + + +%description -n perl-PerlMagick +PerlMagick is an objected-oriented Perl interface to ImageMagick. Use +the module to read, manipulate, or write an image or image sequence +from within a Perl script. This makes it suitable for Web CGI scripts. +You must have ImageMagick 4.0.8 above and Perl version 5.002 or greater +installed on your system. + + + +Authors: +-------- + John Cristy + + +%description Magick++ +This is Magick++, the object-oriented C++ API for the ImageMagick +image-processing library. + +Magick++ supports an object model inspired by PerlMagick. Magick++ +should be faster than PerlMagick since it is written in a compiled +language which is not parsed at run-time. This makes it suitable for +Web CGI programs. Images support implicit reference counting so that +copy constructors and assignment incur almost no cost. The cost of +actually copying an image (if necessary) is done just before +modification and this copy is managed automatically by Magick++. +De-referenced copies are automatically deleted. The image objects +support value (rather than pointer) semantics so it is trivial to +support multiple generations of an image in memory at one time. + + + +Authors: +-------- + Bob Friesenhahn + + +%description Magick++-devel +This is Magick++, the object-oriented C++ API for the ImageMagick +image-processing library. + +Magick++ supports an object model inspired by PerlMagick. Magick++ +should be faster than PerlMagick since it is written in a compiled +language which is not parsed at run-time. This makes it suitable for +Web CGI programs. Images support implicit reference counting so that +copy constructors and assignment incur almost no cost. The cost of +actually copying an image (if necessary) is done just before +modification and this copy is managed automatically by Magick++. +De-referenced copies are automatically deleted. The image objects +support value (rather than pointer) semantics so it is trivial to +support multiple generations of an image in memory at one time. + + + +Authors: +-------- + Bob Friesenhahn + + +%changelog -n ImageMagick +* Mon Oct 30 2006 - nadvornik@suse.cz +- fixed overflows in dcm and palm codecs CVE-2006-5456 [#215685] +* Wed Oct 18 2006 - postadal@suse.cz +- disabled -fstack-protector for %%suse_version <= 1000 +* Tue Oct 17 2006 - nadvornik@suse.cz +- updated to 1.3.0-0 + * enhanced -fx + * many bugfixes, see ChangeLog +* Thu Jul 13 2006 - nadvornik@suse.cz +- updated to 1.2.8-1 + * security fixes merged upstream + * fixed compilation with new libpng + * many other fixes +* Wed Mar 15 2006 - nadvornik@suse.cz +- fixed rpath in perl module +* Fri Feb 03 2006 - nadvornik@suse.cz +- better fix for format string vulnerability + CVE-2006-0082 [#141390] +- fixed shell metacharacters in file names passed into delegates + CVE-2005-4601 [#141999] +- added version numbers to devel subpackage requirements +* Wed Jan 25 2006 - mls@suse.de +- converted neededforbuild to BuildRequires +* Mon Jan 16 2006 - meissner@suse.de +- Use -fstack-protector. +* Tue Dec 20 2005 - nadvornik@suse.cz +- updated to 6.2.5 +* Wed Sep 21 2005 - nadvornik@suse.cz +- updated to 6.2.4 +* Sun Sep 18 2005 - postadal@suse.cz +- parallelize build +* Wed Sep 07 2005 - nadvornik@suse.cz +- fixed URL in man pages [#115568] +* Thu Jul 21 2005 - nadvornik@suse.cz +- moved .la files back to main package, they are needed for runtime +* Fri Jul 15 2005 - nadvornik@suse.cz +- updated to 6.2.3 +- fixed incorrect char type usage [#95086] +* Tue May 03 2005 - nadvornik@suse.cz +- updated to 6.2.2, fixes crash in PNM reader [#80428] +* Wed Mar 09 2005 - nadvornik@suse.cz +- fixed format string vulnerability [#67273] +* Wed Mar 02 2005 - nadvornik@suse.cz +- linked PerlMagick correcly +- added xorg-x11-devel to requires of devel subpackage +* Sat Jan 22 2005 - ro@suse.de +- fix libltdl removal on lib64 +* Tue Jan 18 2005 - nadvornik@suse.cz +- updated to 6.1.8 + * fixed .psd file read overflow (CAN-2005-0005) [#49839] +* Mon Nov 01 2004 - nadvornik@suse.cz +- fixed integer overflow in EXIF handling [#47745] +* Tue Sep 14 2004 - nadvornik@suse.cz +- branched new subpackage ImageMagick-Magick++-devel [#45245] +* Tue Sep 14 2004 - nadvornik@suse.cz +- removed Requires: ImageMagick-devel from ImageMagick-Magick++ [#45245] +* Tue Sep 07 2004 - nadvornik@suse.cz +- updated to 6.0.7 + * fixed possible miscompilation of included headers + * fixed PerlMagick's Profile crash [#44710] + * other bugfixes +* Tue Aug 31 2004 - nadvornik@suse.cz +- updated to 6.0.6-2: + * fixed decoding runlength-encoded BMP [#44081] + * enabled LZW compression +* Mon Aug 09 2004 - ro@suse.de +- fix build with current automake +* Mon Jun 28 2004 - nadvornik@suse.cz +- updated to 6.0.2 +* Fri Mar 26 2004 - nadvornik@suse.cz +- adjusted default fonts +* Fri Feb 06 2004 - nadvornik@suse.cz +- update to 5.5.7-16 +- added run_ldconfig macro +- build as user +* Tue Sep 09 2003 - nadvornik@suse.cz +- fixed annotate function [29748] +* Mon Sep 08 2003 - nadvornik@suse.cz +- fixed reading of tiff images [#25552] +* Thu Aug 28 2003 - nadvornik@suse.cz +- fixed output from Magick++-config --version +- compiled with -fno-strict-aliasing +* Wed Aug 20 2003 - mjancar@suse.cz +- require the perl version we build with +* Tue Jul 29 2003 - nadvornik@suse.cz +- lib64 fixed +- filelist fixed +* Fri Jul 25 2003 - nadvornik@suse.cz +- updated to 5.5.7-10 +- used perl_process_packlist +* Mon Feb 10 2003 - nadvornik@suse.cz +- updated to 5.5.4-4: + - fixed bug [#23111] +- copied ltdl sources from libtool package +* Thu Dec 19 2002 - adrian@suse.de +- add liblcms-devel to #neededforbuild +* Thu Nov 21 2002 - nadvornik@suse.cz +- updated to 5.5.1 +* Wed Nov 20 2002 - ro@suse.de +- fix build with latest automake +* Fri Nov 01 2002 - nadvornik@suse.cz +- fixed detection of lpr [#21187] +- fixed to compile with new libjasper +* Tue Sep 03 2002 - nadvornik@suse.cz +- do not try to detect supported ghostscript devices [#18424] +* Thu Aug 29 2002 - nadvornik@suse.cz +- fixed typo in delegates.mgk +* Sat Aug 10 2002 - kukuk@suse.de +- Fix filelist for threaded perl +* Fri Jul 26 2002 - adrian@suse.de +- fix neededforbuild +* Fri Jul 26 2002 - nadvornik@suse.cz +- update to 5.4.7-4 +* Tue Jul 02 2002 - nadvornik@suse.cz +- update to 5.4.7 +* Fri May 03 2002 - meissner@suse.de +- %%_lib fixes +* Wed Mar 06 2002 - nadvornik@suse.cz +- added symlink index.html->ImageMagick.html in doc directory +* Mon Feb 04 2002 - nadvornik@suse.cz +- update to 5.4.2-3, xtp updated to 5.4.3 +* Fri Feb 01 2002 - ro@suse.de +- changed neededforbuild to +* Thu Jan 17 2002 - nadvornik@suse.cz +- html files installed correctly +* Tue Jan 15 2002 - nadvornik@suse.cz +- update to 5.4.2: + - new scripting language utility, conjure +* Mon Dec 03 2001 - nadvornik@suse.cz +- update to 5.4.1: + - better SVG support + - changed default background color to none + - eliminated the libMagick.so dependancy on libtiff, libpng, libjpeg + - coders/wmf.c updated for libwmf 0.2 +* Thu Oct 18 2001 - nadvornik@suse.cz +- update to 5.4.0: + - Text drawing now handles UTF8-encoding + - Added a MATLAB encoder + - Uses SHA instead of MD5 for image signatures +* Fri Aug 24 2001 - nadvornik@suse.cz +- update to 5.3.8: + - Added a new method SetImageClipMask(). + - Added @ to the image geometry specification. Use it to specify + the square-root of the maximum area in pixels of an image + - many bugfixes +* Tue Aug 21 2001 - nadvornik@suse.cz +- removed wv-devel from neededforbuild, it is no longer needed +- fixed segfault in svg converting +- fixed doc installation +* Wed Aug 15 2001 - nadvornik@suse.cz +- compiled with libjasper +* Tue Jul 24 2001 - nadvornik@suse.cz +- update to 5.3.7 +* Fri Jul 20 2001 - kukuk@suse.de +- changed neededforbuild to +- changed neededforbuild to +- changed neededforbuild to +- changed neededforbuild to +* Wed Jun 27 2001 - nadvornik@suse.cz +- update to 5.3.6 +- dropped ImageMagick-pictures subpackage +* Tue Jun 12 2001 - nadvornik@suse.cz +- update to 5.3.5 +- fixed to compile with new autoconf +* Tue Apr 17 2001 - kukuk@suse.de +- Remove magickcpp_version macro +* Thu Apr 05 2001 - nadvornik@suse.cz +- updated to 5.3.1 +* Tue Mar 27 2001 - ro@suse.de +- libtoolize main dir as well +* Tue Mar 27 2001 - ro@suse.de +- libtoolize +* Fri Mar 09 2001 - nadvornik@suse.cz +- updated to 5.3.0 +- fixed neededforbuild +* Mon Feb 19 2001 - nadvornik@suse.cz +- fixed filelist +* Tue Feb 13 2001 - nadvornik@suse.cz +- update to 5.2.9 +* Tue Dec 12 2000 - nadvornik@suse.cz +- compiled with option --with-threads +* Tue Dec 05 2000 - nadvornik@suse.cz +- update to 5.2.6 +- now uses freetype2 +* Thu Nov 16 2000 - nadvornik@suse.cz +- update to 5.2.5 +* Tue Nov 14 2000 - nadvornik@suse.cz +- fixed writing transparent xpm files +* Wed Nov 08 2000 - nadvornik@suse.cz +- changed to long names +- imagemag -> ImageMagick +- magickd -> ImageMagick-devel +- magickpp -> ImageMagick-Magick++ +- plmagick -> perl-PerlMagick +- impict -> ImageMagick-pictures +* Wed Oct 18 2000 - nadvornik@suse.cz +- update to 5.2.4 +- compiled with --with-modules +* Mon Sep 18 2000 - nadvornik@suse.cz +- fixed usage of suse_update_config +* Thu Sep 14 2000 - nadvornik@suse.cz +- drop subpackage imfilm, removed povray from neededforbuild +- povray scripts are now in /usr/share/doc/imagemag/scenes +* Thu Sep 14 2000 - nadvornik@suse.cz +- update to 5.2.3 +- new subpackage magickd for includes and static libs +- changed prefix to /usr +- removed --without-largefiles +* Wed Aug 23 2000 - ro@suse.de +- fixed perl path +* Thu Jun 08 2000 - nadvornik@suse.cz +- update to latest source from ftp +- added source url +* Tue Jun 06 2000 - nadvornik@suse.cz +- images, scenes -> /usr/share/ImageMagick +- doc -> %%{_defaultdocdir}/imagemag +* Mon Jun 05 2000 - nadvornik@suse.cz +- used --without-largefiles +* Thu Jun 01 2000 - nadvornik@suse.cz +- xtp updated to 5.2.0 +* Mon May 29 2000 - nadvornik@suse.cz +- updated to 5.2.0 +* Fri May 19 2000 - nadvornik@suse.cz +- used %%{_defaultdocdir} +- changed group +* Fri Apr 28 2000 - nadvornik@suse.cz +- fixed to compile with xf86-4.0 +* Mon Apr 10 2000 - nadvornik@suse.cz +- added URL +* Fri Apr 07 2000 - bk@suse.de +- added suse config update macro +* Thu Apr 06 2000 - nadvornik@suse.cz +- update to 5.1.1 +- added BuildRoot +* Wed Jan 19 2000 - ro@suse.de +- fixed specfile +* Mon Jan 03 2000 - ro@suse.de +- update to 5.1.0 +* Mon Sep 27 1999 - bs@suse.de +- fixed requirements for sub packages +* Mon Sep 13 1999 - bs@suse.de +- ran old prepare_spec on spec file to switch to new prepare_spec. +* Thu Sep 02 1999 - ro@suse.de +- update to 4.2.9 +* Mon Jun 28 1999 - ro@suse.de +- update to 4.2.7 +* Wed May 19 1999 - ro@suse.de +- fixed path in specfile +* Wed May 19 1999 - ro@suse.de +- fixed specfile +* Wed May 19 1999 - ro@suse.de +- update to 4.2.5 +- new subpackage: magickpp (aka Magick++) a C++-API for libmagick +* Fri Feb 19 1999 - ro@suse.de +- update to 4.2.0 +* Mon Jan 18 1999 - bs@suse.de +- set libraries to 755 +* Wed Jan 13 1999 - ro@suse.de +- update to 4.1.7 / PerlMagick 1.58 +* Mon Dec 14 1998 - ro@suse.de +- update to 4.1.6 +- disabled unix98/ptys in configure.in +* Tue Dec 01 1998 - ro@suse.de +- update to 4.1.5 / PerlMagick 1.53 +* Tue Nov 17 1998 - ro@suse.de +- update to 4.1.4 +- switched to use configure instead of imake +* Mon Aug 17 1998 - ro@suse.de +- update to 4.0.9 +* Fri Aug 14 1998 - ro@suse.de +- fixed online documentation + /usr/doc/packages/ImageMagick/ImageMagick.html is start page +- added new subpackage PerlMagick "plmagick" +* Thu Aug 13 1998 - ro@suse.de +- update to 4.0.8 + fixed default for printCommand in Display with a app-defaults file +* Mon Jun 29 1998 - ro@suse.de +- update to version 4.0.7 + needs libpng-1.0.1 (and povray built with that version) +* Tue Apr 07 1998 - ro@suse.de +- update to version 4.0.4 + added freetype support + needs libpng-1.0.1 (and povray built with that version) +* Sun Mar 01 1998 - ro@suse.de +- update to version 4.0.1 +* Sun Nov 16 1997 - ro@suse.de +- fixed Symlink /usr/doc/packages/ImageMagick +* Fri Nov 14 1997 - ro@suse.de +- new version 3.9.2 +* Tue Nov 11 1997 - ro@suse.de +- imfilm and impict are built from same specfile +* Mon Nov 03 1997 - ro@suse.de +- ready for autobuild diff --git a/ready b/ready new file mode 100644 index 0000000..473a0f4 diff --git a/xtp-5.4.3.tar.bz2 b/xtp-5.4.3.tar.bz2 new file mode 100644 index 0000000..c58f578 --- /dev/null +++ b/xtp-5.4.3.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e373873fd9c20eab9116b3000361461830267f290fa5a61ebdd981785fe028cf +size 126590