summaryrefslogtreecommitdiff
path: root/lang/librep
diff options
context:
space:
mode:
authortnn <tnn@pkgsrc.org>2019-01-04 02:06:05 +0000
committertnn <tnn@pkgsrc.org>2019-01-04 02:06:05 +0000
commit03a3ce8d75a344bb15a27c31cc45801cbca25e81 (patch)
tree2d43d03411cebcc94b7f597f4a84a9bb3ad12a44 /lang/librep
parent58d9800866a7f4e0c6eb6c88e86a2ecc5a98b330 (diff)
downloadpkgsrc-03a3ce8d75a344bb15a27c31cc45801cbca25e81.tar.gz
librep: update to 0.92.7
changes: arm support & build fixes
Diffstat (limited to 'lang/librep')
-rw-r--r--lang/librep/Makefile13
-rw-r--r--lang/librep/distinfo11
-rw-r--r--lang/librep/patches/patch-src-repint.h19
3 files changed, 10 insertions, 33 deletions
diff --git a/lang/librep/Makefile b/lang/librep/Makefile
index ea1ffaffbf0..04acd7506d7 100644
--- a/lang/librep/Makefile
+++ b/lang/librep/Makefile
@@ -1,15 +1,16 @@
-# $NetBSD: Makefile,v 1.64 2018/01/28 20:10:53 wiz Exp $
+# $NetBSD: Makefile,v 1.65 2019/01/04 02:06:05 tnn Exp $
#
-DISTNAME= librep-0.92.3
-PKGREVISION= 1
+DISTNAME= librep_0.92.7
+PKGNAME= ${DISTNAME:S/_/-/}
CATEGORIES= lang devel
MASTER_SITES= http://download.tuxfamily.org/librep/
-EXTRACT_SUFX= .tar.bz2
+EXTRACT_SUFX= .tar.xz
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://sawfish.wikia.com/
COMMENT= Emacs Lisp-like runtime library, interpreter, compiler and VM
+LICENSE= gnu-gpl-v2
USE_TOOLS+= gmake makeinfo gzip
USE_LIBTOOL= yes
@@ -25,10 +26,6 @@ CONFIGURE_ARGS+= --enable-static
.include "../../mk/bsd.prefs.mk"
-.if ${MACHINE_ARCH} == "x86_64"
-CONFIGURE_ARGS+= --with-stack-direction=-1
-.endif
-
REPLACE_INTERPRETER+= rep
REPLACE.rep.old= .*/bin/rep
REPLACE.rep.new= ${PREFIX}/bin/rep
diff --git a/lang/librep/distinfo b/lang/librep/distinfo
index fa3ef75e4f0..fee376d993a 100644
--- a/lang/librep/distinfo
+++ b/lang/librep/distinfo
@@ -1,8 +1,7 @@
-$NetBSD: distinfo,v 1.21 2015/12/29 23:34:50 dholland Exp $
+$NetBSD: distinfo,v 1.22 2019/01/04 02:06:05 tnn Exp $
-SHA1 (librep-0.92.3.tar.bz2) = 569a436c76ae393ffd164efa9f978558f94f073d
-RMD160 (librep-0.92.3.tar.bz2) = 68fb52d6b750826dc209f9c3bc69cf4d1d3bd68d
-SHA512 (librep-0.92.3.tar.bz2) = 51b1bc6f8ff4cc4ebc040891448ba78f49639e16c920db09e407ff22303de8d7d35c671cee6aa73f8de9c6699bba07830367f74782a046cab475077fcf625348
-Size (librep-0.92.3.tar.bz2) = 654916 bytes
+SHA1 (librep_0.92.7.tar.xz) = e35aa9dbf09638c71d728bf0273fc1d039f7008b
+RMD160 (librep_0.92.7.tar.xz) = 3cce6962397102c79600850d4648d1158e0d499a
+SHA512 (librep_0.92.7.tar.xz) = 752cb2da31457200b5896f70ce24a097b261b996da25998cd78a777f982597473afce1a216f449a4a969d29b1678bf54e2f148e86de6f9548eeb5cfd530ae377
+Size (librep_0.92.7.tar.xz) = 651344 bytes
SHA1 (patch-aa) = 382f6692e8a387d1492e0a2198211a6f65f41d20
-SHA1 (patch-src-repint.h) = febba5d674812eac2e9a2f3cf398654b0fba7a57
diff --git a/lang/librep/patches/patch-src-repint.h b/lang/librep/patches/patch-src-repint.h
deleted file mode 100644
index 6c745a62cb2..00000000000
--- a/lang/librep/patches/patch-src-repint.h
+++ /dev/null
@@ -1,19 +0,0 @@
-$NetBSD: patch-src-repint.h,v 1.2 2015/12/29 23:34:50 dholland Exp $
-
-Patch up gcc inline mess.
-
---- src/repint.h.orig 2011-08-19 14:37:20.000000000 +0000
-+++ src/repint.h
-@@ -243,8 +243,10 @@ typedef struct rep_cons_block_struct {
- call when the heap needs to grow. */
-
- #if defined __GNUC__ && defined __OPTIMIZE__
--extern __inline__ repv inline_Fcons (repv x, repv y);
--extern __inline__ repv
-+#if !defined(__GNUC_STDC_INLINE__) || !__GNUC_STDC_INLINE__
-+extern
-+#endif
-+__inline__ repv
- inline_Fcons (repv x, repv y)
- {
- rep_cons *c = rep_cons_freelist;