Compare commits
1 commit
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2eb38b5a5d |
11 changed files with 556 additions and 21 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
/tomoe-stripped-0.6.0.tar.gz
|
||||
21
Makefile
21
Makefile
|
|
@ -1,21 +0,0 @@
|
|||
# Makefile for source rpm: tomoe
|
||||
# $Id$
|
||||
NAME := tomoe
|
||||
SPECFILE = $(firstword $(wildcard *.spec))
|
||||
|
||||
define find-makefile-common
|
||||
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(find-makefile-common))
|
||||
|
||||
ifeq ($(MAKEFILE_COMMON),)
|
||||
# attept a checkout
|
||||
define checkout-makefile-common
|
||||
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
|
||||
endif
|
||||
|
||||
include $(MAKEFILE_COMMON)
|
||||
1
sources
1
sources
|
|
@ -0,0 +1 @@
|
|||
SHA512 (tomoe-stripped-0.6.0.tar.gz) = feb168805c804abe5c276e1f1668fb2580f67686d271d6ff8b70a1aa525bc11cc74b7baaeb88a7f38a4b09c10fad54cdf204af4b8fac3be90b1c52ecfad11ad0
|
||||
38
strip.sh
Executable file
38
strip.sh
Executable file
|
|
@ -0,0 +1,38 @@
|
|||
#!/bin/sh -x
|
||||
|
||||
pkgname=tomoe
|
||||
litepkgname=tomoe-stripped
|
||||
|
||||
if test "x$1" = x; then
|
||||
echo "help: $0 <tomoe tar ball>"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
#compute file/path name
|
||||
tarfile=$1
|
||||
expandpath=${tarfile%.tar.gz}
|
||||
newtarfile="$litepkgname${tarfile#$pkgname}"
|
||||
|
||||
#prepare tmp directory
|
||||
rm -f $newtarfile
|
||||
mkdir ./tmp
|
||||
|
||||
pushd "./tmp"
|
||||
tar xf ../$tarfile
|
||||
|
||||
pushd "$expandpath/data"
|
||||
# remove the skip code from kanjidic2-original.xml
|
||||
sed -i s/\<q_code\ qc_type=\"skip\"\>[0-9]*-[0-9]*-[0-9]*\<\\/q_code\>//g kanjidic2-original.xml
|
||||
mv kanjidic2.xml kanjidic2.xml.orig
|
||||
xsltproc kanjidic2-original.xsl kanjidic2-original.xml > kanjidic2.xml
|
||||
# check the changes in kanjidic2.xml
|
||||
diff kanjidic2.xml.orig kanjidic2.xml
|
||||
mv kanjidic2.xml.orig kanjidic2.xml
|
||||
popd
|
||||
|
||||
tar zcf ${newtarfile} $expandpath
|
||||
rm -r $expandpath
|
||||
popd
|
||||
|
||||
mv ./tmp/$newtarfile .
|
||||
rmdir ./tmp
|
||||
124
tomoe-0.6.0-bz502662.patch
Normal file
124
tomoe-0.6.0-bz502662.patch
Normal file
|
|
@ -0,0 +1,124 @@
|
|||
diff -up ./lib/tomoe-dict-ptr-array.c.bz502662 ./lib/tomoe-dict-ptr-array.c
|
||||
--- ./lib/tomoe-dict-ptr-array.c.bz502662 2007-06-21 11:48:57.000000000 +1000
|
||||
+++ ./lib/tomoe-dict-ptr-array.c 2009-06-02 13:23:40.000000000 +1000
|
||||
@@ -50,7 +50,7 @@ struct _TomoeDictPtrArrayPrivate
|
||||
|
||||
static TomoeDictClass *parent_class;
|
||||
|
||||
-G_DEFINE_ABSTRACT_TYPE (TomoeDictPtrArray, _tomoe_dict_ptr_array, TOMOE_TYPE_DICT)
|
||||
+G_DEFINE_ABSTRACT_TYPE (TomoeDictPtrArray, tomoe_dict_ptr_array, TOMOE_TYPE_DICT)
|
||||
|
||||
static void dispose (GObject *object);
|
||||
static void set_property (GObject *object,
|
||||
@@ -75,7 +75,7 @@ static gboolean is_editable
|
||||
static gchar *get_available_private_utf8 (TomoeDict *dict);
|
||||
|
||||
static void
|
||||
-_tomoe_dict_ptr_array_class_init (TomoeDictPtrArrayClass *klass)
|
||||
+tomoe_dict_ptr_array_class_init (TomoeDictPtrArrayClass *klass)
|
||||
{
|
||||
GObjectClass *gobject_class;
|
||||
TomoeDictClass *dict_class;
|
||||
@@ -123,7 +123,7 @@ _tomoe_dict_ptr_array_class_init (TomoeD
|
||||
}
|
||||
|
||||
static void
|
||||
-_tomoe_dict_ptr_array_init (TomoeDictPtrArray *dict)
|
||||
+tomoe_dict_ptr_array_init (TomoeDictPtrArray *dict)
|
||||
{
|
||||
TomoeDictPtrArrayPrivate *priv = TOMOE_DICT_PTR_ARRAY_GET_PRIVATE (dict);
|
||||
priv->chars = g_ptr_array_new();
|
||||
@@ -196,7 +196,7 @@ char_compare_func (gconstpointer a, gcon
|
||||
}
|
||||
|
||||
void
|
||||
-_tomoe_dict_ptr_array_sort (TomoeDictPtrArray *dict)
|
||||
+tomoe_dict_ptr_array_sort (TomoeDictPtrArray *dict)
|
||||
{
|
||||
TomoeDictPtrArrayPrivate *priv;
|
||||
|
||||
@@ -219,7 +219,7 @@ register_char (TomoeDict *dict, TomoeCha
|
||||
|
||||
unregister_char (dict, tomoe_char_get_utf8 (chr));
|
||||
g_ptr_array_add (priv->chars, g_object_ref (G_OBJECT (chr)));
|
||||
- _tomoe_dict_ptr_array_sort (TOMOE_DICT_PTR_ARRAY (dict));
|
||||
+ tomoe_dict_ptr_array_sort (TOMOE_DICT_PTR_ARRAY (dict));
|
||||
|
||||
priv->modified = TRUE;
|
||||
|
||||
@@ -523,7 +523,7 @@ get_available_private_utf8 (TomoeDict *d
|
||||
}
|
||||
|
||||
GPtrArray *
|
||||
-_tomoe_dict_ptr_array_get_array (TomoeDictPtrArray *dict)
|
||||
+tomoe_dict_ptr_array_get_array (TomoeDictPtrArray *dict)
|
||||
{
|
||||
g_return_val_if_fail (TOMOE_IS_DICT_PTR_ARRAY (dict), NULL);
|
||||
|
||||
diff -up ./lib/tomoe-dict-ptr-array.h.bz502662 ./lib/tomoe-dict-ptr-array.h
|
||||
--- ./lib/tomoe-dict-ptr-array.h.bz502662 2007-06-21 11:48:57.000000000 +1000
|
||||
+++ ./lib/tomoe-dict-ptr-array.h 2009-06-02 13:27:12.000000000 +1000
|
||||
@@ -29,7 +29,7 @@ G_BEGIN_DECLS
|
||||
|
||||
#include "tomoe-dict.h"
|
||||
|
||||
-#define TOMOE_TYPE_DICT_PTR_ARRAY (_tomoe_dict_ptr_array_get_type ())
|
||||
+#define TOMOE_TYPE_DICT_PTR_ARRAY (tomoe_dict_ptr_array_get_type ())
|
||||
#define TOMOE_DICT_PTR_ARRAY(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TOMOE_TYPE_DICT_PTR_ARRAY, TomoeDictPtrArray))
|
||||
#define TOMOE_DICT_PTR_ARRAY_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TOMOE_TYPE_DICT_PTR_ARRAY, TomoeDictPtrArrayClass))
|
||||
#define TOMOE_IS_DICT_PTR_ARRAY(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TOMOE_TYPE_DICT_PTR_ARRAY))
|
||||
@@ -49,9 +49,11 @@ struct _TomoeDictPtrArrayClass
|
||||
TomoeDictClass parent_class;
|
||||
};
|
||||
|
||||
-GType _tomoe_dict_ptr_array_get_type (void) G_GNUC_CONST;
|
||||
-void _tomoe_dict_ptr_array_sort (TomoeDictPtrArray *dict);
|
||||
-GPtrArray *_tomoe_dict_ptr_array_get_array (TomoeDictPtrArray *dict);
|
||||
+GType tomoe_dict_ptr_array_get_type (void) G_GNUC_CONST;
|
||||
+void tomoe_dict_ptr_array_sort (TomoeDictPtrArray *dict);
|
||||
+#define _tomoe_dict_ptr_array_sort tomoe_dict_ptr_array_sort
|
||||
+GPtrArray *tomoe_dict_ptr_array_get_array (TomoeDictPtrArray *dict);
|
||||
+#define _tomoe_dict_ptr_array_get_array tomoe_dict_ptr_array_get_array
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
diff -up ./lib/tomoe-xml-parser.c.bz502662 ./lib/tomoe-xml-parser.c
|
||||
--- ./lib/tomoe-xml-parser.c.bz502662 2007-04-10 17:24:21.000000000 +1000
|
||||
+++ ./lib/tomoe-xml-parser.c 2009-06-02 13:23:40.000000000 +1000
|
||||
@@ -428,7 +428,7 @@ init_parse_data (ParseData *data, TomoeX
|
||||
}
|
||||
|
||||
gboolean
|
||||
-_tomoe_xml_parser_parse_dictionary_file (const gchar *filename,
|
||||
+tomoe_xml_parser_parse_dictionary_file (const gchar *filename,
|
||||
TomoeXMLParsedData *result)
|
||||
{
|
||||
GMarkupParseContext *context;
|
||||
@@ -469,7 +469,7 @@ _tomoe_xml_parser_parse_dictionary_file
|
||||
}
|
||||
|
||||
TomoeChar *
|
||||
-_tomoe_xml_parser_parse_char_data (const gchar *xml, gssize len)
|
||||
+tomoe_xml_parser_parse_char_data (const gchar *xml, gssize len)
|
||||
{
|
||||
GMarkupParseContext *context;
|
||||
TomoeXMLParsedData result;
|
||||
diff -up ./lib/tomoe-xml-parser.h.bz502662 ./lib/tomoe-xml-parser.h
|
||||
--- ./lib/tomoe-xml-parser.h.bz502662 2007-04-10 17:24:21.000000000 +1000
|
||||
+++ ./lib/tomoe-xml-parser.h 2009-06-02 13:23:40.000000000 +1000
|
||||
@@ -37,11 +37,12 @@ struct _TomoeXMLParsedData
|
||||
GPtrArray *chars;
|
||||
};
|
||||
|
||||
-gboolean _tomoe_xml_parser_parse_dictionary_file (const gchar *filename,
|
||||
+gboolean tomoe_xml_parser_parse_dictionary_file (const gchar *filename,
|
||||
TomoeXMLParsedData *result);
|
||||
-TomoeChar *_tomoe_xml_parser_parse_char_data (const gchar *xml,
|
||||
+#define _tomoe_xml_parser_parse_dictionary_file tomoe_xml_parser_parse_dictionary_file
|
||||
+TomoeChar *tomoe_xml_parser_parse_char_data (const gchar *xml,
|
||||
gssize len);
|
||||
-
|
||||
+#define _tomoe_xml_parser_parse_char_data tomoe_xml_parser_parse_char_data
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
26
tomoe-0.6.0-fixes-glib-includes.patch
Normal file
26
tomoe-0.6.0-fixes-glib-includes.patch
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
Index: tomoe-0.6.0/lib/glib-utils.h
|
||||
===================================================================
|
||||
--- tomoe-0.6.0.orig/lib/glib-utils.h
|
||||
+++ tomoe-0.6.0/lib/glib-utils.h
|
||||
@@ -28,7 +28,7 @@
|
||||
#include "config.h"
|
||||
#endif /* HAVE_CONFIG_H */
|
||||
|
||||
-#include <glib/garray.h>
|
||||
+#include <glib.h>
|
||||
#include <glib/gi18n-lib.h>
|
||||
#include "glib-compat-file-utilities.h"
|
||||
#include "glib-compat-key-file.h"
|
||||
Index: tomoe-0.6.0/lib/tomoe.c
|
||||
===================================================================
|
||||
--- tomoe-0.6.0.orig/lib/tomoe.c
|
||||
+++ tomoe-0.6.0/lib/tomoe.c
|
||||
@@ -26,7 +26,7 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
-#include <glib/garray.h>
|
||||
+#include <glib.h>
|
||||
#include "tomoe.h"
|
||||
|
||||
static gboolean initialized = FALSE;
|
||||
17
tomoe-0.6.0-fixes-set-parse-error.patch
Normal file
17
tomoe-0.6.0-fixes-set-parse-error.patch
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
Index: tomoe-0.6.0/lib/tomoe-xml-parser.c
|
||||
===================================================================
|
||||
--- tomoe-0.6.0.orig/lib/tomoe-xml-parser.c
|
||||
+++ tomoe-0.6.0/lib/tomoe-xml-parser.c
|
||||
@@ -80,9 +80,9 @@ set_parse_error (GMarkupParseContext *co
|
||||
"Invalid content at line %d char %d of %s.",
|
||||
line, chr, data->filename);
|
||||
|
||||
- *error = g_error_new (G_MARKUP_ERROR,
|
||||
- G_MARKUP_ERROR_INVALID_CONTENT,
|
||||
- buf);
|
||||
+ *error = g_error_new_literal (G_MARKUP_ERROR,
|
||||
+ G_MARKUP_ERROR_INVALID_CONTENT,
|
||||
+ buf);
|
||||
}
|
||||
|
||||
static void
|
||||
45
tomoe-0.6.0-multiarch-conflict.patch
Normal file
45
tomoe-0.6.0-multiarch-conflict.patch
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
diff -up ./doc/reference/tomoe-docs.sgml.multiarch-conflict ./doc/reference/tomoe-docs.sgml
|
||||
--- ./doc/reference/tomoe-docs.sgml.multiarch-conflict 2007-04-10 17:24:20.000000000 +1000
|
||||
+++ ./doc/reference/tomoe-docs.sgml 2009-01-19 09:57:04.000000000 +1000
|
||||
@@ -40,7 +40,7 @@
|
||||
&tomoe-Writing;
|
||||
</chapter>
|
||||
|
||||
- <index>
|
||||
+ <index id="index_page">
|
||||
<title>Index</title>
|
||||
</index>
|
||||
<!--
|
||||
diff -up ./lib/tomoe-char.c.multiarch-conflict ./lib/tomoe-char.c
|
||||
--- ./lib/tomoe-char.c.multiarch-conflict 2007-06-18 11:35:43.000000000 +1000
|
||||
+++ ./lib/tomoe-char.c 2009-01-16 17:55:11.000000000 +1000
|
||||
@@ -92,7 +92,7 @@ tomoe_char_class_init (TomoeCharClass *k
|
||||
spec = g_param_spec_int ("n_strokes",
|
||||
N_("Number of strokes"),
|
||||
N_("Number of strokes of the character."),
|
||||
- -1, G_MAXINT32, -1,
|
||||
+ -2, G_MAXINT32, -1,
|
||||
G_PARAM_READABLE | G_PARAM_WRITABLE);
|
||||
g_object_class_install_property (gobject_class, PROP_N_STROKES, spec);
|
||||
|
||||
diff -up ./lib/tomoe-query.c.multiarch-conflict ./lib/tomoe-query.c
|
||||
--- ./lib/tomoe-query.c.multiarch-conflict 2007-06-07 17:04:20.000000000 +1000
|
||||
+++ ./lib/tomoe-query.c 2009-01-16 17:55:11.000000000 +1000
|
||||
@@ -95,7 +95,7 @@ tomoe_query_class_init (TomoeQueryClass
|
||||
N_("Minimum number of strokes"),
|
||||
N_("Minimum number of strokes of searched "
|
||||
"character."),
|
||||
- -1, G_MAXINT32, -1,
|
||||
+ -2, G_MAXINT32, -1,
|
||||
G_PARAM_READWRITE);
|
||||
g_object_class_install_property (gobject_class, PROP_MIN_N_STROKES, spec);
|
||||
|
||||
@@ -103,7 +103,7 @@ tomoe_query_class_init (TomoeQueryClass
|
||||
N_("Maximum number of strokes"),
|
||||
N_("Maximum number of strokes of searched "
|
||||
"character."),
|
||||
- -1, G_MAXINT32, -1,
|
||||
+ -2, G_MAXINT32, -1,
|
||||
G_PARAM_READWRITE);
|
||||
g_object_class_install_property (gobject_class, PROP_MAX_N_STROKES, spec);
|
||||
|
||||
13
tomoe-strerror.patch
Normal file
13
tomoe-strerror.patch
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
diff --git a/lib/tomoe-xml-parser.c b/lib/tomoe-xml-parser.c
|
||||
index a9e458b..fe50485 100644
|
||||
--- a/lib/tomoe-xml-parser.c
|
||||
+++ b/lib/tomoe-xml-parser.c
|
||||
@@ -441,7 +441,7 @@ tomoe_xml_parser_parse_dictionary_file (const gchar *filename,
|
||||
f = fopen (filename, "rb");
|
||||
if (!f) {
|
||||
g_warning ("failed to open dictionary file %s: %s", filename,
|
||||
- sys_errlist[errno]);
|
||||
+ strerror(errno));
|
||||
}
|
||||
g_return_val_if_fail (f, FALSE);
|
||||
|
||||
291
tomoe.spec
Normal file
291
tomoe.spec
Normal file
|
|
@ -0,0 +1,291 @@
|
|||
%define python_binding 0
|
||||
%define ruby_binding 0
|
||||
|
||||
Name: tomoe
|
||||
Version: 0.6.0
|
||||
Release: 47%{?dist}
|
||||
Summary: Handwritten input system for Japanese and Chinese
|
||||
|
||||
License: LGPLv2+
|
||||
URL: http://tomoe.sourceforge.jp/
|
||||
## stripped tarball is generated as follows:
|
||||
# $ wget http://downloads.sourceforge.net/sourceforge/tomoe/%{name}-%{version}.tar.gz
|
||||
# $ ./strip.sh %{name}-%{version}.tar.gz
|
||||
Source0: %{name}-stripped-%{version}.tar.gz
|
||||
Source1: strip.sh
|
||||
Patch0: tomoe-0.6.0-multiarch-conflict.patch
|
||||
Patch1: tomoe-0.6.0-bz502662.patch
|
||||
Patch2: tomoe-0.6.0-fixes-glib-includes.patch
|
||||
Patch3: tomoe-0.6.0-fixes-set-parse-error.patch
|
||||
Patch4: tomoe-strerror.patch
|
||||
|
||||
BuildRequires: make
|
||||
BuildRequires: glib2-devel, gettext, gtk-doc, libtool, intltool
|
||||
BuildRequires: perl(XML::Parser), python3
|
||||
%if %{python_binding}
|
||||
BuildRequires: pygobject2-devel, python2-devel, pygtk2-codegen
|
||||
%endif
|
||||
%if %{ruby_binding}
|
||||
BuildRequires: ruby-glib2-devel
|
||||
%endif
|
||||
## for extra dictionary backends
|
||||
#BuildRequires: mariadb-connector-c-devel, subversion-devel, hyperestraier-devel
|
||||
|
||||
%description
|
||||
A program which does Japanese handwriting recognition.
|
||||
|
||||
|
||||
%package devel
|
||||
Summary: Tomoe development files
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
|
||||
%description devel
|
||||
The tomoe-devel package includes the header files for the tomoe package.
|
||||
Install this package if you want to develop programs which use tomoe.
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
%patch0 -p0 -b .multiarch-conflict
|
||||
%patch1 -p0 -b .bz502662
|
||||
%patch2 -p1 -b .glib
|
||||
%patch3 -p1 -b .compile
|
||||
%patch4 -p1 -b .strerror
|
||||
|
||||
%build
|
||||
./autogen.sh
|
||||
%configure --disable-static --enable-gtk-doc
|
||||
make %{?_smp_mflags}
|
||||
|
||||
|
||||
%install
|
||||
make install DESTDIR=$RPM_BUILD_ROOT
|
||||
|
||||
%if !%{ruby_binding}
|
||||
rm -f $RPM_BUILD_ROOT%{_libdir}/ruby/site_ruby/*/tomoe.rb $RPM_BUILD_ROOT%{_libdir}/ruby/site_ruby/*/*-linux/*
|
||||
%endif
|
||||
chmod 755 $RPM_BUILD_ROOT%{_datadir}/%{name}/xml2est.rb
|
||||
|
||||
# remove .la files
|
||||
find ${RPM_BUILD_ROOT}%{_libdir} -name '*.la' | xargs rm
|
||||
|
||||
%find_lang %{name}
|
||||
|
||||
|
||||
|
||||
%ldconfig_scriptlets
|
||||
|
||||
|
||||
%files -f %{name}.lang
|
||||
%doc AUTHORS COPYING NEWS README TODO data/kanjidic*.html
|
||||
%{_libdir}/libtomoe.so.*
|
||||
%if %{python_binding}
|
||||
%{_libdir}/python?.?/site-packages/tomoe.so
|
||||
%endif
|
||||
%{_libdir}/tomoe
|
||||
%{_datadir}/tomoe
|
||||
%dir %{_sysconfdir}/tomoe
|
||||
%config(noreplace) %{_sysconfdir}/tomoe/config
|
||||
|
||||
|
||||
%files devel
|
||||
%{_libdir}/libtomoe.so
|
||||
%{_includedir}/tomoe
|
||||
%{_libdir}/pkgconfig/tomoe.pc
|
||||
%{_datadir}/gtk-doc
|
||||
%if %{python_binding}
|
||||
%{_libdir}/pkgconfig/pytomoe.pc
|
||||
%endif
|
||||
%if %{ruby_binding}
|
||||
%{_libdir}/ruby/site_ruby/1.8/tomoe.rb
|
||||
%{_libdir}/ruby/site_ruby/1.8/*-linux/*
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.0-47
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.0-46
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Thu Jul 23 2020 Jeff Law <law@redhat.com> - 0.6.0-45
|
||||
- Use strerror, not sys_errlist
|
||||
|
||||
* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.0-44
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Tue Aug 13 2019 Peng Wu <pwu@redhat.com> - 0.6.0-43
|
||||
- Disable python binding
|
||||
|
||||
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.0-42
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.0-41
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.0-40
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.0-39
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Thu Feb 01 2018 Iryna Shcherbina <ishcherb@redhat.com> - 0.6.0-38
|
||||
- Update Python 2 dependency declarations to new packaging standards
|
||||
(See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
|
||||
|
||||
* Fri Sep 22 2017 Peng Wu <pwu@redhat.com> - 0.6.0-37
|
||||
- Update BuildRequires to mariadb-connector-c-devel
|
||||
- Add tomoe-0.6.0-fixes-set-parse-error.patch to fix compile
|
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.0-36
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.0-35
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.0-34
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.0-33
|
||||
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
||||
|
||||
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.0-32
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.0-31
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.0-30
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||
|
||||
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.0-29
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Fri Feb 14 2014 Peng Wu <pwu@redhat.com> - 0.6.0-28
|
||||
- Add comments
|
||||
|
||||
* Wed Feb 12 2014 Peng Wu <pwu@redhat.com> - 0.6.0-27
|
||||
- Fixes skip code license issue (rhbz#969415)
|
||||
|
||||
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.0-26
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Thu Mar 28 2013 Peng Wu <pwu@redhat.com> - 0.6.0-25
|
||||
- Enable gtk-doc
|
||||
|
||||
* Mon Mar 25 2013 Peng Wu <pwu@redhat.com> - 0.6.0-24
|
||||
- Fixes aarch64 build
|
||||
|
||||
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.0-23
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||
|
||||
* Tue Jul 24 2012 Peng Wu <pwu@redhat.com> - 0.6.0-22
|
||||
- Fixes glib includes
|
||||
|
||||
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.0-21
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.0-20
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||
|
||||
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.0-19
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||
|
||||
* Wed Sep 29 2010 jkeating - 0.6.0-18
|
||||
- Rebuilt for gcc bug 634757
|
||||
|
||||
* Thu Sep 16 2010 Jens Petersen <petersen@redhat.com> - 0.6.0-17
|
||||
- drop dependency on gtk-doc and own the gtk-doc dir (#604416)
|
||||
- update url
|
||||
|
||||
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 0.6.0-16
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
|
||||
|
||||
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.0-15
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||
|
||||
* Tue Jun 2 2009 Ding-Yi Chen <dchen at redhat.com> - 0.6.0-14
|
||||
- [Bug 502662] SCIM-tomoe doesn't load - no error msgs
|
||||
|
||||
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.0-11
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||
|
||||
* Mon Jan 19 2009 Ding-Yi Chen <dchen at redhat.com> - 0.6.0-10
|
||||
- Fix [Bug 343321] multiarch conflicts in tomoe.
|
||||
Maybe cause by bug in gtk-doc.
|
||||
- Also fix the errors from rpmlint:
|
||||
chmod 755 /usr/share/tomoe/xml2est.rb
|
||||
|
||||
|
||||
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.6.0-8
|
||||
- Fix locations for Python 2.6
|
||||
|
||||
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.6.0-7
|
||||
- Rebuild for Python 2.6
|
||||
|
||||
* Mon Sep 8 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.6.0-6
|
||||
- fix license tag
|
||||
|
||||
* Wed Feb 27 2008 Jens Petersen <petersen@redhat.com> - 0.6.0-5
|
||||
- update license field from LGPL to LGPL2+
|
||||
|
||||
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.6.0-4
|
||||
- Autorebuild for GCC 4.3
|
||||
|
||||
* Wed Aug 29 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 0.6.0-3
|
||||
- Rebuild for selinux ppc32 issue.
|
||||
|
||||
* Mon Jul 16 2007 Jens Petersen <petersen@redhat.com> - 0.6.0-2
|
||||
- add a build switch for python binding
|
||||
- buildrequires for pygobject2-devel, python-devel, and pygtk2-codegen
|
||||
- buildrequire gtk-doc
|
||||
- require gtk-doc for devel package
|
||||
- add a build switch for ruby binding (default off)
|
||||
|
||||
* Fri Jun 29 2007 Jens Petersen <petersen@redhat.com> - 0.6.0-1
|
||||
- update to 0.6.0
|
||||
- tomoe-modules-noversion.patch no longer needed
|
||||
- buildrequire gettext, python, and perl-XML-Parser (for intltool)
|
||||
|
||||
* Thu Feb 15 2007 Jens Petersen <petersen@redhat.com> - 0.5.1-1
|
||||
- update to 0.5.1
|
||||
- add tomoe-modules-noversion.patch to unversion .so modules (#227623)
|
||||
- improve the filelists (#227453)
|
||||
- add more doc files including new html files for kanjidic
|
||||
- moved gtk-doc files to devel
|
||||
- make config file noreplace
|
||||
|
||||
* Sat Jan 20 2007 Ryo Dairiki <ryo-dairiki@users.sourceforge.net> - 0.5.0-2
|
||||
- do not buildrequire libtomoe-gtk
|
||||
|
||||
* Sat Jan 20 2007 Ryo Dairiki <ryo-dairiki@users.sourceforge.net> - 0.5.0-1
|
||||
- update to 0.5.0.
|
||||
|
||||
* Thu Dec 21 2006 Ryo Dairiki <ryo-dairiki@users.sourceforge.net> - 0.4.0-1
|
||||
- update to 0.4.0.
|
||||
|
||||
* Sat Sep 15 2006 Ryo Dairiki <ryo-dairiki@users.sourceforge.net> - 0.2.1-6
|
||||
- mass rebuilding.
|
||||
|
||||
* Wed Mar 1 2006 Ryo Dairiki <ryo-dairiki@users.sourceforge.net> - 0.2.1-4
|
||||
- sync with libtomoe-gtk
|
||||
|
||||
* Sat Sep 3 2005 Warren Togami <wtogami@redhat.com> - 0.2.1-3
|
||||
- some spec cleanup
|
||||
|
||||
* Sat Sep 2 2005 Ryo Dairiki <ryo-dairiki@mbm.nifty.com> - 0.2.1-2
|
||||
- Sync with Jens's spec file
|
||||
|
||||
* Wed Aug 31 2005 Ryo Dairiki <ryo-dairiki@mbm.nifty.com> - 0.2.1-1
|
||||
- Initial packaging for Extras
|
||||
|
||||
* Fri Jul 1 2005 Ichiro Nakai <ichiro@n.email.ne.jp>
|
||||
- (0.2.0-1m)
|
||||
- version 0.2.0
|
||||
- add a package tomoe-devel
|
||||
- add %%post and %%postun sections
|
||||
|
||||
* Wed Mar 2 2005 Ichiro Nakai <ichiro@n.email.ne.jp>
|
||||
- (0.1.1-1m)
|
||||
- initial package for Momonga Linux
|
||||
- import %%description from cooker
|
||||
Loading…
Add table
Add a link
Reference in a new issue