Bug 176457 - [MAINTAINER] x11-toolkits/scintilla: update to 3.2.5
Summary: [MAINTAINER] x11-toolkits/scintilla: update to 3.2.5
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Max Brazhnikov
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-02-26 23:30 UTC by Naram Qashat
Modified: 2013-02-27 11:50 UTC (History)
0 users

See Also:


Attachments
scintilla-3.2.5.patch (2.76 KB, patch)
2013-02-26 23:30 UTC, Naram Qashat
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Naram Qashat 2013-02-26 23:30:00 UTC
- Update to 3.2.5

Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: ports)
Comment 1 Max Brazhnikov freebsd_committer freebsd_triage 2013-02-27 10:21:16 UTC
Responsible Changed
From-To: freebsd-ports-bugs->makc

I'll take it.
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-02-27 11:47:34 UTC
Author: makc
Date: Wed Feb 27 11:47:26 2013
New Revision: 313046
URL: http://svnweb.freebsd.org/changeset/ports/313046

Log:
  Update to 3.2.5
  
  PR:		ports/176457
  Submitted by:	Naram Qashat (maintainer)

Modified:
  head/x11-toolkits/scintilla/Makefile
  head/x11-toolkits/scintilla/distinfo
  head/x11-toolkits/scintilla/files/patch-aa   (contents, props changed)

Modified: head/x11-toolkits/scintilla/Makefile
==============================================================================
--- head/x11-toolkits/scintilla/Makefile	Wed Feb 27 10:39:48 2013	(r313045)
+++ head/x11-toolkits/scintilla/Makefile	Wed Feb 27 11:47:26 2013	(r313046)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	scintilla
-PORTVERSION=	3.2.4
+PORTVERSION=	3.2.5
 CATEGORIES=	x11-toolkits
 MASTER_SITES=	SF/scintilla/SciTE/${PORTVERSION}
 DISTNAME=	scite${PORTVERSION:S/.//g}

Modified: head/x11-toolkits/scintilla/distinfo
==============================================================================
--- head/x11-toolkits/scintilla/distinfo	Wed Feb 27 10:39:48 2013	(r313045)
+++ head/x11-toolkits/scintilla/distinfo	Wed Feb 27 11:47:26 2013	(r313046)
@@ -1,2 +1,2 @@
-SHA256 (scite324.tgz) = bd20b97513aee8e4584253d6ca31ec658bd4f098ceefb354889eb8a498cb5c08
-SIZE (scite324.tgz) = 1956084
+SHA256 (scite325.tgz) = ac3ca9588bb23ef21da2e22f6ef21416bbd7bf6957130a8e4057b3e5f3c58bef
+SIZE (scite325.tgz) = 1974782

Modified: head/x11-toolkits/scintilla/files/patch-aa
==============================================================================
--- head/x11-toolkits/scintilla/files/patch-aa	Wed Feb 27 10:39:48 2013	(r313045)
+++ head/x11-toolkits/scintilla/files/patch-aa	Wed Feb 27 11:47:26 2013	(r313046)
@@ -1,15 +1,12 @@
---- makefile.orig	2012-06-01 04:26:24.000000000 -0400
-+++ makefile	2012-08-12 14:34:52.000000000 -0400
-@@ -7,17 +7,7 @@
+--- makefile.orig	2013-02-18 02:20:43.000000000 -0500
++++ makefile	2013-02-26 18:16:54.000000000 -0500
+@@ -7,14 +7,7 @@
  # Also works with ming32-make on Windows.
  
  .SUFFIXES: .cxx .c .o .h .a
 -ifdef CLANG
--ifdef CLANG_ANALYZE
--ANALYZE=--analyze
--endif
--CC = clang $(ANALYZE)
--CCOMP = clang $(ANALYZE)
+-CC = clang --std=c++0x
+-CCOMP = clang
 -else
 -CC = g++
 -CCOMP = gcc
@@ -19,7 +16,7 @@
  RANLIB = touch
  
  ifdef GTK3
-@@ -39,7 +29,8 @@
+@@ -36,7 +29,8 @@
  COMPLIB=..\bin\scintilla.a
  else
  DEL = rm -f
@@ -29,7 +26,7 @@
  endif
  
  vpath %.h ../src ../include ../lexlib
-@@ -66,6 +57,7 @@
+@@ -63,16 +57,17 @@
  CFLAGS:=$(CXXTFLAGS)
  
  CONFIGFLAGS:=$(shell pkg-config --cflags $(GTKVERSION))
@@ -37,7 +34,10 @@
  MARSHALLER=scintilla-marshal.o
  
  .cxx.o:
-@@ -75,7 +67,7 @@
+ 	$(CC) $(CONFIGFLAGS) $(CXXTFLAGS) $(CXXFLAGS) -c $<
+ .c.o:
+-	$(CCOMP) $(CONFIGFLAGS) $(CFLAGS) -w -c $<
++	$(CCOMP) $(CONFIGFLAGS) $(CFLAGS) $(CXXFLAGS) -w -c $<
  
  LEXOBJS:=$(addsuffix .o,$(basename $(notdir $(wildcard ../lexers/Lex*.cxx))))
  
@@ -45,8 +45,8 @@
 +all: $(COMPLIB) $(LEXRLIB)
  
  clean:
- 	$(DEL) *.o $(COMPLIB)
-@@ -88,9 +80,11 @@
+ 	$(DEL) *.o $(COMPLIB) *.plist
+@@ -88,9 +83,11 @@
  	ScintillaBase.o ContractionState.o Editor.o ExternalLexer.o PropSetSimple.o PlatGTK.o \
  	KeyMap.o LineMarker.o PositionCache.o ScintillaGTK.o CellBuffer.o ViewStyle.o \
  	RESearch.o RunStyles.o Selection.o Style.o Indicator.o AutoComplete.o UniConversion.o XPM.o \
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 3 Max Brazhnikov freebsd_committer freebsd_triage 2013-02-27 11:49:32 UTC
State Changed
From-To: open->closed

Committed. Thanks!