Browse Source

picocom: update to 3.1

Waldemar Brodkorb 1 year ago
parent
commit
8872c7a378

+ 2 - 2
package/picocom/Makefile

@@ -4,9 +4,9 @@
 include ${ADK_TOPDIR}/rules.mk
 
 PKG_NAME:=		picocom
-PKG_VERSION:=		2.1
+PKG_VERSION:=		3.1
 PKG_RELEASE:=		1
-PKG_HASH:=		6b152fc5f816eaef6b86336a4cec7cf1496b7c712061e5aea5a36f143a0b09ed
+PKG_HASH:=		e6761ca932ffc6d09bd6b11ff018bdaf70b287ce518b3282d29e0270e88420bb
 PKG_DESCR:=		minimal dumb-terminal emulation program
 PKG_SECTION:=		sys/serial
 PKG_URL:=		https://github.com/npat-efault/picocom/

+ 0 - 18
package/picocom/patches/patch-Makefile

@@ -1,18 +0,0 @@
---- picocom-2.1.orig/Makefile	2015-10-15 23:25:02.000000000 +0200
-+++ picocom-2.1/Makefile	2016-09-23 15:45:44.240688077 +0200
-@@ -1,12 +1,12 @@
- 
- VERSION = 2.1
- 
--#CC = gcc
-+CC ?= gcc
- CPPFLAGS = -DVERSION_STR=\"$(VERSION)\"
--CFLAGS = -Wall -g
-+CFLAGS ?= -Wall -g
- 
- LD = $(CC)
--LDFLAGS = -g
-+LDFLAGS ?= -g
- LDLIBS =
- 
- all: picocom

+ 0 - 11
package/picocom/patches/patch-linenoise-1_0_Makefile

@@ -1,11 +0,0 @@
---- picocom-2.1.orig/linenoise-1.0/Makefile	2015-10-15 23:25:02.000000000 +0200
-+++ picocom-2.1/linenoise-1.0/Makefile	2016-09-23 15:44:57.086909523 +0200
-@@ -1,7 +1,7 @@
- linenoise_example: linenoise.h linenoise.c
- 
- linenoise_example: linenoise.c example.c
--	$(CC) -Wall -W -Os -g -o linenoise_example linenoise.c example.c
-+	$(CC) $(CFLAGS) -o linenoise_example linenoise.c example.c
- 
- clean:
- 	rm -f linenoise_example