pkgsrc-Bugs archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

pkg/49679: Update sysutils/estd to -r11



>Number:         49679
>Category:       pkg
>Synopsis:       Update sysutils/estd to -r11
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    pkg-manager
>State:          open
>Class:          change-request
>Submitter-Id:   net
>Arrival-Date:   Wed Feb 18 23:05:00 +0000 2015
>Originator:     Leonardo Taccari
>Release:        NetBSD 7.99.5
>Organization:
Università Politecnica delle Marche
>Environment:
	
	
System: NetBSD boh 7.99.5 NetBSD 7.99.5 (GENERIC) #1: Wed Feb 18 02:06:11 CET 2015 leot@boh:/usr/obj/sys/arch/amd64/compile/GENERIC amd64
Architecture: x86_64
Machine: amd64
>Description:
	sysutils/estd in pkgsrc (-r10) is not the latest stable version (-r11).
>How-To-Repeat:
	$ cd pkgsrc/sysutils/estd
	$ make show-var VARNAME=DISTNAME
>Fix:
	Please apply the attached trivial patches. There are not any functional
	changes but with it we get rid of patches/patch-ab that is now upstream.
	A possible commit message is also attached (from the hg log).

------------------------8<--------------------------8<------------------------
Update sysutils/estd to estd-r11.

Changes:
 * fix incorrect static array initialization
------------------------8<--------------------------8<------------------------

------------------------8<--------------------------8<------------------------
Index: Makefile
===================================================================
RCS file: /cvsroot/pkgsrc/sysutils/estd/Makefile,v
retrieving revision 1.26
diff -u -r1.26 Makefile
--- Makefile	18 Feb 2015 10:34:57 -0000	1.26
+++ Makefile	18 Feb 2015 22:48:19 -0000
@@ -1,7 +1,7 @@
 # $NetBSD: Makefile,v 1.26 2015/02/18 10:34:57 wiz Exp $
 
-DISTNAME=	estd-r10
-PKGNAME=	estd-0.10
+DISTNAME=	estd-r11
+PKGNAME=	estd-0.11
 CATEGORIES=	sysutils
 MASTER_SITES=	http://www.ecademix.com/JohannesHofmann/
 
Index: distinfo
===================================================================
RCS file: /cvsroot/pkgsrc/sysutils/estd/distinfo,v
retrieving revision 1.19
diff -u -r1.19 distinfo
--- distinfo	18 Feb 2015 10:34:57 -0000	1.19
+++ distinfo	18 Feb 2015 22:48:19 -0000
@@ -1,7 +1,6 @@
 $NetBSD: distinfo,v 1.19 2015/02/18 10:34:57 wiz Exp $
 
-SHA1 (estd-r10.tar.gz) = dea14ac478aad798c37d555ff7ee0597cc13f786
-RMD160 (estd-r10.tar.gz) = 1e30c05bff5efc77dbfa521ac62e1e4e7d236012
-Size (estd-r10.tar.gz) = 9329 bytes
+SHA1 (estd-r11.tar.gz) = 6c1148d66ff93b2e45af0411f1234fcccd1a2407
+RMD160 (estd-r11.tar.gz) = 261a6a79e54f2502a50aad79e336259604376f3c
+Size (estd-r11.tar.gz) = 9361 bytes
 SHA1 (patch-aa) = 0d263f929c700bc14f16a968e330b103cdeea07e
-SHA1 (patch-ab) = 1f9d29a5ffb61d6fa1cf5b685d645f81d73f698f
Index: patches/patch-ab
===================================================================
RCS file: patches/patch-ab
diff -N patches/patch-ab
--- patches/patch-ab	18 Feb 2015 10:34:57 -0000	1.13
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,42 +0,0 @@
-$NetBSD: patch-ab,v 1.13 2015/02/18 10:34:57 wiz Exp $
-
-Add a missing comma that resulted in a smaller freqctl[] and setctl[] (and so
-with a potential off-by-one error).
-Explicitly use TECH_MAX in sizes of freqlist and related arrays.
-
---- estd.c.orig	2015-02-15 21:12:10.000000000 +0000
-+++ estd.c
-@@ -121,7 +121,7 @@ int             ndomains;
-  static const size_t cp_time_max_size = sizeof(cp_time[0]) * MAX_CPUS;
- #endif
- 
--static char	*techdesc[8] = {"Unknown",
-+static char	*techdesc[TECH_MAX + 1] = {"Unknown",
- 				"Enhanced SpeedStep",
- 				"PowerNow",
- 				"ACPI P-States",
-@@ -130,20 +130,20 @@ static char	*techdesc[8] = {"Unknown",
- 				"Rockchip",
- 				"Generic"
- 				};
--static char	*freqctl[8] = {	"",	
-+static char	*freqctl[TECH_MAX + 1] = {	"",	
- 				"machdep.est.frequency.available",
- 				"machdep.powernow.frequency.available",
- 				"hw.acpi.cpu.px_dom0.available",
--				"machdep.intrepid.frequency.available"
-+				"machdep.intrepid.frequency.available",
- 				"machdep.loongson.frequency.available",
- 				"machdep.cpu.frequency.available",
- 				"machdep.frequency.available"
- 				};
--static char	*setctl[8] = {	"",
-+static char	*setctl[TECH_MAX + 1] = {	"",
- 				"machdep.est.frequency.target",
- 				"machdep.powernow.frequency.target",
- 				"hw.acpi.cpu.px_dom0.select",
--				"machdep.intrepid.frequency.target"
-+				"machdep.intrepid.frequency.target",
- 				"machdep.loongson.frequency.target",
- 				"machdep.cpu.frequency.target",
- 				"machdep.frequency.current"

>Unformatted:
 	
 	


Home | Main Index | Thread Index | Old Index