* [ptxdist] [PATCH 01/12] sun-java6-jre: move to staging
@ 2018-05-30 16:39 Roland Hieber
2018-05-30 16:39 ` [ptxdist] [PATCH 02/12] u-boot-v2: remove in favor of barebox Roland Hieber
` (10 more replies)
0 siblings, 11 replies; 14+ messages in thread
From: Roland Hieber @ 2018-05-30 16:39 UTC (permalink / raw)
To: ptxdist; +Cc: Roland Hieber
Signed-off-by: Roland Hieber <r.hieber@pengutronix.de>
---
rules/sun-java6-jre.in | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/rules/sun-java6-jre.in b/rules/sun-java6-jre.in
index 77cc1fb1a..46eaaa35a 100644
--- a/rules/sun-java6-jre.in
+++ b/rules/sun-java6-jre.in
@@ -1,4 +1,6 @@
-## SECTION=bytecode_engines
+## SECTION=staging
+## old section:
+### SECTION=bytecode_engines
menuconfig SUN_JAVA6_JRE
tristate
prompt "jre 6u2 (sun) "
@@ -8,6 +10,10 @@ menuconfig SUN_JAVA6_JRE
This is a self-extracting shell archive,
bad things could happen!
+ STAGING: remove in ptxdist-2019.06.0
+ Old version that has many security bugs, and no longer supported
+ upstream. If needed, should be updated to OpenJDK.
+
config SUN_JAVA6_JRE_LICENSE_ACCEPT_STRING
string
depends on SUN_JAVA6_JRE
--
2.17.1
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 14+ messages in thread
* [ptxdist] [PATCH 02/12] u-boot-v2: remove in favor of barebox
2018-05-30 16:39 [ptxdist] [PATCH 01/12] sun-java6-jre: move to staging Roland Hieber
@ 2018-05-30 16:39 ` Roland Hieber
2018-05-30 16:39 ` [ptxdist] [PATCH 03/12] ddrescue: version bump 1.15 -> 1.23 Roland Hieber
` (9 subsequent siblings)
10 siblings, 0 replies; 14+ messages in thread
From: Roland Hieber @ 2018-05-30 16:39 UTC (permalink / raw)
To: ptxdist; +Cc: Roland Hieber
Historical package that has since been renamed to barebox.
Fixes: 6815a8a1789ed3b3437436e0f859 ("[barebox] add new packet barebox")
Signed-off-by: Roland Hieber <r.hieber@pengutronix.de>
---
platforms/u-boot-v2.in | 32 -------------
rules/u-boot-v2.make | 105 -----------------------------------------
2 files changed, 137 deletions(-)
delete mode 100644 platforms/u-boot-v2.in
delete mode 100644 rules/u-boot-v2.make
diff --git a/platforms/u-boot-v2.in b/platforms/u-boot-v2.in
deleted file mode 100644
index 5ceffdf54..000000000
--- a/platforms/u-boot-v2.in
+++ /dev/null
@@ -1,32 +0,0 @@
-## SECTION=bootloader
-
-menuconfig U_BOOT_V2
- select BOOTLOADER
- prompt "U-Boot V2 "
- bool
-
-config U_BOOT_V2_VERSION
- prompt "u-boot-v2 version"
- depends on U_BOOT_V2
- string
- default "2.0.0"
-
-config U_BOOT_V2_MD5
- prompt "u-boot-v2 source md5"
- depends on U_BOOT_V2
- string
-
-config U_BOOT_V2_CONFIG
- prompt "config file"
- depends on U_BOOT_V2
- string
- default "u-boot-v2.config"
- help
- this entry specifies the .config file used to compile your U-Boot
-
-config U_BOOT_V2_ARCH_STRING
- depends on U_BOOT_V2
- string
- default "arm" if ARCH_ARM
- default "blackfin" if ARCH_BLACKFIN
- default "ppc" if ARCH_PPC
diff --git a/rules/u-boot-v2.make b/rules/u-boot-v2.make
deleted file mode 100644
index f86eb7dfa..000000000
--- a/rules/u-boot-v2.make
+++ /dev/null
@@ -1,105 +0,0 @@
-# -*-makefile-*-
-#
-# Copyright (C) 2007 by Sascha Hauer
-# 2008, 2009 by Marc Kleine-Budde
-#
-# See CREDITS for details about who has contributed to this project.
-#
-# For further information about the PTXdist project and license conditions
-# see the README file.
-#
-
-#
-# We provide this package
-#
-PACKAGES-$(PTXCONF_U_BOOT_V2) += u-boot-v2
-
-#
-# Paths and names
-#
-U_BOOT_V2_VERSION := $(call remove_quotes,$(PTXCONF_U_BOOT_V2_VERSION))
-U_BOOT_V2_MD5 := $(call remove_quotes,$(PTXCONF_U_BOOT_V2_MD5))
-U_BOOT_V2 := u-boot-$(U_BOOT_V2_VERSION)
-U_BOOT_V2_SUFFIX := tar.gz
-U_BOOT_V2_URL := http://www.pengutronix.de/software/u-boot/download/$(U_BOOT_V2).$(U_BOOT_V2_SUFFIX)
-U_BOOT_V2_SOURCE := $(SRCDIR)/$(U_BOOT_V2).$(U_BOOT_V2_SUFFIX)
-U_BOOT_V2_DIR := $(BUILDDIR)/$(U_BOOT_V2)
-
-U_BOOT_V2_CONFIG := $(call remove_quotes, $(PTXDIST_PLATFORMCONFIGDIR)/$(PTXCONF_U_BOOT_V2_CONFIG))
-
-# ----------------------------------------------------------------------------
-# Prepare
-# ----------------------------------------------------------------------------
-
-U_BOOT_V2_PATH := PATH=$(CROSS_PATH)
-U_BOOT_V2_ENV := KCONFIG_NOTIMESTAMP=1
-U_BOOT_V2_MAKEVARS := \
- HOSTCC=$(HOSTCC) \
- ARCH=$(PTXCONF_U_BOOT_V2_ARCH_STRING) \
- CROSS_COMPILE=$(BOOTLOADER_CROSS_COMPILE)
-
-ifdef PTXCONF_U_BOOT_V2
-$(U_BOOT_V2_CONFIG):
- @echo
- @echo "*****************************************************************************"
- @echo "**** Please generate a u-boot config with 'ptxdist menuconfig u-boot-v2' ****"
- @echo "*****************************************************************************"
- @echo
- @echo
- @exit 1
-endif
-
-$(STATEDIR)/u-boot-v2.prepare: $(U_BOOT_V2_CONFIG)
- @$(call targetinfo)
-
- @echo "Using U-Boot-v2 config file: $(U_BOOT_V2_CONFIG)"
- @install -m 644 $(U_BOOT_V2_CONFIG) $(U_BOOT_V2_DIR)/.config
-
- @$(call ptx/oldconfig, U_BOOT_V2)
-
- @$(call touch)
-
-# ----------------------------------------------------------------------------
-# Install
-# ----------------------------------------------------------------------------
-
-$(STATEDIR)/u-boot-v2.install:
- @$(call targetinfo)
- @install -D -m755 $(U_BOOT_V2_DIR)/scripts/ubootenv $(PTXCONF_SYSROOT_HOST)/bin/ubootenv
- @$(call touch)
-
-# ----------------------------------------------------------------------------
-# Target-Install
-# ----------------------------------------------------------------------------
-
-$(STATEDIR)/u-boot-v2.targetinstall:
- @$(call targetinfo)
- @install -D -m644 $(U_BOOT_V2_DIR)/uboot.bin $(IMAGEDIR)/u-boot-v2-image
- @$(call touch)
-
-# ----------------------------------------------------------------------------
-# Clean
-# ----------------------------------------------------------------------------
-
-$(STATEDIR)/u-boot-v2.clean:
- @$(call targetinfo)
- @$(call clean_pkg, U_BOOT_V2)
- rm -rf $(IMAGEDIR)/u-boot-v2-image
-
-# ----------------------------------------------------------------------------
-# oldconfig / menuconfig
-# ----------------------------------------------------------------------------
-
-u-boot-v2_oldconfig u-boot-v2_menuconfig: $(STATEDIR)/u-boot-v2.extract
- @if test -e $(U_BOOT_V2_CONFIG); then \
- cp $(U_BOOT_V2_CONFIG) $(U_BOOT_V2_DIR)/.config; \
- fi
- cd $(U_BOOT_V2_DIR) && \
- $(U_BOOT_V2_PATH) $(U_BOOT_V2_ENV) $(MAKE) $(U_BOOT_V2_MAKEVARS) $(subst u-boot-v2_,,$@)
- @if cmp -s $(U_BOOT_V2_DIR)/.config $(U_BOOT_V2_CONFIG); then \
- echo "U-Boot-v2 configuration unchanged"; \
- else \
- cp $(U_BOOT_V2_DIR)/.config $(U_BOOT_V2_CONFIG); \
- fi
-
-# vim: syntax=make
--
2.17.1
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 14+ messages in thread
* [ptxdist] [PATCH 03/12] ddrescue: version bump 1.15 -> 1.23
2018-05-30 16:39 [ptxdist] [PATCH 01/12] sun-java6-jre: move to staging Roland Hieber
2018-05-30 16:39 ` [ptxdist] [PATCH 02/12] u-boot-v2: remove in favor of barebox Roland Hieber
@ 2018-05-30 16:39 ` Roland Hieber
2018-05-30 16:39 ` [ptxdist] [PATCH 04/12] ed: version bump 1.7 -> 1.14.2 Roland Hieber
` (8 subsequent siblings)
10 siblings, 0 replies; 14+ messages in thread
From: Roland Hieber @ 2018-05-30 16:39 UTC (permalink / raw)
To: ptxdist; +Cc: Roland Hieber
Signed-off-by: Roland Hieber <r.hieber@pengutronix.de>
---
rules/ddrescue.make | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/rules/ddrescue.make b/rules/ddrescue.make
index d07e0c466..db4c940ab 100644
--- a/rules/ddrescue.make
+++ b/rules/ddrescue.make
@@ -16,10 +16,10 @@ PACKAGES-$(PTXCONF_DDRESCUE) += ddrescue
#
# Paths and names
#
-DDRESCUE_VERSION := 1.15
-DDRESCUE_MD5 := 6b445f6246074a7fa02f3b2599031096
+DDRESCUE_VERSION := 1.23
+DDRESCUE_MD5 := cd85a82d510d9abf790132fb0da1bf3c
DDRESCUE := ddrescue-$(DDRESCUE_VERSION)
-DDRESCUE_SUFFIX := tar.gz
+DDRESCUE_SUFFIX := tar.lz
DDRESCUE_URL := $(call ptx/mirror, GNU, ddrescue/$(DDRESCUE).$(DDRESCUE_SUFFIX))
DDRESCUE_SOURCE := $(SRCDIR)/$(DDRESCUE).$(DDRESCUE_SUFFIX)
DDRESCUE_DIR := $(BUILDDIR)/$(DDRESCUE)
--
2.17.1
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 14+ messages in thread
* [ptxdist] [PATCH 04/12] ed: version bump 1.7 -> 1.14.2
2018-05-30 16:39 [ptxdist] [PATCH 01/12] sun-java6-jre: move to staging Roland Hieber
2018-05-30 16:39 ` [ptxdist] [PATCH 02/12] u-boot-v2: remove in favor of barebox Roland Hieber
2018-05-30 16:39 ` [ptxdist] [PATCH 03/12] ddrescue: version bump 1.15 -> 1.23 Roland Hieber
@ 2018-05-30 16:39 ` Roland Hieber
2018-05-30 16:39 ` [ptxdist] [PATCH 05/12] ed: resurrect from staging after version bump Roland Hieber
` (7 subsequent siblings)
10 siblings, 0 replies; 14+ messages in thread
From: Roland Hieber @ 2018-05-30 16:39 UTC (permalink / raw)
To: ptxdist; +Cc: Roland Hieber
Signed-off-by: Roland Hieber <r.hieber@pengutronix.de>
---
rules/ed.make | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/rules/ed.make b/rules/ed.make
index e1c015547..3a70317c2 100644
--- a/rules/ed.make
+++ b/rules/ed.make
@@ -16,10 +16,10 @@ PACKAGES-$(PTXCONF_ED) += ed
#
# Paths and names
#
-ED_VERSION := 1.7
-ED_MD5 := 0aa4e2428e325203d0d7c3e86c961b1c
+ED_VERSION := 1.14.2
+ED_MD5 := 273d04778b2a51f7c3cbfcd2001876bf
ED := ed-$(ED_VERSION)
-ED_SUFFIX := tar.gz
+ED_SUFFIX := tar.lz
ED_URL := $(call ptx/mirror, GNU, ed/$(ED).$(ED_SUFFIX))
ED_SOURCE := $(SRCDIR)/$(ED).$(ED_SUFFIX)
ED_DIR := $(BUILDDIR)/$(ED)
--
2.17.1
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 14+ messages in thread
* [ptxdist] [PATCH 05/12] ed: resurrect from staging after version bump
2018-05-30 16:39 [ptxdist] [PATCH 01/12] sun-java6-jre: move to staging Roland Hieber
` (2 preceding siblings ...)
2018-05-30 16:39 ` [ptxdist] [PATCH 04/12] ed: version bump 1.7 -> 1.14.2 Roland Hieber
@ 2018-05-30 16:39 ` Roland Hieber
2018-05-30 16:39 ` [ptxdist] [PATCH 06/12] file: version bump 5.32 -> 5.33 Roland Hieber
` (6 subsequent siblings)
10 siblings, 0 replies; 14+ messages in thread
From: Roland Hieber @ 2018-05-30 16:39 UTC (permalink / raw)
To: ptxdist; +Cc: Roland Hieber
Signed-off-by: Roland Hieber <r.hieber@pengutronix.de>
---
rules/ed.in | 8 +-------
1 file changed, 1 insertion(+), 7 deletions(-)
diff --git a/rules/ed.in b/rules/ed.in
index 884831e5c..26f46ec1b 100644
--- a/rules/ed.in
+++ b/rules/ed.in
@@ -1,6 +1,4 @@
-## SECTION=staging
-## old section:
-### SECTION=editors
+## SECTION=editors
config ED
tristate
@@ -9,9 +7,5 @@ config ED
help
The classic UNIX line editor
- STAGING: remove in ptxdist-2019.05.0
- Old version that is no longer available for download.
- Should be updated to a new version.
-
comment "BusyBox' ed is selected!"
depends on BUSYBOX_ED
--
2.17.1
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 14+ messages in thread
* [ptxdist] [PATCH 06/12] file: version bump 5.32 -> 5.33
2018-05-30 16:39 [ptxdist] [PATCH 01/12] sun-java6-jre: move to staging Roland Hieber
` (3 preceding siblings ...)
2018-05-30 16:39 ` [ptxdist] [PATCH 05/12] ed: resurrect from staging after version bump Roland Hieber
@ 2018-05-30 16:39 ` Roland Hieber
2018-05-30 16:39 ` [ptxdist] [PATCH 07/12] tar: version bump 1.26 -> 1.30 Roland Hieber
` (5 subsequent siblings)
10 siblings, 0 replies; 14+ messages in thread
From: Roland Hieber @ 2018-05-30 16:39 UTC (permalink / raw)
To: ptxdist; +Cc: Roland Hieber
Signed-off-by: Roland Hieber <r.hieber@pengutronix.de>
---
rules/file.make | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/rules/file.make b/rules/file.make
index 32ff63f2d..6c42440e0 100644
--- a/rules/file.make
+++ b/rules/file.make
@@ -16,8 +16,8 @@ PACKAGES-$(PTXCONF_FILE) += file
#
# Paths and names
#
-FILE_VERSION := 5.32
-FILE_MD5 := 4f2503752ff041895090ed6435610435
+FILE_VERSION := 5.33
+FILE_MD5 := bbe6db96e3a9ca9554dce647390540ef
FILE := file-$(FILE_VERSION)
FILE_SUFFIX := tar.gz
FILE_URL := ftp://ftp.astron.com/pub/file/$(FILE).$(FILE_SUFFIX)
--
2.17.1
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 14+ messages in thread
* [ptxdist] [PATCH 07/12] tar: version bump 1.26 -> 1.30
2018-05-30 16:39 [ptxdist] [PATCH 01/12] sun-java6-jre: move to staging Roland Hieber
` (4 preceding siblings ...)
2018-05-30 16:39 ` [ptxdist] [PATCH 06/12] file: version bump 5.32 -> 5.33 Roland Hieber
@ 2018-05-30 16:39 ` Roland Hieber
2018-05-30 16:39 ` [ptxdist] [PATCH 08/12] vim: version bump 7.3 -> 8.1 Roland Hieber
` (4 subsequent siblings)
10 siblings, 0 replies; 14+ messages in thread
From: Roland Hieber @ 2018-05-30 16:39 UTC (permalink / raw)
To: ptxdist; +Cc: Roland Hieber
Use sensible defaults for the remaining configure options.
Signed-off-by: Roland Hieber <r.hieber@pengutronix.de>
---
rules/tar.make | 12 +++++++++---
1 file changed, 9 insertions(+), 3 deletions(-)
diff --git a/rules/tar.make b/rules/tar.make
index 1b25c621a..52436454b 100644
--- a/rules/tar.make
+++ b/rules/tar.make
@@ -16,8 +16,8 @@ PACKAGES-$(PTXCONF_TAR) += tar
#
# Paths and names
#
-TAR_VERSION := 1.26
-TAR_MD5 := 0ced6f20b9fa1bea588005b5ad4b52c1
+TAR_VERSION := 1.30
+TAR_MD5 := 2d01c6cd1387be98f57a0ec4e6e35826
TAR := tar-$(TAR_VERSION)
TAR_SUFFIX := tar.xz
TAR_URL := $(call ptx/mirror, GNU, tar/$(TAR).$(TAR_SUFFIX))
@@ -36,8 +36,14 @@ TAR_CONF_TOOL := autoconf
TAR_CONF_OPT := \
$(CROSS_AUTOCONF_USR) \
$(GLOBAL_LARGE_FILE_OPTION) \
+ --disable-acl \
--disable-rpath \
- --disable-nls
+ --disable-nls \
+ --disable-backup-scripts \
+ --with-posix-acls \
+ --with-included-regex \
+ --without-selinux \
+ --with-xattrs
# ----------------------------------------------------------------------------
# Target-Install
--
2.17.1
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 14+ messages in thread
* [ptxdist] [PATCH 08/12] vim: version bump 7.3 -> 8.1
2018-05-30 16:39 [ptxdist] [PATCH 01/12] sun-java6-jre: move to staging Roland Hieber
` (5 preceding siblings ...)
2018-05-30 16:39 ` [ptxdist] [PATCH 07/12] tar: version bump 1.26 -> 1.30 Roland Hieber
@ 2018-05-30 16:39 ` Roland Hieber
2018-05-30 16:39 ` [ptxdist] [PATCH 09/12] joe: version bump 3.5 -> 4.6 Roland Hieber
` (3 subsequent siblings)
10 siblings, 0 replies; 14+ messages in thread
From: Roland Hieber @ 2018-05-30 16:39 UTC (permalink / raw)
To: ptxdist; +Cc: Roland Hieber
Also update the SPDX license identifier.
Signed-off-by: Roland Hieber <r.hieber@pengutronix.de>
---
rules/vim.make | 13 +++++++++----
1 file changed, 9 insertions(+), 4 deletions(-)
diff --git a/rules/vim.make b/rules/vim.make
index 6afcc78e0..fc99a9e8c 100644
--- a/rules/vim.make
+++ b/rules/vim.make
@@ -16,15 +16,15 @@ PACKAGES-$(PTXCONF_VIM) += vim
#
# Paths and names
#
-VIM_VERSION := 7.3
-VIM_MD5 := 5b9510a17074e2b37d8bb38ae09edbf2
+VIM_VERSION := 8.1
+VIM_MD5 := 1739a1df312305155285f0cfa6118294
VIM := vim-$(VIM_VERSION)
VIM_SUFFIX := tar.bz2
VIM_URL := ftp://ftp.vim.org/pub/vim/unix/$(VIM).$(VIM_SUFFIX)
VIM_SOURCE := $(SRCDIR)/$(VIM).$(VIM_SUFFIX)
VIM_DIR := $(BUILDDIR)/$(VIM)
VIM_SUBDIR := src
-VIM_LICENSE := unknown
+VIM_LICENSE := Vim
# ----------------------------------------------------------------------------
# Prepare
@@ -34,6 +34,7 @@ VIM_CONF_ENV := \
$(CROSS_ENV) \
vim_cv_toupper_broken=no \
vim_cv_terminfo=yes \
+ vim_cv_tgetent=zero \
vim_cv_tty_group=world \
vim_cv_tty_mode=0620 \
vim_cv_getcwd_broken=no \
@@ -47,6 +48,7 @@ VIM_CONF_TOOL := autoconf
VIM_CONF_OPT := \
$(CROSS_AUTOCONF_USR) \
--disable-darwin \
+ --disable-smack \
--disable-selinux \
--disable-xsmp \
--disable-xsmp-interact \
@@ -60,7 +62,9 @@ VIM_CONF_OPT := \
--disable-cscope \
--disable-workshop \
--disable-netbeans \
- --disable-sniff \
+ --disable-channel \
+ --disable-terminal \
+ --disable-autoservername \
--disable-multibyte \
--disable-hangulinput \
--disable-xim \
@@ -68,6 +72,7 @@ VIM_CONF_OPT := \
--disable-gui \
--disable-gtk2-check \
--disable-gnome-check \
+ --disable-gtk3-check \
--disable-motif-check \
--disable-athena-check \
--disable-nextaw-check \
--
2.17.1
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 14+ messages in thread
* [ptxdist] [PATCH 09/12] joe: version bump 3.5 -> 4.6
2018-05-30 16:39 [ptxdist] [PATCH 01/12] sun-java6-jre: move to staging Roland Hieber
` (6 preceding siblings ...)
2018-05-30 16:39 ` [ptxdist] [PATCH 08/12] vim: version bump 7.3 -> 8.1 Roland Hieber
@ 2018-05-30 16:39 ` Roland Hieber
2018-05-31 9:27 ` Michael Olbrich
2018-05-30 16:39 ` [ptxdist] [PATCH 10/12] proftpd: version bump 1.3.5 -> 1.3.6 Roland Hieber
` (2 subsequent siblings)
10 siblings, 1 reply; 14+ messages in thread
From: Roland Hieber @ 2018-05-30 16:39 UTC (permalink / raw)
To: ptxdist; +Cc: Roland Hieber
Signed-off-by: Roland Hieber <r.hieber@pengutronix.de>
---
rules/joe.make | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/rules/joe.make b/rules/joe.make
index 59ec318ec..1d2318700 100644
--- a/rules/joe.make
+++ b/rules/joe.make
@@ -17,8 +17,8 @@ PACKAGES-$(PTXCONF_JOE) += joe
#
# Paths and names
#
-JOE_VERSION := 3.5
-JOE_MD5 := 9bdffecce7ef910feaa06452d48843de
+JOE_VERSION := 4.6
+JOE_MD5 := 9017484e6116830d846678b625ea5c43
JOE := joe-$(JOE_VERSION)
JOE_SUFFIX := tar.gz
JOE_URL := $(call ptx/mirror, SF, joe-editor/$(JOE).$(JOE_SUFFIX))
--
2.17.1
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 14+ messages in thread
* [ptxdist] [PATCH 10/12] proftpd: version bump 1.3.5 -> 1.3.6
2018-05-30 16:39 [ptxdist] [PATCH 01/12] sun-java6-jre: move to staging Roland Hieber
` (7 preceding siblings ...)
2018-05-30 16:39 ` [ptxdist] [PATCH 09/12] joe: version bump 3.5 -> 4.6 Roland Hieber
@ 2018-05-30 16:39 ` Roland Hieber
2018-05-31 9:28 ` Michael Olbrich
2018-05-30 16:39 ` [ptxdist] [PATCH 11/12] stunnel: version bump 5.45 -> 5.46 Roland Hieber
2018-05-30 16:39 ` [ptxdist] [PATCH 12/12] c-ares: version bump 1.10.0 -> 1.14.0 Roland Hieber
10 siblings, 1 reply; 14+ messages in thread
From: Roland Hieber @ 2018-05-30 16:39 UTC (permalink / raw)
To: ptxdist; +Cc: Roland Hieber
Signed-off-by: Roland Hieber <r.hieber@pengutronix.de>
---
rules/proftpd.make | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/rules/proftpd.make b/rules/proftpd.make
index bd735dafb..2ac43ace4 100644
--- a/rules/proftpd.make
+++ b/rules/proftpd.make
@@ -17,13 +17,15 @@ PACKAGES-$(PTXCONF_PROFTPD) += proftpd
#
# Paths and names
#
-PROFTPD_VERSION := 1.3.5
-PROFTPD_MD5 := aff1bff40e675244d72c4667f203e5bb
+PROFTPD_VERSION := 1.3.6
+PROFTPD_MD5 := 13270911c42aac842435f18205546a1b
PROFTPD := proftpd-$(PROFTPD_VERSION)
PROFTPD_SUFFIX := tar.gz
PROFTPD_URL := ftp://ftp.proftpd.org/distrib/source/$(PROFTPD).$(PROFTPD_SUFFIX)
PROFTPD_SOURCE := $(SRCDIR)/$(PROFTPD).$(PROFTPD_SUFFIX)
PROFTPD_DIR := $(BUILDDIR)/$(PROFTPD)
+PROFTPD_LICENSE := GPL-2.0-or-later
+PROFTPD_LICENSE_MD5 := file://doc/license.txt;md5=b1a7bf07146cb15d460832486cc69b79
# ----------------------------------------------------------------------------
# Prepare
--
2.17.1
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 14+ messages in thread
* [ptxdist] [PATCH 11/12] stunnel: version bump 5.45 -> 5.46
2018-05-30 16:39 [ptxdist] [PATCH 01/12] sun-java6-jre: move to staging Roland Hieber
` (8 preceding siblings ...)
2018-05-30 16:39 ` [ptxdist] [PATCH 10/12] proftpd: version bump 1.3.5 -> 1.3.6 Roland Hieber
@ 2018-05-30 16:39 ` Roland Hieber
2018-05-30 16:39 ` [ptxdist] [PATCH 12/12] c-ares: version bump 1.10.0 -> 1.14.0 Roland Hieber
10 siblings, 0 replies; 14+ messages in thread
From: Roland Hieber @ 2018-05-30 16:39 UTC (permalink / raw)
To: ptxdist; +Cc: Roland Hieber, Guillermo Rodriguez
Cc: Guillermo Rodriguez <guille.rodriguez@gmail.com>
Signed-off-by: Roland Hieber <r.hieber@pengutronix.de>
---
I originally made that patch for 5.01 -> 5.46, but someone was faster :)
---
rules/stunnel.make | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/rules/stunnel.make b/rules/stunnel.make
index 01664f8e4..e5ed5bfa8 100644
--- a/rules/stunnel.make
+++ b/rules/stunnel.make
@@ -16,8 +16,8 @@ PACKAGES-$(PTXCONF_STUNNEL) += stunnel
#
# Paths and names
#
-STUNNEL_VERSION := 5.45
-STUNNEL_MD5 := 68c64609c6154d485883f7c436def004
+STUNNEL_VERSION := 5.46
+STUNNEL_MD5 := 2836e0740d4a16fa489445d969ec0b7d
STUNNEL := stunnel-$(STUNNEL_VERSION)
STUNNEL_SUFFIX := tar.gz
STUNNEL_URL := \
--
2.17.1
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 14+ messages in thread
* [ptxdist] [PATCH 12/12] c-ares: version bump 1.10.0 -> 1.14.0
2018-05-30 16:39 [ptxdist] [PATCH 01/12] sun-java6-jre: move to staging Roland Hieber
` (9 preceding siblings ...)
2018-05-30 16:39 ` [ptxdist] [PATCH 11/12] stunnel: version bump 5.45 -> 5.46 Roland Hieber
@ 2018-05-30 16:39 ` Roland Hieber
10 siblings, 0 replies; 14+ messages in thread
From: Roland Hieber @ 2018-05-30 16:39 UTC (permalink / raw)
To: ptxdist; +Cc: Roland Hieber
Signed-off-by: Roland Hieber <r.hieber@pengutronix.de>
---
rules/c-ares.make | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/rules/c-ares.make b/rules/c-ares.make
index ed57468db..a19185e7f 100644
--- a/rules/c-ares.make
+++ b/rules/c-ares.make
@@ -16,14 +16,15 @@ PACKAGES-$(PTXCONF_C_ARES) += c-ares
#
# Paths and names
#
-C_ARES_VERSION := 1.10.0
-C_ARES_MD5 := 1196067641411a75d3cbebe074fd36d8
+C_ARES_VERSION := 1.14.0
+C_ARES_MD5 := e57b37a7c46283e83c21cde234df10c7
C_ARES := c-ares-$(C_ARES_VERSION)
C_ARES_SUFFIX := tar.gz
C_ARES_URL := http://c-ares.haxx.se/download/$(C_ARES).$(C_ARES_SUFFIX)
C_ARES_SOURCE := $(SRCDIR)/$(C_ARES).$(C_ARES_SUFFIX)
C_ARES_DIR := $(BUILDDIR)/$(C_ARES)
C_ARES_LICENSE := MIT
+C_ARES_LICENSE_MD5 := file://LICENSE.md;md5=fb997454c8d62aa6a47f07a8cd48b006
# ----------------------------------------------------------------------------
--
2.17.1
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [ptxdist] [PATCH 09/12] joe: version bump 3.5 -> 4.6
2018-05-30 16:39 ` [ptxdist] [PATCH 09/12] joe: version bump 3.5 -> 4.6 Roland Hieber
@ 2018-05-31 9:27 ` Michael Olbrich
0 siblings, 0 replies; 14+ messages in thread
From: Michael Olbrich @ 2018-05-31 9:27 UTC (permalink / raw)
To: ptxdist; +Cc: Roland Hieber
On Wed, May 30, 2018 at 06:39:08PM +0200, Roland Hieber wrote:
> Signed-off-by: Roland Hieber <r.hieber@pengutronix.de>
Did you test this? targetinstall fails for me.
Michael
> ---
> rules/joe.make | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/rules/joe.make b/rules/joe.make
> index 59ec318ec..1d2318700 100644
> --- a/rules/joe.make
> +++ b/rules/joe.make
> @@ -17,8 +17,8 @@ PACKAGES-$(PTXCONF_JOE) += joe
> #
> # Paths and names
> #
> -JOE_VERSION := 3.5
> -JOE_MD5 := 9bdffecce7ef910feaa06452d48843de
> +JOE_VERSION := 4.6
> +JOE_MD5 := 9017484e6116830d846678b625ea5c43
> JOE := joe-$(JOE_VERSION)
> JOE_SUFFIX := tar.gz
> JOE_URL := $(call ptx/mirror, SF, joe-editor/$(JOE).$(JOE_SUFFIX))
> --
> 2.17.1
>
>
> _______________________________________________
> ptxdist mailing list
> ptxdist@pengutronix.de
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [ptxdist] [PATCH 10/12] proftpd: version bump 1.3.5 -> 1.3.6
2018-05-30 16:39 ` [ptxdist] [PATCH 10/12] proftpd: version bump 1.3.5 -> 1.3.6 Roland Hieber
@ 2018-05-31 9:28 ` Michael Olbrich
0 siblings, 0 replies; 14+ messages in thread
From: Michael Olbrich @ 2018-05-31 9:28 UTC (permalink / raw)
To: ptxdist; +Cc: Roland Hieber
On Wed, May 30, 2018 at 06:39:09PM +0200, Roland Hieber wrote:
> Signed-off-by: Roland Hieber <r.hieber@pengutronix.de>
There are a lot of configure options that are not set yet.
Please add those.
Michael
> ---
> rules/proftpd.make | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/rules/proftpd.make b/rules/proftpd.make
> index bd735dafb..2ac43ace4 100644
> --- a/rules/proftpd.make
> +++ b/rules/proftpd.make
> @@ -17,13 +17,15 @@ PACKAGES-$(PTXCONF_PROFTPD) += proftpd
> #
> # Paths and names
> #
> -PROFTPD_VERSION := 1.3.5
> -PROFTPD_MD5 := aff1bff40e675244d72c4667f203e5bb
> +PROFTPD_VERSION := 1.3.6
> +PROFTPD_MD5 := 13270911c42aac842435f18205546a1b
> PROFTPD := proftpd-$(PROFTPD_VERSION)
> PROFTPD_SUFFIX := tar.gz
> PROFTPD_URL := ftp://ftp.proftpd.org/distrib/source/$(PROFTPD).$(PROFTPD_SUFFIX)
> PROFTPD_SOURCE := $(SRCDIR)/$(PROFTPD).$(PROFTPD_SUFFIX)
> PROFTPD_DIR := $(BUILDDIR)/$(PROFTPD)
> +PROFTPD_LICENSE := GPL-2.0-or-later
> +PROFTPD_LICENSE_MD5 := file://doc/license.txt;md5=b1a7bf07146cb15d460832486cc69b79
>
> # ----------------------------------------------------------------------------
> # Prepare
> --
> 2.17.1
>
>
> _______________________________________________
> ptxdist mailing list
> ptxdist@pengutronix.de
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2018-05-31 9:28 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-05-30 16:39 [ptxdist] [PATCH 01/12] sun-java6-jre: move to staging Roland Hieber
2018-05-30 16:39 ` [ptxdist] [PATCH 02/12] u-boot-v2: remove in favor of barebox Roland Hieber
2018-05-30 16:39 ` [ptxdist] [PATCH 03/12] ddrescue: version bump 1.15 -> 1.23 Roland Hieber
2018-05-30 16:39 ` [ptxdist] [PATCH 04/12] ed: version bump 1.7 -> 1.14.2 Roland Hieber
2018-05-30 16:39 ` [ptxdist] [PATCH 05/12] ed: resurrect from staging after version bump Roland Hieber
2018-05-30 16:39 ` [ptxdist] [PATCH 06/12] file: version bump 5.32 -> 5.33 Roland Hieber
2018-05-30 16:39 ` [ptxdist] [PATCH 07/12] tar: version bump 1.26 -> 1.30 Roland Hieber
2018-05-30 16:39 ` [ptxdist] [PATCH 08/12] vim: version bump 7.3 -> 8.1 Roland Hieber
2018-05-30 16:39 ` [ptxdist] [PATCH 09/12] joe: version bump 3.5 -> 4.6 Roland Hieber
2018-05-31 9:27 ` Michael Olbrich
2018-05-30 16:39 ` [ptxdist] [PATCH 10/12] proftpd: version bump 1.3.5 -> 1.3.6 Roland Hieber
2018-05-31 9:28 ` Michael Olbrich
2018-05-30 16:39 ` [ptxdist] [PATCH 11/12] stunnel: version bump 5.45 -> 5.46 Roland Hieber
2018-05-30 16:39 ` [ptxdist] [PATCH 12/12] c-ares: version bump 1.10.0 -> 1.14.0 Roland Hieber
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox