Skip to content

Commit 4da1f3e

Browse files
committed
Release 1.2.0
1 parent a2db1f6 commit 4da1f3e

File tree

3 files changed

+23
-39
lines changed

3 files changed

+23
-39
lines changed

AUTHORS

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,21 @@
1-
2016-2017, Xavi Ivars <xavi.ivars@gmail.com>
2-
2017, Hèctor Alòs i Font <hectoralos@gmail.com>
1+
2018-2019, Jaume Ortolà <jaumeortola@gmail.com>
2+
2017-2019, Hèctor Alòs i Font <hectoralos@gmail.com>
3+
2017-2019, Marc Riera Irigoyen <marc.riera.irigoyen@gmail.com>
4+
2014-2019, Francis Tyers <ftyers@prompsit.com>
5+
2017-2019, Donís Seguí <donissegui@gmail.com>
6+
2016-2018, Xavi Ivars <xavi.ivars@gmail.com>
7+
2016-2019, Gema Ramírez Sánchez <gramirez@prompsit.com>
8+
2017-2018, Jaume Ortolà i Font <jaumeortola@gmail.com>
9+
2015-2018, Juan Pablo Martínez Cortés <jpmart@unizar.es>
310
2016, sabertooth-cat@users.sourceforge.net
4-
2014-2016, Francis M. Tyers <ftyers@prompsit.com>
5-
2014-2016, Kevin Brubeck Unhammer <unhammer@fsfe.org>
6-
2016, Gema Ramírez Sánchez <gramirez@prompsit.com>
711
2014-2016, Iza Kusicielek <iza.kusicielek@gmail.com>
12+
2019, Tany Gómez <egomez@prompsit.com>
13+
2018, Alberto Navalon <alberto.navalonlillo@gmail.com>
814
2016, Marina Loffredo <loffredomarina@gmail.com>
915
2016, Ульяна Сенцова <uliana.sentsova@gmail.com>
1016
2016, Frankie Robertson <frankie@robertson.name>
1117
2016, Trond Trosterud <trond.trosterud@hum.uit.no>
12-
2015-2016, Mikel L. Forcada <mlf@dlsi.ua.es>
18+
2015-2018, Mikel L. Forcada <mlf@dlsi.ua.es>
1319
2015-2016, Juan Pablo Martínez Cortés <jpmart@unizar.es>
1420
2015, Benedikt Freisen <b.freisen@gmx.net>
1521
2015, Tommi Pirinen <flammie@iki.fi>

Makefile.am

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
## Makefile for apertium-spa
33
###############################################################################
44

5-
RELEASE=1.1
6-
VERSION=1.1.0
75
LANG1=spa
86
BASENAME=apertium-$(LANG1)
97

@@ -29,7 +27,7 @@ $(LANG1).autogen.bin: $(BASENAME).$(LANG1).dix
2927

3028
$(LANG1).automorf.bin: $(BASENAME).$(LANG1).dix $(BASENAME).$(LANG1).acx
3129
apertium-validate-dictionary $<
32-
lt-comp lr $(BASENAME).$(LANG1).dix $@ $(BASENAME).$(LANG1).acx
30+
lt-comp lr $(BASENAME).$(LANG1).dix $@ $(BASENAME).$(LANG1).acx
3331

3432
$(LANG1).autogen.att.gz: $(LANG1).autogen.bin
3533
lt-print $< | gzip -9 -c -n > $@
@@ -41,18 +39,18 @@ $(LANG1).autopgen.bin: $(BASENAME).post-$(LANG1).dix
4139
lt-comp lr $< $@
4240

4341
###############################################################################
44-
## Morph disambiguation rules
42+
## Morph disambiguation rules
4543
###############################################################################
4644

47-
$(LANG1).lrx.bin: $(BASENAME).$(LANG1).lrx
45+
$(LANG1).lrx.bin: $(BASENAME).$(LANG1).lrx
4846
lrx-comp $< $@
4947

5048
###############################################################################
51-
## Disambiguation rules
49+
## Disambiguation rules
5250
###############################################################################
5351

54-
$(LANG1).rlx.bin: $(BASENAME).$(LANG1).rlx $(CGCOMP)
55-
$(CGCOMP) $< $@
52+
$(LANG1).rlx.bin: $(BASENAME).$(LANG1).rlx
53+
cg-comp $< $@
5654

5755
###############################################################################
5856
## Distribution

configure.ac

Lines changed: 5 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,14 @@
1-
# -*- Autoconf -*-
2-
# Process this file with autoconf to produce a configure script.
3-
41
AC_PREREQ(2.52)
52

6-
AC_INIT([Apertium Spanish], [1.1.0], [francis.tyers@gmail.com], [apertium-spa], [http://wiki.apertium.org/wiki/Apertium-spa])
3+
AC_INIT([Apertium Spanish], [1.2.0], [apertium-stuff@lists.sourceforge.net], [apertium-spa], [http://wiki.apertium.org/wiki/Apertium-spa])
74
AM_INIT_AUTOMAKE
85

9-
AC_PROG_LN_S
106
AC_PROG_AWK
117

12-
m4_define([required_apertium_version], [3.4.0])
13-
m4_define([required_lttoolbox_version], [3.3.2])
14-
15-
PKG_CHECK_MODULES(APERTIUM, apertium >= required_apertium_version)
16-
PKG_CHECK_MODULES(LTTOOLBOX, lttoolbox >= required_lttoolbox_version)
17-
18-
AC_PATH_PROG([LTPRINT], [lt-print], [false], [$PATH$PATH_SEPARATOR$with_lt_print/bin])
19-
AS_IF([test x$LTPRINT = xfalse], [AC_MSG_ERROR([You don't have lt-print installed])])
20-
21-
AC_PATH_PROG([CGCOMP], [cg-comp], [false], [$PATH$PATH_SEPARATOR$with_cg_comp/bin])
22-
AS_IF([test x$CGCOMP = xfalse], [AC_MSG_ERROR([You don't have cg-comp installed])])
23-
24-
AC_PATH_PROG([CGPROC], [cg-proc], [false], [$PATH$PATH_SEPARATOR$with_cg_proc/bin])
25-
AS_IF([test x$CGPROC = xfalse], [AC_MSG_ERROR([You don't have cg-proc installed])])
26-
27-
AC_PATH_PROG([LRXCOMP], [lrx-comp], [false], [$PATH$PATH_SEPARATOR$with_lrx_comp/bin])
28-
AS_IF([test x$LRXCOMP = xfalse], [AC_MSG_ERROR([You don't have lrx-comp installed])])
29-
30-
AC_PATH_PROG([PKGCONFIG], [pkg-config], [false], [$PATH$PATH_SEPARATOR$with_pkg_config/bin])
31-
AS_IF([test x$PKGCONFIG = xfalse], [AC_MSG_ERROR([You don't have pkg-config installed])])
8+
PKG_CHECK_MODULES(APERTIUM, apertium >= 3.6.0)
9+
PKG_CHECK_MODULES(APERTIUM_LEX_TOOLS, apertium-lex-tools >= 0.2.2)
10+
PKG_CHECK_MODULES(LTTOOLBOX, lttoolbox >= 3.5.0)
11+
PKG_CHECK_MODULES(CG3, cg3 >= 1.3.0)
3212

3313
AP_MKINCLUDE
3414

0 commit comments

Comments
 (0)