[csw-devel] SF.net SVN: gar:[8726] csw/mgar/pkg/x11

wbonnet at users.sourceforge.net wbonnet at users.sourceforge.net
Mon Feb 22 01:29:40 CET 2010


Revision: 8726
          http://gar.svn.sourceforge.net/gar/?rev=8726&view=rev
Author:   wbonnet
Date:     2010-02-22 00:29:40 +0000 (Mon, 22 Feb 2010)

Log Message:
-----------
Create directories for libs and proto from previous versions. They contains packages that are not longer provided in current X11 version. Move libxfontcache andlibxxf86misc to /old/

Added Paths:
-----------
    csw/mgar/pkg/x11/lib-old/
    csw/mgar/pkg/x11/lib-old/Makefile
    csw/mgar/pkg/x11/lib-old/libxfontcache/
    csw/mgar/pkg/x11/lib-old/libxxf86misc/
    csw/mgar/pkg/x11/proto-old/
    csw/mgar/pkg/x11/proto-old/Makefile

Removed Paths:
-------------
    csw/mgar/pkg/x11/lib/libpthread-stubs/tags/libpthread-stubs-0.1,REV=2009.02.25-testing-b1/
    csw/mgar/pkg/x11/lib/libxfontcache/
    csw/mgar/pkg/x11/lib/libxxf86misc/

Added: csw/mgar/pkg/x11/lib-old/Makefile
===================================================================
--- csw/mgar/pkg/x11/lib-old/Makefile	                        (rev 0)
+++ csw/mgar/pkg/x11/lib-old/Makefile	2010-02-22 00:29:40 UTC (rev 8726)
@@ -0,0 +1,65 @@
+# Copyright 2009 OpenCSW
+# Distributed under the terms of the GNU General Public License v2
+# $Id: Makefile 6092 2009-08-23 21:50:45Z skayser $
+#
+# vim: ft=make ts=4 sw=4 noet
+# This makefile is to be included from Makefiles in each category
+# directory.
+
+default:
+	@echo "You are in the pkg/x11/lib directory."
+
+%:
+	@for i in $(filter-out CVS/,$(wildcard */)) ; do \
+		$(MAKE) -C $$i $* ; \
+	done
+
+paranoid-%:
+	@for i in $(filter-out CVS/,$(wildcard */)) ; do \
+		$(MAKE) -C $$i $* || exit 2; \
+	done
+
+export BUILDLOG ?= $(shell pwd)/buildlog.txt
+
+report-%:
+	@for i in $(filter-out CVS/,$(wildcard */)) ; do \
+		$(MAKE) -C $$i $* || echo "	*** make $* in $$i failed ***" >> $(BUILDLOG); \
+	done
+
+newpkg-%:
+	@svn mkdir $* $*/tags $*/branches $*/trunk $*/trunk/files
+	@(echo "GARNAME = $*";                                     \
+	echo "GARVERSION = 1.0";                                        \
+	echo "CATEGORIES = category";                                   \
+	echo "";                                                        \
+	echo "DESCRIPTION = Brief description";                         \
+	echo "define BLURB";                                            \
+	echo "  Long description";                                      \
+	echo "endef";                                                   \
+	echo "";                                                        \
+	echo "MASTER_SITES = ";                                         \
+	echo "DISTFILES  = $$(GARNAME)-$$(GARVERSION).tar.gz";          \
+	echo "";                                                        								\
+	echo "# We define upstream file regex so we can be notifed of new upstream software release";  	\
+	echo "UFILES_REGEX = $$(GARNAME)-(\d+(?:\.\d+)*).tar.gz";										\
+	echo "";                                                        								\
+	echo "# If the url used to check for software update is different of MASTER_SITES, then ";   	\
+	echo "# uncomment the next line. Otherwise it is set by default to the value of MASTER_SITES"; 	\
+	echo "# UPSTREAM_MASTER_SITES = ";                                         						\
+	echo "";                                                        \
+	echo "CONFIGURE_ARGS = $$(DIRPATHS)";                           \
+	echo "";                                                        \
+	echo "include gar/category.mk";                                 \
+	) > $*/trunk/Makefile
+	@touch $*/trunk/checksums
+	@svn add $*/trunk/Makefile $*/trunk/checksums
+	@echo "cookies\ndownload\nwork\n" | svn propset svn:ignore -F /dev/fd/0 $*/trunk
+	@echo "gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2" | svn propset svn:externals -F /dev/fd/0 $*/trunk
+	@if [ -d ../../gar/v2 ]; then \
+	  ln -s ../../../../gar/v2 $*/trunk/gar; \
+	else \
+	  svn co https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 $*/trunk/gar; \
+	fi
+	@echo
+	@echo "Your package is set up for editing at $*/trunk"
+

Added: csw/mgar/pkg/x11/proto-old/Makefile
===================================================================
--- csw/mgar/pkg/x11/proto-old/Makefile	                        (rev 0)
+++ csw/mgar/pkg/x11/proto-old/Makefile	2010-02-22 00:29:40 UTC (rev 8726)
@@ -0,0 +1,65 @@
+# Copyright 2009 OpenCSW
+# Distributed under the terms of the GNU General Public License v2
+# $Id: Makefile 6092 2009-08-23 21:50:45Z skayser $
+#
+# vim: ft=make ts=4 sw=4 noet
+# This makefile is to be included from Makefiles in each category
+# directory.
+
+default:
+	@echo "You are in the pkg/x11/proto directory."
+
+%:
+	@for i in $(filter-out CVS/,$(wildcard */)) ; do \
+		$(MAKE) -C $$i $* ; \
+	done
+
+paranoid-%:
+	@for i in $(filter-out CVS/,$(wildcard */)) ; do \
+		$(MAKE) -C $$i $* || exit 2; \
+	done
+
+export BUILDLOG ?= $(shell pwd)/buildlog.txt
+
+report-%:
+	@for i in $(filter-out CVS/,$(wildcard */)) ; do \
+		$(MAKE) -C $$i $* || echo "	*** make $* in $$i failed ***" >> $(BUILDLOG); \
+	done
+
+newpkg-%:
+	@svn mkdir $* $*/tags $*/branches $*/trunk $*/trunk/files
+	@(echo "GARNAME = $*";                                     \
+	echo "GARVERSION = 1.0";                                        \
+	echo "CATEGORIES = category";                                   \
+	echo "";                                                        \
+	echo "DESCRIPTION = Brief description";                         \
+	echo "define BLURB";                                            \
+	echo "  Long description";                                      \
+	echo "endef";                                                   \
+	echo "";                                                        \
+	echo "MASTER_SITES = ";                                         \
+	echo "DISTFILES  = $$(GARNAME)-$$(GARVERSION).tar.gz";          \
+	echo "";                                                        								\
+	echo "# We define upstream file regex so we can be notifed of new upstream software release";  	\
+	echo "UFILES_REGEX = $$(GARNAME)-(\d+(?:\.\d+)*).tar.gz";										\
+	echo "";                                                        								\
+	echo "# If the url used to check for software update is different of MASTER_SITES, then ";   	\
+	echo "# uncomment the next line. Otherwise it is set by default to the value of MASTER_SITES"; 	\
+	echo "# UPSTREAM_MASTER_SITES = ";                                         						\
+	echo "";                                                        \
+	echo "CONFIGURE_ARGS = $$(DIRPATHS)";                           \
+	echo "";                                                        \
+	echo "include gar/category.mk";                                 \
+	) > $*/trunk/Makefile
+	@touch $*/trunk/checksums
+	@svn add $*/trunk/Makefile $*/trunk/checksums
+	@echo "cookies\ndownload\nwork\n" | svn propset svn:ignore -F /dev/fd/0 $*/trunk
+	@echo "gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2" | svn propset svn:externals -F /dev/fd/0 $*/trunk
+	@if [ -d ../../gar/v2 ]; then \
+	  ln -s ../../../../gar/v2 $*/trunk/gar; \
+	else \
+	  svn co https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 $*/trunk/gar; \
+	fi
+	@echo
+	@echo "Your package is set up for editing at $*/trunk"
+


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.


More information about the devel mailing list