From ede257c880585265116d88bbe60b163e4681484d Mon Sep 17 00:00:00 2001 From: darco Date: Thu, 8 Dec 2005 20:00:22 +0000 Subject: [PATCH] Changed the "tagrelease" and "tagstable" make targets to use subversion. Also incremented version to 0.61.03. Preparing for release git-svn-id: http://svn.voria.com/code@74 1f10aa63-cdf2-0310-b900-c93c546f37ac --- synfig-core/trunk/Makefile.am | 18 ++++++++++++++---- synfig-core/trunk/config/build.cfg | 2 +- synfig-core/trunk/examples/Makefile.in | 3 +-- 3 files changed, 16 insertions(+), 7 deletions(-) diff --git a/synfig-core/trunk/Makefile.am b/synfig-core/trunk/Makefile.am index 1d07ed4..8672766 100644 --- a/synfig-core/trunk/Makefile.am +++ b/synfig-core/trunk/Makefile.am @@ -17,9 +17,10 @@ bin_SCRIPTS=synfig-config EXTRA_DIST=TODO config/subs.m4 bootstrap config/package doc/hw-gfx-mapping.txt win32build.sh macosxbuild.sh win32inst.nsi.in COPYING config/depcomp config/synfig.m4 config/cxx_macros.m4 synfig.pbproj/config.h synfig.pbproj/project.pbxproj @PACKAGE_TARNAME@-@VERSION@.spec config/project.spec.in config/build.cfg synfig.kdevprj synfig-config.in config/ETL.m4 config/doxygen.cfg.in doxygen.cfg config/pkgconfig.pc.in config/pkgconfig.m4 config/libxml++.m4 @PACKAGE_TARNAME@.pc.in pkg-info/macosx/core-resources/ReadMe.txt pkg-info/macosx/core-resources/Welcome.txt pkg-info/macosx/core-resources/install.sh CVS=cvs - +SVN=svn +SVN_REPOSITORY=https://svn.voria.com/code/synfig-core GREP=grep - +TAG=@PACKAGE_TARNAME@_@VERSION_MAJ@_@VERSION_MIN@_@VERSION_REV@ PRINTF=printf SH=sh @@ -36,11 +37,20 @@ stats: -@du -hcs $(shell find $(top_srcdir)/src -name '*.[ch]*') | $(GREP) total -@echo +#tagstable: +# $(CVS) tag -F stable + +#tagrelease: +# $(CVS) tag -F @PACKAGE_TARNAME@_@VERSION_MAJ@_@VERSION_MIN@_@VERSION_REV@ + tagstable: - $(CVS) tag -F stable + -$(SVN) delete $(SVN_REPOSITORY)/tags/stable -m "Stabe Tag: Removing old tag" + $(SVN) mkdir $(SVN_REPOSITORY)/tags/stable -m "Stable Tag: Creating new directory" + $(SVN) copy . $(SVN_REPOSITORY)/tags/stable -m "Stable Tag: Copying everyhting over" tagrelease: - $(CVS) tag -F @PACKAGE_TARNAME@_@VERSION_MAJ@_@VERSION_MIN@_@VERSION_REV@ + $(SVN) mkdir $(SVN_REPOSITORY)/tags/$(TAG) -m "Release Tag: Making directory" + $(SVN) copy . $(SVN_REPOSITORY)/tags/$(TAG) -m "Release $(TAG)" listfixmes: -@echo diff --git a/synfig-core/trunk/config/build.cfg b/synfig-core/trunk/config/build.cfg index 7258055..128d14a 100644 --- a/synfig-core/trunk/config/build.cfg +++ b/synfig-core/trunk/config/build.cfg @@ -4,7 +4,7 @@ PACKAGE_BUGREPORT="darco@voria.com" PACKAGE_TARNAME=synfig VERSION_MAJ="0" VERSION_MIN="61" -VERSION_REV="02" +VERSION_REV="03" [ -d ".svn" ] && VERSION_REL=`svn info | grep Revision | sed "s/.* \([0123456789]*\)/\1/"` [ -d CVS ] && VERSION_REL="CVS" diff --git a/synfig-core/trunk/examples/Makefile.in b/synfig-core/trunk/examples/Makefile.in index c195ea8..408d6bc 100644 --- a/synfig-core/trunk/examples/Makefile.in +++ b/synfig-core/trunk/examples/Makefile.in @@ -208,7 +208,7 @@ sharedstatedir = @sharedstatedir@ synfigincludedir = @synfigincludedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ -EXTRA_DIST = about_dialog.sif ./backdrop.sif ./business_card.sif ./candy.sif ./cells.sif ./eye.sif ./eyes.sif ./gamma.sif ./gradient.sif ./headmo.sif ./installer-logo.sif ./japan.sif ./logo.sif ./logo.tiff ./macwolfen.sif ./Makefile.am ./mandelbrot.sif ./newjulia.sif ./newjulia2.sif ./noise.sif ./pirates.sif ./preambletaffy.sif ./prologue_kid.sif ./sparkle.sif ./splat.sif ./star.sif ./walk ./walk/animation.lst ./walk/frame_01.jpg ./walk/frame_02.jpg ./walk/frame_03.jpg ./walk/frame_04.jpg ./walk/walk.sif ./wallpaper.sif ./warpcube.sif ./warptext.sif ./z_depth_test.sif +EXTRA_DIST = about_dialog.sif backdrop.sif business_card.sif candy.sif cells.sif eye.sif eyes.sif gamma.sif gradient.sif headmo.sif installer-logo.sif japan.sif logo.sif logo.tiff macwolfen.sif Makefile.am mandelbrot.sif newjulia.sif newjulia2.sif noise.sif pirates.sif preambletaffy.sif prologue_kid.sif sparkle.sif splat.sif star.sif wallpaper.sif warpcube.sif warptext.sif z_depth_test.sif all: all-am .SUFFIXES: @@ -259,7 +259,6 @@ CTAGS: distdir: $(DISTFILES) - $(mkdir_p) $(distdir)/./walk @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ list='$(DISTFILES)'; for file in $$list; do \ -- 2.7.4