diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 2e21a3f..0000000 --- a/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/gauche-gtk-*.tar.* diff --git a/00_no_path_xtra.patch b/00_no_path_xtra.patch deleted file mode 100644 index 6821d40..0000000 --- a/00_no_path_xtra.patch +++ /dev/null @@ -1,57 +0,0 @@ -Description: no PATH_XTRA - Don't configure for PATH_XTRA, but link to freetype2. -Author: NIIBE Yutaka -Reviewed-By: NIIBE Yutaka -Last-Update: 2013-01-21 - ---- a/glgd/Makefile.in -+++ b/glgd/Makefile.in -@@ -29,9 +29,9 @@ - # NB: cc and various flags must match the ones used to compile Gauche, - # so the make invocator shouldn't casually override them. - CC = @CC@ --CFLAGS = @DEFS@ @CFLAGS@ @X_CFLAGS@ `gauche-config -I` `gauche-config --so-cflags` $(GTKGL_CFLAGS) -+CFLAGS = @DEFS@ @CFLAGS@ `gauche-config -I` `gauche-config --so-cflags` $(GTKGL_CFLAGS) - LDFLAGS = $(GTKGL_LDFLAGS) @LDFLAGS@ `gauche-config -L` `gauche-config --so-ldflags` --LIBS = $(GTKGL_LIBS) @LIBS@ `gauche-config -l` @X_LIBS@ @X_PRE_LIBS@ -lXext -lX11 -+LIBS = $(GTKGL_LIBS) @LIBS@ `gauche-config -l` - GOSH = @GOSH@ - GAUCHE_CONFIG = @GAUCHE_CONFIG@ - INSTALL = @GAUCHE_INSTALL@ -@@ -47,6 +47,8 @@ - GTKGL_LDFLAGS = `pkg-config --libs-only-L gtkglext-1.0` - GTKGL_LIBS = $(PANGOFT2) `pkg-config --libs-only-l gtkglext-1.0` - -+FREETYPE_CFLAGS = `pkg-config --cflags freetype2` -+ - ARCHFILES = gauche-glgd.$(SOEXT) - SCMFILES = glgd.scm - SCMFILEDIR = $(top_srcdir)/lib/gtk ---- a/gtkgl/Makefile.in -+++ b/gtkgl/Makefile.in -@@ -28,9 +28,9 @@ - # NB: cc and various flags must match the ones used to compile Gauche, - # so the make invocator shouldn't casually override them. - CC = @CC@ --CFLAGS = @DEFS@ @CFLAGS@ @X_CFLAGS@ `gauche-config -I` `gauche-config --so-cflags` $(GTKGL_CFLAGS) -+CFLAGS = @DEFS@ @CFLAGS@ `gauche-config -I` `gauche-config --so-cflags` $(GTKGL_CFLAGS) - LDFLAGS = $(GTKGL_LDFLAGS) @LDFLAGS@ `gauche-config -L` `gauche-config --so-ldflags` --LIBS = $(GTKGL_LIBS) @LIBS@ `gauche-config -l` @X_LIBS@ @X_PRE_LIBS@ -lXext -lX11 -+LIBS = $(GTKGL_LIBS) @LIBS@ `gauche-config -l` - GOSH = @GOSH@ - GAUCHE_CONFIG = @GAUCHE_CONFIG@ - INSTALL = @GAUCHE_INSTALL@ ---- a/src/Makefile.in -+++ b/src/Makefile.in -@@ -29,9 +29,9 @@ - # NB: cc and various flags must match the ones used to compile Gauche, - # so the make invocator shouldn't casually override them. - CC = @CC@ --CFLAGS = @DEFS@ @CFLAGS@ @X_CFLAGS@ -I. `gauche-config -I` `gauche-config --so-cflags` $(GTK_CFLAGS) -+CFLAGS = @DEFS@ @CFLAGS@ -I. `gauche-config -I` `gauche-config --so-cflags` $(GTK_CFLAGS) - LDFLAGS = $(GTK_LDFLAGS) @LDFLAGS@ `gauche-config -L` `gauche-config --so-ldflags` --LIBS = $(GTK_LIBS) @LIBS@ `gauche-config -l` @X_LIBS@ @X_PRE_LIBS@ -lXext -lX11 -+LIBS = $(GTK_LIBS) @LIBS@ `gauche-config -l` - GOSH = @GOSH@ - GAUCHE_CONFIG = @GAUCHE_CONFIG@ - INSTALL = @GAUCHE_INSTALL@ diff --git a/05_install_755.patch b/05_install_755.patch deleted file mode 100644 index 7a74f91..0000000 --- a/05_install_755.patch +++ /dev/null @@ -1,38 +0,0 @@ -Description: install shared object with 755 -Author: NIIBE Yutaka -Reviewed-By: NIIBE Yutaka -Last-Update: 2013-01-21 - ---- a/src/Makefile.in -+++ b/src/Makefile.in -@@ -108,7 +108,7 @@ - install : all - $(INSTALL) -m 444 -T $(GAUCHE_PKGINCDIR) $(HEADERS) - $(INSTALL) -m 444 -T $(GAUCHE_PKGLIBDIR) $(SCMFILES) -- $(INSTALL) -m 555 -T $(GAUCHE_PKGARCHDIR) $(ARCHFILES) -+ $(INSTALL) -m 755 -T $(GAUCHE_PKGARCHDIR) $(ARCHFILES) - - # clean ------------------------------------------------ - ---- a/gtkgl/Makefile.in -+++ b/gtkgl/Makefile.in -@@ -86,7 +86,7 @@ - install : all - $(INSTALL) -m 444 -T $(GAUCHE_PKGINCDIR) $(HEADERS) - $(INSTALL) -m 444 -T $(GAUCHE_PKGLIBDIR) -S $(SCMFILEDIR) $(SCMFILES) -- $(INSTALL) -m 555 -T $(GAUCHE_PKGARCHDIR) $(ARCHFILES) -+ $(INSTALL) -m 755 -T $(GAUCHE_PKGARCHDIR) $(ARCHFILES) - - # clean ------------------------------------------------ - clean : ---- a/glgd/Makefile.in -+++ b/glgd/Makefile.in -@@ -101,7 +101,7 @@ - install : all - $(INSTALL) -m 444 -T $(GAUCHE_PKGINCDIR) $(HEADERS) - $(INSTALL) -m 444 -T $(GAUCHE_PKGLIBDIR) -S $(SCMFILEDIR) $(SCMFILES) -- $(INSTALL) -m 555 -T $(GAUCHE_PKGARCHDIR) $(ARCHFILES) -+ $(INSTALL) -m 755 -T $(GAUCHE_PKGARCHDIR) $(ARCHFILES) - - # clean ------------------------------------------------ - clean : diff --git a/06_gdk_pixbuf.patch b/06_gdk_pixbuf.patch deleted file mode 100644 index 7d2b930..0000000 --- a/06_gdk_pixbuf.patch +++ /dev/null @@ -1,46 +0,0 @@ -Description: Correct gdk-pixbuf paths so the header file parsing will work properly. -Author: Mathieu Trudel-Lapierre -Bug-Debian: http://bugs.debian.org/599239 -Reviewed-By: NIIBE Yutaka -Last-Update: 2013-01-21 - ---- a/src/h2stub.scm -+++ b/src/h2stub.scm -@@ -33,6 +33,7 @@ - - ;; Gtk and Pango version (major.minor) we're dealing with - (define gtk-version (make-parameter "2.0")) -+(define gdk-pixbuf-version (make-parameter "2.0")) - (define pango-version (make-parameter "1.0")) - - ;; Directories to search input header files. -@@ -45,6 +46,10 @@ - (cut port->string-list <>) - :on-abnormal-exit :ignore) - (call-with-input-process -+ #`"pkg-config --variable=includedir gdk-pixbuf-,(gdk-pixbuf-version)" -+ (cut port->string-list <>) -+ :on-abnormal-exit :ignore) -+ (call-with-input-process - #`"pkg-config --variable=includedir pango-,(pango-version)" - (cut port->string-list <>) - :on-abnormal-exit :ignore) -@@ -62,6 +67,9 @@ - (define gtk-directory - (make-parameter (find-header-dir #`"gtk-,(gtk-version)/gtk/gtk.h" - *header-search-paths* ))) -+(define gdk-pixbuf-directory -+ (make-parameter (find-header-dir #`"gdk-pixbuf,(gdk-pixbuf-version)/gdk-pixbuf/gdk-pixbuf.h" -+ *header-search-paths* ))) - (define pango-directory - (make-parameter (find-header-dir #`"pango-,(pango-version)/pango/pango.h" - *header-search-paths*))) -@@ -1277,7 +1285,7 @@ - (call-with-input-file "GDKFILES" port->string-list))) - - (define (parse-gdk-pixbuf) -- (parse-headers #`",(gtk-directory)/gdk-pixbuf" -+ (parse-headers #`",(gdk-pixbuf-directory)/gdk-pixbuf" - (call-with-input-file "GDKPIXBUFFILES" port->string-list))) - - (define (parse-gtk) diff --git a/07-HUGE.patch b/07-HUGE.patch deleted file mode 100644 index 9d0d8d0..0000000 --- a/07-HUGE.patch +++ /dev/null @@ -1,18 +0,0 @@ -Description: replace HUGE by HUGE_VAL -Author: Aurelien Jarno -Last-Update: 2018-02-24 - ---- gauche-gtk-0.6+git20160927.orig/glgd/glgdGraph.c -+++ gauche-gtk-0.6+git20160927/glgd/glgdGraph.c -@@ -19,11 +19,7 @@ - #define GLGDGRAPH_CAMORBIT (0) - #define GLGDGRAPH_NODENAME (1) - #define GLGDGRAPH_LINKNAME (2) --#ifdef __MINGW32__ - #define _MAXFLT (HUGE_VAL) --#else /*!__MINGW32__*/ --#define _MAXFLT (HUGE) --#endif /*!__MINGW32__*/ - #define _PANGO_DPI (72) - #define _PANGO_SCALE (3) - #define _TEXW (1024) diff --git a/08-configure-ac-fix.patch b/08-configure-ac-fix.patch deleted file mode 100644 index 9d63b4f..0000000 --- a/08-configure-ac-fix.patch +++ /dev/null @@ -1,70 +0,0 @@ -Index: gauche-gtk/configure.ac -=================================================================== ---- gauche-gtk.orig/configure.ac -+++ gauche-gtk/configure.ac -@@ -2,16 +2,15 @@ dnl - dnl Configuring gauche-gtk2 - dnl process this file with autoconf to generate 'configure'. - dnl --AC_PREREQ(2.54) --AC_INIT(Gauche-gtk2, 0.6_pre1, shiro@acm.org) -+AC_PREREQ([2.69]) -+AC_INIT([Gauche-gtk2],[0.6_pre1],[shiro@acm.org]) - - AC_CONFIG_HEADER(src/gtk-config.h) --AC_CANONICAL_SYSTEM -+AC_CANONICAL_TARGET - - dnl Replace @LOCAL_PATHS@ by --with-local option. - AC_ARG_WITH(local, -- AC_HELP_STRING([--with-local=PATH:PATH...], -- [For each PATH, add PATH/include to the include search -+ AS_HELP_STRING([--with-local=PATH:PATH...],[For each PATH, add PATH/include to the include search - paths and PATH/lib to the library search paths. Useful if you have some - libraries installed in non-standard places. ]), - [ -@@ -24,17 +23,17 @@ AC_SUBST(LOCAL_PATHS) - - # options for configure scripts - AC_ARG_ENABLE(gtkgl, -- AC_HELP_STRING([--enable-gtkgl], [Enable gtkglext interface.]), [ -- AC_DEFINE(HAVE_GTKGL, 1) -+ AS_HELP_STRING([--enable-gtkgl],[Enable gtkglext interface.]), [ -+ AC_DEFINE(HAVE_GTKGL, 1, [Have gtkglext interface]) - GTKGL_SO="gauche-gtkgl.so" - GTKGL_LIB="-lgtkgl"; - GTKGL_SCM="gtk/gtkgl.scm"; - PANGOFT2_LIB="" - ]) - AC_ARG_ENABLE(glgd, -- AC_HELP_STRING([--enable-glgd], [Enable glgd interface.]), [ -- AC_DEFINE(HAVE_GTKGL, 1) -- AC_DEFINE(HAVE_GLGD, 1) -+ AS_HELP_STRING([--enable-glgd],[Enable glgd interface.]), [ -+ AC_DEFINE(HAVE_GTKGL, 1, [Have gtkglext interface]) -+ AC_DEFINE(HAVE_GLGD, 1, [Have gldg interface]) - GTKGL_SO="gauche-gtkgl.so" - GTKGL_LIB="-lgtkgl"; - GTKGL_SCM="gtk/gtkgl.scm" -@@ -44,10 +43,10 @@ AC_ARG_ENABLE(glgd, - GLGD_SCM="gtk/glgd.scm" - ]) - AC_ARG_ENABLE(glgd-pango, -- AC_HELP_STRING([--enable-glgd-pango], [Enable glgd interface with Pango.]), [ -- AC_DEFINE(HAVE_GTKGL, 1) -- AC_DEFINE(HAVE_GLGD, 1) -- AC_DEFINE(HAVE_GLGD_PANGO, 1) -+ AS_HELP_STRING([--enable-glgd-pango],[Enable glgd interface with Pango.]), [ -+ AC_DEFINE(HAVE_GTKGL, 1, [Have gtkglext interface]) -+ AC_DEFINE(HAVE_GLGD, 1, [Have gldg interface]) -+ AC_DEFINE(HAVE_GLGD_PANGO, 1, [Have gldg interface with Pango]) - GTKGL_SO="gauche-gtkgl.so" - GTKGL_LIB="-lgtkgl"; - GTKGL_SCM="gtk/gtkgl.scm" -@@ -113,4 +112,5 @@ $GAUCHE_PACKAGE make-gpd "$PACKAGE_NAME" - - # Output - echo $PACKAGE_VERSION > VERSION --AC_OUTPUT(Makefile src/Makefile lib/Makefile gtkgl/Makefile glgd/Makefile) -+AC_CONFIG_FILES([Makefile src/Makefile lib/Makefile gtkgl/Makefile glgd/Makefile]) -+AC_OUTPUT diff --git a/09-gen-gpd-fix.patch b/09-gen-gpd-fix.patch deleted file mode 100644 index 59e39fb..0000000 --- a/09-gen-gpd-fix.patch +++ /dev/null @@ -1,13 +0,0 @@ -Index: gauche-gtk/configure.ac -=================================================================== ---- gauche-gtk.orig/configure.ac -+++ gauche-gtk/configure.ac -@@ -104,7 +104,7 @@ GEN_STUBS="`echo $gen_files | sed 's/\.h - AC_SUBST(GEN_STUBS) - - dnl Creating gpd (gauche package description) file --GAUCHE_PACKAGE_CONFIGURE_ARGS="`echo ""$ac_configure_args"" | sed 's/[\\""\`\$]/\\\&/g'`" -+GAUCHE_PACKAGE_CONFIGURE_ARGS=`echo "$ac_configure_args" | sed 's/@<:@\\"\`\$@:>@/\\\\&/g' 's/-f@<:@a-z@:>@*-prefix-map=@<:@^ @:>@* //'` - AC_MSG_NOTICE([creating ${PACKAGE_NAME}.gpd]) - $GAUCHE_PACKAGE make-gpd "$PACKAGE_NAME" \ - -version "$PACKAGE_VERSION" \ diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..7442532 --- /dev/null +++ b/dead.package @@ -0,0 +1,4 @@ +Retired, failed to install for 8+ weeks + +https://pagure.io/releng/issue/10318 +https://docs.fedoraproject.org/en-US/fesco/Fails_to_build_from_source_Fails_to_install/ diff --git a/gauche-gtk.spec b/gauche-gtk.spec deleted file mode 100644 index f338366..0000000 --- a/gauche-gtk.spec +++ /dev/null @@ -1,252 +0,0 @@ -%global gauche_main_version 0.97 - -%global snapshot_date 20181110 -%global git_sha 0220722c44ef85f2e1b9b14745702c1b923258e8 -%global git_revision %(c=%{git_sha}; echo ${c:0:7}) -%global alphatag %{snapshot_date}git%{git_revision} - -Name: gauche-gtk -Epoch: 1 -Version: 0.6 -Release: 0.29.%{alphatag}%{?dist} -Summary: Gauche extension module to use GTK - -License: BSD -URL: http://practical-scheme.net/ -Source0: https://github.com/shirok/Gauche-gtk2/archive/%{git_sha}.tar.gz#/%{name}-%{version}-%{git_revision}.tar.gz -Patch0: https://sources.debian.org/data/main/g/gauche-gtk/0.6+git20160927-3/debian/patches/00_no_path_xtra.patch -Patch1: https://sources.debian.org/data/main/g/gauche-gtk/0.6+git20160927-3/debian/patches/05_install_755.patch -Patch2: https://sources.debian.org/data/main/g/gauche-gtk/0.6+git20160927-3/debian/patches/06_gdk_pixbuf.patch -Patch3: https://sources.debian.org/data/main/g/gauche-gtk/0.6+git20160927-3/debian/patches/07-HUGE.patch -Patch4: https://sources.debian.org/data/main/g/gauche-gtk/0.6+git20160927-3/debian/patches/08-configure-ac-fix.patch -Patch5: https://sources.debian.org/data/main/g/gauche-gtk/0.6+git20160927-3/debian/patches/09-gen-gpd-fix.patch - -BuildRequires: gcc -BuildRequires: gauche-devel -BuildRequires: gtk2-devel -BuildRequires: gtkglext-devel -BuildRequires: libX11-devel -BuildRequires: libXt-devel -BuildRequires: libICE-devel -BuildRequires: autoconf -# used in test -BuildRequires: gauche-gl -BuildRequires: Xvfb xauth -BuildRequires: make - -Requires: gauche-gl - - -%description -Gauche extension module to use GTK. - - -%package devel -Summary: Development files for %{name} -Requires: %{name}%{?_isa} = %{epoch}:%{version}-%{release} - -%description devel -Development files for %{name}. - - -%prep -%autosetup -p 1 -n Gauche-gtk2-%{git_sha} -autoconf - - -%build -%configure --enable-gtkgl --enable-glgd --enable-glgd-pango -%make_build stubs -%make_build OPTFLAGS= - - -%install -mkdir -p %{buildroot}`gauche-config --syslibdir` -mkdir -p %{buildroot}`gauche-config --sysarchdir` -make install DESTDIR=%{buildroot} -find %{buildroot} -name '*.so' -exec chmod 0755 '{}' ';' -chmod -c 644 */*.c # for debuginfo - - -%check -# 'make check' does not set return code properly, but -# outputs to test.log -xvfb-run -a -w 1 %make_build check -# Gtk test currently fails. -# four known failures reported upstream; fail if more failures occur -# https://github.com/shirok/Gauche-gtk2/issues/2 -[ $(grep " ==> ERROR: GOT " src/test.log | wc -l) -le 4 ] - - - -%files -%doc README VERSION examples -%license COPYING -%{_libdir}/gauche-%{gauche_main_version}/site/*/*.so -%{_datadir}/gauche-%{gauche_main_version}/site/lib/.packages/Gauche-gtk2.gpd -%{_datadir}/gauche-%{gauche_main_version}/site/lib/gtk.scm -%{_datadir}/gauche-%{gauche_main_version}/site/lib/gtk -%{_datadir}/gauche-%{gauche_main_version}/site/lib/h2s - - -%files devel -%{_libdir}/gauche-%{gauche_main_version}/site/include/* - - -%changelog -* Wed Jul 21 2021 Fedora Release Engineering - 1:0.6-0.29.20181110git0220722 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild - -* Tue Jan 26 2021 Fedora Release Engineering - 1:0.6-0.28.20181110git0220722 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild - -* Mon Jul 27 2020 Fedora Release Engineering - 1:0.6-0.27.20181110git0220722 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Fri Apr 3 2020 Michel Alexandre Salim - 1:0.6-0.26.20181110git0220722 -- Rebuilt for Gauche 0.9.9 - -* Tue Jan 28 2020 Fedora Release Engineering - 1:0.6-0.25.20181110git0220722 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild - -* Thu Jul 25 2019 Fedora Release Engineering - 1:0.6-0.24.20181110git0220722 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild - -* Thu Jan 31 2019 Fedora Release Engineering - 1:0.6-0.23.20181110git0220722 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Sun Jan 06 2019 Björn Esser - 1:0.6-0.22.20160927git6fca535 -- Update to new snapshot, fixes FTBFS (#1604053) -- Add Debian patches, fixes FTBFS (#1604053) -- Add BuildRequires: gcc -- Use %%license for COPYING file -- Modernize spec-file - -* Fri Jul 13 2018 Fedora Release Engineering - 1:0.6-0.21.20121223gitceb4579 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - -* Wed Feb 07 2018 Fedora Release Engineering - 1:0.6-0.20.20121223gitceb4579 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild - -* Sat Jan 20 2018 Björn Esser - 1:0.6-0.19.20121223gitceb4579 -- Rebuilt for switch to libxcrypt - -* Wed Aug 02 2017 Fedora Release Engineering - 1:0.6-0.18.20121223gitceb4579 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild - -* Wed Jul 26 2017 Fedora Release Engineering - 1:0.6-0.17.20121223gitceb4579 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - -* Fri Feb 10 2017 Fedora Release Engineering - 1:0.6-0.16.20121223gitceb4579 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - -* Wed Feb 03 2016 Fedora Release Engineering - 1:0.6-0.15.20121223gitceb4579 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild - -* Wed Jun 17 2015 Fedora Release Engineering - 1:0.6-0.14.20121223gitceb4579 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild - -* Mon May 4 2015 Peter Robinson 1:0.6-0.13.20121223gitceb4579 -- Drop ExcludeArch for ppc64 - -* Thu Dec 4 2014 Michel Alexandre Salim - 1:0.6-0.12.20121223gitceb4579 -- Rebuild for Gauche 0.9.4 and Gauche-gl 0.6 -- Update to latest snapshot - -* Sat Aug 16 2014 Fedora Release Engineering - 1:0.6-0.11.20120403gitf7d3f802f3750 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild - -* Sat Jun 07 2014 Fedora Release Engineering - 1:0.6-0.10.20120403gitf7d3f802f3750 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Sat Aug 03 2013 Fedora Release Engineering - 1:0.6-0.9.20120403gitf7d3f802f3750 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild - -* Wed Feb 13 2013 Fedora Release Engineering - 1:0.6-0.8.20120403gitf7d3f802f3750 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild - -* Thu Jul 19 2012 Fedora Release Engineering - 1:0.6-0.7.20120403gitf7d3f802f3750 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild - -* Sun May 13 2012 Michel Salim - 1:0.6-0.6.20120403gitf7d3f802f3750 -- Correct the path to test log - -* Sun May 13 2012 Michel Salim - 1:0.6-0.5.20120403gitf7d3f802f3750 -- Rebuild for Gauche 0.9.3.x -- Update to latest snapshot -- Enable graphical tests -- Spec clean-ups - -* Fri Jan 13 2012 Fedora Release Engineering - 1:0.6-0.4.20110725git598828842a339 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild - -* Thu Sep 22 2011 Michel Salim - 1:0.6-0.3.20110725git598828842a339 -- Include Epoch field in -devel subpackage's dependence on main package - -* Fri Sep 16 2011 Michel Salim - 1:0.6-0.2.20110725git598828842a339 -- add Epoch field for upgrade path from mislabeled 0.9 release - -* Thu Sep 15 2011 Michel Salim - 0.6-0.1.20110725git598828842a339 -- Updated Git snapshot -- Fix version numbering -- Put header in -devel subpackage -- Fix overlapping directory ownerships -- Enable tests - -* Mon Feb 14 2011 Gerard Milmeister - 0.9-1.git20110214 -- New release to match Gauche 0.9 - -* Sat Aug 1 2009 Gerard Milmeister - 0.4.1-21 -- fix for gtk 2.17 - -* Fri Jul 24 2009 Fedora Release Engineering - 0.4.1-20 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - -* Sat Jun 20 2009 Gerard Milmeister - 0.4.1-19 -- updated for gauche 0.8.14 - -* Thu Feb 14 2008 Gerard Milmeister - 0.4.1-17 -- rebuild for gauche 0.8.13 - -* Mon Aug 20 2007 Gerard Milmeister - 0.4.1-16 -- fix include problem - -* Mon Aug 20 2007 Gerard Milmeister - 0.4.1-15 -- fix gtk problem - -* Sat Aug 18 2007 Gerard Milmeister - 0.4.1-14 -- exclude arch ppc64, depends on non-existing ppc64 gauche - -* Sat Aug 18 2007 Gerard Milmeister - 0.4.1-13 -- rebuild for gauche 0.8.11 - -* Fri Apr 20 2007 Gerard Milmeister - 0.4.1-12 -- rebuild for gauche 0.8.10 - -* Thu Feb 22 2007 Gerard Milmeister - 0.4.1-11 -- added fix for using opt flags - -* Thu Jan 18 2007 Gerard Milmeister - 0.4.1-10 -- rebuild for gauche 0.8.9 - -* Mon Nov 13 2006 Gerard Milmeister - 0.4.1-9 -- rebuilt for gauche 0.8.8 - -* Mon Aug 28 2006 Gerard Milmeister - 0.4.1-8 -- Rebuild for FE6 - -* Fri May 5 2006 Gerard Milmeister - 0.4.1-7 -- Added include flags for freetype -- Added -fPIC flag - -* Wed Feb 23 2005 Gerard Milmeister - 0:0.4.1-1 -- New Version 0.4.1 - -* Fri Mar 19 2004 Gerard Milmeister - 0:0.4-0.fdr.1 -- New Version 0.4 - -* Fri Mar 19 2004 Gerard Milmeister - 0:0.3.2-0.fdr.1 -- New Version 0.3.2 - -* Mon Nov 10 2003 Gerard Milmeister - 0:0.3.1-0.fdr.1 -- First Fedora release diff --git a/sources b/sources deleted file mode 100644 index 3217328..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (gauche-gtk-0.6-0220722.tar.gz) = 5379dafbfabd536e335c30af18f8ddd13e00238e6d99494bbc8e78ee9cf1db872c08b5deee42ac50898dedde39c441d837312d2d6f559a0d2ac2568c31926f70