Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 27 Oct 2017 10:15:27 +0000 (UTC)
From:      Luca Pizzamiglio <pizzamig@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r452969 - in head/devel: . codeblocks-devel codeblocks-devel/files
Message-ID:  <201710271015.v9RAFR2u089392@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pizzamig
Date: Fri Oct 27 10:15:27 2017
New Revision: 452969
URL: https://svnweb.freebsd.org/changeset/ports/452969

Log:
  devel/codeblocks-devel: new port
  
  PR:		221703
  Submitted by:	lbartoletti@tuxfamily.org
  Approved by:	olivier (mentor)
  Differential Revision:	https://reviews.freebsd.org/D12806

Added:
  head/devel/codeblocks-devel/
     - copied from r452966, head/devel/codeblocks/
  head/devel/codeblocks-devel/files/patch-revision.m4   (contents, props changed)
Deleted:
  head/devel/codeblocks-devel/files/patch-src_sdk_wxscintilla_src_ScintillaWX.cpp
Modified:
  head/devel/Makefile
  head/devel/codeblocks-devel/Makefile
  head/devel/codeblocks-devel/distinfo
  head/devel/codeblocks-devel/pkg-plist

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Fri Oct 27 09:08:53 2017	(r452968)
+++ head/devel/Makefile	Fri Oct 27 10:15:27 2017	(r452969)
@@ -329,6 +329,7 @@
     SUBDIR += cobf
     SUBDIR += coccinelle
     SUBDIR += codeblocks
+    SUBDIR += codeblocks-devel
     SUBDIR += codequery
     SUBDIR += codesearch-py
     SUBDIR += codeville

Modified: head/devel/codeblocks-devel/Makefile
==============================================================================
--- head/devel/codeblocks/Makefile	Fri Oct 27 07:48:55 2017	(r452966)
+++ head/devel/codeblocks-devel/Makefile	Fri Oct 27 10:15:27 2017	(r452969)
@@ -1,12 +1,13 @@
-# Created by: Matthias Sund <m.sund@arcor.de>
+# Created by: Loïc Bartoletti <lbartoletti@tuxfamily.org>
 # $FreeBSD$
 
 PORTNAME=	codeblocks
-PORTVERSION=	16.01
-PORTREVISION=	8
+PORTVERSION=	17.07
 CATEGORIES=	devel
-MASTER_SITES=	SF/${PORTNAME}/Sources/${PORTVERSION}
-DISTNAME=	${PORTNAME}_${PORTVERSION}
+MASTER_SITES=	http://download.tuxfamily.org/bartcoding/FreeBSD/ \
+		${MASTER_SITE_LOCAL}
+PKGNAMESUFFIX=	-devel
+DISTNAME=	${PORTNAME}-${PORTVERSION}-${SVN_REV}
 
 MAINTAINER=	lbartoletti@tuxfamily.org
 COMMENT=	Open source, cross-platform, free C/C++ IDE
@@ -33,7 +34,9 @@ INSTALLS_ICONS=	yes
 INSTALL_TARGET=	install-strip
 USE_LDCONFIG=	yes
 
-WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}.release
+FETCH_DEPENDS+=	svn:devel/subversion
+SVN_REV=	11112
+SVNROOT_URI=	svn://svn.code.sf.net/p/codeblocks/code/trunk
 
 .include <bsd.port.pre.mk>
 
@@ -43,5 +46,18 @@ USE_CXXSTD=	c++11
 CXXFLAGS+=	-Wno-undefined-bool-conversion
 . endif
 .endif
+
+.if defined(MAINTAINER_MODE)
+do-fetch:
+	${MKDIR} ${WRKDIR}
+	svn export -r ${SVN_REV} ${SVNROOT_URI} ${WRKSRC}
+	cd ${WRKDIR}; tar cvfz ${DISTDIR}/${DISTNAME}.tar.gz ${DISTNAME}
+	${CHMOD} ugo+r ${DISTDIR}/${DISTNAME}.tar.gz
+	scp -p ${DISTDIR}/${DISTNAME}.tar.bz2 \
+		freefall.freebsd.org:public_distfiles/
+.endif # defined(MAINTAINER_MODE)
+
+post-extract:
+	${TOUCH} ${WRKSRC}/revision.m4
 
 .include <bsd.port.post.mk>

Modified: head/devel/codeblocks-devel/distinfo
==============================================================================
--- head/devel/codeblocks/distinfo	Fri Oct 27 07:48:55 2017	(r452966)
+++ head/devel/codeblocks-devel/distinfo	Fri Oct 27 10:15:27 2017	(r452969)
@@ -1,2 +1,3 @@
-SHA256 (codeblocks_16.01.tar.gz) = 30fb9d206df4ab3c2e2fec2451a0a7c9723bfed9a673cc9be71e881c529d5a03
-SIZE (codeblocks_16.01.tar.gz) = 20250097
+TIMESTAMP = 1502001608
+SHA256 (codeblocks-17.07-11112.tar.gz) = 3cbdc23f9418e2eb45268840727167547cdc7261f498cc72f1087dbdeda8d0ef
+SIZE (codeblocks-17.07-11112.tar.gz) = 20409815

Added: head/devel/codeblocks-devel/files/patch-revision.m4
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/codeblocks-devel/files/patch-revision.m4	Fri Oct 27 10:15:27 2017	(r452969)
@@ -0,0 +1,6 @@
+--- revision.m4.orig	2017-08-06 08:11:38 UTC
++++ revision.m4
+@@ -0,0 +1,3 @@
++m4_define([SVN_REV], 0)
++m4_define([SVN_REVISION], trunk-r0)
++m4_define([SVN_DATE], )

Modified: head/devel/codeblocks-devel/pkg-plist
==============================================================================
--- head/devel/codeblocks/pkg-plist	Fri Oct 27 07:48:55 2017	(r452966)
+++ head/devel/codeblocks-devel/pkg-plist	Fri Oct 27 10:15:27 2017	(r452969)
@@ -71,14 +71,13 @@ include/codeblocks/ibaseloader.h
 include/codeblocks/ibaseworkspaceloader.h
 include/codeblocks/id.h
 include/codeblocks/importers_globals.h
-include/codeblocks/incrementalselectlistdlg.h
+include/codeblocks/incremental_select_helper.h
 include/codeblocks/infowindow.h
 include/codeblocks/licenses.h
 include/codeblocks/logger.h
 include/codeblocks/loggers.h
 include/codeblocks/logmanager.h
 include/codeblocks/macrosmanager.h
-include/codeblocks/managedthread.h
 include/codeblocks/manager.h
 include/codeblocks/menuitemsmanager.h
 include/codeblocks/misctreeitemdata.h
@@ -156,8 +155,8 @@ include/codeblocks/searchresultslog.h
 include/codeblocks/selecttargetdlg.h
 include/codeblocks/settings.h
 include/codeblocks/templatemanager.h
+include/codeblocks/tinywxuni.h
 include/codeblocks/tinyxml/tinystr.h
-include/codeblocks/tinyxml/tinywxuni.h
 include/codeblocks/tinyxml/tinyxml.h
 include/codeblocks/toolsmanager.h
 include/codeblocks/uservarmanager.h
@@ -324,6 +323,7 @@ include/wxsmith/wxwidgets/wxwidgetsguiappadoptingdlg.h
 include/wxsmith/wxwidgets/wxwidgetsguiconfigpanel.h
 include/wxsmith/wxwidgets/wxwidgetsres.h
 include/wxsmith/wxwidgets/wxwidgetsresfactory.h
+lib/codeblocks/plugins/libAstyle.so
 lib/codeblocks/plugins/libAutoVersioning.so
 lib/codeblocks/plugins/libBrowseTracker.so
 lib/codeblocks/plugins/libCccc.so
@@ -354,7 +354,6 @@ lib/codeblocks/plugins/libThreadSearch.so
 lib/codeblocks/plugins/libToolsPlus.so
 lib/codeblocks/plugins/libValgrind.so
 lib/codeblocks/plugins/libabbreviations.so
-lib/codeblocks/plugins/libastyle.so
 lib/codeblocks/plugins/libautosave.so
 lib/codeblocks/plugins/libbyogames.so
 lib/codeblocks/plugins/libcb_koders.so
@@ -414,7 +413,6 @@ lib/libcodeblocks.so.0.0.1
 lib/libwxsmithlib.so
 lib/libwxsmithlib.so.0
 lib/libwxsmithlib.so.0.0.1
-libdata/pkgconfig/codeblocks.pc
 libdata/pkgconfig/cb_wxKWIC.pc
 libdata/pkgconfig/cb_wxchartctrl.pc
 libdata/pkgconfig/cb_wxcontrib.pc
@@ -425,6 +423,7 @@ libdata/pkgconfig/cb_wxled.pc
 libdata/pkgconfig/cb_wxmathplot.pc
 libdata/pkgconfig/cb_wxspeedbutton.pc
 libdata/pkgconfig/cb_wxtreelist.pc
+libdata/pkgconfig/codeblocks.pc
 libdata/pkgconfig/wxsmith-contrib.pc
 libdata/pkgconfig/wxsmith.pc
 libdata/pkgconfig/wxsmithaui.pc
@@ -432,7 +431,10 @@ man/man1/cb_console_runner.1.gz
 man/man1/cb_share_config.1.gz
 man/man1/codeblocks.1.gz
 man/man1/codesnippets.1.gz
+share/appdata/codeblocks-contrib.metainfo.xml
+share/appdata/codeblocks.appdata.xml
 share/applications/codeblocks.desktop
+%%DATADIR%%/Astyle.zip
 %%DATADIR%%/AutoVersioning.zip
 %%DATADIR%%/BrowseTracker.zip
 %%DATADIR%%/Cccc.zip
@@ -475,7 +477,6 @@ share/applications/codeblocks.desktop
 %%DATADIR%%/ToolsPlus.zip
 %%DATADIR%%/Valgrind.zip
 %%DATADIR%%/abbreviations.zip
-%%DATADIR%%/astyle.zip
 %%DATADIR%%/autosave.zip
 %%DATADIR%%/byogames.zip
 %%DATADIR%%/cb_koders.zip
@@ -484,6 +485,7 @@ share/applications/codeblocks.desktop
 %%DATADIR%%/codesnippets.zip
 %%DATADIR%%/codestat.zip
 %%DATADIR%%/compiler.zip
+%%DATADIR%%/compilers/compiler_android-gcc.xml
 %%DATADIR%%/compilers/compiler_avr-gcc.xml
 %%DATADIR%%/compilers/compiler_bcc.xml
 %%DATADIR%%/compilers/compiler_bfin-elf-gcc.xml
@@ -494,13 +496,16 @@ share/applications/codeblocks.desktop
 %%DATADIR%%/compilers/compiler_lm32-gcc.xml
 %%DATADIR%%/compilers/compiler_lm8-gcc.xml
 %%DATADIR%%/compilers/compiler_msp430-gcc.xml
+%%DATADIR%%/compilers/compiler_mw.xml
 %%DATADIR%%/compilers/compiler_null.xml
 %%DATADIR%%/compilers/compiler_pgifortran.xml
+%%DATADIR%%/compilers/compiler_powerpc-eabi.xml
 %%DATADIR%%/compilers/compiler_ppc-gcc.xml
 %%DATADIR%%/compilers/compiler_sdcc.xml
 %%DATADIR%%/compilers/compiler_tcc.xml
 %%DATADIR%%/compilers/compiler_tricore-gcc.xml
 %%DATADIR%%/compilers/compiler_zpu-gcc.xml
+%%DATADIR%%/compilers/options_android-gcc.xml
 %%DATADIR%%/compilers/options_arm-elf-gcc.xml
 %%DATADIR%%/compilers/options_avr-gcc.xml
 %%DATADIR%%/compilers/options_bcc.xml
@@ -539,9 +544,11 @@ share/applications/codeblocks.desktop
 %%DATADIR%%/compilers/options_msvc10.xml
 %%DATADIR%%/compilers/options_msvc8.xml
 %%DATADIR%%/compilers/options_msvctk.xml
+%%DATADIR%%/compilers/options_mw.xml
 %%DATADIR%%/compilers/options_null.xml
 %%DATADIR%%/compilers/options_ow.xml
 %%DATADIR%%/compilers/options_pgifortran.xml
+%%DATADIR%%/compilers/options_powerpc-eabi.xml
 %%DATADIR%%/compilers/options_ppc-gcc.xml
 %%DATADIR%%/compilers/options_sdcc.xml
 %%DATADIR%%/compilers/options_tcc.xml
@@ -1150,6 +1157,8 @@ share/applications/codeblocks.desktop
 %%DATADIR%%/lexers/lexer_ada.xml
 %%DATADIR%%/lexers/lexer_angelscript.sample
 %%DATADIR%%/lexers/lexer_angelscript.xml
+%%DATADIR%%/lexers/lexer_autotools.sample
+%%DATADIR%%/lexers/lexer_autotools.xml
 %%DATADIR%%/lexers/lexer_bash.sample
 %%DATADIR%%/lexers/lexer_bash.xml
 %%DATADIR%%/lexers/lexer_batch.sample
@@ -1168,6 +1177,8 @@ share/applications/codeblocks.desktop
 %%DATADIR%%/lexers/lexer_cpp.xml
 %%DATADIR%%/lexers/lexer_css.sample
 %%DATADIR%%/lexers/lexer_css.xml
+%%DATADIR%%/lexers/lexer_cu.sample
+%%DATADIR%%/lexers/lexer_cu.xml
 %%DATADIR%%/lexers/lexer_d.sample
 %%DATADIR%%/lexers/lexer_d.xml
 %%DATADIR%%/lexers/lexer_diff.sample
@@ -1188,6 +1199,8 @@ share/applications/codeblocks.desktop
 %%DATADIR%%/lexers/lexer_html.xml
 %%DATADIR%%/lexers/lexer_ihex.sample
 %%DATADIR%%/lexers/lexer_ihex.xml
+%%DATADIR%%/lexers/lexer_inno.sample
+%%DATADIR%%/lexers/lexer_inno.xml
 %%DATADIR%%/lexers/lexer_java.sample
 %%DATADIR%%/lexers/lexer_java.xml
 %%DATADIR%%/lexers/lexer_javascript.sample
@@ -1313,6 +1326,29 @@ share/applications/codeblocks.desktop
 %%DATADIR%%/templates/staticlib-sample.c
 %%DATADIR%%/templates/staticlib.cbp
 %%DATADIR%%/templates/staticlib.template
+%%DATADIR%%/templates/wizard/arduino/files/cores/CDC.cpp
+%%DATADIR%%/templates/wizard/arduino/files/cores/HID.cpp
+%%DATADIR%%/templates/wizard/arduino/files/cores/HardwareSerial.cpp
+%%DATADIR%%/templates/wizard/arduino/files/cores/IPAddress.cpp
+%%DATADIR%%/templates/wizard/arduino/files/cores/Print.cpp
+%%DATADIR%%/templates/wizard/arduino/files/cores/Stream.cpp
+%%DATADIR%%/templates/wizard/arduino/files/cores/Tone.cpp
+%%DATADIR%%/templates/wizard/arduino/files/cores/USBCore.cpp
+%%DATADIR%%/templates/wizard/arduino/files/cores/WInterrupts.c
+%%DATADIR%%/templates/wizard/arduino/files/cores/WMath.cpp
+%%DATADIR%%/templates/wizard/arduino/files/cores/WString.cpp
+%%DATADIR%%/templates/wizard/arduino/files/cores/libraries.cpp
+%%DATADIR%%/templates/wizard/arduino/files/cores/main.cpp
+%%DATADIR%%/templates/wizard/arduino/files/cores/new.cpp
+%%DATADIR%%/templates/wizard/arduino/files/cores/wiring.c
+%%DATADIR%%/templates/wizard/arduino/files/cores/wiring_analog.c
+%%DATADIR%%/templates/wizard/arduino/files/cores/wiring_digital.c
+%%DATADIR%%/templates/wizard/arduino/files/cores/wiring_pulse.c
+%%DATADIR%%/templates/wizard/arduino/files/cores/wiring_shift.c
+%%DATADIR%%/templates/wizard/arduino/files/sketch.cpp
+%%DATADIR%%/templates/wizard/arduino/logo.png
+%%DATADIR%%/templates/wizard/arduino/wizard.png
+%%DATADIR%%/templates/wizard/arduino/wizard.script
 %%DATADIR%%/templates/wizard/arm/files/ARM-eval7t/h/evaluator7t.h
 %%DATADIR%%/templates/wizard/arm/files/ARM-eval7t/ld/target.ld
 %%DATADIR%%/templates/wizard/arm/files/ARM-eval7t/src/main.c
@@ -1392,6 +1428,9 @@ share/applications/codeblocks.desktop
 %%DATADIR%%/templates/wizard/d/logo.png
 %%DATADIR%%/templates/wizard/d/wizard.png
 %%DATADIR%%/templates/wizard/d/wizard.script
+%%DATADIR%%/templates/wizard/d_source/logo.png
+%%DATADIR%%/templates/wizard/d_source/wizard.png
+%%DATADIR%%/templates/wizard/d_source/wizard.script
 %%DATADIR%%/templates/wizard/directx/dx8/main.cpp
 %%DATADIR%%/templates/wizard/directx/dx9/main.cpp
 %%DATADIR%%/templates/wizard/directx/logo.png
@@ -1449,6 +1488,13 @@ share/applications/codeblocks.desktop
 %%DATADIR%%/templates/wizard/irrlicht/logo.png
 %%DATADIR%%/templates/wizard/irrlicht/wizard.png
 %%DATADIR%%/templates/wizard/irrlicht/wizard.script
+%%DATADIR%%/templates/wizard/java/file/logo.png
+%%DATADIR%%/templates/wizard/java/file/wizard.png
+%%DATADIR%%/templates/wizard/java/file/wizard.script
+%%DATADIR%%/templates/wizard/java/files/Main.java
+%%DATADIR%%/templates/wizard/java/logo.png
+%%DATADIR%%/templates/wizard/java/wizard.png
+%%DATADIR%%/templates/wizard/java/wizard.script
 %%DATADIR%%/templates/wizard/lf/files/quick/main.cpp
 %%DATADIR%%/templates/wizard/lf/files/structured/CMain.cpp
 %%DATADIR%%/templates/wizard/lf/files/structured/CMain.h
@@ -1457,9 +1503,9 @@ share/applications/codeblocks.desktop
 %%DATADIR%%/templates/wizard/lf/wizard.png
 %%DATADIR%%/templates/wizard/lf/wizard.script
 %%DATADIR%%/templates/wizard/lf/wizard.xrc
-%%DATADIR%%/templates/wizard/matlab_csf/files/lccstub.c
 %%DATADIR%%/templates/wizard/matlab_csf/files/mexversion.rc
 %%DATADIR%%/templates/wizard/matlab_csf/files/sfuntmpl.c
+%%DATADIR%%/templates/wizard/matlab_csf/lccstub/lccstub.c
 %%DATADIR%%/templates/wizard/matlab_csf/logo.png
 %%DATADIR%%/templates/wizard/matlab_csf/wizard.png
 %%DATADIR%%/templates/wizard/matlab_csf/wizard.script
@@ -1469,11 +1515,16 @@ share/applications/codeblocks.desktop
 %%DATADIR%%/templates/wizard/mcs51/wizard.png
 %%DATADIR%%/templates/wizard/mcs51/wizard.script
 %%DATADIR%%/templates/wizard/mcs51/wizard.xrc
+%%DATADIR%%/templates/wizard/msp430/files/main.c
+%%DATADIR%%/templates/wizard/msp430/logo.png
+%%DATADIR%%/templates/wizard/msp430/wizard.png
+%%DATADIR%%/templates/wizard/msp430/wizard.script
+%%DATADIR%%/templates/wizard/msp430/wizard.xrc
 %%DATADIR%%/templates/wizard/ogre/files/main.cpp
 %%DATADIR%%/templates/wizard/ogre/logo.png
 %%DATADIR%%/templates/wizard/ogre/wizard.png
 %%DATADIR%%/templates/wizard/ogre/wizard.script
-%%DATADIR%%/templates/wizard/opencv/files/lena.jpg
+%%DATADIR%%/templates/wizard/opencv/files/arnold_schwarzenegger.jpg
 %%DATADIR%%/templates/wizard/opencv/files/main.cpp
 %%DATADIR%%/templates/wizard/opencv/logo.png
 %%DATADIR%%/templates/wizard/opencv/wizard.png
@@ -1513,11 +1564,22 @@ share/applications/codeblocks.desktop
 %%DATADIR%%/templates/wizard/qt4/logo.png
 %%DATADIR%%/templates/wizard/qt4/wizard.png
 %%DATADIR%%/templates/wizard/qt4/wizard.script
-%%DATADIR%%/templates/wizard/sdl/files/cb.bmp
+%%DATADIR%%/templates/wizard/qt4dll/files/main.cpp
+%%DATADIR%%/templates/wizard/qt4dll/logo.png
+%%DATADIR%%/templates/wizard/qt4dll/wizard.png
+%%DATADIR%%/templates/wizard/qt4dll/wizard.script
+%%DATADIR%%/templates/wizard/qt5/files/main.cpp
+%%DATADIR%%/templates/wizard/qt5/logo.png
+%%DATADIR%%/templates/wizard/qt5/wizard.png
+%%DATADIR%%/templates/wizard/qt5/wizard.script
 %%DATADIR%%/templates/wizard/sdl/files/main.cpp
 %%DATADIR%%/templates/wizard/sdl/logo.png
 %%DATADIR%%/templates/wizard/sdl/wizard.png
 %%DATADIR%%/templates/wizard/sdl/wizard.script
+%%DATADIR%%/templates/wizard/sdl2/files/main.cpp
+%%DATADIR%%/templates/wizard/sdl2/logo.png
+%%DATADIR%%/templates/wizard/sdl2/wizard.png
+%%DATADIR%%/templates/wizard/sdl2/wizard.script
 %%DATADIR%%/templates/wizard/sfml/logo.png
 %%DATADIR%%/templates/wizard/sfml/sfml1/cb.bmp
 %%DATADIR%%/templates/wizard/sfml/sfml1/main.cpp



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201710271015.v9RAFR2u089392>