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

2009-07-24 Thread opk
Revision: 5638
  http://gar.svn.sourceforge.net/gar/?rev=5638&view=rev
Author:   opk
Date: 2009-07-24 12:47:02 + (Fri, 24 Jul 2009)

Log Message:
---
add tkcvs build rules

Added Paths:
---
csw/mgar/pkg/tkcvs/
csw/mgar/pkg/tkcvs/branches/
csw/mgar/pkg/tkcvs/tags/
csw/mgar/pkg/tkcvs/trunk/
csw/mgar/pkg/tkcvs/trunk/Makefile
csw/mgar/pkg/tkcvs/trunk/checksums
csw/mgar/pkg/tkcvs/trunk/files/


Property changes on: csw/mgar/pkg/tkcvs/trunk
___
Added: svn:ignore
   + cookies
download
work


Added: svn:externals
   + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2


Added: csw/mgar/pkg/tkcvs/trunk/Makefile
===
--- csw/mgar/pkg/tkcvs/trunk/Makefile   (rev 0)
+++ csw/mgar/pkg/tkcvs/trunk/Makefile   2009-07-24 12:47:02 UTC (rev 5638)
@@ -0,0 +1,45 @@
+GARNAME = tkcvs
+GARVERSION = 8.2
+CATEGORIES = apps
+
+DESCRIPTION = A graphical front-end to CVS and Subversion
+define BLURB
+  TkCVS is a Tcl/Tk based graphical interface to the CVS and Subversion
+  version control systems. TkCVS shows the status of files in the
+  current working directory, and has tools for tagging, merging,
+  importing, exporting, checking in/out, and other typical operations.
+endef
+
+MASTER_SITES = http://www.twobarleycorns.net/
+DISTNAME = $(GARNAME)_$(subst .,_,$(GARVERSION))
+DISTFILES  = $(GARNAME)_$(subst .,_,$(GARVERSION)).tar.gz
+
+# We define upstream file regex so we can be notifed of new upstream software 
release
+UFILES_REGEX = $(GARNAME)_(\d+(?:_\d+)*).tar.gz
+
+# If the url used to check for software update is different of MASTER_SITES, 
then 
+# uncomment the next line. Otherwise it is set by default to the value of 
MASTER_SITES
+# UPSTREAM_MASTER_SITES = 
+
+CONFIGURE_SCRIPTS =
+BUILD_SCRIPTS =
+TEST_SCRIPTS =
+INSTALL_SCRIPTS = custom
+
+LICENSE = COPYING
+ARCHALL = 1
+REQUIRED_PKGS = CSWtcl CSWtk CSWtkdiff
+
+include gar/category.mk
+
+TCL_FILES = $(filter-out %/tkcvs.tcl,$(wildcard $(WORKSRC)/tkcvs/*.tcl))
+IMAGE_FILES = $(wildcard $(WORKSRC)/tkcvs/bitmaps/*.gif 
$(WORKSRC)/tkcvs/bitmaps/*.xbm)
+
+install-custom:
+   @echo " ==> Installing $(GARNAME)"
+   @ginstall -D $(WORKSRC)/tkcvs/tkcvs.tcl $(DESTDIR)$(prefix)/bin/tkcvs
+   @ginstall -D $(WORKSRC)/tkcvs/tkcvs.1 
$(DESTDIR)$(prefix)/share/man/man1/tkcvs.1
+   @ginstall -d $(DESTDIR)$(prefix)/lib/tkcvs/bitmaps
+   @ginstall -m 644 $(TCL_FILES) $(DESTDIR)$(prefix)/lib/tkcvs
+   @ginstall -m 644 $(IMAGE_FILES) $(DESTDIR)$(prefix)/lib/tkcvs/bitmaps
+   @$(MAKECOOKIE)


Property changes on: csw/mgar/pkg/tkcvs/trunk/Makefile
___
Added: svn:keywords
   + URL Id

Added: csw/mgar/pkg/tkcvs/trunk/checksums
===
--- csw/mgar/pkg/tkcvs/trunk/checksums  (rev 0)
+++ csw/mgar/pkg/tkcvs/trunk/checksums  2009-07-24 12:47:02 UTC (rev 5638)
@@ -0,0 +1 @@
+f263e59233625145a4efc38b14241e0c  download/tkcvs_8_2.tar.gz


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.
___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[5669] csw/mgar/pkg/tkcvs

2009-07-27 Thread opk
Revision: 5669
  http://gar.svn.sourceforge.net/gar/?rev=5669&view=rev
Author:   opk
Date: 2009-07-27 15:04:33 + (Mon, 27 Jul 2009)

Log Message:
---
hardcode location of wish

Modified Paths:
--
csw/mgar/pkg/tkcvs/trunk/Makefile

Added Paths:
---
csw/mgar/pkg/tkcvs/Makefile

Added: csw/mgar/pkg/tkcvs/Makefile
===
--- csw/mgar/pkg/tkcvs/Makefile (rev 0)
+++ csw/mgar/pkg/tkcvs/Makefile 2009-07-27 15:04:33 UTC (rev 5669)
@@ -0,0 +1,15 @@
+# vim: ft=make ts=4 sw=4 noet
+
+default:
+   @echo "You are in the pkg/ directory."
+
+%:
+   $(MAKE) -C trunk $* 
+
+paranoid-%:
+   $(MAKE) -C trunk $* || exit 2 
+
+export BUILDLOG ?= $(shell pwd)/buildlog.txt
+
+report-%:
+   $(MAKE) -C trunk $* || echo "   *** make $* in $$i failed ***" >> 
$(BUILDLOG) 


Property changes on: csw/mgar/pkg/tkcvs/Makefile
___
Added: svn:keywords
   + URL Id

Modified: csw/mgar/pkg/tkcvs/trunk/Makefile
===
--- csw/mgar/pkg/tkcvs/trunk/Makefile   2009-07-27 08:05:22 UTC (rev 5668)
+++ csw/mgar/pkg/tkcvs/trunk/Makefile   2009-07-27 15:04:33 UTC (rev 5669)
@@ -29,7 +29,13 @@
 LICENSE = COPYING
 ARCHALL = 1
 REQUIRED_PKGS = CSWtcl CSWtk CSWtkdiff
+POST_INSTALL_TARGETS := fixscript
 
+# Script needs to run wish from /opt/csw
+fixscript:
+   @echo " ==> Fixing wish path in tkcvs script"
+   perl -i -plne "s{^exec wish}{exec ${bindir}/wish}g" 
$(DESTDIR)$(prefix)/bin/tkcvs
+
 include gar/category.mk
 
 TCL_FILES = $(filter-out %/tkcvs.tcl,$(wildcard $(WORKSRC)/tkcvs/*.tcl))


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.
___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[5732] csw/mgar/pkg/zsh/trunk/files

2009-07-30 Thread opk
Revision: 5732
  http://gar.svn.sourceforge.net/gar/?rev=5732&view=rev
Author:   opk
Date: 2009-07-30 10:33:34 + (Thu, 30 Jul 2009)

Log Message:
---
fix updating of /etc/shells using PKG_INSTALL_ROOT and not BASEDIR

Modified Paths:
--
csw/mgar/pkg/zsh/trunk/files/CSWzsh.postinstall
csw/mgar/pkg/zsh/trunk/files/CSWzsh.postremove

Modified: csw/mgar/pkg/zsh/trunk/files/CSWzsh.postinstall
===
--- csw/mgar/pkg/zsh/trunk/files/CSWzsh.postinstall 2009-07-30 09:54:48 UTC 
(rev 5731)
+++ csw/mgar/pkg/zsh/trunk/files/CSWzsh.postinstall 2009-07-30 10:33:34 UTC 
(rev 5732)
@@ -2,10 +2,12 @@
 PATH=/usr/bin
 export PATH
 
-if [ -f ${BASEDIR}/etc/shells ]; then
-   echo "${BASEDIR}/etc/shells already exists."
+# $BASEDIR ignored because the package isn't relocatable
+
+if [ -f ${PKG_INSTALL_ROOT}/etc/shells ]; then
+   echo "${PKG_INSTALL_ROOT}/etc/shells already exists."
 else
-   cat > ${BASEDIR}/etc/shells < ${PKG_INSTALL_ROOT}/etc/shells < 
/dev/null > /dev/null; then
-   echo "${BASEDIR}/etc/shells is UNCHANGED because entry 
${BASEDIR}/opt/csw/bin/zsh does already exists."
+if /usr/bin/grep "^/opt/csw/bin/zsh$" ${PKG_INSTALL_ROOT}/etc/shells 2> 
/dev/null > /dev/null; then
+   echo "${PKG_INSTALL_ROOT}/etc/shells is UNCHANGED because entry 
/opt/csw/bin/zsh already exists."
 else
-   echo "${BASEDIR}/opt/csw/bin/zsh" >> ${BASEDIR}/etc/shells
-   echo "ADDED ${BASEDIR}/opt/csw/bin/zsh to ${BASEDIR}/etc/shells."
+   echo "/opt/csw/bin/zsh" >> ${PKG_INSTALL_ROOT}/etc/shells
+   echo "ADDED /opt/csw/bin/zsh to ${PKG_INSTALL_ROOT}/etc/shells."
 fi

Modified: csw/mgar/pkg/zsh/trunk/files/CSWzsh.postremove
===
--- csw/mgar/pkg/zsh/trunk/files/CSWzsh.postremove  2009-07-30 09:54:48 UTC 
(rev 5731)
+++ csw/mgar/pkg/zsh/trunk/files/CSWzsh.postremove  2009-07-30 10:33:34 UTC 
(rev 5732)
@@ -2,9 +2,9 @@
 PATH=/usr/bin
 export PATH
 
-if /usr/bin/grep "^${BASEDIR}/opt/csw/bin/zsh$" ${BASEDIR}/etc/shells 2> 
/dev/null > /dev/null; then
-   /usr/bin/perl -i -pwe '$_ = "" if /\/opt\/csw\/bin\/zsh$/' 
${BASEDIR}/etc/shells
-   echo "REMOVED ${BASEDIR}/opt/csw/bin/zsh from ${BASEDIR}/etc/shells."
+if /usr/bin/grep "^/opt/csw/bin/zsh$" ${PKG_INSTALL_ROOT}/etc/shells 
>/dev/null 2>&1; then
+   /usr/bin/perl -i -pwe '$_ = "" if /\/opt\/csw\/bin\/zsh$/' 
${PKG_INSTALL_ROOT}/etc/shells
+   echo "REMOVED /opt/csw/bin/zsh from ${PKG_INSTALL_ROOT}/etc/shells."
 else
-   echo "${BASEDIR}/etc/shells is UNCHANGED because entry 
${BASEDIR}/opt/csw/bin/zsh was already wiped."
+   echo "${PKG_INSTALL_ROOT}/etc/shells is UNCHANGED because no entry for 
/opt/csw/bin/zsh was found."
 fi


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.
___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[9338] csw/mgar/pkg/tkcvs/trunk

2010-03-23 Thread opk
Revision: 9338
  http://gar.svn.sourceforge.net/gar/?rev=9338&view=rev
Author:   opk
Date: 2010-03-23 15:19:51 + (Tue, 23 Mar 2010)

Log Message:
---
update for tkcvs 8.2.1

Modified Paths:
--
csw/mgar/pkg/tkcvs/trunk/Makefile
csw/mgar/pkg/tkcvs/trunk/checksums

Modified: csw/mgar/pkg/tkcvs/trunk/Makefile
===
--- csw/mgar/pkg/tkcvs/trunk/Makefile   2010-03-23 13:22:20 UTC (rev 9337)
+++ csw/mgar/pkg/tkcvs/trunk/Makefile   2010-03-23 15:19:51 UTC (rev 9338)
@@ -1,5 +1,5 @@
 GARNAME = tkcvs
-GARVERSION = 8.2
+GARVERSION = 8.2.1
 CATEGORIES = apps
 
 DESCRIPTION = A graphical front-end to CVS and Subversion

Modified: csw/mgar/pkg/tkcvs/trunk/checksums
===
--- csw/mgar/pkg/tkcvs/trunk/checksums  2010-03-23 13:22:20 UTC (rev 9337)
+++ csw/mgar/pkg/tkcvs/trunk/checksums  2010-03-23 15:19:51 UTC (rev 9338)
@@ -1 +1 @@
-f263e59233625145a4efc38b14241e0c  download/tkcvs_8_2.tar.gz
+7bbe24d80ebd7f0504a5b36e92541f43  download/tkcvs_8_2_1.tar.gz


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.
___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[9349] csw/mgar/pkg/tkcvs/trunk/Makefile

2010-03-24 Thread opk
Revision: 9349
  http://gar.svn.sourceforge.net/gar/?rev=9349&view=rev
Author:   opk
Date: 2010-03-24 10:42:59 + (Wed, 24 Mar 2010)

Log Message:
---
also need to install tclIndex file

Modified Paths:
--
csw/mgar/pkg/tkcvs/trunk/Makefile

Modified: csw/mgar/pkg/tkcvs/trunk/Makefile
===
--- csw/mgar/pkg/tkcvs/trunk/Makefile   2010-03-24 10:20:19 UTC (rev 9348)
+++ csw/mgar/pkg/tkcvs/trunk/Makefile   2010-03-24 10:42:59 UTC (rev 9349)
@@ -46,6 +46,6 @@
@ginstall -D $(WORKSRC)/tkcvs/tkcvs.tcl $(DESTDIR)$(prefix)/bin/tkcvs
@ginstall -D $(WORKSRC)/tkcvs/tkcvs.1 
$(DESTDIR)$(prefix)/share/man/man1/tkcvs.1
@ginstall -d $(DESTDIR)$(prefix)/lib/tkcvs/bitmaps
-   @ginstall -m 644 $(TCL_FILES) $(DESTDIR)$(prefix)/lib/tkcvs
+   @ginstall -m 644 $(TCL_FILES) $(WORKSRC)/tkcvs/tclIndex 
$(DESTDIR)$(prefix)/lib/tkcvs
@ginstall -m 644 $(IMAGE_FILES) $(DESTDIR)$(prefix)/lib/tkcvs/bitmaps
@$(MAKECOOKIE)


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.
___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[9354] csw/mgar/pkg/zsh/trunk/files/_pkgutil

2010-03-24 Thread opk
Revision: 9354
  http://gar.svn.sourceforge.net/gar/?rev=9354&view=rev
Author:   opk
Date: 2010-03-24 17:11:08 + (Wed, 24 Mar 2010)

Log Message:
---
add zsh completion function for pkgutil.
still need to change Makefile to include this in the package

Added Paths:
---
csw/mgar/pkg/zsh/trunk/files/_pkgutil

Added: csw/mgar/pkg/zsh/trunk/files/_pkgutil
===
--- csw/mgar/pkg/zsh/trunk/files/_pkgutil   (rev 0)
+++ csw/mgar/pkg/zsh/trunk/files/_pkgutil   2010-03-24 17:11:08 UTC (rev 
9354)
@@ -0,0 +1,58 @@
+#compdef pkgutil
+
+local curcontext="$curcontext" state line expl ret=1
+typeset -A opt_args
+
+local opts='(-i --install -u --upgrade -r --remove -d --download -a 
--available -c --compare -U --catalog -S --stream -h --help -v --version -V 
--syscheck)'
+local catalog
+catalog=( /var/opt/csw/pkgutil/catalog.*_`uname -p`_`uname -r`(N[1]) )
+
+_arguments \
+  "$opts"{-i,--install}'[install package]' \
+  "$opts"{-u,--upgrade}'[upgrade package]' \
+  "$opts"{-r,--remove}'[remove package]' \
+  "$opts"{-d,--download}'[download only]' \
+  "$opts-U[update catalog]" \
+  "$opts"{-a,--available}'[show available packages]' \
+  "$opts"{-c,--compare}'[compare installed packages to current]' \
+  "$opts-C[compare showing only differences]" \
+  {-e,--email=}'[send e-mail with available updates]:email:_email_addresses' \
+  {-t,--temp}'[specify temporary download site]:site' \
+  "$opts"{-s,--stream}'[build package stream]' \
+  {-T,--target=}'[specify target arch and release]:arch:->arch' \
+  {-o,--output=}'[specify filename for package stream]:file:_files' \
+  \*{-x,--exclude=}'[specify package to exclude]:package:->packages' \
+  {-W,--workdir}'[path for downloads]:path:_directories' \
+  '--config=[specify alternate config file]:file' \
+  {-y,--yes}'[answer yes on all prompts]' \
+  {-n,--nomod}'[dry run making no modifications]' \
+  {-D,--debug}'[enable debug information]' \
+  '--trace[set trace mode (-v) for pkgadd/pkgrm]' \
+  "$opts"{-h,--help}'[display help information]' \
+  "$opts"{-v,--version}'[show pkgutil version]' \
+  "$opts"{-V,--syscheck}'[show info about binaries and features used]' \
+  '*:: :->packages' && ret=0
+
+case $state in
+  packages)
+(( $#catalog )) || return 1
+typeset -A pkgs
+pkgs=( ${(s: :)${${${${(f)"$(<$catalog)"[3,-1]}/(#b) [^ ]## ([^ ]##) */ 
${match[1]}}:#\#*}[3,(i)-BEGIN*]}[1,-2]} )
+if (( $+opt_args[-r] + $+opt_args[--remove] + $+opt_args[-u] + 
$+opt_args[--upgrade])); then
+  local old=\(${(j.|.)${${${${(f)"$(pkginfo)"}#[^ ]## ##}%% *}}}\)
+  _wanted packages expl package compadd ${(k)pkgs[(R)$~old]} && ret=0
+else
+  _wanted packages expl package compadd -k pkgs && ret=0
+fi
+  ;;
+  arch)
+local suf
+if compset -P '*:'; then
+  _wanted releases expl release compadd 5.{8..10} && ret=0
+else
+  compset -S ':*' || suf=( -S : )
+  _wanted architectures expl arch compadd $s...@] i386 sparc && ret=0
+fi
+esac
+
+return ret


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.
___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[14840] csw/mgar/pkg/zsh/trunk

2011-06-20 Thread opk
Revision: 14840
  http://gar.svn.sourceforge.net/gar/?rev=14840&view=rev
Author:   opk
Date: 2011-06-20 14:33:45 + (Mon, 20 Jun 2011)

Log Message:
---
update to 4.3.12

Modified Paths:
--
csw/mgar/pkg/zsh/trunk/Makefile
csw/mgar/pkg/zsh/trunk/checksums

Modified: csw/mgar/pkg/zsh/trunk/Makefile
===
--- csw/mgar/pkg/zsh/trunk/Makefile 2011-06-18 12:43:27 UTC (rev 14839)
+++ csw/mgar/pkg/zsh/trunk/Makefile 2011-06-20 14:33:45 UTC (rev 14840)
@@ -1,5 +1,5 @@
 NAME = zsh
-VERSION = 4.3.11
+VERSION = 4.3.12
 CATEGORIES = devel
 
 DESCRIPTION = Powerful UNIX shell

Modified: csw/mgar/pkg/zsh/trunk/checksums
===
--- csw/mgar/pkg/zsh/trunk/checksums2011-06-18 12:43:27 UTC (rev 14839)
+++ csw/mgar/pkg/zsh/trunk/checksums2011-06-20 14:33:45 UTC (rev 14840)
@@ -1 +1 @@
-3225c7f53b69f395e95723585d6785ed  zsh-4.3.11.tar.bz2
+7a82c0bf0635e046ca4e9ec1bdef3811  zsh-4.3.12.tar.bz2


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.
___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[14983] csw/mgar/pkg/zsh/trunk/Makefile

2011-07-05 Thread opk
Revision: 14983
  http://gar.svn.sourceforge.net/gar/?rev=14983&view=rev
Author:   opk
Date: 2011-07-05 07:47:19 + (Tue, 05 Jul 2011)

Log Message:
---
update dependencies

Modified Paths:
--
csw/mgar/pkg/zsh/trunk/Makefile

Modified: csw/mgar/pkg/zsh/trunk/Makefile
===
--- csw/mgar/pkg/zsh/trunk/Makefile 2011-07-04 13:11:33 UTC (rev 14982)
+++ csw/mgar/pkg/zsh/trunk/Makefile 2011-07-05 07:47:19 UTC (rev 14983)
@@ -19,7 +19,7 @@
 
 LICENSE = LICENCE
 
-RUNTIME_DEP_PKGS = CSWiconv CSWncurses CSWpcrert CSWgdbm
+RUNTIME_DEP_PKGS = CSWiconv CSWlibncursesw5 CSWlibpcre0 CSWlibgdbm3
 BUILD_DEP_PKGS = CSWpcre
 
 SPKG_SOURCEURL = http://www.zsh.org
@@ -34,6 +34,31 @@
 CONFIGURE_ARGS += --enable-fndir=$(sharedstatedir)/$(NAME)/functions
 CONFIGURE_ARGS += --enable-pcre
 
+CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/share|root/opt/csw/share/zsh/functions/_units
+CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/share|root/opt/csw/share/zsh/functions/_hg
+CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/share|root/opt/csw/share/zsh/functions/_loadkeys
+CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/share|root/opt/csw/share/zsh/functions/_ecasound
+CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/share|root/opt/csw/share/zsh/functions/_path_commands
+CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/share|root/opt/csw/share/zsh/functions/_lintian
+CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/share|root/opt/csw/share/zsh/functions/_lsusb
+CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/share|root/opt/csw/share/zsh/functions/run-help
+CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/share|root/opt/csw/share/zsh/functions/_cdrdao
+CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/share|root/opt/csw/share/zsh/functions/_setxkbmap
+CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/share/zsh/functions/_units
+CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/bin/zsh-4.3.12
+CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/share|root/opt/csw/share/man/man1/zshcontrib.1
+CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/share/zsh/functions/_gcc
+CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/share/zsh/functions/_urls
+CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/share/zsh/functions/_path_files
+CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/share/man/man1/zshmisc.1
+CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/share/man/man1/zshmodules.1
+CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/share/man/man1/zshoptions.1
+CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/share/man/man1/zshcontrib.1
+CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/share/man/man1/zshparam.1
+CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/share/zsh/functions/_complete_tag
+CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/share/zsh/functions/_twisted
+CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/share/zsh/functions/compaudit
+
 include gar/category.mk
 
 # Use term.h from ncurses or we get compile errors


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.
___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[14985] csw/mgar/pkg/zsh/trunk/Makefile

2011-07-05 Thread opk
Revision: 14985
  http://gar.svn.sourceforge.net/gar/?rev=14985&view=rev
Author:   opk
Date: 2011-07-05 08:35:34 + (Tue, 05 Jul 2011)

Log Message:
---
further override

Modified Paths:
--
csw/mgar/pkg/zsh/trunk/Makefile

Modified: csw/mgar/pkg/zsh/trunk/Makefile
===
--- csw/mgar/pkg/zsh/trunk/Makefile 2011-07-05 08:33:08 UTC (rev 14984)
+++ csw/mgar/pkg/zsh/trunk/Makefile 2011-07-05 08:35:34 UTC (rev 14985)
@@ -58,6 +58,7 @@
 CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/share/zsh/functions/_complete_tag
 CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/share/zsh/functions/_twisted
 CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/share/zsh/functions/compaudit
+CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/share|root/opt/csw/share/zsh/functions/mere
 
 include gar/category.mk
 


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.
___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[14990] csw/mgar/pkg/zsh/trunk

2011-07-06 Thread opk
Revision: 14990
  http://gar.svn.sourceforge.net/gar/?rev=14990&view=rev
Author:   opk
Date: 2011-07-06 11:49:38 + (Wed, 06 Jul 2011)

Log Message:
---
zsh/trunk: add mgar shell completion function

Modified Paths:
--
csw/mgar/pkg/zsh/trunk/Makefile

Added Paths:
---
csw/mgar/pkg/zsh/trunk/files/_mgar

Modified: csw/mgar/pkg/zsh/trunk/Makefile
===
--- csw/mgar/pkg/zsh/trunk/Makefile 2011-07-06 01:04:18 UTC (rev 14989)
+++ csw/mgar/pkg/zsh/trunk/Makefile 2011-07-06 11:49:38 UTC (rev 14990)
@@ -11,7 +11,7 @@
 
 MASTER_SITES = $(SF_MIRRORS)
 DISTFILES  = $(NAME)-$(VERSION).tar.bz2
-DISTFILES += _pkgutil
+DISTFILES += _pkgutil _mgar
 DISTFILES += CSWzsh.postinstall CSWzsh.postremove
 
 PACKAGES = CSWzsh
@@ -67,4 +67,4 @@
 CPPFLAGS := -I$(includedir)/ncursesw $(CPPFLAGS)
 
 post-install:
-   cp -p $(WORKDIR)/_pkgutil $(DESTDIR)$(sharedstatedir)/$(NAME)/functions
+   cp -p $(WORKDIR)/_pkgutil $(WORKDIR)/_mgar 
$(DESTDIR)$(sharedstatedir)/$(NAME)/functions

Added: csw/mgar/pkg/zsh/trunk/files/_mgar
===
--- csw/mgar/pkg/zsh/trunk/files/_mgar  (rev 0)
+++ csw/mgar/pkg/zsh/trunk/files/_mgar  2011-07-06 11:49:38 UTC (rev 14990)
@@ -0,0 +1,39 @@
+#compdef mgar
+
+local curcontext="$curcontext" ret=1
+local subcmd
+local -a cmds
+
+if (( CURRENT == 2 )); then
+  cmds=(
+help:list\ available\ commands
+${${(M)${(f)"$(_call_program commands ${words[1]} help)"}:#  *}//  
(#b)([a-z-]##)[^A-Z]##(?)/$match[1]:${match[2]:l}}
+  )
+
+  _describe 'mgar command' cmds && ret=0
+else
+  shift words
+  (( CURRENT-- ))
+  subcmd="$words[1]"
+  curcontext="${curcontext%:*}-${subcmd}:"
+  case $subcmd in
+  commit)
+_arguments '-m:commit message' && ret=0
+  ;;
+  scm)
+service=svn
+_subversion && ret=0
+  ;;
+  init)
+_directories && ret=0
+  ;;
+  up)
+_arguments '--all' && ret=0
+  ;;
+  *)
+_default && ret=0
+  ;;
+  esac
+fi
+
+return ret


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.
___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[15000] csw/mgar/pkg/zsh/trunk

2011-07-07 Thread opk
Revision: 15000
  http://gar.svn.sourceforge.net/gar/?rev=15000&view=rev
Author:   opk
Date: 2011-07-07 08:06:39 + (Thu, 07 Jul 2011)

Log Message:
---
Update to new CAS etcshells

Modified Paths:
--
csw/mgar/pkg/zsh/trunk/Makefile

Removed Paths:
-
csw/mgar/pkg/zsh/trunk/files/CSWzsh.postinstall
csw/mgar/pkg/zsh/trunk/files/CSWzsh.postremove

Modified: csw/mgar/pkg/zsh/trunk/Makefile
===
--- csw/mgar/pkg/zsh/trunk/Makefile 2011-07-06 14:58:17 UTC (rev 14999)
+++ csw/mgar/pkg/zsh/trunk/Makefile 2011-07-07 08:06:39 UTC (rev 15000)
@@ -12,14 +12,13 @@
 MASTER_SITES = $(SF_MIRRORS)
 DISTFILES  = $(NAME)-$(VERSION).tar.bz2
 DISTFILES += _pkgutil _mgar
-DISTFILES += CSWzsh.postinstall CSWzsh.postremove
 
 PACKAGES = CSWzsh
 CATALOGNAME_CSWzsh = zsh
 
 LICENSE = LICENCE
 
-RUNTIME_DEP_PKGS = CSWiconv CSWlibncursesw5 CSWlibpcre0 CSWlibgdbm3
+RUNTIME_DEP_PKGS = CSWiconv CSWlibncursesw5 CSWlibpcre0 CSWlibgdbm3 
CSWcas-etcshells
 BUILD_DEP_PKGS = CSWpcre
 
 SPKG_SOURCEURL = http://www.zsh.org
@@ -60,6 +59,9 @@
 CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/share/zsh/functions/compaudit
 CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/share|root/opt/csw/share/zsh/functions/mere
 
+SPKG_CLASSES = none cswetcshells
+ETCSHELLS = /opt/csw/bin/zsh
+
 include gar/category.mk
 
 # Use term.h from ncurses or we get compile errors

Deleted: csw/mgar/pkg/zsh/trunk/files/CSWzsh.postinstall
===
--- csw/mgar/pkg/zsh/trunk/files/CSWzsh.postinstall 2011-07-06 14:58:17 UTC 
(rev 14999)
+++ csw/mgar/pkg/zsh/trunk/files/CSWzsh.postinstall 2011-07-07 08:06:39 UTC 
(rev 15000)
@@ -1,41 +0,0 @@
-#!/bin/sh
-PATH=/usr/bin
-export PATH
-
-# $BASEDIR ignored because the package isn't relocatable
-
-if [ -f ${PKG_INSTALL_ROOT}/etc/shells ]; then
-   echo "${PKG_INSTALL_ROOT}/etc/shells already exists."
-else
-   cat > ${PKG_INSTALL_ROOT}/etc/shells < 
/dev/null > /dev/null; then
-   echo "${PKG_INSTALL_ROOT}/etc/shells is UNCHANGED because entry 
/opt/csw/bin/zsh already exists."
-else
-   echo "/opt/csw/bin/zsh" >> ${PKG_INSTALL_ROOT}/etc/shells
-   echo "ADDED /opt/csw/bin/zsh to ${PKG_INSTALL_ROOT}/etc/shells."
-fi

Deleted: csw/mgar/pkg/zsh/trunk/files/CSWzsh.postremove
===
--- csw/mgar/pkg/zsh/trunk/files/CSWzsh.postremove  2011-07-06 14:58:17 UTC 
(rev 14999)
+++ csw/mgar/pkg/zsh/trunk/files/CSWzsh.postremove  2011-07-07 08:06:39 UTC 
(rev 15000)
@@ -1,10 +0,0 @@
-#!/bin/sh
-PATH=/usr/bin
-export PATH
-
-if /usr/bin/grep "^/opt/csw/bin/zsh$" ${PKG_INSTALL_ROOT}/etc/shells 
>/dev/null 2>&1; then
-   /usr/bin/perl -i -pwe '$_ = "" if /\/opt\/csw\/bin\/zsh$/' 
${PKG_INSTALL_ROOT}/etc/shells
-   echo "REMOVED /opt/csw/bin/zsh from ${PKG_INSTALL_ROOT}/etc/shells."
-else
-   echo "${PKG_INSTALL_ROOT}/etc/shells is UNCHANGED because no entry for 
/opt/csw/bin/zsh was found."
-fi


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.
___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


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

2011-08-09 Thread opk
Revision: 15289
  http://gar.svn.sourceforge.net/gar/?rev=15289&view=rev
Author:   opk
Date: 2011-08-09 15:01:28 + (Tue, 09 Aug 2011)

Log Message:
---
initial packaging of guilt

Added Paths:
---
csw/mgar/pkg/guilt/
csw/mgar/pkg/guilt/Makefile
csw/mgar/pkg/guilt/branches/
csw/mgar/pkg/guilt/tags/
csw/mgar/pkg/guilt/trunk/
csw/mgar/pkg/guilt/trunk/Makefile
csw/mgar/pkg/guilt/trunk/checksums
csw/mgar/pkg/guilt/trunk/files/
csw/mgar/pkg/guilt/trunk/files/0001-use-bash-for-scripts.patch
csw/mgar/pkg/guilt/trunk/files/0002-don-t-rebuild-man-pages.patch

Copied: csw/mgar/pkg/guilt/Makefile (from rev 15272, 
csw/mgar/pkg/template/Makefile)
===
--- csw/mgar/pkg/guilt/Makefile (rev 0)
+++ csw/mgar/pkg/guilt/Makefile 2011-08-09 15:01:28 UTC (rev 15289)
@@ -0,0 +1,15 @@
+# vim: ft=make ts=4 sw=4 noet
+
+default:
+   @echo "You are in the pkg/ directory."
+
+%:
+   $(MAKE) -C trunk $* 
+
+paranoid-%:
+   $(MAKE) -C trunk $* || exit 2 
+
+export BUILDLOG ?= $(shell pwd)/buildlog.txt
+
+report-%:
+   $(MAKE) -C trunk $* || echo "   *** make $* in $$i failed ***" >> 
$(BUILDLOG) 


Property changes on: csw/mgar/pkg/guilt/trunk
___
Added: svn:ignore
   + cookies
download
work


Added: svn:externals
   + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2


Added: csw/mgar/pkg/guilt/trunk/Makefile
===
--- csw/mgar/pkg/guilt/trunk/Makefile   (rev 0)
+++ csw/mgar/pkg/guilt/trunk/Makefile   2011-08-09 15:01:28 UTC (rev 15289)
@@ -0,0 +1,31 @@
+NAME = guilt
+VERSION = 0.35
+CATEGORIES = utils
+
+DESCRIPTION = quilt on top of git
+define BLURB
+  Guilt (Git Quilt) adds functionality similar to quilt, Mercurial
+  Queues or Stacked git to git. the main distinguishing feature from
+  other quilt-like porcelains is the format of the patches directory.
+  All information is stored as plain text - a series file and the
+  patches (one per file). This easily lends itself to versioning the
+  patches using git or whatever other SCM.
+endef
+
+MASTER_SITES = http://www.kernel.org/pub/linux/kernel/people/jsipek/guilt/
+DISTFILES  = $(DISTNAME).tar.bz2
+UFILES_REGEX = $(NAME)-(\d+(?:\.\d+)*).tar.bz2
+
+CONFIGURE_SCRIPTS =
+BUILD_SCRIPTS =
+TEST_SCRIPTS =
+INSTALL_SCRIPTS = custom
+PATCHFILES += 0001-use-bash-for-scripts.patch 
0002-don-t-rebuild-man-pages.patch
+
+LICENSE = COPYING
+ARCHALL = 1
+
+include gar/category.mk
+
+install-custom:
+   $(INSTALL_ENV) gmake -C $(WORKSRC) INSTALL=ginstall PREFIX=/opt/csw 
install install-doc


Property changes on: csw/mgar/pkg/guilt/trunk/Makefile
___
Added: svn:keywords
   + Id

Added: csw/mgar/pkg/guilt/trunk/checksums
===
--- csw/mgar/pkg/guilt/trunk/checksums  (rev 0)
+++ csw/mgar/pkg/guilt/trunk/checksums  2011-08-09 15:01:28 UTC (rev 15289)
@@ -0,0 +1 @@
+974e863ceba36980a6b5429eb9708703  guilt-0.35.tar.bz2

Added: csw/mgar/pkg/guilt/trunk/files/0001-use-bash-for-scripts.patch
===
--- csw/mgar/pkg/guilt/trunk/files/0001-use-bash-for-scripts.patch  
(rev 0)
+++ csw/mgar/pkg/guilt/trunk/files/0001-use-bash-for-scripts.patch  
2011-08-09 15:01:28 UTC (rev 15289)
@@ -0,0 +1,22 @@
+From 13f7765ede23c6f4bc201d36ae80a31f9f52b57c Mon Sep 17 00:00:00 2001
+From: Oliver Kiddle 
+Date: Tue, 9 Aug 2011 16:54:14 +0200
+Subject: [PATCH 2/3] use bash for scripts
+
+---
+ guilt |2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+diff --git a/guilt b/guilt
+index d1e17d4..07fc4fd 100755
+--- a/guilt
 b/guilt
+@@ -1,4 +1,4 @@
+-#!/bin/sh
++#!/bin/bash
+ #
+ # Copyright (c) Josef "Jeff" Sipek, 2006-2011
+ #
+-- 
+1.7.6
+

Added: csw/mgar/pkg/guilt/trunk/files/0002-don-t-rebuild-man-pages.patch
===
--- csw/mgar/pkg/guilt/trunk/files/0002-don-t-rebuild-man-pages.patch   
(rev 0)
+++ csw/mgar/pkg/guilt/trunk/files/0002-don-t-rebuild-man-pages.patch   
2011-08-09 15:01:28 UTC (rev 15289)
@@ -0,0 +1,25 @@
+From 83c1dd03e66ca9a9cc2d178ce815283e846694cb Mon Sep 17 00:00:00 2001
+From: Oliver Kiddle 
+Date: Tue, 9 Aug 2011 16:54:41 +0200
+Subject: [PATCH 3/3] don't rebuild man pages
+
+---
+ Documentation/Makefile |2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+diff --git a/Documentation/Makefile b/Documentation/Makefile
+index 9fc1165..49ec4fa 100644
+--- a/Documentation/Makefile
 b/Documentation/Makefile
+@@ -32,7 +32,7 @@ man: man1 man7
+ man1: $(DOC_MAN1)
+ 

[csw-devel] SF.net SVN: gar:[15290] csw/mgar/pkg/guilt/trunk/Makefile

2011-08-09 Thread opk
Revision: 15290
  http://gar.svn.sourceforge.net/gar/?rev=15290&view=rev
Author:   opk
Date: 2011-08-09 15:09:55 + (Tue, 09 Aug 2011)

Log Message:
---
fix issue noted by checkpkg

Modified Paths:
--
csw/mgar/pkg/guilt/trunk/Makefile

Modified: csw/mgar/pkg/guilt/trunk/Makefile
===
--- csw/mgar/pkg/guilt/trunk/Makefile   2011-08-09 15:01:28 UTC (rev 15289)
+++ csw/mgar/pkg/guilt/trunk/Makefile   2011-08-09 15:09:55 UTC (rev 15290)
@@ -2,7 +2,7 @@
 VERSION = 0.35
 CATEGORIES = utils
 
-DESCRIPTION = quilt on top of git
+DESCRIPTION = Manipulate quilt like patches on top of git
 define BLURB
   Guilt (Git Quilt) adds functionality similar to quilt, Mercurial
   Queues or Stacked git to git. the main distinguishing feature from


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.
___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[15291] csw/mgar/pkg/lang-python/pytz/trunk

2011-08-09 Thread opk
Revision: 15291
  http://gar.svn.sourceforge.net/gar/?rev=15291&view=rev
Author:   opk
Date: 2011-08-09 15:55:47 + (Tue, 09 Aug 2011)

Log Message:
---
upgrade pytz to 2011h

Modified Paths:
--
csw/mgar/pkg/lang-python/pytz/trunk/Makefile
csw/mgar/pkg/lang-python/pytz/trunk/checksums

Modified: csw/mgar/pkg/lang-python/pytz/trunk/Makefile
===
--- csw/mgar/pkg/lang-python/pytz/trunk/Makefile2011-08-09 15:09:55 UTC 
(rev 15290)
+++ csw/mgar/pkg/lang-python/pytz/trunk/Makefile2011-08-09 15:55:47 UTC 
(rev 15291)
@@ -1,6 +1,6 @@
 # $Id$
 NAME = pytz
-VERSION = 2010l
+VERSION = 2011h
 CATEGORIES = python
 
 DESCRIPTION = Pytz brings the Olson timezone database into Python.

Modified: csw/mgar/pkg/lang-python/pytz/trunk/checksums
===
--- csw/mgar/pkg/lang-python/pytz/trunk/checksums   2011-08-09 15:09:55 UTC 
(rev 15290)
+++ csw/mgar/pkg/lang-python/pytz/trunk/checksums   2011-08-09 15:55:47 UTC 
(rev 15291)
@@ -1 +1 @@
-8ea38ffd627f2169b597442928ea5967  pytz-2010l.tar.bz2
+8ae163533975070ed864b8d639bf096e  pytz-2011h.tar.bz2


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.
___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


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

2011-08-09 Thread opk
Revision: 15292
  http://gar.svn.sourceforge.net/gar/?rev=15292&view=rev
Author:   opk
Date: 2011-08-09 23:35:36 + (Tue, 09 Aug 2011)

Log Message:
---
fix uwatch configuration for my packages

Modified Paths:
--
csw/mgar/pkg/guilt/trunk/Makefile
csw/mgar/pkg/lang-python/nose/trunk/Makefile
csw/mgar/pkg/lang-python/pygobject/trunk/Makefile
csw/mgar/pkg/lang-python/pygtk/trunk/Makefile
csw/mgar/pkg/lang-python/python-dateutil/trunk/Makefile
csw/mgar/pkg/lang-python/pytz/trunk/Makefile
csw/mgar/pkg/tkcvs/trunk/Makefile
csw/mgar/pkg/zsh/trunk/Makefile

Modified: csw/mgar/pkg/guilt/trunk/Makefile
===
--- csw/mgar/pkg/guilt/trunk/Makefile   2011-08-09 15:55:47 UTC (rev 15291)
+++ csw/mgar/pkg/guilt/trunk/Makefile   2011-08-09 23:35:36 UTC (rev 15292)
@@ -14,7 +14,6 @@
 
 MASTER_SITES = http://www.kernel.org/pub/linux/kernel/people/jsipek/guilt/
 DISTFILES  = $(DISTNAME).tar.bz2
-UFILES_REGEX = $(NAME)-(\d+(?:\.\d+)*).tar.bz2
 
 CONFIGURE_SCRIPTS =
 BUILD_SCRIPTS =

Modified: csw/mgar/pkg/lang-python/nose/trunk/Makefile
===
--- csw/mgar/pkg/lang-python/nose/trunk/Makefile2011-08-09 15:55:47 UTC 
(rev 15291)
+++ csw/mgar/pkg/lang-python/nose/trunk/Makefile2011-08-09 23:35:36 UTC 
(rev 15292)
@@ -17,6 +17,7 @@
 GOOGLE_PROJECT = python-nose
 MASTER_SITES = $(GOOGLE_MIRROR)
 DISTFILES  = $(NAME)-$(VERSION).tar.gz
+UPSTREAM_MASTER_SITES = http://code.google.com/p/python-nose/downloads/list
 
 PACKAGES = CSWpy-nose
 CATALOGNAME = py_nose

Modified: csw/mgar/pkg/lang-python/pygobject/trunk/Makefile
===
--- csw/mgar/pkg/lang-python/pygobject/trunk/Makefile   2011-08-09 15:55:47 UTC 
(rev 15291)
+++ csw/mgar/pkg/lang-python/pygobject/trunk/Makefile   2011-08-09 23:35:36 UTC 
(rev 15292)
@@ -39,7 +39,6 @@
 
 EXTRA_MERGE_EXCLUDE_FILES += .*\.pyo .*\.pyc
 
-UFILES_REGEX = (\d+(?:\.\d+)*).tar.bz2
 CONFIGURE_ARGS  = $(DIRPATHS)
 CONFIGURE_ARGS += --without-ffi
 

Modified: csw/mgar/pkg/lang-python/pygtk/trunk/Makefile
===
--- csw/mgar/pkg/lang-python/pygtk/trunk/Makefile   2011-08-09 15:55:47 UTC 
(rev 15291)
+++ csw/mgar/pkg/lang-python/pygtk/trunk/Makefile   2011-08-09 23:35:36 UTC 
(rev 15292)
@@ -26,10 +26,6 @@
 SPKG_CLASSES = none cswpycompile
 RUNTIME_DEP_PKGS += CSWcswclassutils
 
-# We define upstream file regex so we can be notifed of 
-# new upstream software release
-UFILES_REGEX = (\d+(?:\.\d+)*).tar.bz2
-
 PKG_CONFIG_PATH = /opt/csw/lib/pkgconfig:/opt/csw/X11/lib/pkgconfig
 EXTRA_EXPORTS = PKG_CONFIG_PATH
 

Modified: csw/mgar/pkg/lang-python/python-dateutil/trunk/Makefile
===
--- csw/mgar/pkg/lang-python/python-dateutil/trunk/Makefile 2011-08-09 
15:55:47 UTC (rev 15291)
+++ csw/mgar/pkg/lang-python/python-dateutil/trunk/Makefile 2011-08-09 
23:35:36 UTC (rev 15292)
@@ -20,6 +20,7 @@
 
 EXTRA_MERGE_EXCLUDE_FILES += .*\.pyo .*\.pyc
 
+UPSTREAM_MASTER_SITES = http://labix.org/python-dateutil/
 UFILES_REGEX = $(NAME)-(\d+(?:\.\d+)*).tar.gz
 
 TEST_SCRIPTS = dateutil

Modified: csw/mgar/pkg/lang-python/pytz/trunk/Makefile
===
--- csw/mgar/pkg/lang-python/pytz/trunk/Makefile2011-08-09 15:55:47 UTC 
(rev 15291)
+++ csw/mgar/pkg/lang-python/pytz/trunk/Makefile2011-08-09 23:35:36 UTC 
(rev 15292)
@@ -20,8 +20,6 @@
 
 EXTRA_MERGE_EXCLUDE_FILES += .*\.pyo .*\.pyc
 
-UFILES_REGEX = $(NAME)-(\d+[a-z]).tar.bz2
-
 LICENSE = LICENSE.txt
 ARCHALL = 1
 

Modified: csw/mgar/pkg/tkcvs/trunk/Makefile
===
--- csw/mgar/pkg/tkcvs/trunk/Makefile   2011-08-09 15:55:47 UTC (rev 15291)
+++ csw/mgar/pkg/tkcvs/trunk/Makefile   2011-08-09 23:35:36 UTC (rev 15292)
@@ -14,13 +14,9 @@
 DISTNAME = $(NAME)_$(subst .,_,$(VERSION))
 DISTFILES  = $(NAME)_$(subst .,_,$(VERSION)).tar.gz
 
-# We define upstream file regex so we can be notifed of new upstream software 
release
+UPSTREAM_MASTER_SITES = $(MASTER_SITES)/tkcvs.html
 UFILES_REGEX = $(NAME)_(\d+(?:_\d+)*).tar.gz
 
-# If the url used to check for software update is different of MASTER_SITES, 
then 
-# uncomment the next line. Otherwise it is set by default to the value of 
MASTER_SITES
-# UPSTREAM_MASTER_SITES = 
-
 CONFIGURE_SCRIPTS =
 BUILD_SCRIPTS =
 TEST_SCRIPTS =

Modified: csw/mgar/pkg/zsh/trunk/Makefile
===
--- csw/mgar/pkg/zsh/trunk/Makefile 2011-08-09 15:55:47 UTC (rev 15291)
+++ csw/mgar/pkg/zsh/trunk/Makefile 2011-08-09 23:35:36 UTC (rev 15292)
@@ -22,12 +22,8 @@
 BUILD_DEP_PKGS = CSWpcre
 
 SPKG_SOURCEURL = http://www.zsh.org
+UPSTREAM_MASTER_SITES = 

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

2011-08-10 Thread opk
Revision: 15302
  http://gar.svn.sourceforge.net/gar/?rev=15302&view=rev
Author:   opk
Date: 2011-08-10 15:49:18 + (Wed, 10 Aug 2011)

Log Message:
---
package new version of wiggle using gar

Added Paths:
---
csw/mgar/pkg/wiggle/
csw/mgar/pkg/wiggle/Makefile
csw/mgar/pkg/wiggle/branches/
csw/mgar/pkg/wiggle/tags/
csw/mgar/pkg/wiggle/trunk/
csw/mgar/pkg/wiggle/trunk/Makefile
csw/mgar/pkg/wiggle/trunk/checksums
csw/mgar/pkg/wiggle/trunk/files/
csw/mgar/pkg/wiggle/trunk/files/0001-remove-gcc-options.patch
csw/mgar/pkg/wiggle/trunk/files/0002-fix-for-building-with-solstudio.patch
csw/mgar/pkg/wiggle/trunk/files/0003-fix-installation-target.patch
csw/mgar/pkg/wiggle/trunk/files/0004-skip-time-in-test-script.patch

Added: csw/mgar/pkg/wiggle/Makefile
===
--- csw/mgar/pkg/wiggle/Makefile(rev 0)
+++ csw/mgar/pkg/wiggle/Makefile2011-08-10 15:49:18 UTC (rev 15302)
@@ -0,0 +1,2 @@
+%:
+   $(MAKE) -C trunk $*


Property changes on: csw/mgar/pkg/wiggle/Makefile
___
Added: svn:keywords
   + URL Id


Property changes on: csw/mgar/pkg/wiggle/trunk
___
Added: svn:ignore
   + cookies
download
work


Added: svn:externals
   + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2


Added: csw/mgar/pkg/wiggle/trunk/Makefile
===
--- csw/mgar/pkg/wiggle/trunk/Makefile  (rev 0)
+++ csw/mgar/pkg/wiggle/trunk/Makefile  2011-08-10 15:49:18 UTC (rev 15302)
@@ -0,0 +1,33 @@
+NAME = wiggle
+VERSION = 0.8
+GARTYPE = v2
+CATEGORIES = utils
+
+DESCRIPTION = Apply conflicting patches
+define BLURB
+  Wiggle is a program for applying patches that 'patch' cannot apply due
+  to conflicting changes in the original.
+
+  Wiggle will always apply all changes in the patch to the original. If
+  it cannot find a way to cleanly apply a patch, it inserts it in the
+  original in a manner similar to 'merge', and reports an unresolvable
+  conflict.
+endef
+
+BUILD_DEP_PKGS += CSWlibncurses-dev
+RUNTIME_DEP_PKGS += CSWlibncursesw5
+
+MASTER_SITES = http://neil.brown.name/wiggle/
+DISTFILES  = $(DISTNAME).tar.gz
+
+CONFIGURE_SCRIPTS =
+PATCHFILES += 0001-remove-gcc-options.patch \
+0002-fix-for-building-with-solstudio.patch \
+0003-fix-installation-target.patch \
+0004-skip-time-in-test-script.patch
+BUILD_ARGS = wiggle wiggle.man
+TEST_TARGET = test
+
+include gar/category.mk
+
+CPPFLAGS := -I$(includedir)/ncursesw $(CPPFLAGS)


Property changes on: csw/mgar/pkg/wiggle/trunk/Makefile
___
Added: svn:keywords
   + Id

Added: csw/mgar/pkg/wiggle/trunk/checksums
===
--- csw/mgar/pkg/wiggle/trunk/checksums (rev 0)
+++ csw/mgar/pkg/wiggle/trunk/checksums 2011-08-10 15:49:18 UTC (rev 15302)
@@ -0,0 +1 @@
+17aae004f63791faa4ff1d0e7639131d  wiggle-0.8.tar.gz

Added: csw/mgar/pkg/wiggle/trunk/files/0001-remove-gcc-options.patch
===
--- csw/mgar/pkg/wiggle/trunk/files/0001-remove-gcc-options.patch   
(rev 0)
+++ csw/mgar/pkg/wiggle/trunk/files/0001-remove-gcc-options.patch   
2011-08-10 15:49:18 UTC (rev 15302)
@@ -0,0 +1,25 @@
+From 5a542bbaf284fa51c2c8f9a5f1e22cc2a0dccc8e Mon Sep 17 00:00:00 2001
+From: Oliver Kiddle 
+Date: Wed, 10 Aug 2011 16:07:03 +0200
+Subject: [PATCH] remove gcc options
+
+---
+ Makefile |2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+diff --git a/Makefile b/Makefile
+index 6725969..27924e0 100644
+--- a/Makefile
 b/Makefile
+@@ -3,7 +3,7 @@
+ #OptDbg=-O3
+ #OptDbg=-O3 -march=pentium2
+ OptDbg=-ggdb
+-CFLAGS=$(OptDbg) -Wall -Werror
++#CFLAGS=$(OptDbg) -Wall -Werror
+ 
+ # STRIP = -s
+ INSTALL = /usr/bin/install
+-- 
+1.7.6
+

Added: 
csw/mgar/pkg/wiggle/trunk/files/0002-fix-for-building-with-solstudio.patch
===
--- csw/mgar/pkg/wiggle/trunk/files/0002-fix-for-building-with-solstudio.patch  
(rev 0)
+++ csw/mgar/pkg/wiggle/trunk/files/0002-fix-for-building-with-solstudio.patch  
2011-08-10 15:49:18 UTC (rev 15302)
@@ -0,0 +1,25 @@
+From bbbc93dee71c5f051d2ae80b38833cd67301026c Mon Sep 17 00:00:00 2001
+From: Oliver Kiddle 
+Date: Wed, 10 Aug 2011 16:16:59 +0200
+Subject: [PATCH] fix for building with solstudio
+
+---
+ merge2.c |2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+diff --git a/merge2.c b/merge2.c
+index 9c605ea..7f76e56 100644
+--- a/merge2.c
 b/merge2.c
+@@ -79,7 +79,7 @@ int check_alreadyapplied(struct

[csw-devel] SF.net SVN: gar:[15306] csw/mgar/pkg/wiggle/trunk

2011-08-11 Thread opk
Revision: 15306
  http://gar.svn.sourceforge.net/gar/?rev=15306&view=rev
Author:   opk
Date: 2011-08-11 10:18:37 + (Thu, 11 Aug 2011)

Log Message:
---
further patch needed as the GCC extension to support an ellipsis in a case
statement (apparently supported by ss12u2) is not supported in ss12

Modified Paths:
--
csw/mgar/pkg/wiggle/trunk/Makefile

Added Paths:
---
csw/mgar/pkg/wiggle/trunk/files/0005-replace-GCC-extension.patch

Modified: csw/mgar/pkg/wiggle/trunk/Makefile
===
--- csw/mgar/pkg/wiggle/trunk/Makefile  2011-08-11 01:12:45 UTC (rev 15305)
+++ csw/mgar/pkg/wiggle/trunk/Makefile  2011-08-11 10:18:37 UTC (rev 15306)
@@ -24,7 +24,8 @@
 PATCHFILES += 0001-remove-gcc-options.patch \
 0002-fix-for-building-with-solstudio.patch \
 0003-fix-installation-target.patch \
-0004-skip-time-in-test-script.patch
+0004-skip-time-in-test-script.patch \
+0005-replace-GCC-extension.patch
 BUILD_ARGS = wiggle wiggle.man
 TEST_TARGET = test
 

Added: csw/mgar/pkg/wiggle/trunk/files/0005-replace-GCC-extension.patch
===
--- csw/mgar/pkg/wiggle/trunk/files/0005-replace-GCC-extension.patch
(rev 0)
+++ csw/mgar/pkg/wiggle/trunk/files/0005-replace-GCC-extension.patch
2011-08-11 10:18:37 UTC (rev 15306)
@@ -0,0 +1,101 @@
+From 8627bfc7f6dca6f2ba793c843813b404281a7bd2 Mon Sep 17 00:00:00 2001
+From: Oliver Kiddle 
+Date: Thu, 11 Aug 2011 11:05:32 +0200
+Subject: [PATCH] replace GCC extension
+
+---
+ vpatch.c |   64 +++--
+ 1 files changed, 37 insertions(+), 27 deletions(-)
+
+diff --git a/vpatch.c b/vpatch.c
+index 5f76ee8..1e48538 100644
+--- a/vpatch.c
 b/vpatch.c
+@@ -1541,7 +1541,16 @@ void merge_window(struct plist *p, FILE *f, int reverse)
+   if (row >= rows)
+   row = rows;
+   break;
+-  case '0' ... '9':
++case '0':
++case '1':
++case '2':
++case '3':
++case '4':
++case '5':
++case '6':
++case '7':
++case '8':
++case '9':
+   if (tnum < 0) tnum = 0;
+   num = tnum*10 + (c-'0');
+   break;
+@@ -1600,32 +1609,6 @@ void merge_window(struct plist *p, FILE *f, int reverse)
+   refresh = 1;
+   }
+   break;
+-  case SEARCH(' ') ... SEARCH('~'):
+-  case SEARCH('\t'):
+-  meta = SEARCH(0);
+-  if (searchlen < sizeof(search)-1)
+-  search[searchlen++] = c & (0x7f);
+-  search[searchlen] = 0;
+-  tpos = pos; trow = row;
+-  search_again:
+-  search_notfound = 1;
+-  do {
+-  if (mcontains(tpos, 
fm,fb,fa,ci.merger,mode,search)) {
+-  pos = tpos;
+-  row = trow;
+-  search_notfound = 0;
+-  break;
+-  }
+-  if (searchdir) {
+-  trow--;
+-  prev_mline(&tpos, 
fm,fb,fa,ci.merger,mode);
+-  } else {
+-  trow++;
+-  next_mline(&tpos, 
fm,fb,fa,ci.merger,mode);
+-  }
+-  } while (tpos.p.m >= 0 && ci.merger[tpos.p.m].type != 
End);
+-
+-  break;
+   case 'L'-64:
+   refresh = 2;
+   if (toprow >= 1) row -= (toprow+1);
+@@ -1771,6 +1754,33 @@ void merge_window(struct plist *p, FILE *f, int reverse)
+ #endif
+   }
+ 
++if (((c | tmeta) >= SEARCH(' ') && (c | tmeta) <= SEARCH('~')) ||
++ (c | tmeta) == SEARCH('\t')) {
++  meta = SEARCH(0);
++  if (searchlen < sizeof(search)-1)
++  search[searchlen++] = c & (0x7f);
++  search[searchlen] = 0;
++  tpos = pos; trow = row;
++  search_again:
++  search_notfound = 1;
++  do {
++  if (mc

[csw-devel] SF.net SVN: gar:[16405] csw/mgar/pkg/zsh/trunk

2011-12-08 Thread opk
Revision: 16405
  http://gar.svn.sourceforge.net/gar/?rev=16405&view=rev
Author:   opk
Date: 2011-12-08 09:06:23 + (Thu, 08 Dec 2011)
Log Message:
---
update for zsh 4.3.14

Modified Paths:
--
csw/mgar/pkg/zsh/trunk/Makefile
csw/mgar/pkg/zsh/trunk/checksums

Modified: csw/mgar/pkg/zsh/trunk/Makefile
===
--- csw/mgar/pkg/zsh/trunk/Makefile 2011-12-08 08:48:12 UTC (rev 16404)
+++ csw/mgar/pkg/zsh/trunk/Makefile 2011-12-08 09:06:23 UTC (rev 16405)
@@ -1,5 +1,5 @@
 NAME = zsh
-VERSION = 4.3.12
+VERSION = 4.3.14
 CATEGORIES = devel
 
 DESCRIPTION = Powerful UNIX shell

Modified: csw/mgar/pkg/zsh/trunk/checksums
===
--- csw/mgar/pkg/zsh/trunk/checksums2011-12-08 08:48:12 UTC (rev 16404)
+++ csw/mgar/pkg/zsh/trunk/checksums2011-12-08 09:06:23 UTC (rev 16405)
@@ -1 +1 @@
-7a82c0bf0635e046ca4e9ec1bdef3811  zsh-4.3.12.tar.bz2
+1c819a3ff7302b42eba988e333e76109  zsh-4.3.14.tar.bz2

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

___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[16482] csw/mgar/pkg/zsh/trunk/Makefile

2011-12-13 Thread opk
Revision: 16482
  http://gar.svn.sourceforge.net/gar/?rev=16482&view=rev
Author:   opk
Date: 2011-12-13 15:50:16 + (Tue, 13 Dec 2011)
Log Message:
---
update zsh dependencies for new versions in unstable

Modified Paths:
--
csw/mgar/pkg/zsh/trunk/Makefile

Modified: csw/mgar/pkg/zsh/trunk/Makefile
===
--- csw/mgar/pkg/zsh/trunk/Makefile 2011-12-13 15:06:09 UTC (rev 16481)
+++ csw/mgar/pkg/zsh/trunk/Makefile 2011-12-13 15:50:16 UTC (rev 16482)
@@ -18,7 +18,7 @@
 
 LICENSE = LICENCE
 
-RUNTIME_DEP_PKGS = CSWiconv CSWlibncursesw5 CSWlibpcre0 CSWlibgdbm3 
CSWcas-etcshells
+RUNTIME_DEP_PKGS = CSWlibiconv2 CSWlibncursesw5 CSWlibpcre0 CSWlibgdbm4
 BUILD_DEP_PKGS = CSWpcre
 
 SPKG_SOURCEURL = http://www.zsh.org
@@ -29,6 +29,7 @@
 CONFIGURE_ARGS += --enable-fndir=$(sharedstatedir)/$(NAME)/functions
 CONFIGURE_ARGS += --enable-pcre
 
+CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/bin/zsh
 CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/share|root/opt/csw/share/zsh/functions/_units
 CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/share|root/opt/csw/share/zsh/functions/_hg
 CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/share|root/opt/csw/share/zsh/functions/_loadkeys
@@ -55,7 +56,6 @@
 CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/share/zsh/functions/compaudit
 CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/share|root/opt/csw/share/zsh/functions/mere
 
-SPKG_CLASSES = none cswetcshells
 ETCSHELLS = /opt/csw/bin/zsh
 
 include gar/category.mk

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

___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[16483] csw/mgar/pkg/zsh/trunk/Makefile

2011-12-13 Thread opk
Revision: 16483
  http://gar.svn.sourceforge.net/gar/?rev=16483&view=rev
Author:   opk
Date: 2011-12-13 16:25:18 + (Tue, 13 Dec 2011)
Log Message:
---
another update to zsh overrides

Modified Paths:
--
csw/mgar/pkg/zsh/trunk/Makefile

Modified: csw/mgar/pkg/zsh/trunk/Makefile
===
--- csw/mgar/pkg/zsh/trunk/Makefile 2011-12-13 15:50:16 UTC (rev 16482)
+++ csw/mgar/pkg/zsh/trunk/Makefile 2011-12-13 16:25:18 UTC (rev 16483)
@@ -29,7 +29,6 @@
 CONFIGURE_ARGS += --enable-fndir=$(sharedstatedir)/$(NAME)/functions
 CONFIGURE_ARGS += --enable-pcre
 
-CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/bin/zsh
 CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/share|root/opt/csw/share/zsh/functions/_units
 CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/share|root/opt/csw/share/zsh/functions/_hg
 CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/share|root/opt/csw/share/zsh/functions/_loadkeys
@@ -41,7 +40,7 @@
 CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/share|root/opt/csw/share/zsh/functions/_cdrdao
 CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/share|root/opt/csw/share/zsh/functions/_setxkbmap
 CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/share/zsh/functions/_units
-CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/bin/zsh-4.3.12
+CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/bin/zsh-$(VERSION)
 CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/share|root/opt/csw/share/man/man1/zshcontrib.1
 CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/share/zsh/functions/_gcc
 CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/share/zsh/functions/_urls

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

___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[16581] csw/mgar/pkg/zsh/trunk

2011-12-20 Thread opk
Revision: 16581
  http://gar.svn.sourceforge.net/gar/?rev=16581&view=rev
Author:   opk
Date: 2011-12-20 13:03:46 + (Tue, 20 Dec 2011)
Log Message:
---
update for 4.3.15

Modified Paths:
--
csw/mgar/pkg/zsh/trunk/Makefile
csw/mgar/pkg/zsh/trunk/checksums

Modified: csw/mgar/pkg/zsh/trunk/Makefile
===
--- csw/mgar/pkg/zsh/trunk/Makefile 2011-12-20 12:44:07 UTC (rev 16580)
+++ csw/mgar/pkg/zsh/trunk/Makefile 2011-12-20 13:03:46 UTC (rev 16581)
@@ -1,5 +1,5 @@
 NAME = zsh
-VERSION = 4.3.14
+VERSION = 4.3.15
 CATEGORIES = devel
 
 DESCRIPTION = Powerful UNIX shell
@@ -41,6 +41,7 @@
 CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/share|root/opt/csw/share/zsh/functions/_setxkbmap
 CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/share/zsh/functions/_units
 CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/bin/zsh-$(VERSION)
+CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/bin/zsh
 CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/share|root/opt/csw/share/man/man1/zshcontrib.1
 CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/share/zsh/functions/_gcc
 CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/share/zsh/functions/_urls

Modified: csw/mgar/pkg/zsh/trunk/checksums
===
--- csw/mgar/pkg/zsh/trunk/checksums2011-12-20 12:44:07 UTC (rev 16580)
+++ csw/mgar/pkg/zsh/trunk/checksums2011-12-20 13:03:46 UTC (rev 16581)
@@ -1 +1 @@
-1c819a3ff7302b42eba988e333e76109  zsh-4.3.14.tar.bz2
+11766b0dd674a513810903cd33ffcac4  zsh-4.3.15.tar.bz2

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

___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[16583] csw/mgar/pkg/tkcvs/trunk

2011-12-20 Thread opk
Revision: 16583
  http://gar.svn.sourceforge.net/gar/?rev=16583&view=rev
Author:   opk
Date: 2011-12-20 16:19:00 + (Tue, 20 Dec 2011)
Log Message:
---
update to tkcvs 8.2.3

Modified Paths:
--
csw/mgar/pkg/tkcvs/trunk/Makefile
csw/mgar/pkg/tkcvs/trunk/checksums

Modified: csw/mgar/pkg/tkcvs/trunk/Makefile
===
--- csw/mgar/pkg/tkcvs/trunk/Makefile   2011-12-20 15:13:50 UTC (rev 16582)
+++ csw/mgar/pkg/tkcvs/trunk/Makefile   2011-12-20 16:19:00 UTC (rev 16583)
@@ -1,5 +1,5 @@
 NAME = tkcvs
-VERSION = 8.2.2
+VERSION = 8.2.3
 CATEGORIES = apps
 
 DESCRIPTION = A graphical front-end to CVS and Subversion
@@ -11,24 +11,25 @@
 endef
 
 MASTER_SITES = http://www.twobarleycorns.net/
-DISTNAME = $(NAME)_$(subst .,_,$(VERSION))
-DISTFILES  = $(NAME)_$(subst .,_,$(VERSION)).tar.gz
+DISTFILES  = $(NAME)-$(VERSION).tar.gz
 
 UPSTREAM_MASTER_SITES = $(MASTER_SITES)/tkcvs.html
-UFILES_REGEX = $(NAME)_(\d+(?:_\d+)*).tar.gz
+UFILES_REGEX = $(NAME)-(\d+(?:.\d+)*).tar.gz
 
 CONFIGURE_SCRIPTS =
 BUILD_SCRIPTS =
 TEST_SCRIPTS =
 INSTALL_SCRIPTS = custom
 
-LICENSE = COPYING
+LICENSE = LICENSE.txt
 ARCHALL = 1
 RUNTIME_DEP_PKGS = CSWtcl CSWtk CSWtkdiff
 
 CHECKPKG_OVERRIDES_CSWtkcvs += surplus-dependency|CSWtcl
 CHECKPKG_OVERRIDES_CSWtkcvs += surplus-dependency|CSWtkdiff
 CHECKPKG_OVERRIDES_CSWtkcvs += surplus-dependency|CSWtk
+CHECKPKG_OVERRIDES_CSWtkcvs += 
file-with-bad-content|/usr/local|root/opt/csw/lib/tkcvs/help.tcl
+CHECKPKG_OVERRIDES_CSWtkcvs += 
file-with-bad-content|/usr/local|root/opt/csw/share/man/man1/tkcvs.1
 
 include gar/category.mk
 

Modified: csw/mgar/pkg/tkcvs/trunk/checksums
===
--- csw/mgar/pkg/tkcvs/trunk/checksums  2011-12-20 15:13:50 UTC (rev 16582)
+++ csw/mgar/pkg/tkcvs/trunk/checksums  2011-12-20 16:19:00 UTC (rev 16583)
@@ -1 +1 @@
-8ad8f5a3b32392fa02a2fffa42032432  tkcvs_8_2_2.tar.gz
+d6bde44169d5943bd7f63e58c0748509  tkcvs-8.2.3.tar.gz

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

___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[16584] csw/mgar/pkg/lang-python/pytz/trunk

2011-12-20 Thread opk
Revision: 16584
  http://gar.svn.sourceforge.net/gar/?rev=16584&view=rev
Author:   opk
Date: 2011-12-20 17:00:13 + (Tue, 20 Dec 2011)
Log Message:
---
update pytz to 2011n

Modified Paths:
--
csw/mgar/pkg/lang-python/pytz/trunk/Makefile
csw/mgar/pkg/lang-python/pytz/trunk/checksums

Modified: csw/mgar/pkg/lang-python/pytz/trunk/Makefile
===
--- csw/mgar/pkg/lang-python/pytz/trunk/Makefile2011-12-20 16:19:00 UTC 
(rev 16583)
+++ csw/mgar/pkg/lang-python/pytz/trunk/Makefile2011-12-20 17:00:13 UTC 
(rev 16584)
@@ -1,6 +1,6 @@
 # $Id$
 NAME = pytz
-VERSION = 2011h
+VERSION = 2011n
 CATEGORIES = python
 
 DESCRIPTION = Pytz brings the Olson timezone database into Python.

Modified: csw/mgar/pkg/lang-python/pytz/trunk/checksums
===
--- csw/mgar/pkg/lang-python/pytz/trunk/checksums   2011-12-20 16:19:00 UTC 
(rev 16583)
+++ csw/mgar/pkg/lang-python/pytz/trunk/checksums   2011-12-20 17:00:13 UTC 
(rev 16584)
@@ -1 +1 @@
-8ae163533975070ed864b8d639bf096e  pytz-2011h.tar.bz2
+6322c068f0497c82216ed36f6873e9d0  pytz-2011n.tar.bz2

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

___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[16594] csw/mgar/pkg/zsh/trunk/Makefile

2011-12-22 Thread opk
Revision: 16594
  http://gar.svn.sourceforge.net/gar/?rev=16594&view=rev
Author:   opk
Date: 2011-12-22 12:17:03 + (Thu, 22 Dec 2011)
Log Message:
---
fix issue with recent zsh package and installation of extra completion funcs

Modified Paths:
--
csw/mgar/pkg/zsh/trunk/Makefile

Modified: csw/mgar/pkg/zsh/trunk/Makefile
===
--- csw/mgar/pkg/zsh/trunk/Makefile 2011-12-22 08:26:44 UTC (rev 16593)
+++ csw/mgar/pkg/zsh/trunk/Makefile 2011-12-22 12:17:03 UTC (rev 16594)
@@ -41,7 +41,6 @@
 CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/share|root/opt/csw/share/zsh/functions/_setxkbmap
 CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/share/zsh/functions/_units
 CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/bin/zsh-$(VERSION)
-CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/bin/zsh
 CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/share|root/opt/csw/share/man/man1/zshcontrib.1
 CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/share/zsh/functions/_gcc
 CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/share/zsh/functions/_urls
@@ -64,5 +63,6 @@
 #   http://www.zsh.org/mla/workers/2007/msg01236.html
 CPPFLAGS := -I$(includedir)/ncursesw $(CPPFLAGS)
 
-post-install:
+post-install-modulated:
cp -p $(WORKDIR)/_pkgutil $(WORKDIR)/_mgar 
$(DESTDIR)$(sharedstatedir)/$(NAME)/functions
+   @$(MAKECOOKIE)

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

___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[16647] csw/mgar/pkg/nmh/trunk

2012-01-02 Thread opk
Revision: 16647
  http://gar.svn.sourceforge.net/gar/?rev=16647&view=rev
Author:   opk
Date: 2012-01-02 16:17:45 + (Mon, 02 Jan 2012)
Log Message:
---
update nmh to 1.4

Modified Paths:
--
csw/mgar/pkg/nmh/trunk/Makefile
csw/mgar/pkg/nmh/trunk/checksums

Modified: csw/mgar/pkg/nmh/trunk/Makefile
===
--- csw/mgar/pkg/nmh/trunk/Makefile 2012-01-02 12:53:59 UTC (rev 16646)
+++ csw/mgar/pkg/nmh/trunk/Makefile 2012-01-02 16:17:45 UTC (rev 16647)
@@ -1,6 +1,6 @@
 # $Id$
 NAME = nmh
-VERSION = 1.3
+VERSION = 1.4
 CATEGORIES = apps
 
 DESCRIPTION = Powerful electronic mail handling system
@@ -20,6 +20,7 @@
 RUNTIME_DEP_PKGS += CSWiconv
 PATCHFILES += -skip-chgrp-of-inc.patch
 LICENSE = COPYRIGHT
+PRESERVECONF = /opt/csw/etc/nmh/mts.conf
 
 CONFIGURE_ARGS = --enable-pop --enable-masquerade='' --with-mts=sendmail \
   --prefix=$(prefix) --mandir=$(mandir) --datadir=$(datadir)/nmh \

Modified: csw/mgar/pkg/nmh/trunk/checksums
===
--- csw/mgar/pkg/nmh/trunk/checksums2012-01-02 12:53:59 UTC (rev 16646)
+++ csw/mgar/pkg/nmh/trunk/checksums2012-01-02 16:17:45 UTC (rev 16647)
@@ -1 +1 @@
-a52d1f93e780d7a045207451ce6c9a4e  nmh-1.3.tar.gz
+ef55286a821c53dc52b8974977c011ca  nmh-1.4.tar.gz

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

___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[16648] csw/mgar/pkg/nmh/trunk/Makefile

2012-01-02 Thread opk
Revision: 16648
  http://gar.svn.sourceforge.net/gar/?rev=16648&view=rev
Author:   opk
Date: 2012-01-02 16:34:20 + (Mon, 02 Jan 2012)
Log Message:
---
update nmh dependencies as suggested by checkpkg

Modified Paths:
--
csw/mgar/pkg/nmh/trunk/Makefile

Modified: csw/mgar/pkg/nmh/trunk/Makefile
===
--- csw/mgar/pkg/nmh/trunk/Makefile 2012-01-02 16:17:45 UTC (rev 16647)
+++ csw/mgar/pkg/nmh/trunk/Makefile 2012-01-02 16:34:20 UTC (rev 16648)
@@ -17,7 +17,7 @@
 SPKG_SOURCEURL = http://www.nongnu.org/nmh/
 UFILES_REGEX = -(\d+(?:\.\d+)*).tar.gz
 
-RUNTIME_DEP_PKGS += CSWiconv
+RUNTIME_DEP_PKGS += CSWlibiconv2
 PATCHFILES += -skip-chgrp-of-inc.patch
 LICENSE = COPYRIGHT
 PRESERVECONF = /opt/csw/etc/nmh/mts.conf

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

___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[16661] csw/mgar/pkg/nmh/trunk/Makefile

2012-01-03 Thread opk
Revision: 16661
  http://gar.svn.sourceforge.net/gar/?rev=16661&view=rev
Author:   opk
Date: 2012-01-03 09:05:25 + (Tue, 03 Jan 2012)
Log Message:
---
nmh config files have moved

Modified Paths:
--
csw/mgar/pkg/nmh/trunk/Makefile

Modified: csw/mgar/pkg/nmh/trunk/Makefile
===
--- csw/mgar/pkg/nmh/trunk/Makefile 2012-01-03 08:14:32 UTC (rev 16660)
+++ csw/mgar/pkg/nmh/trunk/Makefile 2012-01-03 09:05:25 UTC (rev 16661)
@@ -20,7 +20,7 @@
 RUNTIME_DEP_PKGS += CSWlibiconv2
 PATCHFILES += -skip-chgrp-of-inc.patch
 LICENSE = COPYRIGHT
-PRESERVECONF = /opt/csw/etc/nmh/mts.conf
+PRESERVECONF = /etc/opt/csw/nmh/mts.conf
 
 CONFIGURE_ARGS = --enable-pop --enable-masquerade='' --with-mts=sendmail \
   --prefix=$(prefix) --mandir=$(mandir) --datadir=$(datadir)/nmh \

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

___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[17196] csw/mgar/pkg/zsh/trunk

2012-02-24 Thread opk
Revision: 17196
  http://gar.svn.sourceforge.net/gar/?rev=17196&view=rev
Author:   opk
Date: 2012-02-24 16:24:54 + (Fri, 24 Feb 2012)
Log Message:
---
update to zsh 4.3.17

Modified Paths:
--
csw/mgar/pkg/zsh/trunk/Makefile
csw/mgar/pkg/zsh/trunk/checksums

Modified: csw/mgar/pkg/zsh/trunk/Makefile
===
--- csw/mgar/pkg/zsh/trunk/Makefile 2012-02-24 16:11:04 UTC (rev 17195)
+++ csw/mgar/pkg/zsh/trunk/Makefile 2012-02-24 16:24:54 UTC (rev 17196)
@@ -1,5 +1,5 @@
 NAME = zsh
-VERSION = 4.3.15
+VERSION = 4.3.17
 CATEGORIES = devel
 GARTYPE = v2
 
@@ -19,7 +19,7 @@
 
 LICENSE = LICENCE
 
-RUNTIME_DEP_PKGS = CSWlibiconv2 CSWlibncursesw5 CSWlibpcre0 CSWlibgdbm4
+RUNTIME_DEP_PKGS = CSWlibiconv2 CSWlibncursesw5 CSWlibpcre1 CSWlibgdbm4
 BUILD_DEP_PKGS = CSWpcre
 
 SPKG_SOURCEURL = http://www.zsh.org

Modified: csw/mgar/pkg/zsh/trunk/checksums
===
--- csw/mgar/pkg/zsh/trunk/checksums2012-02-24 16:11:04 UTC (rev 17195)
+++ csw/mgar/pkg/zsh/trunk/checksums2012-02-24 16:24:54 UTC (rev 17196)
@@ -1 +1 @@
-11766b0dd674a513810903cd33ffcac4  zsh-4.3.15.tar.bz2
+8258967060b2654f30001a011946ac6a  zsh-4.3.17.tar.bz2

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

___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[17968] csw/mgar/pkg/lang-python

2012-05-07 Thread opk
Revision: 17968
  http://gar.svn.sourceforge.net/gar/?rev=17968&view=rev
Author:   opk
Date: 2012-05-07 14:17:39 + (Mon, 07 May 2012)
Log Message:
---
initial gnuplot.py packages

Added Paths:
---
csw/mgar/pkg/lang-python/gnuplot.py/
csw/mgar/pkg/lang-python/gnuplot.py/Makefile
csw/mgar/pkg/lang-python/gnuplot.py/branches/
csw/mgar/pkg/lang-python/gnuplot.py/tags/
csw/mgar/pkg/lang-python/gnuplot.py/trunk/
csw/mgar/pkg/lang-python/gnuplot.py/trunk/Makefile
csw/mgar/pkg/lang-python/gnuplot.py/trunk/checksums
csw/mgar/pkg/lang-python/gnuplot.py/trunk/files/

Copied: csw/mgar/pkg/lang-python/gnuplot.py/Makefile (from rev 17965, 
csw/mgar/pkg/template/Makefile)
===
--- csw/mgar/pkg/lang-python/gnuplot.py/Makefile
(rev 0)
+++ csw/mgar/pkg/lang-python/gnuplot.py/Makefile2012-05-07 14:17:39 UTC 
(rev 17968)
@@ -0,0 +1,15 @@
+# vim: ft=make ts=4 sw=4 noet
+
+default:
+   @echo "You are in the pkg/ directory."
+
+%:
+   $(MAKE) -C trunk $* 
+
+paranoid-%:
+   $(MAKE) -C trunk $* || exit 2 
+
+export BUILDLOG ?= $(shell pwd)/buildlog.txt
+
+report-%:
+   $(MAKE) -C trunk $* || echo "   *** make $* in $$i failed ***" >> 
$(BUILDLOG) 


Property changes on: csw/mgar/pkg/lang-python/gnuplot.py/trunk
___
Added: svn:ignore
   + cookies
download
work



Added: csw/mgar/pkg/lang-python/gnuplot.py/trunk/Makefile
===
--- csw/mgar/pkg/lang-python/gnuplot.py/trunk/Makefile  
(rev 0)
+++ csw/mgar/pkg/lang-python/gnuplot.py/trunk/Makefile  2012-05-07 14:17:39 UTC 
(rev 17968)
@@ -0,0 +1,33 @@
+# $Id$
+#
+NAME = gnuplot.py
+VERSION = 1.8
+CATEGORIES = python
+GARTYPE = v2
+
+DESCRIPTION = A Python interface to the gnuplot plotting program
+define BLURB
+  Gnuplot.py is a Python package that interfaces to gnuplot, the
+  popular open-source plotting program. It allows you to use gnuplot
+  from within Python to plot arrays of data from memory, data files, or
+  mathematical functions. If you use Python to perform computations or
+  as 'glue' for numerical programs, you can use this package to plot
+  data on the fly as they are computed. And the combination with Python
+  makes it is easy to automate things, including creating crude
+  'animations' by plotting different datasets one after another.
+endef
+
+SF_PROJ = $(subst .,-,$(NAME))
+MASTER_SITES = $(SF_MIRRORS)
+DISTNAME = $(SF_PROJ)-$(VERSION)
+DISTFILES  = $(DISTNAME).tar.gz
+
+PACKAGES = CSWpy-gnuplot
+CATALOGNAME_CSWpy-gnuplot = py_gnuplot
+
+RUNTIME_DEP_PKGS += CSWnumpy
+
+LICENSE = LICENSE.txt
+ARCHALL = 1
+
+include gar/category.mk


Property changes on: csw/mgar/pkg/lang-python/gnuplot.py/trunk/Makefile
___
Added: svn:keywords
   + Id

Added: csw/mgar/pkg/lang-python/gnuplot.py/trunk/checksums
===
--- csw/mgar/pkg/lang-python/gnuplot.py/trunk/checksums 
(rev 0)
+++ csw/mgar/pkg/lang-python/gnuplot.py/trunk/checksums 2012-05-07 14:17:39 UTC 
(rev 17968)
@@ -0,0 +1 @@
+abd6f571e7aec68ae7db90a5217cd5b1  gnuplot-py-1.8.tar.gz

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

___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[17971] csw/mgar/pkg/lang-python/gnuplot.py/trunk/Makefile

2012-05-08 Thread opk
Revision: 17971
  http://gar.svn.sourceforge.net/gar/?rev=17971&view=rev
Author:   opk
Date: 2012-05-08 08:33:41 + (Tue, 08 May 2012)
Log Message:
---
lang-python/gnuplot.py/trunk: add more build dependencies and skip tests

Modified Paths:
--
csw/mgar/pkg/lang-python/gnuplot.py/trunk/Makefile

Modified: csw/mgar/pkg/lang-python/gnuplot.py/trunk/Makefile
===
--- csw/mgar/pkg/lang-python/gnuplot.py/trunk/Makefile  2012-05-08 08:09:31 UTC 
(rev 17970)
+++ csw/mgar/pkg/lang-python/gnuplot.py/trunk/Makefile  2012-05-08 08:33:41 UTC 
(rev 17971)
@@ -25,7 +25,8 @@
 PACKAGES = CSWpy-gnuplot
 CATALOGNAME_CSWpy-gnuplot = py_gnuplot
 
-RUNTIME_DEP_PKGS += CSWnumpy
+BUILD_DEP_PKGS += CSWnumpy CSWpython-dev
+TEST_SCRIPTS =
 
 LICENSE = LICENSE.txt
 ARCHALL = 1

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

___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[17972] csw/mgar/pkg/lang-python/gnuplot.py/trunk/Makefile

2012-05-08 Thread opk
Revision: 17972
  http://gar.svn.sourceforge.net/gar/?rev=17972&view=rev
Author:   opk
Date: 2012-05-08 08:46:47 + (Tue, 08 May 2012)
Log Message:
---
lang-python/gnuplot.py/trunk: correct numpy dependency: package is CSWpy-numpy

Modified Paths:
--
csw/mgar/pkg/lang-python/gnuplot.py/trunk/Makefile

Modified: csw/mgar/pkg/lang-python/gnuplot.py/trunk/Makefile
===
--- csw/mgar/pkg/lang-python/gnuplot.py/trunk/Makefile  2012-05-08 08:33:41 UTC 
(rev 17971)
+++ csw/mgar/pkg/lang-python/gnuplot.py/trunk/Makefile  2012-05-08 08:46:47 UTC 
(rev 17972)
@@ -25,7 +25,8 @@
 PACKAGES = CSWpy-gnuplot
 CATALOGNAME_CSWpy-gnuplot = py_gnuplot
 
-BUILD_DEP_PKGS += CSWnumpy CSWpython-dev
+BUILD_DEP_PKGS += CSWpy-numpy CSWpython-dev
+RUNTIME_DEP_PKGS += CSWgnuplot
 TEST_SCRIPTS =
 
 LICENSE = LICENSE.txt

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

___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[17978] csw/mgar/pkg/lang-python/ipython/trunk

2012-05-09 Thread opk
Revision: 17978
  http://gar.svn.sourceforge.net/gar/?rev=17978&view=rev
Author:   opk
Date: 2012-05-09 14:55:23 + (Wed, 09 May 2012)
Log Message:
---
update to 0.12.1

Modified Paths:
--
csw/mgar/pkg/lang-python/ipython/trunk/Makefile
csw/mgar/pkg/lang-python/ipython/trunk/checksums

Modified: csw/mgar/pkg/lang-python/ipython/trunk/Makefile
===
--- csw/mgar/pkg/lang-python/ipython/trunk/Makefile 2012-05-08 19:56:34 UTC 
(rev 17977)
+++ csw/mgar/pkg/lang-python/ipython/trunk/Makefile 2012-05-09 14:55:23 UTC 
(rev 17978)
@@ -7,7 +7,7 @@
 #   shipping ipythonx?)
 # 
 NAME= ipython
-VERSION = 0.10.2
+VERSION = 0.12.1
 CATEGORIES = python
 GARTYPE = v2
 
@@ -15,14 +15,18 @@
 define BLURB
 endef
 
-MASTER_SITES = http://ipython.scipy.org/dist/$(VERSION)/
+MASTER_SITES = http://archive.ipython.org/release/$(VERSION)/
 DISTFILES= $(NAME)-$(VERSION).tar.gz
 ARCHALL  = 1
 PACKAGES = CSWipython
 CATALOGNAME  = ipython
 
-CHECKPKG_OVERRIDES += file-with-bad-content|/usr/local
-CHECKPKG_OVERRIDES += file-with-bad-content|/usr/share
+CHECKPKG_OVERRIDES_CSWipython += 
file-with-bad-content|/usr/share|root/opt/csw/lib/python/site-packages/IPython/core/usage.py
+CHECKPKG_OVERRIDES_CSWipython += 
file-with-bad-content|/usr/share|root/opt/csw/lib/python/site-packages/IPython/external/mglob/_mglob.py
+CHECKPKG_OVERRIDES_CSWipython += 
file-with-bad-content|/usr/local|root/opt/csw/lib/python/site-packages/IPython/core/magic.py
+CHECKPKG_OVERRIDES_CSWipython += 
file-with-bad-content|/usr/local|root/opt/csw/lib/python/site-packages/IPython/utils/tests/test_path.py
+CHECKPKG_OVERRIDES_CSWipython += 
file-with-bad-content|/usr/local|root/opt/csw/lib/python/site-packages/IPython/external/pexpect/_pexpect.py
+CHECKPKG_OVERRIDES_CSWipython += 
file-with-bad-content|/usr/local|root/opt/csw/lib/python/site-packages/IPython/external/path/_path.py
 
 SKIPTEST = 1
 

Modified: csw/mgar/pkg/lang-python/ipython/trunk/checksums
===
--- csw/mgar/pkg/lang-python/ipython/trunk/checksums2012-05-08 19:56:34 UTC 
(rev 17977)
+++ csw/mgar/pkg/lang-python/ipython/trunk/checksums2012-05-09 14:55:23 UTC 
(rev 17978)
@@ -1 +1 @@
-dda59bfc6e256ce786c4bc4aadb220a4  ipython-0.10.2.tar.gz
+ae3a9851cd99f40ba5227efec58c7a6c  ipython-0.12.1.tar.gz

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

___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[17979] csw/mgar/pkg/lang-python/ipython/trunk/Makefile

2012-05-09 Thread opk
Revision: 17979
  http://gar.svn.sourceforge.net/gar/?rev=17979&view=rev
Author:   opk
Date: 2012-05-09 14:57:22 + (Wed, 09 May 2012)
Log Message:
---
py- prefixes are not appropriate for ipython: add checkpkg ignores

Modified Paths:
--
csw/mgar/pkg/lang-python/ipython/trunk/Makefile

Modified: csw/mgar/pkg/lang-python/ipython/trunk/Makefile
===
--- csw/mgar/pkg/lang-python/ipython/trunk/Makefile 2012-05-09 14:55:23 UTC 
(rev 17978)
+++ csw/mgar/pkg/lang-python/ipython/trunk/Makefile 2012-05-09 14:57:22 UTC 
(rev 17979)
@@ -27,6 +27,8 @@
 CHECKPKG_OVERRIDES_CSWipython += 
file-with-bad-content|/usr/local|root/opt/csw/lib/python/site-packages/IPython/utils/tests/test_path.py
 CHECKPKG_OVERRIDES_CSWipython += 
file-with-bad-content|/usr/local|root/opt/csw/lib/python/site-packages/IPython/external/pexpect/_pexpect.py
 CHECKPKG_OVERRIDES_CSWipython += 
file-with-bad-content|/usr/local|root/opt/csw/lib/python/site-packages/IPython/external/path/_path.py
+CHECKPKG_OVERRIDES_CSWipython += pkgname-does-not-start-with-CSWpy-
+CHECKPKG_OVERRIDES_CSWipython += catalogname-does-not-start-with-py_
 
 SKIPTEST = 1
 

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

___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[17980] csw/mgar/pkg/lang-python/gnuplot.py/trunk/Makefile

2012-05-09 Thread opk
Revision: 17980
  http://gar.svn.sourceforge.net/gar/?rev=17980&view=rev
Author:   opk
Date: 2012-05-09 15:39:41 + (Wed, 09 May 2012)
Log Message:
---
add checkpkg override for dependency

Modified Paths:
--
csw/mgar/pkg/lang-python/gnuplot.py/trunk/Makefile

Modified: csw/mgar/pkg/lang-python/gnuplot.py/trunk/Makefile
===
--- csw/mgar/pkg/lang-python/gnuplot.py/trunk/Makefile  2012-05-09 14:57:22 UTC 
(rev 17979)
+++ csw/mgar/pkg/lang-python/gnuplot.py/trunk/Makefile  2012-05-09 15:39:41 UTC 
(rev 17980)
@@ -29,6 +29,8 @@
 RUNTIME_DEP_PKGS += CSWgnuplot
 TEST_SCRIPTS =
 
+CHECKPKG_OVERRIDES_CSWpy-gnuplot += surplus-dependency|CSWgnuplot
+
 LICENSE = LICENSE.txt
 ARCHALL = 1
 

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

___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[17982] csw/mgar/pkg/lang-python/pytz/trunk

2012-05-09 Thread opk
Revision: 17982
  http://gar.svn.sourceforge.net/gar/?rev=17982&view=rev
Author:   opk
Date: 2012-05-09 19:19:43 + (Wed, 09 May 2012)
Log Message:
---
lang-python/pytz/trunk: upgrade to 2012c

Modified Paths:
--
csw/mgar/pkg/lang-python/pytz/trunk/Makefile
csw/mgar/pkg/lang-python/pytz/trunk/checksums

Modified: csw/mgar/pkg/lang-python/pytz/trunk/Makefile
===
--- csw/mgar/pkg/lang-python/pytz/trunk/Makefile2012-05-09 18:38:05 UTC 
(rev 17981)
+++ csw/mgar/pkg/lang-python/pytz/trunk/Makefile2012-05-09 19:19:43 UTC 
(rev 17982)
@@ -1,6 +1,6 @@
 # $Id$
 NAME = pytz
-VERSION = 2011n
+VERSION = 2012c
 CATEGORIES = python
 GARTYPE = v2
 

Modified: csw/mgar/pkg/lang-python/pytz/trunk/checksums
===
--- csw/mgar/pkg/lang-python/pytz/trunk/checksums   2012-05-09 18:38:05 UTC 
(rev 17981)
+++ csw/mgar/pkg/lang-python/pytz/trunk/checksums   2012-05-09 19:19:43 UTC 
(rev 17982)
@@ -1 +1 @@
-6322c068f0497c82216ed36f6873e9d0  pytz-2011n.tar.bz2
+660e0cee7f6c419ca2665db460f65131  pytz-2012c.tar.bz2

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

___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[19296] csw/mgar/pkg/lang-python/pytz/trunk

2012-09-26 Thread opk
Revision: 19296
  http://gar.svn.sourceforge.net/gar/?rev=19296&view=rev
Author:   opk
Date: 2012-09-26 16:03:01 + (Wed, 26 Sep 2012)
Log Message:
---
lang-python/pytz/trunk: update to 2012f

Modified Paths:
--
csw/mgar/pkg/lang-python/pytz/trunk/Makefile
csw/mgar/pkg/lang-python/pytz/trunk/checksums

Modified: csw/mgar/pkg/lang-python/pytz/trunk/Makefile
===
--- csw/mgar/pkg/lang-python/pytz/trunk/Makefile2012-09-26 09:36:51 UTC 
(rev 19295)
+++ csw/mgar/pkg/lang-python/pytz/trunk/Makefile2012-09-26 16:03:01 UTC 
(rev 19296)
@@ -1,6 +1,6 @@
 # $Id$
 NAME = pytz
-VERSION = 2012c
+VERSION = 2012f
 CATEGORIES = python
 GARTYPE = v2
 

Modified: csw/mgar/pkg/lang-python/pytz/trunk/checksums
===
--- csw/mgar/pkg/lang-python/pytz/trunk/checksums   2012-09-26 09:36:51 UTC 
(rev 19295)
+++ csw/mgar/pkg/lang-python/pytz/trunk/checksums   2012-09-26 16:03:01 UTC 
(rev 19296)
@@ -1 +1 @@
-660e0cee7f6c419ca2665db460f65131  pytz-2012c.tar.bz2
+176a00c875b5a8356f12cd96276bdcd5  pytz-2012f.tar.bz2

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

___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[19355] csw/mgar/pkg/zsh/trunk

2012-10-02 Thread opk
Revision: 19355
  http://gar.svn.sourceforge.net/gar/?rev=19355&view=rev
Author:   opk
Date: 2012-10-02 11:26:10 + (Tue, 02 Oct 2012)
Log Message:
---
/var/tmp/opk/mgar/zsh/trunk: update to 5.0.0

Modified Paths:
--
csw/mgar/pkg/zsh/trunk/Makefile
csw/mgar/pkg/zsh/trunk/checksums

Modified: csw/mgar/pkg/zsh/trunk/Makefile
===
--- csw/mgar/pkg/zsh/trunk/Makefile 2012-10-02 11:05:03 UTC (rev 19354)
+++ csw/mgar/pkg/zsh/trunk/Makefile 2012-10-02 11:26:10 UTC (rev 19355)
@@ -1,5 +1,5 @@
 NAME = zsh
-VERSION = 4.3.17
+VERSION = 5.0.0
 CATEGORIES = devel
 GARTYPE = v2
 

Modified: csw/mgar/pkg/zsh/trunk/checksums
===
--- csw/mgar/pkg/zsh/trunk/checksums2012-10-02 11:05:03 UTC (rev 19354)
+++ csw/mgar/pkg/zsh/trunk/checksums2012-10-02 11:26:10 UTC (rev 19355)
@@ -1 +1 @@
-8258967060b2654f30001a011946ac6a  zsh-4.3.17.tar.bz2
+e8484468925cec8d9a84b8b04797e764  zsh-5.0.0.tar.bz2

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

___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[19357] csw/mgar/pkg/zsh/trunk/Makefile

2012-10-02 Thread opk
Revision: 19357
  http://gar.svn.sourceforge.net/gar/?rev=19357&view=rev
Author:   opk
Date: 2012-10-02 12:02:47 + (Tue, 02 Oct 2012)
Log Message:
---
/var/tmp/opk/mgar/zsh/trunk: update build dependency

Modified Paths:
--
csw/mgar/pkg/zsh/trunk/Makefile

Modified: csw/mgar/pkg/zsh/trunk/Makefile
===
--- csw/mgar/pkg/zsh/trunk/Makefile 2012-10-02 11:58:36 UTC (rev 19356)
+++ csw/mgar/pkg/zsh/trunk/Makefile 2012-10-02 12:02:47 UTC (rev 19357)
@@ -20,7 +20,7 @@
 LICENSE = LICENCE
 
 RUNTIME_DEP_PKGS = CSWlibiconv2 CSWlibncursesw5 CSWlibpcre1 CSWlibgdbm4
-BUILD_DEP_PKGS = CSWpcre
+BUILD_DEP_PKGS = CSWlibpcre-dev
 
 SPKG_SOURCEURL = http://www.zsh.org
 UPSTREAM_MASTER_SITES = http://www.zsh.org/pub/

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

___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[19363] csw/mgar/pkg/nmh/trunk

2012-10-02 Thread opk
Revision: 19363
  http://gar.svn.sourceforge.net/gar/?rev=19363&view=rev
Author:   opk
Date: 2012-10-02 15:54:45 + (Tue, 02 Oct 2012)
Log Message:
---
nmh/trunk: update to 1.5

Modified Paths:
--
csw/mgar/pkg/nmh/trunk/Makefile
csw/mgar/pkg/nmh/trunk/checksums
csw/mgar/pkg/nmh/trunk/files/-skip-chgrp-of-inc.patch

Added Paths:
---
csw/mgar/pkg/nmh/trunk/files/0001-use-csw-locations.patch

Modified: csw/mgar/pkg/nmh/trunk/Makefile
===
--- csw/mgar/pkg/nmh/trunk/Makefile 2012-10-02 15:33:58 UTC (rev 19362)
+++ csw/mgar/pkg/nmh/trunk/Makefile 2012-10-02 15:54:45 UTC (rev 19363)
@@ -1,6 +1,6 @@
 # $Id$
 NAME = nmh
-VERSION = 1.4
+VERSION = 1.5
 CATEGORIES = apps
 GARTYPE = v2
 
@@ -18,8 +18,7 @@
 SPKG_SOURCEURL = http://www.nongnu.org/nmh/
 UFILES_REGEX = -(\d+(?:\.\d+)*).tar.gz
 
-RUNTIME_DEP_PKGS += CSWlibiconv2
-PATCHFILES += -skip-chgrp-of-inc.patch
+RUNTIME_DEP_PKGS += CSWlibreadline6 CSWlibiconv2
 LICENSE = COPYRIGHT
 PRESERVECONF = /etc/opt/csw/nmh/mts.conf
 
@@ -28,4 +27,11 @@
   --libdir=$(libdir)/nmh --sysconfdir=$(sysconfdir)/nmh 
 TEST_SCRIPTS =
 
+EXTRA_MERGE_EXCLUDE_FILES = 
$(datadir)/doc/nmh/(contrib.*|INSTALL|COPYRIGHT|README.developers|README.manpages)
+
+CHECKPKG_OVERRIDES_CSWnmh += 
file-with-bad-content|/usr/local|root/opt/csw/share/doc/nmh/FAQ
+CHECKPKG_OVERRIDES_CSWnmh += 
file-with-bad-content|/usr/local|root/opt/csw/share/doc/nmh/MAIL.FILTERING
+CHECKPKG_OVERRIDES_CSWnmh += 
file-with-bad-content|/export/home|root/opt/csw/share/doc/nmh/README-ATTACHMENTS
+
+
 include gar/category.mk

Modified: csw/mgar/pkg/nmh/trunk/checksums
===
--- csw/mgar/pkg/nmh/trunk/checksums2012-10-02 15:33:58 UTC (rev 19362)
+++ csw/mgar/pkg/nmh/trunk/checksums2012-10-02 15:54:45 UTC (rev 19363)
@@ -1 +1 @@
-ef55286a821c53dc52b8974977c011ca  nmh-1.4.tar.gz
+5a7bc5a157f4428f7660bb882e842375  nmh-1.5.tar.gz

Modified: csw/mgar/pkg/nmh/trunk/files/-skip-chgrp-of-inc.patch
===
--- csw/mgar/pkg/nmh/trunk/files/-skip-chgrp-of-inc.patch   2012-10-02 
15:33:58 UTC (rev 19362)
+++ csw/mgar/pkg/nmh/trunk/files/-skip-chgrp-of-inc.patch   2012-10-02 
15:54:45 UTC (rev 19363)
@@ -1,5 +1,5 @@
 From db3d12ec17a80fad52a5a463ad42bfbc6d70ad91 Mon Sep 17 00:00:00 2001
-From: Oliver Kiddle 
+From: Oliver Kiddle 
 Date: Mon, 25 Oct 2010 12:52:51 +0200
 Subject: [PATCH] skip chgrp of inc
 

Added: csw/mgar/pkg/nmh/trunk/files/0001-use-csw-locations.patch
===
--- csw/mgar/pkg/nmh/trunk/files/0001-use-csw-locations.patch   
(rev 0)
+++ csw/mgar/pkg/nmh/trunk/files/0001-use-csw-locations.patch   2012-10-02 
15:54:45 UTC (rev 19363)
@@ -0,0 +1,25 @@
+From dcd309fb58c93684a68cde8baeb0fa09b03de8f8 Mon Sep 17 00:00:00 2001
+From: Oliver Kiddle 
+Date: Tue, 2 Oct 2012 17:46:52 +0200
+Subject: [PATCH 3/3] use csw locations
+
+---
+ docs/COMPLETION-ZSH |2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/docs/COMPLETION-ZSH b/docs/COMPLETION-ZSH
+index 5c10cc8..d60f789 100644
+--- a/docs/COMPLETION-ZSH
 b/docs/COMPLETION-ZSH
+@@ -93,7 +93,7 @@ mhfile () {
+   local mhfpath file
+   # EDIT ME
+   # Array containing all the places nmh will look for templates etc.
+-  mhfpath=(~/Mail /usr/local/nmh/lib)
++  mhfpath=(~/Mail /etc/opt/csw/nmh /opt/csw/etc/nmh)
+ 
+   # Emulate completeinword behaviour as appropriate
+   local wordstr
+-- 
+1.7.10.3
+

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

___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[19364] csw/mgar/pkg/nmh/trunk

2012-10-02 Thread opk
Revision: 19364
  http://gar.svn.sourceforge.net/gar/?rev=19364&view=rev
Author:   opk
Date: 2012-10-02 16:33:57 + (Tue, 02 Oct 2012)
Log Message:
---
nmh/trunk: correct nmh patches

Modified Paths:
--
csw/mgar/pkg/nmh/trunk/Makefile

Removed Paths:
-
csw/mgar/pkg/nmh/trunk/files/-skip-chgrp-of-inc.patch

Modified: csw/mgar/pkg/nmh/trunk/Makefile
===
--- csw/mgar/pkg/nmh/trunk/Makefile 2012-10-02 15:54:45 UTC (rev 19363)
+++ csw/mgar/pkg/nmh/trunk/Makefile 2012-10-02 16:33:57 UTC (rev 19364)
@@ -22,6 +22,8 @@
 LICENSE = COPYRIGHT
 PRESERVECONF = /etc/opt/csw/nmh/mts.conf
 
+PATCHFILES += 0001-use-csw-locations.patch
+
 CONFIGURE_ARGS = --enable-pop --enable-masquerade='' --with-mts=sendmail \
   --prefix=$(prefix) --mandir=$(mandir) --datadir=$(datadir)/nmh \
   --libdir=$(libdir)/nmh --sysconfdir=$(sysconfdir)/nmh 

Deleted: csw/mgar/pkg/nmh/trunk/files/-skip-chgrp-of-inc.patch
===
--- csw/mgar/pkg/nmh/trunk/files/-skip-chgrp-of-inc.patch   2012-10-02 
15:54:45 UTC (rev 19363)
+++ csw/mgar/pkg/nmh/trunk/files/-skip-chgrp-of-inc.patch   2012-10-02 
16:33:57 UTC (rev 19364)
@@ -1,29 +0,0 @@
-From db3d12ec17a80fad52a5a463ad42bfbc6d70ad91 Mon Sep 17 00:00:00 2001
-From: Oliver Kiddle 
-Date: Mon, 25 Oct 2010 12:52:51 +0200
-Subject: [PATCH] skip chgrp of inc
-

- uip/Makefile.in |6 +-
- 1 files changed, 1 insertions(+), 5 deletions(-)
-
-diff --git a/uip/Makefile.in b/uip/Makefile.in
-index b3c6717..2919bb9 100644
 a/uip/Makefile.in
-+++ b/uip/Makefile.in
-@@ -282,11 +282,7 @@ install-misc:
- 
- # install commands with special installation needs (thus no $(SCMDS) use here)
- install-scmds:
--  if test x$(SETGID_MAIL) != x; then \
--$(INSTALL_PROGRAM) -g $(MAIL_SPOOL_GRP) -m 2755 inc 
$(DESTDIR)$(bindir)/$$cmd; \
--  else \
--$(INSTALL_PROGRAM) inc $(DESTDIR)$(bindir)/$$cmd; \
--  fi
-+  $(INSTALL_PROGRAM) inc $(DESTDIR)$(bindir)/$$cmd
- 
- uninstall:
-   for cmd in $(CMDS); do \
--- 
-1.7.3
-

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

___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[19927] csw/mgar/pkg/zsh/trunk

2012-12-20 Thread opk
Revision: 19927
  http://gar.svn.sourceforge.net/gar/?rev=19927&view=rev
Author:   opk
Date: 2012-12-20 21:44:23 + (Thu, 20 Dec 2012)
Log Message:
---
zsh/trunk: update zsh to 5.0.1

Modified Paths:
--
csw/mgar/pkg/zsh/trunk/Makefile
csw/mgar/pkg/zsh/trunk/checksums

Modified: csw/mgar/pkg/zsh/trunk/Makefile
===
--- csw/mgar/pkg/zsh/trunk/Makefile 2012-12-20 20:12:26 UTC (rev 19926)
+++ csw/mgar/pkg/zsh/trunk/Makefile 2012-12-20 21:44:23 UTC (rev 19927)
@@ -1,5 +1,5 @@
 NAME = zsh
-VERSION = 5.0.0
+VERSION = 5.0.1
 GARTYPE = v2
 
 DESCRIPTION = Powerful UNIX shell

Modified: csw/mgar/pkg/zsh/trunk/checksums
===
--- csw/mgar/pkg/zsh/trunk/checksums2012-12-20 20:12:26 UTC (rev 19926)
+++ csw/mgar/pkg/zsh/trunk/checksums2012-12-20 21:44:23 UTC (rev 19927)
@@ -1 +1 @@
-e8484468925cec8d9a84b8b04797e764  zsh-5.0.0.tar.bz2
+fa5f0f2b64df667d17993d06bb11a7bc  zsh-5.0.1.tar.bz2

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

___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[19928] csw/mgar/pkg/zsh/trunk/Makefile

2012-12-20 Thread opk
Revision: 19928
  http://gar.svn.sourceforge.net/gar/?rev=19928&view=rev
Author:   opk
Date: 2012-12-20 22:22:06 + (Thu, 20 Dec 2012)
Log Message:
---
zsh/trunk: add additional override needed for zsh completion function

Modified Paths:
--
csw/mgar/pkg/zsh/trunk/Makefile

Modified: csw/mgar/pkg/zsh/trunk/Makefile
===
--- csw/mgar/pkg/zsh/trunk/Makefile 2012-12-20 21:44:23 UTC (rev 19927)
+++ csw/mgar/pkg/zsh/trunk/Makefile 2012-12-20 22:22:06 UTC (rev 19928)
@@ -29,6 +29,7 @@
 CONFIGURE_ARGS += --enable-fndir=$(sharedstatedir)/$(NAME)/functions
 CONFIGURE_ARGS += --enable-pcre
 
+CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/share/zsh/functions/_urxvt
 CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/share|root/opt/csw/share/zsh/functions/_units
 CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/share|root/opt/csw/share/zsh/functions/_hg
 CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/share|root/opt/csw/share/zsh/functions/_loadkeys

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

___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[19929] csw/mgar/pkg/zsh/trunk/Makefile

2012-12-20 Thread opk
Revision: 19929
  http://gar.svn.sourceforge.net/gar/?rev=19929&view=rev
Author:   opk
Date: 2012-12-20 23:18:31 + (Thu, 20 Dec 2012)
Log Message:
---
pass sysconfdir to configure for zsh

Modified Paths:
--
csw/mgar/pkg/zsh/trunk/Makefile

Modified: csw/mgar/pkg/zsh/trunk/Makefile
===
--- csw/mgar/pkg/zsh/trunk/Makefile 2012-12-20 22:22:06 UTC (rev 19928)
+++ csw/mgar/pkg/zsh/trunk/Makefile 2012-12-20 23:18:31 UTC (rev 19929)
@@ -28,6 +28,7 @@
 CONFIGURE_ARGS += --enable-maildir-support
 CONFIGURE_ARGS += --enable-fndir=$(sharedstatedir)/$(NAME)/functions
 CONFIGURE_ARGS += --enable-pcre
+CONFIGURE_ARGS += --enable-etcdir=$(sysconfdir)
 
 CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/share/zsh/functions/_urxvt
 CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/share|root/opt/csw/share/zsh/functions/_units

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

___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[19930] csw/mgar/pkg/lang-python/pytz/trunk

2012-12-20 Thread opk
Revision: 19930
  http://gar.svn.sourceforge.net/gar/?rev=19930&view=rev
Author:   opk
Date: 2012-12-21 00:17:33 + (Fri, 21 Dec 2012)
Log Message:
---
upgrade pytz to 2012h

Modified Paths:
--
csw/mgar/pkg/lang-python/pytz/trunk/Makefile
csw/mgar/pkg/lang-python/pytz/trunk/checksums

Modified: csw/mgar/pkg/lang-python/pytz/trunk/Makefile
===
--- csw/mgar/pkg/lang-python/pytz/trunk/Makefile2012-12-20 23:18:31 UTC 
(rev 19929)
+++ csw/mgar/pkg/lang-python/pytz/trunk/Makefile2012-12-21 00:17:33 UTC 
(rev 19930)
@@ -1,6 +1,6 @@
 # $Id$
 NAME = pytz
-VERSION = 2012f
+VERSION = 2012h
 CATEGORIES = python
 GARTYPE = v2
 

Modified: csw/mgar/pkg/lang-python/pytz/trunk/checksums
===
--- csw/mgar/pkg/lang-python/pytz/trunk/checksums   2012-12-20 23:18:31 UTC 
(rev 19929)
+++ csw/mgar/pkg/lang-python/pytz/trunk/checksums   2012-12-21 00:17:33 UTC 
(rev 19930)
@@ -1 +1 @@
-176a00c875b5a8356f12cd96276bdcd5  pytz-2012f.tar.bz2
+90d5dcb521671a9f1f405aa139845f79  pytz-2012h.tar.bz2

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

___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


SF.net SVN: gar:[24164] csw/mgar/pkg/zsh/trunk

2014-10-07 Thread opk
Revision: 24164
  http://sourceforge.net/p/gar/code/24164
Author:   opk
Date: 2014-10-07 22:08:12 + (Tue, 07 Oct 2014)
Log Message:
---
update zsh to 5.0.7

Modified Paths:
--
csw/mgar/pkg/zsh/trunk/Makefile
csw/mgar/pkg/zsh/trunk/checksums

Modified: csw/mgar/pkg/zsh/trunk/Makefile
===
--- csw/mgar/pkg/zsh/trunk/Makefile 2014-10-07 11:57:56 UTC (rev 24163)
+++ csw/mgar/pkg/zsh/trunk/Makefile 2014-10-07 22:08:12 UTC (rev 24164)
@@ -1,5 +1,5 @@
 NAME = zsh
-VERSION = 5.0.6
+VERSION = 5.0.7
 GARTYPE = v2
 
 DESCRIPTION = Powerful UNIX shell

Modified: csw/mgar/pkg/zsh/trunk/checksums
===
--- csw/mgar/pkg/zsh/trunk/checksums2014-10-07 11:57:56 UTC (rev 24163)
+++ csw/mgar/pkg/zsh/trunk/checksums2014-10-07 22:08:12 UTC (rev 24164)
@@ -1 +1 @@
-7150a6abc2aa1a79d81ed9a282594225  zsh-5.0.6.tar.bz2
+1cd396ce17952de50b8a89980d617f0a  zsh-5.0.7.tar.bz2

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



SF.net SVN: gar:[24184] csw/mgar/pkg/urxvt/trunk

2014-10-16 Thread opk
Revision: 24184
  http://sourceforge.net/p/gar/code/24184
Author:   opk
Date: 2014-10-16 08:58:07 + (Thu, 16 Oct 2014)
Log Message:
---
update urxvt recipe for 9.20 release

Modified Paths:
--
csw/mgar/pkg/urxvt/trunk/Makefile
csw/mgar/pkg/urxvt/trunk/checksums

Added Paths:
---
csw/mgar/pkg/urxvt/trunk/files/0001-remove-old-solaris-fix.patch
csw/mgar/pkg/urxvt/trunk/files/0002-hardcode-missing-constant.patch

Modified: csw/mgar/pkg/urxvt/trunk/Makefile
===
--- csw/mgar/pkg/urxvt/trunk/Makefile   2014-10-16 08:46:32 UTC (rev 24183)
+++ csw/mgar/pkg/urxvt/trunk/Makefile   2014-10-16 08:58:07 UTC (rev 24184)
@@ -3,7 +3,7 @@
 # $Id$
 
 NAME = rxvt-unicode
-VERSION = 9.07
+VERSION = 9.20
 GARTYPE = v2
 
 DESCRIPTION = VT102 emulator for the X window system (pron. ouR XVT, unicode)
@@ -22,16 +22,28 @@
 DISTFILES = $(NAME)-$(VERSION).tar.bz2
 DISTFILES += urxvt-wrapper
 VENDOR_URL = http://software.schmorp.de/pkg/rxvt-unicode.html
-PACKAGING_PLATFORMS = solaris9-i386 solaris9-sparc
 GARCOMPILER = GNU
 
-PATCHFILES += rxvt-unicode-9.06-solaris8.patch
+EXTRA_INC = /opt/csw/X11/include
+EXTRA_LIB = /opt/csw/X11/lib
+EXTRA_PKG_CONFIG_DIRS = /opt/csw/X11/lib
+PATCHFILES += 0001-remove-old-solaris-fix.patch
+PATCHFILES += 0002-hardcode-missing-constant.patch
 CONFIGURE_ARGS = $(DIRPATHS)
 CONFIGURE_ARGS += --disable-perl
 CONFIGURE_ARGS += --with-terminfo=/opt/csw/share/terminfo
+EXTRA_LDFLAGS  = -Wl,-zignore -Wl,-zcombreloc -Wl,-Bdirect
+EXTRA_LINKER_FLAGS = -lrt
 
 PACKAGES = CSWrxvt-unicode
 SPKG_DESC_CSWrxvt-unicode = $(DESCRIPTION)
+RUNTIME_DEP_PKGS_CSWrxvt-unicode += CSWlibintl8
+RUNTIME_DEP_PKGS_CSWrxvt-unicode += CSWlibxft2
+RUNTIME_DEP_PKGS_CSWrxvt-unicode += CSWlibxrender
+RUNTIME_DEP_PKGS_CSWrxvt-unicode += CSWlibgobject2-0-0
+RUNTIME_DEP_PKGS_CSWrxvt-unicode += CSWstartupnotif
+RUNTIME_DEP_PKGS_CSWrxvt-unicode += CSWlibfontconfig1
+RUNTIME_DEP_PKGS_CSWrxvt-unicode += CSWlibgdk-pixbuf2-0-0
 RUNTIME_DEP_PKGS_CSWrxvt-unicode += CSWterminfo
 CHECKPKG_OVERRIDES_CSWrxvt-unicode += surplus-dependency|CSWterminfo
 OBSOLETED_BY_CSWrxvt-unicode = CSWurxvt

Modified: csw/mgar/pkg/urxvt/trunk/checksums
===
--- csw/mgar/pkg/urxvt/trunk/checksums  2014-10-16 08:46:32 UTC (rev 24183)
+++ csw/mgar/pkg/urxvt/trunk/checksums  2014-10-16 08:58:07 UTC (rev 24184)
@@ -1 +1 @@
-49bb52c99e002bf85eb41d8385d903b5  rxvt-unicode-9.07.tar.bz2
+4a5b823f08d21036f94a6c51e94d025b  rxvt-unicode-9.20.tar.bz2

Added: csw/mgar/pkg/urxvt/trunk/files/0001-remove-old-solaris-fix.patch
===
--- csw/mgar/pkg/urxvt/trunk/files/0001-remove-old-solaris-fix.patch
(rev 0)
+++ csw/mgar/pkg/urxvt/trunk/files/0001-remove-old-solaris-fix.patch
2014-10-16 08:58:07 UTC (rev 24184)
@@ -0,0 +1,25 @@
+From 5265afa04ab6b31f50b0de46f47d1a5d0c03f465 Mon Sep 17 00:00:00 2001
+From: Oliver Kiddle 
+Date: Wed, 3 Sep 2014 17:30:29 +0200
+Subject: [PATCH] remove old solaris fix
+
+---
+ configure | 2 --
+ 1 file changed, 2 deletions(-)
+
+diff --git a/configure b/configure
+index c756724..46fca6b 100755
+--- a/configure
 b/configure
+@@ -7146,8 +7146,6 @@ fi
+ case $host in
+*-*-solaris*)
+ 
+-$as_echo "#define _XOPEN_SOURCE 500" >>confdefs.h
+-
+   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library 
containing sendmsg" >&5
+ $as_echo_n "checking for library containing sendmsg... " >&6; }
+ if ${ac_cv_search_sendmsg+:} false; then :
+-- 
+2.0.3
+

Added: csw/mgar/pkg/urxvt/trunk/files/0002-hardcode-missing-constant.patch
===
--- csw/mgar/pkg/urxvt/trunk/files/0002-hardcode-missing-constant.patch 
(rev 0)
+++ csw/mgar/pkg/urxvt/trunk/files/0002-hardcode-missing-constant.patch 
2014-10-16 08:58:07 UTC (rev 24184)
@@ -0,0 +1,32 @@
+From 06cf0665727d6052b93a5ca838ba0db2200dec65 Mon Sep 17 00:00:00 2001
+From: Oliver Kiddle 
+Date: Thu, 16 Oct 2014 09:42:22 +0200
+Subject: [PATCH] hardcode missing constant
+
+---
+ src/rxvtimg.C | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/src/rxvtimg.C b/src/rxvtimg.C
+index d561e59..5ff1963 100644
+--- a/src/rxvtimg.C
 b/src/rxvtimg.C
+@@ -685,13 +685,13 @@ rxvt_img::brightness (int32_t r, int32_t g, int32_t b, 
int32_t a)
+   if (extract (-65535, 0, r, g, b, a, mask_c.red, mask_c.green, 
mask_c.blue, mask_c.alpha))
+ {
+   XRenderColor mask_w = { 65535, 65535, 65535, 65535 };
+-  XRenderFillRectangle (dpy, PictOpDifference, dst, &mask_w, 0, 0, w, 
h);
++  XRenderFillRectangle (dpy, 39, dst, &mask_w, 0, 0, w, h);
+   mask_c.red   = -mask_c.red; //TODO: verify that doing clamp, 
assign, and negation doe

SF.net SVN: gar:[24188] csw/mgar/pkg/meld/trunk

2014-10-16 Thread opk
Revision: 24188
  http://sourceforge.net/p/gar/code/24188
Author:   opk
Date: 2014-10-16 11:37:28 + (Thu, 16 Oct 2014)
Log Message:
---
meld/trunk: update to 1.8.6

Modified Paths:
--
csw/mgar/pkg/meld/trunk/Makefile
csw/mgar/pkg/meld/trunk/checksums

Modified: csw/mgar/pkg/meld/trunk/Makefile
===
--- csw/mgar/pkg/meld/trunk/Makefile2014-10-16 09:27:43 UTC (rev 24187)
+++ csw/mgar/pkg/meld/trunk/Makefile2014-10-16 11:37:28 UTC (rev 24188)
@@ -2,7 +2,7 @@
 # TODO (release-critical prefixed with !, non release-critical with *)
 #
 NAME = meld
-VERSION = 1.8.3
+VERSION = 1.8.6
 GARTYPE = v2
 
 DESCRIPTION = Visual diff and merge tool

Modified: csw/mgar/pkg/meld/trunk/checksums
===
--- csw/mgar/pkg/meld/trunk/checksums   2014-10-16 09:27:43 UTC (rev 24187)
+++ csw/mgar/pkg/meld/trunk/checksums   2014-10-16 11:37:28 UTC (rev 24188)
@@ -1 +1 @@
-8254815c9358283e5e6a9d90f6846746  meld-1.8.3.tar.xz
+872e6c28a7913f1eab1cacf27d6d1e5a  meld-1.8.6.tar.xz

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



SF.net SVN: gar:[24189] csw/mgar/pkg/lang-python/pyparsing/trunk

2014-10-16 Thread opk
Revision: 24189
  http://sourceforge.net/p/gar/code/24189
Author:   opk
Date: 2014-10-16 14:20:21 + (Thu, 16 Oct 2014)
Log Message:
---
lang-python/pyparsing/trunk: update to 2.0.3

Modified Paths:
--
csw/mgar/pkg/lang-python/pyparsing/trunk/Makefile
csw/mgar/pkg/lang-python/pyparsing/trunk/checksums

Modified: csw/mgar/pkg/lang-python/pyparsing/trunk/Makefile
===
--- csw/mgar/pkg/lang-python/pyparsing/trunk/Makefile   2014-10-16 11:37:28 UTC 
(rev 24188)
+++ csw/mgar/pkg/lang-python/pyparsing/trunk/Makefile   2014-10-16 14:20:21 UTC 
(rev 24189)
@@ -1,7 +1,7 @@
 # $Id$
 
 NAME = pyparsing
-VERSION = 2.0.1
+VERSION = 2.0.3
 CATEGORIES = python
 GARTYPE = v2
 
@@ -13,7 +13,7 @@
   code uses to construct the grammar directly in Python code.
 endef
 
-MASTER_SITES = $(SF_MIRRORS)
+MASTER_SITES = http://pypi.python.org/packages/source/p/pyparsing/
 DISTFILES  = $(DISTNAME).tar.gz
 LICENSE = LICENSE
 TEST_SCRIPTS =

Modified: csw/mgar/pkg/lang-python/pyparsing/trunk/checksums
===
--- csw/mgar/pkg/lang-python/pyparsing/trunk/checksums  2014-10-16 11:37:28 UTC 
(rev 24188)
+++ csw/mgar/pkg/lang-python/pyparsing/trunk/checksums  2014-10-16 14:20:21 UTC 
(rev 24189)
@@ -1 +1 @@
-37adec94104b98591507218bc82e7c31  pyparsing-2.0.1.tar.gz
+0fe479be09fc2cf005f753d3acc35939  pyparsing-2.0.3.tar.gz

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



SF.net SVN: gar:[24190] csw/mgar/pkg/urxvt/trunk/Makefile

2014-10-16 Thread opk
Revision: 24190
  http://sourceforge.net/p/gar/code/24190
Author:   opk
Date: 2014-10-16 15:11:08 + (Thu, 16 Oct 2014)
Log Message:
---
urxvt/trunk: create separate package for the terminfo database entries

Modified Paths:
--
csw/mgar/pkg/urxvt/trunk/Makefile

Modified: csw/mgar/pkg/urxvt/trunk/Makefile
===
--- csw/mgar/pkg/urxvt/trunk/Makefile   2014-10-16 14:20:21 UTC (rev 24189)
+++ csw/mgar/pkg/urxvt/trunk/Makefile   2014-10-16 15:11:08 UTC (rev 24190)
@@ -24,6 +24,12 @@
 VENDOR_URL = http://software.schmorp.de/pkg/rxvt-unicode.html
 GARCOMPILER = GNU
 
+PACKAGES = CSWrxvt-unicode CSWterminfo-rxvt-unicode
+SPKG_DESC_CSWrxvt-unicode = $(DESCRIPTION)
+SPKG_DESC_CSWterminfo-rxvt-unicode = Entries for rxvt-unicode in terminal 
information database
+ARCHALL_CSWterminfo-rxvt-unicode = 1
+PKGFILES_CSWterminfo-rxvt-unicode = $(datadir)/terminfo.*
+
 EXTRA_INC = /opt/csw/X11/include
 EXTRA_LIB = /opt/csw/X11/lib
 EXTRA_PKG_CONFIG_DIRS = /opt/csw/X11/lib
@@ -35,8 +41,7 @@
 EXTRA_LDFLAGS  = -Wl,-zignore -Wl,-zcombreloc -Wl,-Bdirect
 EXTRA_LINKER_FLAGS = -lrt
 
-PACKAGES = CSWrxvt-unicode
-SPKG_DESC_CSWrxvt-unicode = $(DESCRIPTION)
+BUILD_DEP_PKGS += CSWncurses
 RUNTIME_DEP_PKGS_CSWrxvt-unicode += CSWlibintl8
 RUNTIME_DEP_PKGS_CSWrxvt-unicode += CSWlibxft2
 RUNTIME_DEP_PKGS_CSWrxvt-unicode += CSWlibxrender
@@ -57,4 +62,5 @@
  ln -s ../libexec/urxvt-wrapper $(DESTDIR)$(bindir)/$${b}; \
done
ginstall -m 755 $(FILEDIR)/urxvt-wrapper $(DESTDIR)$(libexecdir)
+   /opt/csw/bin/tic -x -s -o $(DESTDIR)$(datadir)/terminfo 
$(WORKSRC)/doc/etc/rxvt-unicode.terminfo
@$(MAKECOOKIE)

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



SF.net SVN: gar:[24199] csw/mgar/pkg/urxvt/trunk

2014-10-20 Thread opk
Revision: 24199
  http://sourceforge.net/p/gar/code/24199
Author:   opk
Date: 2014-10-20 14:46:43 + (Mon, 20 Oct 2014)
Log Message:
---
urxvt: get perl support working

Modified Paths:
--
csw/mgar/pkg/urxvt/trunk/Makefile

Added Paths:
---
csw/mgar/pkg/urxvt/trunk/files/0003-handle-old-X-render.patch
csw/mgar/pkg/urxvt/trunk/files/0004-set-options-for-perl.patch
csw/mgar/pkg/urxvt/trunk/files/0005-avoid-bashism-in-install.patch

Modified: csw/mgar/pkg/urxvt/trunk/Makefile
===
--- csw/mgar/pkg/urxvt/trunk/Makefile   2014-10-18 16:09:39 UTC (rev 24198)
+++ csw/mgar/pkg/urxvt/trunk/Makefile   2014-10-20 14:46:43 UTC (rev 24199)
@@ -35,8 +35,11 @@
 EXTRA_PKG_CONFIG_DIRS = /opt/csw/X11/lib
 PATCHFILES += 0001-remove-old-solaris-fix.patch
 PATCHFILES += 0002-hardcode-missing-constant.patch
+PATCHFILES += 0003-handle-old-X-render.patch
+PATCHFILES += 0004-set-options-for-perl.patch
+PATCHFILES += 0005-avoid-bashism-in-install.patch
 CONFIGURE_ARGS = $(DIRPATHS)
-CONFIGURE_ARGS += --disable-perl
+CONFIGURE_ARGS += --enable-perl PERL=/opt/csw/bin/perl
 CONFIGURE_ARGS += --with-terminfo=/opt/csw/share/terminfo
 EXTRA_LDFLAGS  = -Wl,-zignore -Wl,-zcombreloc -Wl,-Bdirect
 EXTRA_LINKER_FLAGS = -lrt
@@ -51,6 +54,7 @@
 RUNTIME_DEP_PKGS_CSWrxvt-unicode += CSWlibgdk-pixbuf2-0-0
 RUNTIME_DEP_PKGS_CSWrxvt-unicode += CSWterminfo
 RUNTIME_DEP_PKGS_CSWrxvt-unicode += CSWterminfo-rxvt-unicode
+RUNTIME_DEP_PKGS_CSWrxvt-unicode += CSWperl
 CHECKPKG_OVERRIDES_CSWrxvt-unicode += surplus-dependency|CSWterminfo
 CHECKPKG_OVERRIDES_CSWrxvt-unicode += 
surplus-dependency|CSWterminfo-rxvt-unicode
 OBSOLETED_BY_CSWrxvt-unicode = CSWurxvt

Added: csw/mgar/pkg/urxvt/trunk/files/0003-handle-old-X-render.patch
===
--- csw/mgar/pkg/urxvt/trunk/files/0003-handle-old-X-render.patch   
(rev 0)
+++ csw/mgar/pkg/urxvt/trunk/files/0003-handle-old-X-render.patch   
2014-10-20 14:46:43 UTC (rev 24199)
@@ -0,0 +1,34 @@
+From 54e91b730926bce0c42bd8e4299370a130980cd5 Mon Sep 17 00:00:00 2001
+From: Oliver Kiddle 
+Date: Mon, 20 Oct 2014 14:57:15 +0200
+Subject: [PATCH] handle old X render
+
+---
+ src/rxvtperl.xs | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/src/rxvtperl.xs b/src/rxvtperl.xs
+index 92ad48c..6b8e10c 100644
+--- a/src/rxvtperl.xs
 b/src/rxvtperl.xs
+@@ -968,6 +968,8 @@ BOOT:
+ const_iv (PictOpConjointAtopReverse),
+ const_iv (PictOpConjointXor),
+ // 0.11+
++#endif
++#   if 0
+ const_iv (PictOpMultiply),
+ const_iv (PictOpScreen),
+ const_iv (PictOpOverlay),
+@@ -983,8 +985,6 @@ BOOT:
+ const_iv (PictOpHSLSaturation),
+ const_iv (PictOpHSLColor),
+ const_iv (PictOpHSLLuminosity),
+-#endif
+-#   if 0
+ const_iv (XIMForwardChar),
+ const_iv (XIMBackwardChar),
+ const_iv (XIMForwardWord),
+-- 
+2.0.3
+

Added: csw/mgar/pkg/urxvt/trunk/files/0004-set-options-for-perl.patch
===
--- csw/mgar/pkg/urxvt/trunk/files/0004-set-options-for-perl.patch  
(rev 0)
+++ csw/mgar/pkg/urxvt/trunk/files/0004-set-options-for-perl.patch  
2014-10-20 14:46:43 UTC (rev 24199)
@@ -0,0 +1,36 @@
+From 6536c5cd044cbb5c79c958072dc1566a4efed05e Mon Sep 17 00:00:00 2001
+From: Oliver Kiddle 
+Date: Mon, 20 Oct 2014 15:35:43 +0200
+Subject: [PATCH 5/5] set options for perl
+
+---
+ configure | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/configure b/configure
+index 46fca6b..811ff53 100755
+--- a/configure
 b/configure
+@@ -7845,8 +7845,8 @@ $as_echo_n "checking for $PERL suitability... " >&6; }
+ 
+  save_CXXFLAGS="$CXXFLAGS"
+  save_LIBS="$LIBS"
+- CXXFLAGS="$CXXFLAGS `$PERL -MExtUtils::Embed -e ccopts`"
+- LIBS="$LIBS `$PERL -MExtUtils::Embed -e ldopts`"
++ CXXFLAGS="$CXXFLAGS `$PERL -MExtUtils::Embed -e ccopts|sed 
's/-xarch=sparc//'` -I/opt/csw/lib/perl/5.10.1/CORE"
++ LIBS="$LIBS `$PERL -MExtUtils::Embed -e ldopts|sed 's/-xarch=sparc//'`"
+  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+ /* end confdefs.h.  */
+ 
+@@ -7882,7 +7882,7 @@ $as_echo "#define ENABLE_PERL 1" >>confdefs.h
+ 
+ IF_PERL=
+ PERL_O=rxvtperl.o
+-PERLFLAGS="`$PERL -MExtUtils::Embed -e ccopts`"
++PERLFLAGS="`$PERL -MExtUtils::Embed -e ccopts|sed 's/-xarch=sparc//'` 
-I/opt/csw/lib/perl/5.10.1/CORE"
+ PERLLIB="`$PERL -MExtUtils::Embed -e ldopts`"
+ PERLPRIVLIBEXP="`$PERL -MConfig -e 'print $Config{privlibexp}'`"
+  else
+-- 
+2.0.3
+

Added: csw/mgar/pkg/urxvt/trunk/files/0005-avoid-bashism-in-install.patch
===

SF.net SVN: gar:[24389] csw/mgar/pkg

2014-11-28 Thread opk
Revision: 24389
  http://sourceforge.net/p/gar/code/24389
Author:   opk
Date: 2014-11-28 18:34:53 + (Fri, 28 Nov 2014)
Log Message:
---
new package for mupdf

Added Paths:
---
csw/mgar/pkg/mupdf/
csw/mgar/pkg/mupdf/Makefile
csw/mgar/pkg/mupdf/branches/
csw/mgar/pkg/mupdf/tags/
csw/mgar/pkg/mupdf/trunk/
csw/mgar/pkg/mupdf/trunk/Makefile
csw/mgar/pkg/mupdf/trunk/checksums
csw/mgar/pkg/mupdf/trunk/files/
csw/mgar/pkg/mupdf/trunk/files/0001-adjust-Makefile-for-Solaris.patch

Added: csw/mgar/pkg/mupdf/Makefile
===
--- csw/mgar/pkg/mupdf/Makefile (rev 0)
+++ csw/mgar/pkg/mupdf/Makefile 2014-11-28 18:34:53 UTC (rev 24389)
@@ -0,0 +1,2 @@
+%:
+   $(MAKE) -C trunk $*

Index: csw/mgar/pkg/mupdf/trunk
===
--- csw/mgar/pkg/mupdf/trunk2014-11-27 09:11:08 UTC (rev 24388)
+++ csw/mgar/pkg/mupdf/trunk2014-11-28 18:34:53 UTC (rev 24389)

Property changes on: csw/mgar/pkg/mupdf/trunk
___
Added: svn:ignore
## -0,0 +1 ##
+work
Added: csw/mgar/pkg/mupdf/trunk/Makefile
===
--- csw/mgar/pkg/mupdf/trunk/Makefile   (rev 0)
+++ csw/mgar/pkg/mupdf/trunk/Makefile   2014-11-28 18:34:53 UTC (rev 24389)
@@ -0,0 +1,66 @@
+# $Id$
+# TODO (release-critical prefixed with !, non release-critical with *)
+#
+NAME = mupdf
+VERSION = 1.6
+GARTYPE = v2
+
+DESCRIPTION = Lightweight PDF and XPS viewer
+define BLURB
+  MuPDF is small, fast, and yet complete. It supports PDF 1.7 with
+  transparency, encryption, hyperlinks, annotations, searching and more.
+  It also reads XPS and OpenXPS documents.
+
+  The renderer in MuPDF is tailored for high quality anti-aliased
+  graphics. It renders text with metrics and spacing accurate to within
+  fractions of a pixel for the highest fidelity in reproducing the look of
+  a printed page on screen.
+endef
+
+MASTER_SITES = http://mupdf.com/downloads/
+DISTNAME = $(NAME)-$(VERSION)-source
+UFILES_REGEX = $(NAME)-(\d+(?:\.\d+)*)-source.tar.gz
+DISTFILES  = $(DISTNAME).tar.gz
+VENDOR_URL = http://mupdf.com/
+LICENSE = COPYING
+
+PACKAGES = CSWmupdf CSWmupdf-tools
+SPKG_DESC_CSWmupdf = $(DESCRIPTION)
+SPKG_DESC_CSWmupdf-tools = Commmand line tools for the MuPDF viewer
+PKGFILES_CSWmupdf = $(docdir)/$(NAME)/* $(bindir)/mupdf $(mandir)/man1/mupdf.1
+PKGFILES_CSWmupdf-tools = $(bindir)/mudraw $(bindir)/mutool \
+  $(mandir)/man1/mudraw.1 $(mandir)/man1/mutool.1
+
+PATCHFILES += 0001-adjust-Makefile-for-Solaris.patch
+
+CONFIGURE_SCRIPTS =
+BUILD_ARGS += build=none verbose=yes
+INSTALL_ARGS += build=none verbose=yes
+TEST_SCRIPTS =
+INSTALL_SCRIPTS = custom
+
+install-custom:
+   @ginstall -d $(DESTDIR)$(bindir)
+   @ginstall -d $(DESTDIR)$(mandir)/man1
+   @ginstall -d $(DESTDIR)$(docdir)/$(NAME)
+   @ginstall $(WORKSRC)/build/none/mudraw $(DESTDIR)$(bindir)
+   @ginstall $(WORKSRC)/build/none/mutool $(DESTDIR)$(bindir)
+   @ginstall -T $(WORKSRC)/build/none/mupdf-x11-curl 
$(DESTDIR)$(bindir)/mupdf
+   @ginstall -m 644 $(WORKSRC)/docs/man/*.1 $(DESTDIR)$(mandir)/man1
+   @ginstall -m 644 $(WORKSRC)/README $(WORKSRC)/CHANGES 
$(WORKSRC)/docs/*.txt $(DESTDIR)$(docdir)/$(NAME)
+   @$(MAKECOOKIE)
+
+
+RUNTIME_DEP_PKGS_CSWmupdf += CSWlibcurl4 CSWlibjpeg7 CSWlibssl1-0-0 CSWlibz1 \
+CSWlibjbig2dec0 CSWlibfreetype6
+RUNTIME_DEP_PKGS_CSWmupdf-tools += CSWlibjpeg7 CSWlibssl1-0-0 CSWlibz1 \
+CSWlibjbig2dec0 CSWlibfreetype6
+
+include gar/category.mk
+
+post-extract:
+   $(RM) $(WORKSRC)/thirdparty/curl/README 
$(WORKSRC)/thirdparty/jpeg/README \
+ $(WORKSRC)/thirdparty/zlib/README 
$(WORKSRC)/thirdparty/freetype/README \
+ $(WORKSRC)/thirdparty/openjpeg/CMakeLists.txt \
+ $(WORKSRC)/thirdparty/jbig2dec/README
+   @$(MAKECOOKIE)


Property changes on: csw/mgar/pkg/mupdf/trunk/Makefile
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: csw/mgar/pkg/mupdf/trunk/checksums
===
--- csw/mgar/pkg/mupdf/trunk/checksums  (rev 0)
+++ csw/mgar/pkg/mupdf/trunk/checksums  2014-11-28 18:34:53 UTC (rev 24389)
@@ -0,0 +1 @@
+8d69db41ae9e0b6807b76bb6ed70dc2f  mupdf-1.6-source.tar.gz

Added: csw/mgar/pkg/mupdf/trunk/files/0001-adjust-Makefile-for-Solaris.patch
===
--- csw/mgar/pkg/mupdf/trunk/files/0001-adjust-Makefile-for-Solaris.patch   
(rev 0)
+++ csw/mgar/pkg/mupdf/trunk/files/0001-adjust-Makefile-for-Solaris.patch   
2014-11-28 18:34:53 UTC (rev 24389)
@@ -0,0 +1,43 @@
+From

SF.net SVN: gar:[25039] csw/mgar/pkg/zsh/trunk

2015-05-31 Thread opk
Revision: 25039
  http://sourceforge.net/p/gar/code/25039
Author:   opk
Date: 2015-05-31 21:52:29 + (Sun, 31 May 2015)
Log Message:
---
update zsh to 5.0.8

Modified Paths:
--
csw/mgar/pkg/zsh/trunk/Makefile
csw/mgar/pkg/zsh/trunk/checksums
csw/mgar/pkg/zsh/trunk/files/_mgar

Modified: csw/mgar/pkg/zsh/trunk/Makefile
===
--- csw/mgar/pkg/zsh/trunk/Makefile 2015-05-31 20:36:13 UTC (rev 25038)
+++ csw/mgar/pkg/zsh/trunk/Makefile 2015-05-31 21:52:29 UTC (rev 25039)
@@ -1,5 +1,5 @@
 NAME = zsh
-VERSION = 5.0.7
+VERSION = 5.0.8
 GARTYPE = v2
 
 DESCRIPTION = Powerful UNIX shell

Modified: csw/mgar/pkg/zsh/trunk/checksums
===
--- csw/mgar/pkg/zsh/trunk/checksums2015-05-31 20:36:13 UTC (rev 25038)
+++ csw/mgar/pkg/zsh/trunk/checksums2015-05-31 21:52:29 UTC (rev 25039)
@@ -1 +1 @@
-1cd396ce17952de50b8a89980d617f0a  zsh-5.0.7.tar.bz2
+e6759e8dd7b714d624feffd0a73ba0fe  zsh-5.0.8.tar.bz2

Modified: csw/mgar/pkg/zsh/trunk/files/_mgar
===
--- csw/mgar/pkg/zsh/trunk/files/_mgar  2015-05-31 20:36:13 UTC (rev 25038)
+++ csw/mgar/pkg/zsh/trunk/files/_mgar  2015-05-31 21:52:29 UTC (rev 25039)
@@ -9,7 +9,7 @@
 help:list\ available\ commands
 install:install\ files\ to\ staging\ directory
 makepatch:create\ a\ patch\ for\ outstanding\ changes
-check-prereqs checksum test
+check-prereqs checksum test patch
 ${${(M)${(f)"$(_call_program commands ${words[1]} help)"}:#  *}//  
(#b)([a-z-]##)[^A-Z]##(?)/$match[1]:${match[2]:l}}
   )
 

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



SF.net SVN: gar:[25240] csw/mgar/pkg/duff/trunk/Makefile

2015-09-16 Thread opk
Revision: 25240
  http://sourceforge.net/p/gar/code/25240
Author:   opk
Date: 2015-09-16 12:12:15 + (Wed, 16 Sep 2015)
Log Message:
---
duff/trunk: upstream homepage moved

Modified Paths:
--
csw/mgar/pkg/duff/trunk/Makefile

Modified: csw/mgar/pkg/duff/trunk/Makefile
===
--- csw/mgar/pkg/duff/trunk/Makefile2015-09-16 10:52:57 UTC (rev 25239)
+++ csw/mgar/pkg/duff/trunk/Makefile2015-09-16 12:12:15 UTC (rev 25240)
@@ -13,7 +13,7 @@
 
 MASTER_SITES = $(SF_MIRRORS)
 DISTFILES  = $(DISTNAME).tar.gz
-VENDOR_URL = http://duff.sourceforge.net/
+VENDOR_URL = http://duff.dreda.org/
 
 RUNTIME_DEP_PKGS += CSWlibintl8
 PATCHFILES += 0001-add-missing-include.patch

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



SF.net SVN: gar:[25243] csw/mgar/pkg/guilt/trunk

2015-09-16 Thread opk
Revision: 25243
  http://sourceforge.net/p/gar/code/25243
Author:   opk
Date: 2015-09-16 14:58:29 + (Wed, 16 Sep 2015)
Log Message:
---
guilt/trunk: update to 0.36

Modified Paths:
--
csw/mgar/pkg/guilt/trunk/Makefile
csw/mgar/pkg/guilt/trunk/checksums
csw/mgar/pkg/guilt/trunk/files/0001-use-bash-for-scripts.patch

Removed Paths:
-
csw/mgar/pkg/guilt/trunk/files/0002-don-t-rebuild-man-pages.patch

Modified: csw/mgar/pkg/guilt/trunk/Makefile
===
--- csw/mgar/pkg/guilt/trunk/Makefile   2015-09-16 14:41:03 UTC (rev 25242)
+++ csw/mgar/pkg/guilt/trunk/Makefile   2015-09-16 14:58:29 UTC (rev 25243)
@@ -1,5 +1,5 @@
 NAME = guilt
-VERSION = 0.35
+VERSION = 0.36
 GARTYPE = v2
 
 DESCRIPTION = Manipulate quilt like patches on top of git
@@ -12,14 +12,16 @@
   patches using git or whatever other SCM.
 endef
 
-MASTER_SITES = http://www.kernel.org/pub/linux/kernel/people/jsipek/guilt/
-DISTFILES  = $(DISTNAME).tar.bz2
+MASTER_SITES = http://guilt.31bits.net/src/
+DISTFILES  = $(DISTNAME).tar.gz
+VENDOR_URL = http://repo.or.cz/w/guilt.git
 
+BUILD_DEP_PKGS += CSWasciidoc CSWxmlto
 CONFIGURE_SCRIPTS =
-BUILD_SCRIPTS =
+BUILD_SCRIPTS = $(WORKSRC)/Documentation/Makefile
 TEST_SCRIPTS =
 INSTALL_SCRIPTS = custom
-PATCHFILES += 0001-use-bash-for-scripts.patch 
0002-don-t-rebuild-man-pages.patch
+PATCHFILES += 0001-use-bash-for-scripts.patch
 
 LICENSE = COPYING
 ARCHALL = 1

Modified: csw/mgar/pkg/guilt/trunk/checksums
===
--- csw/mgar/pkg/guilt/trunk/checksums  2015-09-16 14:41:03 UTC (rev 25242)
+++ csw/mgar/pkg/guilt/trunk/checksums  2015-09-16 14:58:29 UTC (rev 25243)
@@ -1 +1 @@
-974e863ceba36980a6b5429eb9708703  guilt-0.35.tar.bz2
+360b9d8354a7bb989c73a6f069146ccf  guilt-0.36.tar.gz

Modified: csw/mgar/pkg/guilt/trunk/files/0001-use-bash-for-scripts.patch
===
--- csw/mgar/pkg/guilt/trunk/files/0001-use-bash-for-scripts.patch  
2015-09-16 14:41:03 UTC (rev 25242)
+++ csw/mgar/pkg/guilt/trunk/files/0001-use-bash-for-scripts.patch  
2015-09-16 14:58:29 UTC (rev 25243)
@@ -1,22 +1,61 @@
-From 13f7765ede23c6f4bc201d36ae80a31f9f52b57c Mon Sep 17 00:00:00 2001
-From: Oliver Kiddle 
-Date: Tue, 9 Aug 2011 16:54:14 +0200
-Subject: [PATCH 2/3] use bash for scripts
+From 5650d79f0b65efdad9670f1628cf8c9add475119 Mon Sep 17 00:00:00 2001
+From: Oliver Kiddle 
+Date: Wed, 16 Sep 2015 14:56:57 +0200
+Subject: [PATCH] use bash for scripts
 
 ---
- guilt |2 +-
- 1 files changed, 1 insertions(+), 1 deletions(-)
+ Documentation/Makefile| 2 +-
+ Documentation/cmd-list.sh | 2 +-
+ Documentation/usage.sh| 2 +-
+ guilt | 2 +-
+ 4 files changed, 4 insertions(+), 4 deletions(-)
 
+diff --git a/Documentation/Makefile b/Documentation/Makefile
+index eb9c2b7..ea54e9d 100644
+--- a/Documentation/Makefile
 b/Documentation/Makefile
+@@ -70,7 +70,7 @@ clean:
+   rm -f version.txt
+ 
+ usage-guilt-%.txt: ../guilt-% usage.sh
+-  sh ./usage.sh $<
++  bash ./usage.sh $<
+ 
+ %.html : %.txt footer.txt version.txt
+   $(ASCIIDOC) -b xhtml11 -d manpage -f asciidoc.conf $(ASCIIDOC_EXTRA) $<
+diff --git a/Documentation/cmd-list.sh b/Documentation/cmd-list.sh
+index 4ede8f9..cc7c271 100644
+--- a/Documentation/cmd-list.sh
 b/Documentation/cmd-list.sh
+@@ -11,7 +11,7 @@ BEGIN{state=0}
+ {print $0; exit}
+ '`
+ 
+-  len=`expr length "${cmd}"`
++  len=`gexpr length "${cmd}"`
+ 
+   if [ -z "$desc" ]; then
+   echo "No description found in $cmd.txt" >&2
+diff --git a/Documentation/usage.sh b/Documentation/usage.sh
+index c208b68..c8429d5 100644
+--- a/Documentation/usage.sh
 b/Documentation/usage.sh
+@@ -1,4 +1,4 @@
+-#!/bin/sh
++#!/bin/bash
+ 
+ name=$(basename $1)
+ u=$(grep USAGE $1 |  sed 's/USAGE="//' | sed 's/"$//') 
 diff --git a/guilt b/guilt
-index d1e17d4..07fc4fd 100755
+index 35177b9..5b2deb9 100755
 --- a/guilt
 +++ b/guilt
 @@ -1,4 +1,4 @@
 -#!/bin/sh
 +#!/bin/bash
  #
- # Copyright (c) Josef "Jeff" Sipek, 2006-2011
+ # Copyright (c) Josef "Jeff" Sipek, 2006-2015
  #
 -- 
-1.7.6
+2.4.0
 

Deleted: csw/mgar/pkg/guilt/trunk/files/0002-don-t-rebuild-man-pages.patch
===
--- csw/mgar/pkg/guilt/trunk/files/0002-don-t-rebuild-man-pages.patch   
2015-09-16 14:41:03 UTC (rev 25242)
+++ csw/mgar/pkg/guilt/trunk/files/0002-don-t-rebuild-man-pages.patch   
2015-09-16 14:58:29 UTC (rev 25243)
@@ -1,25 +0,0 @@
-From 83c1dd03e66ca9a9cc2d178ce815283e846694cb Mon Sep 17 00:00:00 2001
-From: Oliver Kiddle 
-Date: Tue, 9 Aug 2011 16:54:41 +0200
-Subject: [PATCH 3/3] don't rebuild man pages
-

- Documentation/Makefile |2 +-
- 1 files cha

SF.net SVN: gar:[25244] csw/mgar/pkg/guilt/trunk/files/ 0001-use-bash-for-scripts.patch

2015-09-16 Thread opk
Revision: 25244
  http://sourceforge.net/p/gar/code/25244
Author:   opk
Date: 2015-09-16 15:25:41 + (Wed, 16 Sep 2015)
Log Message:
---
guilt/trunk: fix for sed expression requiring GNU sed

Modified Paths:
--
csw/mgar/pkg/guilt/trunk/files/0001-use-bash-for-scripts.patch

Modified: csw/mgar/pkg/guilt/trunk/files/0001-use-bash-for-scripts.patch
===
--- csw/mgar/pkg/guilt/trunk/files/0001-use-bash-for-scripts.patch  
2015-09-16 14:58:29 UTC (rev 25243)
+++ csw/mgar/pkg/guilt/trunk/files/0001-use-bash-for-scripts.patch  
2015-09-16 15:25:41 UTC (rev 25244)
@@ -1,4 +1,4 @@
-From 5650d79f0b65efdad9670f1628cf8c9add475119 Mon Sep 17 00:00:00 2001
+From 7a707402143c87208f7d9dc62830ed94e933e036 Mon Sep 17 00:00:00 2001
 From: Oliver Kiddle 
 Date: Wed, 16 Sep 2015 14:56:57 +0200
 Subject: [PATCH] use bash for scripts
@@ -7,8 +7,8 @@
  Documentation/Makefile| 2 +-
  Documentation/cmd-list.sh | 2 +-
  Documentation/usage.sh| 2 +-
- guilt | 2 +-
- 4 files changed, 4 insertions(+), 4 deletions(-)
+ guilt | 4 ++--
+ 4 files changed, 5 insertions(+), 5 deletions(-)
 
 diff --git a/Documentation/Makefile b/Documentation/Makefile
 index eb9c2b7..ea54e9d 100644
@@ -47,7 +47,7 @@
  name=$(basename $1)
  u=$(grep USAGE $1 |  sed 's/USAGE="//' | sed 's/"$//') 
 diff --git a/guilt b/guilt
-index 35177b9..5b2deb9 100755
+index 35177b9..0e88cfd 100755
 --- a/guilt
 +++ b/guilt
 @@ -1,4 +1,4 @@
@@ -56,6 +56,15 @@
  #
  # Copyright (c) Josef "Jeff" Sipek, 2006-2015
  #
+@@ -229,7 +229,7 @@ get_full_series()
+   #   - optional whitespace followed by '#' followed by more
+   # optional whitespace
+   # also remove comments from end of lines
+-  sed -n -e "/^[[:space:]]*\(#.*\)*\$/ ! {
++  gsed -n -e "/^[[:space:]]*\(#.*\)*\$/ ! {
+   s/[[:space:]]*#.*\$//
+ 
+   p
 -- 
 2.4.0
 

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



SF.net SVN: gar:[25432] csw/mgar/pkg/zsh/trunk

2015-12-02 Thread opk
Revision: 25432
  http://sourceforge.net/p/gar/code/25432
Author:   opk
Date: 2015-12-03 03:12:33 + (Thu, 03 Dec 2015)
Log Message:
---
update zsh to 5.2

Modified Paths:
--
csw/mgar/pkg/zsh/trunk/Makefile
csw/mgar/pkg/zsh/trunk/checksums

Modified: csw/mgar/pkg/zsh/trunk/Makefile
===
--- csw/mgar/pkg/zsh/trunk/Makefile 2015-12-02 16:50:33 UTC (rev 25431)
+++ csw/mgar/pkg/zsh/trunk/Makefile 2015-12-03 03:12:33 UTC (rev 25432)
@@ -1,5 +1,5 @@
 NAME = zsh
-VERSION = 5.0.8
+VERSION = 5.2
 GARTYPE = v2
 
 DESCRIPTION = Powerful UNIX shell
@@ -9,8 +9,8 @@
   ksh, and tcsh were incorporated into zsh; many original features were added.
 endef
 
-MASTER_SITES = $(SF_MIRRORS)
-DISTFILES  = $(NAME)-$(VERSION).tar.bz2
+MASTER_SITES = http://www.zsh.org/pub/
+DISTFILES  = $(NAME)-$(VERSION).tar.xz
 DISTFILES += _pkgutil _mgar _alternatives
 
 PACKAGES = CSWzsh
@@ -22,7 +22,6 @@
 BUILD_DEP_PKGS = CSWlibpcre-dev
 
 SPKG_SOURCEURL = http://www.zsh.org
-UPSTREAM_MASTER_SITES = http://www.zsh.org/pub/
 
 CONFIGURE_ARGS  = $(DIRPATHS)
 CONFIGURE_ARGS += --enable-maildir-support

Modified: csw/mgar/pkg/zsh/trunk/checksums
===
--- csw/mgar/pkg/zsh/trunk/checksums2015-12-02 16:50:33 UTC (rev 25431)
+++ csw/mgar/pkg/zsh/trunk/checksums2015-12-03 03:12:33 UTC (rev 25432)
@@ -1 +1 @@
-e6759e8dd7b714d624feffd0a73ba0fe  zsh-5.0.8.tar.bz2
+afe96fde08b70e23c1cab1ca7a68fb34  zsh-5.2.tar.xz

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



SF.net SVN: gar:[25952] csw/mgar/pkg/zsh/trunk/files/_mgar

2016-09-22 Thread opk
Revision: 25952
  http://sourceforge.net/p/gar/code/25952
Author:   opk
Date: 2016-09-22 09:57:27 + (Thu, 22 Sep 2016)
Log Message:
---
zsh: update mgar completion

Modified Paths:
--
csw/mgar/pkg/zsh/trunk/files/_mgar

Modified: csw/mgar/pkg/zsh/trunk/files/_mgar
===
--- csw/mgar/pkg/zsh/trunk/files/_mgar  2016-09-21 12:40:46 UTC (rev 25951)
+++ csw/mgar/pkg/zsh/trunk/files/_mgar  2016-09-22 09:57:27 UTC (rev 25952)
@@ -2,7 +2,7 @@
 
 local curcontext="$curcontext" ret=1
 local subcmd
-local -a cmds
+local -a cmds expl
 
 if (( CURRENT == 2 )); then
   cmds=(
@@ -10,10 +10,11 @@
 install:install\ files\ to\ staging\ directory
 makepatch:create\ a\ patch\ for\ outstanding\ changes
 check-prereqs checksum test patch
-${${(M)${(f)"$(_call_program commands ${words[1]} help)"}:#  *}//  
(#b)([a-z-]##)[^A-Z]##(?)/$match[1]:${match[2]:l}}
+${${(M)${(f)"$(_call_program commands ${words[1]} help)"}:#  *}/  
(#b)([a-z-]##)[^A-U]##(?)/$match[1]:${match[2]:l}}
   )
 
   _describe 'mgar command' cmds && ret=0
+  [[ -prefix - ]] && _wanted options expl option compadd - -V && ret=0
 else
   shift words
   (( CURRENT-- ))
@@ -33,6 +34,9 @@
   up)
 _arguments '--all' && ret=0
   ;;
+  newpkg)
+_arguments '1:new package name' '2:version number' && ret=0
+  ;;
   *)
 _default && ret=0
   ;;

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



SF.net SVN: gar:[25956] csw/mgar/pkg

2016-09-22 Thread opk
Revision: 25956
  http://sourceforge.net/p/gar/code/25956
Author:   opk
Date: 2016-09-22 12:58:40 + (Thu, 22 Sep 2016)
Log Message:
---
the_silver_searcher/trunk: new package

Added Paths:
---
csw/mgar/pkg/the_silver_searcher/
csw/mgar/pkg/the_silver_searcher/Makefile
csw/mgar/pkg/the_silver_searcher/branches/
csw/mgar/pkg/the_silver_searcher/tags/
csw/mgar/pkg/the_silver_searcher/trunk/
csw/mgar/pkg/the_silver_searcher/trunk/Makefile
csw/mgar/pkg/the_silver_searcher/trunk/checksums
csw/mgar/pkg/the_silver_searcher/trunk/files/
csw/mgar/pkg/the_silver_searcher/trunk/files/_the_silver_searcher

Added: csw/mgar/pkg/the_silver_searcher/Makefile
===
--- csw/mgar/pkg/the_silver_searcher/Makefile   (rev 0)
+++ csw/mgar/pkg/the_silver_searcher/Makefile   2016-09-22 12:58:40 UTC (rev 
25956)
@@ -0,0 +1,2 @@
+%:
+   $(MAKE) -C trunk $*

Index: csw/mgar/pkg/the_silver_searcher/trunk
===
--- csw/mgar/pkg/the_silver_searcher/trunk  2016-09-22 12:06:44 UTC (rev 
25955)
+++ csw/mgar/pkg/the_silver_searcher/trunk  2016-09-22 12:58:40 UTC (rev 
25956)

Property changes on: csw/mgar/pkg/the_silver_searcher/trunk
___
Added: svn:ignore
## -0,0 +1 ##
+work
Added: csw/mgar/pkg/the_silver_searcher/trunk/Makefile
===
--- csw/mgar/pkg/the_silver_searcher/trunk/Makefile 
(rev 0)
+++ csw/mgar/pkg/the_silver_searcher/trunk/Makefile 2016-09-22 12:58:40 UTC 
(rev 25956)
@@ -0,0 +1,36 @@
+# $Id$
+
+NAME = the_silver_searcher
+VERSION = 0.32.0
+GARTYPE = v2
+
+DESCRIPTION = The Silver Searcher is a code searching tool similar to ack
+define BLURB
+  The Silver Searcher is a tool for searching code. It started off as a
+  clone of Ack, but their feature sets have since diverged slightly. In
+  typical usage, Ag is 5-10x faster than Ack.
+endef
+
+MASTER_SITES = http://geoff.greer.fm/ag/releases/
+SPKG_SOURCEURL = http://geoff.greer.fm/ag/
+DISTFILES  = $(DISTNAME).tar.gz
+DISTFILES += _the_silver_searcher
+LICENSE = LICENSE
+
+RUNTIME_DEP_PKGS = CSWlibpcre1 CSWliblzma5 CSWlibz1
+BUILD_DEP_PKGS = CSWlibpcre-dev CSWliblzma-dev CSWlibz-dev
+
+CONFIGURE_ARGS = $(DIRPATHS)
+
+include gar/category.mk
+
+post-extract:
+   gsed -i -e 's/ -Wall[^"]*//' $(WORKSRC)/configure
+   @$(MAKECOOKIE)
+
+post-install:
+   rm 
$(DESTDIR)$(sharedstatedir)/the_silver_searcher/completions/ag.bashcomp.sh
+   mkdir -p $(DESTDIR)$(sharedstatedir)/zsh/functions 
$(DESTDIR)$(sharedstatedir)/bash-completion/completions
+   cp -p $(WORKDIR)/_the_silver_searcher 
$(DESTDIR)$(sharedstatedir)/zsh/functions
+   cp -p $(WORKSRC)/ag.bashcomp.sh  
$(DESTDIR)$(sharedstatedir)/bash-completion/completions/ag
+   @$(MAKECOOKIE)


Property changes on: csw/mgar/pkg/the_silver_searcher/trunk/Makefile
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: csw/mgar/pkg/the_silver_searcher/trunk/checksums
===
--- csw/mgar/pkg/the_silver_searcher/trunk/checksums
(rev 0)
+++ csw/mgar/pkg/the_silver_searcher/trunk/checksums2016-09-22 12:58:40 UTC 
(rev 25956)
@@ -0,0 +1 @@
+3fdfd5836924246073d5344257a06823  the_silver_searcher-0.32.0.tar.gz

Added: csw/mgar/pkg/the_silver_searcher/trunk/files/_the_silver_searcher
===
--- csw/mgar/pkg/the_silver_searcher/trunk/files/_the_silver_searcher   
(rev 0)
+++ csw/mgar/pkg/the_silver_searcher/trunk/files/_the_silver_searcher   
2016-09-22 12:58:40 UTC (rev 25956)
@@ -0,0 +1,86 @@
+#compdef ag
+
+# Completion function for zsh
+
+local ret=1
+local -a args expl
+
+# Intentionally avoided many possible mutual exlusions because it is
+# likely that earlier options come from an alias. In line with this
+# the following conditionally adds options that assert defaults.
+[[ -n $words[(r)(-[is]|--ignore-case|--case-sensitive)] ]] && args+=(
+  '(-S --smart-case -s -s --ignore-case 
--case-sensitive)'{-S,--smart-case}'[insensitive match unless pattern includes 
uppercase]'
+)
+[[ -n $words[(r)--nobreak] ]] && args+=(
+  "(--nobreak)--break[print newlines between matches in different files]"
+)
+[[ -n $words[(r)--nogroup] ]] && args+=(
+"(--nogroup)--group[don't repeat filename for each match line]"
+)
+
+_tags normal-options file-types
+while _tags; do
+  _requested normal-options && _arguments -S -s $args \
+'--ackmate[print results in AckMate-parseable format]' \

[csw-devel] SF.net SVN: gar:[9506] csw/mgar/pkg/tkcvs/trunk/Makefile

2010-04-01 Thread opk
Revision: 9506
  http://gar.svn.sourceforge.net/gar/?rev=9506&view=rev
Author:   opk
Date: 2010-04-01 12:24:31 + (Thu, 01 Apr 2010)

Log Message:
---
fix script directly in the install-custom target as suggested by Dago

Modified Paths:
--
csw/mgar/pkg/tkcvs/trunk/Makefile

Modified: csw/mgar/pkg/tkcvs/trunk/Makefile
===
--- csw/mgar/pkg/tkcvs/trunk/Makefile   2010-04-01 10:13:22 UTC (rev 9505)
+++ csw/mgar/pkg/tkcvs/trunk/Makefile   2010-04-01 12:24:31 UTC (rev 9506)
@@ -29,13 +29,7 @@
 LICENSE = COPYING
 ARCHALL = 1
 RUNTIME_DEP_PKGS = CSWtcl CSWtk CSWtkdiff
-POST_INSTALL_TARGETS := fixscript
 
-# Script needs to run wish from /opt/csw
-fixscript:
-   @echo " ==> Fixing wish path in tkcvs script"
-   perl -i -plne "s{^exec wish}{exec ${bindir}/wish}g" 
$(DESTDIR)$(prefix)/bin/tkcvs
-
 include gar/category.mk
 
 TCL_FILES = $(filter-out %/tkcvs.tcl,$(wildcard $(WORKSRC)/tkcvs/*.tcl))
@@ -44,6 +38,7 @@
 install-custom:
@echo " ==> Installing $(GARNAME)"
@ginstall -D $(WORKSRC)/tkcvs/tkcvs.tcl $(DESTDIR)$(prefix)/bin/tkcvs
+   perl -i -plne "s{^exec wish}{exec ${bindir}/wish}g" 
$(DESTDIR)$(prefix)/bin/tkcvs
@ginstall -D $(WORKSRC)/tkcvs/tkcvs.1 
$(DESTDIR)$(prefix)/share/man/man1/tkcvs.1
@ginstall -d $(DESTDIR)$(prefix)/lib/tkcvs/bitmaps
@ginstall -m 644 $(TCL_FILES) $(WORKSRC)/tkcvs/tclIndex 
$(DESTDIR)$(prefix)/lib/tkcvs


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.
___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[10470] csw/mgar/pkg/tkcvs/trunk

2010-07-07 Thread opk
Revision: 10470
  http://gar.svn.sourceforge.net/gar/?rev=10470&view=rev
Author:   opk
Date: 2010-07-07 15:08:52 + (Wed, 07 Jul 2010)

Log Message:
---
update tkcvs to 8.2.2

Modified Paths:
--
csw/mgar/pkg/tkcvs/trunk/Makefile
csw/mgar/pkg/tkcvs/trunk/checksums

Modified: csw/mgar/pkg/tkcvs/trunk/Makefile
===
--- csw/mgar/pkg/tkcvs/trunk/Makefile   2010-07-07 14:39:19 UTC (rev 10469)
+++ csw/mgar/pkg/tkcvs/trunk/Makefile   2010-07-07 15:08:52 UTC (rev 10470)
@@ -1,5 +1,5 @@
 GARNAME = tkcvs
-GARVERSION = 8.2.1
+GARVERSION = 8.2.2
 CATEGORIES = apps
 
 DESCRIPTION = A graphical front-end to CVS and Subversion

Modified: csw/mgar/pkg/tkcvs/trunk/checksums
===
--- csw/mgar/pkg/tkcvs/trunk/checksums  2010-07-07 14:39:19 UTC (rev 10469)
+++ csw/mgar/pkg/tkcvs/trunk/checksums  2010-07-07 15:08:52 UTC (rev 10470)
@@ -1 +1 @@
-7bbe24d80ebd7f0504a5b36e92541f43  download/tkcvs_8_2_1.tar.gz
+8ad8f5a3b32392fa02a2fffa42032432  tkcvs_8_2_2.tar.gz


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.
___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[10471] csw/mgar/pkg/tkcvs/trunk/Makefile

2010-07-08 Thread opk
Revision: 10471
  http://gar.svn.sourceforge.net/gar/?rev=10471&view=rev
Author:   opk
Date: 2010-07-08 14:09:21 + (Thu, 08 Jul 2010)

Log Message:
---
add checkpkg overrides for tkcvs

Modified Paths:
--
csw/mgar/pkg/tkcvs/trunk/Makefile

Modified: csw/mgar/pkg/tkcvs/trunk/Makefile
===
--- csw/mgar/pkg/tkcvs/trunk/Makefile   2010-07-07 15:08:52 UTC (rev 10470)
+++ csw/mgar/pkg/tkcvs/trunk/Makefile   2010-07-08 14:09:21 UTC (rev 10471)
@@ -30,6 +30,10 @@
 ARCHALL = 1
 RUNTIME_DEP_PKGS = CSWtcl CSWtk CSWtkdiff
 
+CHECKPKG_OVERRIDES_CSWtkcvs += surplus-dependency|CSWtcl
+CHECKPKG_OVERRIDES_CSWtkcvs += surplus-dependency|CSWtkdiff
+CHECKPKG_OVERRIDES_CSWtkcvs += surplus-dependency|CSWtk
+
 include gar/category.mk
 
 TCL_FILES = $(filter-out %/tkcvs.tcl,$(wildcard $(WORKSRC)/tkcvs/*.tcl))


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.
___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


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

2010-07-12 Thread opk
Revision: 10504
  http://gar.svn.sourceforge.net/gar/?rev=10504&view=rev
Author:   opk
Date: 2010-07-12 12:38:34 + (Mon, 12 Jul 2010)

Log Message:
---
work on getting pygtk components up-to-date

Modified Paths:
--
csw/mgar/pkg/pycairo/trunk/Makefile
csw/mgar/pkg/pycairo/trunk/checksums
csw/mgar/pkg/pygobject/trunk/Makefile
csw/mgar/pkg/pygobject/trunk/checksums
csw/mgar/pkg/pygtk/trunk/Makefile
csw/mgar/pkg/pygtk/trunk/checksums

Modified: csw/mgar/pkg/pycairo/trunk/Makefile
===
--- csw/mgar/pkg/pycairo/trunk/Makefile 2010-07-12 03:49:27 UTC (rev 10503)
+++ csw/mgar/pkg/pycairo/trunk/Makefile 2010-07-12 12:38:34 UTC (rev 10504)
@@ -1,5 +1,5 @@
 GARNAME  = pycairo
-GARVERSION   = 1.8.6
+GARVERSION   = 1.8.8
 CATEGORIES   = lib
 
 DESCRIPTION  = Python binder for Cairo library

Modified: csw/mgar/pkg/pycairo/trunk/checksums
===
--- csw/mgar/pkg/pycairo/trunk/checksums2010-07-12 03:49:27 UTC (rev 
10503)
+++ csw/mgar/pkg/pycairo/trunk/checksums2010-07-12 12:38:34 UTC (rev 
10504)
@@ -1 +1 @@
-d10a68f88da0a6a02864bf8f0c25ee4d  download/pycairo-1.8.6.tar.gz
+054da6c125cb427a003f5fd6c54f853e  pycairo-1.8.8.tar.gz

Modified: csw/mgar/pkg/pygobject/trunk/Makefile
===
--- csw/mgar/pkg/pygobject/trunk/Makefile   2010-07-12 03:49:27 UTC (rev 
10503)
+++ csw/mgar/pkg/pygobject/trunk/Makefile   2010-07-12 12:38:34 UTC (rev 
10504)
@@ -1,9 +1,9 @@
 GARNAME = pygobject
-GARVERSION = 2.20.0
+GARVERSION = 2.21.1
 CATEGORIES = lang
 RELVER = $(shell echo $(GARVERSION) | gsed -e 's/\.[0-9]\+$$//')
 
-DESCRIPTION = pygobject support for Python
+DESCRIPTION = Python bindings for the GObject library
 define BLURB
   This is a Python language binding for gobject.
 endef

Modified: csw/mgar/pkg/pygobject/trunk/checksums
===
--- csw/mgar/pkg/pygobject/trunk/checksums  2010-07-12 03:49:27 UTC (rev 
10503)
+++ csw/mgar/pkg/pygobject/trunk/checksums  2010-07-12 12:38:34 UTC (rev 
10504)
@@ -1,2 +1,2 @@
 bc2cdac34e1084f4d72eb2bf762e700c  0001-forcing-lglib-2.0.patch
-10e1fb79be3d698476a28b1e1b0c5640  pygobject-2.20.0.tar.bz2
+c12eef0cd6725dc7245c3db78ef85d2d  pygobject-2.21.1.tar.bz2

Modified: csw/mgar/pkg/pygtk/trunk/Makefile
===
--- csw/mgar/pkg/pygtk/trunk/Makefile   2010-07-12 03:49:27 UTC (rev 10503)
+++ csw/mgar/pkg/pygtk/trunk/Makefile   2010-07-12 12:38:34 UTC (rev 10504)
@@ -1,5 +1,5 @@
 GARNAME = pygtk
-GARVERSION = 2.15.1
+GARVERSION = 2.17.0
 CATEGORIES = lang
 RELVER = $(shell echo $(GARVERSION) |gsed 
's/\(^[0-9].*\.[0-9].*\)\.[0-9]*/\1/')
 
@@ -13,6 +13,7 @@
 STRIP_LIBTOOL = 1
 
 PACKAGES = CSWpygtk
+BUILD_DEP_PKGS = CSWpkgconfig CSWpygobject CSWglib2devel CSWlibatkdevel 
CSWpangodevel CSWpycairo CSWlibcairodevel CSWlibxcbdevel
 RUNTIME_DEP_PKGS_CSWpygtk  = CSWpython CSWfconfig CSWftype2 CSWggettextrt
 RUNTIME_DEP_PKGS_CSWpygtk += CSWglib2 CSWgtk2 CSWlibatk CSWlibcairo
 RUNTIME_DEP_PKGS_CSWpygtk += CSWlibglade2 CSWlibxml2 CSWpango

Modified: csw/mgar/pkg/pygtk/trunk/checksums
===
--- csw/mgar/pkg/pygtk/trunk/checksums  2010-07-12 03:49:27 UTC (rev 10503)
+++ csw/mgar/pkg/pygtk/trunk/checksums  2010-07-12 12:38:34 UTC (rev 10504)
@@ -1 +1 @@
-f8ef885df57bd022b2bfc138f6590c21  download/pygtk-2.15.1.tar.bz2
+43d704343d7ca04a6e4ddd4fa73a3c55  pygtk-2.17.0.tar.bz2


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.
___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[10516] csw/mgar/pkg/pycairo/trunk/Makefile

2010-07-13 Thread opk
Revision: 10516
  http://gar.svn.sourceforge.net/gar/?rev=10516&view=rev
Author:   opk
Date: 2010-07-13 14:26:33 + (Tue, 13 Jul 2010)

Log Message:
---
need to link against cairo library

Modified Paths:
--
csw/mgar/pkg/pycairo/trunk/Makefile

Modified: csw/mgar/pkg/pycairo/trunk/Makefile
===
--- csw/mgar/pkg/pycairo/trunk/Makefile 2010-07-13 13:24:30 UTC (rev 10515)
+++ csw/mgar/pkg/pycairo/trunk/Makefile 2010-07-13 14:26:33 UTC (rev 10516)
@@ -24,7 +24,7 @@
 
 RUNTIME_DEP_PKGS_CSWpycairo = CSWlibcairo CSWpython
 
-CAIRO_LIBS = -L/opt/csw/lib -R/opt/csw/lib/$$ISALIST
+CAIRO_LIBS = -L/opt/csw/lib -R/opt/csw/lib/$$ISALIST -lcairo
 CAIRO_CFLAGS = -I/opt/csw/include -I/opt/csw/include/cairo
 COMPILER_EXPORTS += CAIRO_LIBS CAIRO_CFLAGS
 CONFIGURE_ARGS = $(DIRPATHS)


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.
___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[10521] csw/mgar/pkg/pycairo/trunk/Makefile

2010-07-14 Thread opk
Revision: 10521
  http://gar.svn.sourceforge.net/gar/?rev=10521&view=rev
Author:   opk
Date: 2010-07-14 12:11:09 + (Wed, 14 Jul 2010)

Log Message:
---
adjustments to keep checkpkg happy

Modified Paths:
--
csw/mgar/pkg/pycairo/trunk/Makefile

Modified: csw/mgar/pkg/pycairo/trunk/Makefile
===
--- csw/mgar/pkg/pycairo/trunk/Makefile 2010-07-14 01:02:38 UTC (rev 10520)
+++ csw/mgar/pkg/pycairo/trunk/Makefile 2010-07-14 12:11:09 UTC (rev 10521)
@@ -2,8 +2,10 @@
 GARVERSION   = 1.8.8
 CATEGORIES   = lib
 
-DESCRIPTION  = Python binder for Cairo library
+DESCRIPTION  = Python binding for Cairo library
 define BLURB
+  This package contains the pycairo Python module which implements
+  a binding the the cairo Library.
 endef
 
 MASTER_SITES  = http://www.cairographics.org/releases/
@@ -17,12 +19,12 @@
 # We define upstream file regex so we can be notifed of 
 # new upstream software release
 UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz
-PACKAGES = CSWpycairo
+PACKAGES = CSWpy-cairo
 
-CATALOGNAME_CSWpycairo  = pycairo
-SPKG_DESC_CSWpycairo= $(DESCRIPTION)
+CATALOGNAME_CSWpy-cairo  = pycairo
+SPKG_DESC_CSWpy-cairo= $(DESCRIPTION)
 
-RUNTIME_DEP_PKGS_CSWpycairo = CSWlibcairo CSWpython
+RUNTIME_DEP_PKGS_CSWpy-cairo = CSWlibcairo CSWpython
 
 CAIRO_LIBS = -L/opt/csw/lib -R/opt/csw/lib/$$ISALIST -lcairo
 CAIRO_CFLAGS = -I/opt/csw/include -I/opt/csw/include/cairo


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.
___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[10522] csw/mgar/pkg/pycairo/trunk/Makefile

2010-07-14 Thread opk
Revision: 10522
  http://gar.svn.sourceforge.net/gar/?rev=10522&view=rev
Author:   opk
Date: 2010-07-14 12:29:09 + (Wed, 14 Jul 2010)

Log Message:
---
fix catalogue

Modified Paths:
--
csw/mgar/pkg/pycairo/trunk/Makefile

Modified: csw/mgar/pkg/pycairo/trunk/Makefile
===
--- csw/mgar/pkg/pycairo/trunk/Makefile 2010-07-14 12:11:09 UTC (rev 10521)
+++ csw/mgar/pkg/pycairo/trunk/Makefile 2010-07-14 12:29:09 UTC (rev 10522)
@@ -21,7 +21,7 @@
 UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz
 PACKAGES = CSWpy-cairo
 
-CATALOGNAME_CSWpy-cairo  = pycairo
+CATALOGNAME_CSWpy-cairo  = py_cairo
 SPKG_DESC_CSWpy-cairo= $(DESCRIPTION)
 
 RUNTIME_DEP_PKGS_CSWpy-cairo = CSWlibcairo CSWpython


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.
___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[10599] csw/mgar/pkg/zsh/trunk

2010-07-27 Thread opk
Revision: 10599
  http://gar.svn.sourceforge.net/gar/?rev=10599&view=rev
Author:   opk
Date: 2010-07-27 12:14:17 + (Tue, 27 Jul 2010)

Log Message:
---
minor updates

Modified Paths:
--
csw/mgar/pkg/zsh/trunk/Makefile
csw/mgar/pkg/zsh/trunk/files/_pkgutil

Modified: csw/mgar/pkg/zsh/trunk/Makefile
===
--- csw/mgar/pkg/zsh/trunk/Makefile 2010-07-27 12:04:50 UTC (rev 10598)
+++ csw/mgar/pkg/zsh/trunk/Makefile 2010-07-27 12:14:17 UTC (rev 10599)
@@ -13,7 +13,10 @@
 DISTFILES  = $(GARNAME)-$(GARVERSION).tar.bz2
 DISTFILES += $(call admfiles,CSWzsh,postinstall postremove)
 
+LICENSE = LICENCE
+
 RUNTIME_DEP_PKGS = CSWiconv CSWncurses CSWpcrert CSWgdbm
+BUILD_DEP_PKGS = CSWpcre
 
 SPKG_SOURCEURL = http://www.zsh.org
 
@@ -32,3 +35,6 @@
 # Use term.h from ncurses or we get compile errors
 #   http://www.zsh.org/mla/workers/2007/msg01236.html
 CPPFLAGS := -I$(includedir)/ncursesw $(CPPFLAGS)
+
+post-install:
+   cp -p files/_pkgutil $(DESTDIR)$(sharedstatedir)/$(GARNAME)/functions

Modified: csw/mgar/pkg/zsh/trunk/files/_pkgutil
===
--- csw/mgar/pkg/zsh/trunk/files/_pkgutil   2010-07-27 12:04:50 UTC (rev 
10598)
+++ csw/mgar/pkg/zsh/trunk/files/_pkgutil   2010-07-27 12:14:17 UTC (rev 
10599)
@@ -7,7 +7,7 @@
 local catalog
 catalog=( /var/opt/csw/pkgutil/catalog.*_`uname -p`_`uname -r`(N[1]) )
 
-_arguments \
+_arguments -S \
   "$opts"{-i,--install}'[install package]' \
   "$opts"{-u,--upgrade}'[upgrade package]' \
   "$opts"{-r,--remove}'[remove package]' \
@@ -39,7 +39,7 @@
 typeset -A pkgs
 pkgs=( ${(s: :)${${${${(f)"$(<$catalog)"[3,-1]}/(#b) [^ ]## ([^ ]##) */ 
${match[1]}}:#\#*}[3,(i)-BEGIN*]}[1,-2]} )
 if (( $+opt_args[-r] + $+opt_args[--remove] + $+opt_args[-u] + 
$+opt_args[--upgrade])); then
-  local old=\(${(j.|.)${${${${(f)"$(pkginfo)"}#[^ ]## ##}%% *}}}\)
+  local old=\(${(j.|.)${${${${(f)"$(_call_program commands pkginfo)"}#[^ 
]## ##}%% *}}}\)
   _wanted packages expl package compadd ${(k)pkgs[(R)$~old]} && ret=0
 else
   _wanted packages expl package compadd -k pkgs && ret=0


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.
___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[10603] csw/mgar/pkg/pygobject/trunk/Makefile

2010-07-27 Thread opk
Revision: 10603
  http://gar.svn.sourceforge.net/gar/?rev=10603&view=rev
Author:   opk
Date: 2010-07-27 13:51:36 + (Tue, 27 Jul 2010)

Log Message:
---
fix naming convention issues flagged by checkpkg

Modified Paths:
--
csw/mgar/pkg/pygobject/trunk/Makefile

Modified: csw/mgar/pkg/pygobject/trunk/Makefile
===
--- csw/mgar/pkg/pygobject/trunk/Makefile   2010-07-27 13:39:33 UTC (rev 
10602)
+++ csw/mgar/pkg/pygobject/trunk/Makefile   2010-07-27 13:51:36 UTC (rev 
10603)
@@ -13,11 +13,11 @@
 
 STRIP_LIBTOOL = 1
 
-PACKAGES = CSWpygobject
-RUNTIME_DEP_PKGS_CSWpygobject  = CSWpython CSWggettextrt CSWglib2
+PACKAGES = CSWpy-gobject
+RUNTIME_DEP_PKGS_CSWpy-gobject  = CSWpython CSWggettextrt CSWglib2
 
-CATALOGNAME_CSWpygobject = pygobject
-SPKG_DESC_CSWpygobject = pygobject support for Python
+CATALOGNAME_CSWpy-gobject = py_gobject
+SPKG_DESC_CSWpy-gobject = $(DESCRIPTION)
 PYCOMPILE = 1
 
 PATCHFILES = 0001-forcing-lglib-2.0.patch


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.
___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[10607] csw/mgar/pkg/pygtk/trunk/Makefile

2010-07-27 Thread opk
Revision: 10607
  http://gar.svn.sourceforge.net/gar/?rev=10607&view=rev
Author:   opk
Date: 2010-07-27 15:12:16 + (Tue, 27 Jul 2010)

Log Message:
---
correct issues raised by checkpkg

Modified Paths:
--
csw/mgar/pkg/pygtk/trunk/Makefile

Modified: csw/mgar/pkg/pygtk/trunk/Makefile
===
--- csw/mgar/pkg/pygtk/trunk/Makefile   2010-07-27 14:40:09 UTC (rev 10606)
+++ csw/mgar/pkg/pygtk/trunk/Makefile   2010-07-27 15:12:16 UTC (rev 10607)
@@ -3,7 +3,7 @@
 CATEGORIES = lang
 RELVER = $(shell echo $(GARVERSION) |gsed 
's/\(^[0-9].*\.[0-9].*\)\.[0-9]*/\1/')
 
-DESCRIPTION = pygtk support for Python
+DESCRIPTION = Python bindings for the GTK library
 define BLURB
   This is a Python language binding for gobject.
 endef
@@ -12,14 +12,14 @@
 DISTFILES  = $(GARNAME)-$(GARVERSION).tar.bz2
 STRIP_LIBTOOL = 1
 
-PACKAGES = CSWpygtk
-BUILD_DEP_PKGS = CSWpkgconfig CSWpygobject CSWglib2devel CSWlibatkdevel 
CSWpangodevel CSWpycairo CSWlibcairodevel CSWlibxcbdevel
-RUNTIME_DEP_PKGS_CSWpygtk  = CSWpython CSWfconfig CSWftype2 CSWggettextrt
-RUNTIME_DEP_PKGS_CSWpygtk += CSWglib2 CSWgtk2 CSWlibatk CSWlibcairo
-RUNTIME_DEP_PKGS_CSWpygtk += CSWlibglade2 CSWlibxml2 CSWpango
+PACKAGES = CSWpy-gtk
+BUILD_DEP_PKGS = CSWpkgconfig CSWpy-gobject CSWglib2devel CSWlibatkdevel 
CSWpangodevel CSWpy-cairo CSWlibcairodevel CSWlibxcbdevel
+RUNTIME_DEP_PKGS_CSWpy-gtk  = CSWpython CSWfconfig CSWftype2 CSWggettextrt
+RUNTIME_DEP_PKGS_CSWpy-gtk += CSWglib2 CSWgtk2 CSWlibatk CSWlibcairo
+RUNTIME_DEP_PKGS_CSWpy-gtk += CSWlibglade2 CSWlibxml2 CSWpango
 
-CATALOGNAME_CSWpygtk = pygtk
-SPKG_DESC_CSWpygtk = pygtk support for Python
+CATALOGNAME_CSWpy-gtk = py_gtk
+SPKG_DESC_CSWpy-gtk = $(DESCRIPTION)
 
 EXTRA_MERGE_EXCLUDE_FILES = .*\.pyo .*\.pyc
 PROTOTYPE_FILTER = awk '3 ~ /.*\.py/ { 2 = "cswpycompile" } { 
print }'


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.
___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[10695] csw/mgar/pkg/pycairo/trunk

2010-08-04 Thread opk
Revision: 10695
  http://gar.svn.sourceforge.net/gar/?rev=10695&view=rev
Author:   opk
Date: 2010-08-04 09:53:03 + (Wed, 04 Aug 2010)

Log Message:
---
upgrade to 1.8.10

Modified Paths:
--
csw/mgar/pkg/pycairo/trunk/Makefile
csw/mgar/pkg/pycairo/trunk/checksums

Modified: csw/mgar/pkg/pycairo/trunk/Makefile
===
--- csw/mgar/pkg/pycairo/trunk/Makefile 2010-08-04 09:08:40 UTC (rev 10694)
+++ csw/mgar/pkg/pycairo/trunk/Makefile 2010-08-04 09:53:03 UTC (rev 10695)
@@ -1,5 +1,5 @@
 GARNAME  = pycairo
-GARVERSION   = 1.8.8
+GARVERSION   = 1.8.10
 CATEGORIES   = lib
 
 DESCRIPTION  = Python binding for Cairo library
@@ -9,7 +9,7 @@
 endef
 
 MASTER_SITES  = http://www.cairographics.org/releases/
-DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz
+DISTFILES = py2cairo-$(GARVERSION).tar.gz
 
 EXTRA_MERGE_EXCLUDE_FILES = .*\.pyo .*\.pyc 
 PROTOTYPE_FILTER = awk '3 ~ /.*\.py/ { 2 = "cswpycompile" } { 
print }'
@@ -18,7 +18,7 @@
 
 # We define upstream file regex so we can be notifed of 
 # new upstream software release
-UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz
+UFILES_REGEX = py2cairo-(\d+(?:\.\d+)*).tar.gz
 PACKAGES = CSWpy-cairo
 
 CATALOGNAME_CSWpy-cairo  = py_cairo

Modified: csw/mgar/pkg/pycairo/trunk/checksums
===
--- csw/mgar/pkg/pycairo/trunk/checksums2010-08-04 09:08:40 UTC (rev 
10694)
+++ csw/mgar/pkg/pycairo/trunk/checksums2010-08-04 09:53:03 UTC (rev 
10695)
@@ -1 +1 @@
-054da6c125cb427a003f5fd6c54f853e  pycairo-1.8.8.tar.gz
+87421a6a70304120555ba7ba238f3dc3  py2cairo-1.8.10.tar.gz


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.
___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[10696] csw/mgar/pkg/pycairo/trunk/Makefile

2010-08-04 Thread opk
Revision: 10696
  http://gar.svn.sourceforge.net/gar/?rev=10696&view=rev
Author:   opk
Date: 2010-08-04 10:42:51 + (Wed, 04 Aug 2010)

Log Message:
---
fix problem which meant it was losing default CFLAGS

Modified Paths:
--
csw/mgar/pkg/pycairo/trunk/Makefile

Modified: csw/mgar/pkg/pycairo/trunk/Makefile
===
--- csw/mgar/pkg/pycairo/trunk/Makefile 2010-08-04 09:53:03 UTC (rev 10695)
+++ csw/mgar/pkg/pycairo/trunk/Makefile 2010-08-04 10:42:51 UTC (rev 10696)
@@ -28,7 +28,7 @@
 
 CAIRO_LIBS = -L/opt/csw/lib -R/opt/csw/lib/$$ISALIST -lcairo
 CAIRO_CFLAGS = -I/opt/csw/include -I/opt/csw/include/cairo
-COMPILER_EXPORTS += CAIRO_LIBS CAIRO_CFLAGS
+EXTRA_CONFIGURE_EXPORTS += CAIRO_LIBS CAIRO_CFLAGS
 CONFIGURE_ARGS = $(DIRPATHS)
 
 TEST_TARGET = check


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.
___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[10699] csw/mgar/pkg/pycairo/trunk/Makefile

2010-08-04 Thread opk
Revision: 10699
  http://gar.svn.sourceforge.net/gar/?rev=10699&view=rev
Author:   opk
Date: 2010-08-04 13:30:57 + (Wed, 04 Aug 2010)

Log Message:
---
fix rpath issue found by checkpkg

Modified Paths:
--
csw/mgar/pkg/pycairo/trunk/Makefile

Modified: csw/mgar/pkg/pycairo/trunk/Makefile
===
--- csw/mgar/pkg/pycairo/trunk/Makefile 2010-08-04 12:25:23 UTC (rev 10698)
+++ csw/mgar/pkg/pycairo/trunk/Makefile 2010-08-04 13:30:57 UTC (rev 10699)
@@ -26,7 +26,7 @@
 
 RUNTIME_DEP_PKGS_CSWpy-cairo = CSWlibcairo CSWpython
 
-CAIRO_LIBS = -L/opt/csw/lib -R/opt/csw/lib/$$ISALIST -lcairo
+CAIRO_LIBS = -L/opt/csw/lib -R/opt/csw/lib/\$$ISALIST -lcairo
 CAIRO_CFLAGS = -I/opt/csw/include -I/opt/csw/include/cairo
 EXTRA_CONFIGURE_EXPORTS += CAIRO_LIBS CAIRO_CFLAGS
 CONFIGURE_ARGS = $(DIRPATHS)


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.
___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[10703] csw/mgar/pkg/ipython/trunk/Makefile

2010-08-05 Thread opk
Revision: 10703
  http://gar.svn.sourceforge.net/gar/?rev=10703&view=rev
Author:   opk
Date: 2010-08-05 10:20:46 + (Thu, 05 Aug 2010)

Log Message:
---
download location has changed. setup.py still seg faults so this isn't much use

Modified Paths:
--
csw/mgar/pkg/ipython/trunk/Makefile

Modified: csw/mgar/pkg/ipython/trunk/Makefile
===
--- csw/mgar/pkg/ipython/trunk/Makefile 2010-08-05 10:15:10 UTC (rev 10702)
+++ csw/mgar/pkg/ipython/trunk/Makefile 2010-08-05 10:20:46 UTC (rev 10703)
@@ -9,7 +9,7 @@
or other textual content for output generation on the web
 endef
 
-MASTER_SITES = http://ipython.scipy.org/dist/
+MASTER_SITES = http://ipython.scipy.org/dist/$(GARVERSION)/
 DISTFILES  = $(GARNAME)-$(GARVERSION).tar.gz
 
 ARCHALL_CSWipython = 1


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.
___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[11294] csw/mgar/pkg/lang-python/pygobject/trunk/Makefile

2010-10-13 Thread opk
Revision: 11294
  http://gar.svn.sourceforge.net/gar/?rev=11294&view=rev
Author:   opk
Date: 2010-10-13 21:49:33 + (Wed, 13 Oct 2010)

Log Message:
---
revert package name as it predated the convention so shouldn't be renamed

Modified Paths:
--
csw/mgar/pkg/lang-python/pygobject/trunk/Makefile

Modified: csw/mgar/pkg/lang-python/pygobject/trunk/Makefile
===
--- csw/mgar/pkg/lang-python/pygobject/trunk/Makefile   2010-10-13 18:34:17 UTC 
(rev 11293)
+++ csw/mgar/pkg/lang-python/pygobject/trunk/Makefile   2010-10-13 21:49:33 UTC 
(rev 11294)
@@ -13,11 +13,11 @@
 
 STRIP_LIBTOOL = 1
 
-PACKAGES = CSWpy-gobject
-RUNTIME_DEP_PKGS_CSWpy-gobject  = CSWpython CSWggettextrt CSWglib2
+PACKAGES = CSWpygobject
+RUNTIME_DEP_PKGS_CSWpygobject  = CSWpython CSWggettextrt CSWglib2
 
-CATALOGNAME_CSWpy-gobject = py_gobject
-SPKG_DESC_CSWpy-gobject = $(DESCRIPTION)
+CATALOGNAME_CSWpygobject = py_gobject
+SPKG_DESC_CSWpygobject = $(DESCRIPTION)
 PYCOMPILE = 1
 
 PATCHFILES = 0001-forcing-lglib-2.0.patch
@@ -32,4 +32,7 @@
 TEST_TARGET = check
 TEST_SCRIPTS =
 
+# This package predates the convention and renaming is problematic
+CHECKPKG_OVERRIDES_CSWpygobject += pkgname-does-not-start-with-CSWpy-
+
 include gar/category.mk


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.
___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[11298] csw/mgar/pkg/lang-python

2010-10-14 Thread opk
Revision: 11298
  http://gar.svn.sourceforge.net/gar/?rev=11298&view=rev
Author:   opk
Date: 2010-10-14 10:28:15 + (Thu, 14 Oct 2010)

Log Message:
---
add py-nose package for unit testing framework used by numpy

Added Paths:
---
csw/mgar/pkg/lang-python/nose/
csw/mgar/pkg/lang-python/nose/Makefile
csw/mgar/pkg/lang-python/nose/branches/
csw/mgar/pkg/lang-python/nose/tags/
csw/mgar/pkg/lang-python/nose/trunk/
csw/mgar/pkg/lang-python/nose/trunk/Makefile
csw/mgar/pkg/lang-python/nose/trunk/checksums
csw/mgar/pkg/lang-python/nose/trunk/files/

Added: csw/mgar/pkg/lang-python/nose/Makefile
===
--- csw/mgar/pkg/lang-python/nose/Makefile  (rev 0)
+++ csw/mgar/pkg/lang-python/nose/Makefile  2010-10-14 10:28:15 UTC (rev 
11298)
@@ -0,0 +1,15 @@
+# vim: ft=make ts=4 sw=4 noet
+
+default:
+   @echo "You are in the pkg/ directory."
+
+%:
+   $(MAKE) -C trunk $* 
+
+paranoid-%:
+   $(MAKE) -C trunk $* || exit 2 
+
+export BUILDLOG ?= $(shell pwd)/buildlog.txt
+
+report-%:
+   $(MAKE) -C trunk $* || echo "   *** make $* in $$i failed ***" >> 
$(BUILDLOG) 


Property changes on: csw/mgar/pkg/lang-python/nose/Makefile
___
Added: svn:keywords
   + URL Id


Property changes on: csw/mgar/pkg/lang-python/nose/trunk
___
Added: svn:ignore
   + cookies
download
work


Added: svn:externals
   + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2


Added: csw/mgar/pkg/lang-python/nose/trunk/Makefile
===
--- csw/mgar/pkg/lang-python/nose/trunk/Makefile
(rev 0)
+++ csw/mgar/pkg/lang-python/nose/trunk/Makefile2010-10-14 10:28:15 UTC 
(rev 11298)
@@ -0,0 +1,34 @@
+GARNAME = nose
+GARVERSION = 0.11.2
+CATEGORIES = python
+
+DESCRIPTION = Nose extends unittest to make testing easier
+define BLURB
+  Nose collects tests from unittest.TestCase subclasses. But you can
+  also write simple test functions, as well as test classes that are not
+  subclasses of unittest.TestCase. nose also supplies a number of
+  helpful functions for writing timed tests, testing for exceptions, and
+  other common use cases.
+endef
+
+MASTER_SITES = http://somethingaboutorange.com/mrl/projects/$(GARNAME)/
+DISTFILES  = $(GARNAME)-$(GARVERSION).tar.gz
+
+PACKAGES = CSWpy-nose
+CATALOGNAME = py_nose
+SPKG_DESC = $(DESCRIPTION)
+
+EXTRA_MERGE_EXCLUDE_FILES += .*\.pyo .*\.pyc
+
+UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz
+
+TEST_SCRIPTS =
+# tests fail because some multiprocessing module doesn't like Solaris sem_open
+# TEST_SCRIPTS = $(WORKSRC)/selftest.py
+
+LICENSE = lgpl.txt
+ARCHALL = 1
+
+include gar/category.mk
+
+INSTALL_ARGS += --install-data=$(prefix)/share


Property changes on: csw/mgar/pkg/lang-python/nose/trunk/Makefile
___
Added: svn:keywords
   + Id

Added: csw/mgar/pkg/lang-python/nose/trunk/checksums
===
--- csw/mgar/pkg/lang-python/nose/trunk/checksums   
(rev 0)
+++ csw/mgar/pkg/lang-python/nose/trunk/checksums   2010-10-14 10:28:15 UTC 
(rev 11298)
@@ -0,0 +1 @@
+cae8bb7a080871886602489677474036  nose-0.11.2.tar.gz


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.
___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[11299] csw/mgar/pkg/lang-python/nose/tags/nose-0.11.2, REV= 2010.10.14/

2010-10-14 Thread opk
Revision: 11299
  http://gar.svn.sourceforge.net/gar/?rev=11299&view=rev
Author:   opk
Date: 2010-10-14 10:36:18 + (Thu, 14 Oct 2010)

Log Message:
---
nose: Tag as release 0.11.2,REV=2010.10.14

Added Paths:
---
csw/mgar/pkg/lang-python/nose/tags/nose-0.11.2,REV=2010.10.14/


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.
___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[11304] csw/mgar/pkg/lang-python/pycairo/trunk/Makefile

2010-10-15 Thread opk
Revision: 11304
  http://gar.svn.sourceforge.net/gar/?rev=11304&view=rev
Author:   opk
Date: 2010-10-15 09:59:52 + (Fri, 15 Oct 2010)

Log Message:
---
revert name as we can't change both catalogue name and package name together
(package predates convention on python package naming)

Modified Paths:
--
csw/mgar/pkg/lang-python/pycairo/trunk/Makefile

Modified: csw/mgar/pkg/lang-python/pycairo/trunk/Makefile
===
--- csw/mgar/pkg/lang-python/pycairo/trunk/Makefile 2010-10-15 09:57:29 UTC 
(rev 11303)
+++ csw/mgar/pkg/lang-python/pycairo/trunk/Makefile 2010-10-15 09:59:52 UTC 
(rev 11304)
@@ -20,12 +20,10 @@
 # new upstream software release
 UFILES_REGEX = py2cairo-(\d+(?:\.\d+)*).tar.gz
 PACKAGES = CSWpy-cairo
+CATALOGNAME  = py_cairo
 
-CATALOGNAME_CSWpy-cairo  = py_cairo
-SPKG_DESC_CSWpy-cairo= $(DESCRIPTION)
+RUNTIME_DEP_PKGS = CSWlibcairo CSWpython
 
-RUNTIME_DEP_PKGS_CSWpy-cairo = CSWlibcairo CSWpython
-
 CAIRO_LIBS = -L/opt/csw/lib -R/opt/csw/lib/\$$ISALIST -lcairo
 CAIRO_CFLAGS = -I/opt/csw/include -I/opt/csw/include/cairo
 EXTRA_CONFIGURE_EXPORTS += CAIRO_LIBS CAIRO_CFLAGS


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.
___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[11317] csw/mgar/pkg/lang-python

2010-10-18 Thread opk
Revision: 11317
  http://gar.svn.sourceforge.net/gar/?rev=11317&view=rev
Author:   opk
Date: 2010-10-18 08:16:22 + (Mon, 18 Oct 2010)

Log Message:
---
add package for python-dateutil

Added Paths:
---
csw/mgar/pkg/lang-python/python-dateutil/
csw/mgar/pkg/lang-python/python-dateutil/Makefile
csw/mgar/pkg/lang-python/python-dateutil/branches/
csw/mgar/pkg/lang-python/python-dateutil/tags/
csw/mgar/pkg/lang-python/python-dateutil/trunk/
csw/mgar/pkg/lang-python/python-dateutil/trunk/Makefile
csw/mgar/pkg/lang-python/python-dateutil/trunk/checksums
csw/mgar/pkg/lang-python/python-dateutil/trunk/files/

Added: csw/mgar/pkg/lang-python/python-dateutil/Makefile
===
--- csw/mgar/pkg/lang-python/python-dateutil/Makefile   
(rev 0)
+++ csw/mgar/pkg/lang-python/python-dateutil/Makefile   2010-10-18 08:16:22 UTC 
(rev 11317)
@@ -0,0 +1,15 @@
+# vim: ft=make ts=4 sw=4 noet
+
+default:
+   @echo "You are in the pkg/ directory."
+
+%:
+   $(MAKE) -C trunk $* 
+
+paranoid-%:
+   $(MAKE) -C trunk $* || exit 2 
+
+export BUILDLOG ?= $(shell pwd)/buildlog.txt
+
+report-%:
+   $(MAKE) -C trunk $* || echo "   *** make $* in $$i failed ***" >> 
$(BUILDLOG) 


Property changes on: csw/mgar/pkg/lang-python/python-dateutil/Makefile
___
Added: svn:keywords
   + URL Id


Property changes on: csw/mgar/pkg/lang-python/python-dateutil/trunk
___
Added: svn:ignore
   + cookies
download
work


Added: svn:externals
   + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2


Added: csw/mgar/pkg/lang-python/python-dateutil/trunk/Makefile
===
--- csw/mgar/pkg/lang-python/python-dateutil/trunk/Makefile 
(rev 0)
+++ csw/mgar/pkg/lang-python/python-dateutil/trunk/Makefile 2010-10-18 
08:16:22 UTC (rev 11317)
@@ -0,0 +1,34 @@
+# $Id$
+GARNAME = python-dateutil
+GARVERSION = 1.5
+CATEGORIES = python
+
+DESCRIPTION = Dateutil provides powerful extensions to the standard python 
datetime module
+define BLURB
+  Dateutil offers functionality such as computing relative time deltas,
+  computing dates based on flexible recurrence rules, generic parsing of
+  dates, handling of tzfile(5) format files and computing of Easter
+  Sunday for various calendars.
+endef
+
+MASTER_SITES = http://labix.org/download/$(GARNAME)/
+DISTFILES  = $(GARNAME)-$(GARVERSION).tar.gz
+SPKG_SOURCEURL = http://labix.org/$(GARNAME)/
+BUILD_DEP_PKGS = CSWpysetuptools
+PACKAGES = CSWpy-dateutil
+CATALOGNAME = py_dateutil
+
+EXTRA_MERGE_EXCLUDE_FILES += .*\.pyo .*\.pyc
+
+UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz
+
+TEST_SCRIPTS = dateutil
+
+LICENSE = LICENSE
+ARCHALL = 1
+
+include gar/category.mk
+
+test-dateutil:
+   (cd $(WORKSRC); python test.py)
+   @$(MAKECOOKIE)


Property changes on: csw/mgar/pkg/lang-python/python-dateutil/trunk/Makefile
___
Added: svn:keywords
   + Id

Added: csw/mgar/pkg/lang-python/python-dateutil/trunk/checksums
===
--- csw/mgar/pkg/lang-python/python-dateutil/trunk/checksums
(rev 0)
+++ csw/mgar/pkg/lang-python/python-dateutil/trunk/checksums2010-10-18 
08:16:22 UTC (rev 11317)
@@ -0,0 +1 @@
+35f3732db3f2cc4afdc68a8533b60a52  python-dateutil-1.5.tar.gz


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.
___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[11318] csw/mgar/pkg/lang-python

2010-10-18 Thread opk
Revision: 11318
  http://gar.svn.sourceforge.net/gar/?rev=11318&view=rev
Author:   opk
Date: 2010-10-18 09:15:45 + (Mon, 18 Oct 2010)

Log Message:
---
add package for pytz python module

Added Paths:
---
csw/mgar/pkg/lang-python/pytz/
csw/mgar/pkg/lang-python/pytz/branches/
csw/mgar/pkg/lang-python/pytz/tags/
csw/mgar/pkg/lang-python/pytz/trunk/
csw/mgar/pkg/lang-python/pytz/trunk/Makefile
csw/mgar/pkg/lang-python/pytz/trunk/checksums
csw/mgar/pkg/lang-python/pytz/trunk/files/


Property changes on: csw/mgar/pkg/lang-python/pytz/trunk
___
Added: svn:ignore
   + cookies
download
work


Added: svn:externals
   + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2


Added: csw/mgar/pkg/lang-python/pytz/trunk/Makefile
===
--- csw/mgar/pkg/lang-python/pytz/trunk/Makefile
(rev 0)
+++ csw/mgar/pkg/lang-python/pytz/trunk/Makefile2010-10-18 09:15:45 UTC 
(rev 11318)
@@ -0,0 +1,28 @@
+# $Id$
+GARNAME = pytz
+GARVERSION = 2010l
+CATEGORIES = python
+
+DESCRIPTION = Pytz brings the Olson timezone database into Python.
+define BLURB
+  pytz brings the Olson tz database into Python. This library allows
+  accurate and cross platform timezone calculations using Python 2.3
+  or higher. It also solves the issue of ambiguous times at the end
+  of daylight savings, which you can read more about in the Python
+  Library Reference (datetime.tzinfo).
+endef
+
+MASTER_SITES = http://pypi.python.org/packages/source/p/pytz/
+DISTFILES  = $(GARNAME)-$(GARVERSION).tar.bz2
+SPKG_SOURCEURL = http://$(GARNAME).sourceforge.net/
+PACKAGES = CSWpy-tz
+CATALOGNAME = py_tz
+
+EXTRA_MERGE_EXCLUDE_FILES += .*\.pyo .*\.pyc
+
+UFILES_REGEX = $(GARNAME)-(\d+[a-z]).tar.bz2
+
+LICENSE = LICENSE.txt
+ARCHALL = 1
+
+include gar/category.mk


Property changes on: csw/mgar/pkg/lang-python/pytz/trunk/Makefile
___
Added: svn:keywords
   + Id

Added: csw/mgar/pkg/lang-python/pytz/trunk/checksums
===
--- csw/mgar/pkg/lang-python/pytz/trunk/checksums   
(rev 0)
+++ csw/mgar/pkg/lang-python/pytz/trunk/checksums   2010-10-18 09:15:45 UTC 
(rev 11318)
@@ -0,0 +1 @@
+8ea38ffd627f2169b597442928ea5967  pytz-2010l.tar.bz2


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.
___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[11326] csw/mgar/pkg/lang-python/pygobject/trunk/Makefile

2010-10-18 Thread opk
Revision: 11326
  http://gar.svn.sourceforge.net/gar/?rev=11326&view=rev
Author:   opk
Date: 2010-10-18 15:56:22 + (Mon, 18 Oct 2010)

Log Message:
---
split into separate packages for -devel and the library

Modified Paths:
--
csw/mgar/pkg/lang-python/pygobject/trunk/Makefile

Modified: csw/mgar/pkg/lang-python/pygobject/trunk/Makefile
===
--- csw/mgar/pkg/lang-python/pygobject/trunk/Makefile   2010-10-18 14:34:27 UTC 
(rev 11325)
+++ csw/mgar/pkg/lang-python/pygobject/trunk/Makefile   2010-10-18 15:56:22 UTC 
(rev 11326)
@@ -13,16 +13,30 @@
 
 STRIP_LIBTOOL = 1
 
-PACKAGES = CSWpygobject
-RUNTIME_DEP_PKGS_CSWpygobject  = CSWpython CSWggettextrt CSWglib2
+PACKAGES = CSWpy-gobject-devel CSWpygobject CSWlibpyglib-2-0-python0 
 
 CATALOGNAME_CSWpygobject = py_gobject
 SPKG_DESC_CSWpygobject = $(DESCRIPTION)
+CHECKPKG_OVERRIDES_CSWpygobject += pkgname-does-not-start-with-CSWpy-
+RUNTIME_DEP_PKGS_CSWpygobject = CSWpython CSWggettextrt CSWglib2
+RUNTIME_DEP_PKGS_CSWpygobject += CSWlibpyglib-2-0-python0
+PKGFILES_CSWpygobject = $(libdir)/python/site-packages/.*
+
+SPKG_DESC_CSWlibpyglib-2-0-python0 = Runtime library for the Python GObject 
library
+CATALOGNAME_CSWlibpyglib-2-0-python0 = libpyglib_2_0_python0
+PKGFILES_CSWlibpyglib-2-0-python0 = $(libdir)/libpyglib-2.0-python.so.0.*
+RUNTIME_DEP_PKGS_CSWlibpyglib-2-0-python0 = CSWggettextrt CSWglib2
+
+SPKG_DESC_CSWpy-gobject-devel = Development files for the Python GObject 
library
+CATALOGNAME_CSWpy-gobject-devel = py_gobject_devel
+RUNTIME_DEP_PKGS_CSWpy-gobject-devel = CSWpython
+ARCHALL_CSWpy-gobject-devel = 1
+
 PYCOMPILE = 1
 
 PATCHFILES = 0001-forcing-lglib-2.0.patch
 
-EXTRA_MERGE_EXCLUDE_FILES += .*\.egg-info.* .*\.pyo .*\.pyc
+EXTRA_MERGE_EXCLUDE_FILES += .*\.pyo .*\.pyc
 
 UFILES_REGEX = (\d+(?:\.\d+)*).tar.bz2
 CONFIGURE_ARGS  = $(DIRPATHS)


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.
___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[11331] csw/mgar/pkg/lang-python/pygobject/trunk/Makefile

2010-10-18 Thread opk
Revision: 11331
  http://gar.svn.sourceforge.net/gar/?rev=11331&view=rev
Author:   opk
Date: 2010-10-18 22:13:05 + (Mon, 18 Oct 2010)

Log Message:
---
shorten CSWlibpyglib-2-0-python0 package name to fit in the 20 character limit
go back again to the name CSWpy-gobject, will try to fix up all dependencies

Modified Paths:
--
csw/mgar/pkg/lang-python/pygobject/trunk/Makefile

Modified: csw/mgar/pkg/lang-python/pygobject/trunk/Makefile
===
--- csw/mgar/pkg/lang-python/pygobject/trunk/Makefile   2010-10-18 20:55:19 UTC 
(rev 11330)
+++ csw/mgar/pkg/lang-python/pygobject/trunk/Makefile   2010-10-18 22:13:05 UTC 
(rev 11331)
@@ -13,24 +13,25 @@
 
 STRIP_LIBTOOL = 1
 
-PACKAGES = CSWpy-gobject-devel CSWpygobject CSWlibpyglib-2-0-python0 
+PACKAGES = CSWpy-gobject-devel CSWpy-gobject CSWlibpyglib-2-0-py0 
 
-CATALOGNAME_CSWpygobject = py_gobject
-SPKG_DESC_CSWpygobject = $(DESCRIPTION)
-CHECKPKG_OVERRIDES_CSWpygobject += pkgname-does-not-start-with-CSWpy-
-RUNTIME_DEP_PKGS_CSWpygobject = CSWpython CSWggettextrt CSWglib2
-RUNTIME_DEP_PKGS_CSWpygobject += CSWlibpyglib-2-0-python0
-PKGFILES_CSWpygobject = $(libdir)/python/site-packages/.*
+CATALOGNAME_CSWpy-gobject = py_gobject
+SPKG_DESC_CSWpy-gobject = $(DESCRIPTION)
+RUNTIME_DEP_PKGS_CSWpy-gobject = CSWpython CSWggettextrt CSWglib2
+RUNTIME_DEP_PKGS_CSWpy-gobject += CSWlibpyglib-2-0-py0
+INCOMPATIBLE_PKGS_CSWpy-gobject = CSWpygobject
+PKGFILES_CSWpy-gobject = $(libdir)/python/site-packages/.*
 
-SPKG_DESC_CSWlibpyglib-2-0-python0 = Runtime library for the Python GObject 
library
-CATALOGNAME_CSWlibpyglib-2-0-python0 = libpyglib_2_0_python0
-PKGFILES_CSWlibpyglib-2-0-python0 = $(libdir)/libpyglib-2.0-python.so.0.*
-RUNTIME_DEP_PKGS_CSWlibpyglib-2-0-python0 = CSWggettextrt CSWglib2
+SPKG_DESC_CSWlibpyglib-2-0-py0 = Runtime library for the Python GObject library
+CATALOGNAME_CSWlibpyglib-2-0-py0 = libpyglib_2_0_py0
+PKGFILES_CSWlibpyglib-2-0-py0 = $(libdir)/libpyglib-2.0-python.so.0.*
+RUNTIME_DEP_PKGS_CSWlibpyglib-2-0-py0 = CSWggettextrt CSWglib2
 
+# soname results in a package name that is too long so it was shortened
+CHECKPKG_OVERRIDES_CSWlibpyglib-2-0-py0 += 
shared-lib-pkgname-mismatch|file=opt/csw/lib/libpyglib-2.0-python.so.0.0.0|soname=libpyglib-2.0-python.so.0|pkgname=CSWlibpyglib-2-0-py0|expected=['CSWlibpyglib-2-0-python0',|'CSWlibpyglib-2-0-python-0']
 SPKG_DESC_CSWpy-gobject-devel = Development files for the Python GObject 
library
 CATALOGNAME_CSWpy-gobject-devel = py_gobject_devel
 RUNTIME_DEP_PKGS_CSWpy-gobject-devel = CSWpython
-ARCHALL_CSWpy-gobject-devel = 1
 
 PYCOMPILE = 1
 
@@ -46,7 +47,4 @@
 TEST_TARGET = check
 TEST_SCRIPTS =
 
-# This package predates the convention and renaming is problematic
-CHECKPKG_OVERRIDES_CSWpygobject += pkgname-does-not-start-with-CSWpy-
-
 include gar/category.mk


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.
___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


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

2010-10-25 Thread opk
Revision: 11392
  http://gar.svn.sourceforge.net/gar/?rev=11392&view=rev
Author:   opk
Date: 2010-10-25 11:23:15 + (Mon, 25 Oct 2010)

Log Message:
---
add nmh to gar

Added Paths:
---
csw/mgar/pkg/nmh/
csw/mgar/pkg/nmh/Makefile
csw/mgar/pkg/nmh/branches/
csw/mgar/pkg/nmh/tags/
csw/mgar/pkg/nmh/trunk/
csw/mgar/pkg/nmh/trunk/Makefile
csw/mgar/pkg/nmh/trunk/checksums
csw/mgar/pkg/nmh/trunk/files/
csw/mgar/pkg/nmh/trunk/files/-skip-chgrp-of-inc.patch

Added: csw/mgar/pkg/nmh/Makefile
===
--- csw/mgar/pkg/nmh/Makefile   (rev 0)
+++ csw/mgar/pkg/nmh/Makefile   2010-10-25 11:23:15 UTC (rev 11392)
@@ -0,0 +1,15 @@
+# vim: ft=make ts=4 sw=4 noet
+
+default:
+   @echo "You are in the pkg/ directory."
+
+%:
+   $(MAKE) -C trunk $* 
+
+paranoid-%:
+   $(MAKE) -C trunk $* || exit 2 
+
+export BUILDLOG ?= $(shell pwd)/buildlog.txt
+
+report-%:
+   $(MAKE) -C trunk $* || echo "   *** make $* in $$i failed ***" >> 
$(BUILDLOG) 


Property changes on: csw/mgar/pkg/nmh/Makefile
___
Added: svn:keywords
   + URL Id


Property changes on: csw/mgar/pkg/nmh/trunk
___
Added: svn:ignore
   + cookies
download
work


Added: svn:externals
   + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2


Added: csw/mgar/pkg/nmh/trunk/Makefile
===
--- csw/mgar/pkg/nmh/trunk/Makefile (rev 0)
+++ csw/mgar/pkg/nmh/trunk/Makefile 2010-10-25 11:23:15 UTC (rev 11392)
@@ -0,0 +1,29 @@
+# $Id$
+GARNAME = nmh
+GARVERSION = 1.3
+CATEGORIES = apps
+
+DESCRIPTION = Powerful electronic mail handling system
+define BLURB
+ This is the nmh mail user agent, a command-line based mail reader that
+ is powerful and extensible. Unlike most mail user agents, nmh is not a
+ single program, rather it is a set of programs that are run from the
+ shell. This allows the user to utilize the full power of the Unix
+ shell in conjunction with nmh.
+endef
+
+MASTER_SITES = http://download.savannah.gnu.org/releases/$(GARNAME)/
+DISTFILES  = nmh-$(GARVERSION).tar.gz
+SPKG_SOURCEURL = http://www.nongnu.org/nmh/
+UFILES_REGEX = -(\d+(?:\.\d+)*).tar.gz
+
+RUNTIME_DEP_PKGS += CSWiconv
+PATCHFILES += -skip-chgrp-of-inc.patch
+LICENSE = COPYRIGHT
+
+CONFIGURE_ARGS = --enable-pop --enable-masquerade='' --with-mts=sendmail \
+  --prefix=$(prefix) --mandir=$(mandir) --datadir=$(datadir)/nmh \
+  --libdir=$(libdir)/nmh --sysconfdir=$(sysconfdir)/nmh 
+TEST_SCRIPTS =
+
+include gar/category.mk


Property changes on: csw/mgar/pkg/nmh/trunk/Makefile
___
Added: svn:keywords
   + Id

Added: csw/mgar/pkg/nmh/trunk/checksums
===
--- csw/mgar/pkg/nmh/trunk/checksums(rev 0)
+++ csw/mgar/pkg/nmh/trunk/checksums2010-10-25 11:23:15 UTC (rev 11392)
@@ -0,0 +1 @@
+a52d1f93e780d7a045207451ce6c9a4e  nmh-1.3.tar.gz

Added: csw/mgar/pkg/nmh/trunk/files/-skip-chgrp-of-inc.patch
===
--- csw/mgar/pkg/nmh/trunk/files/-skip-chgrp-of-inc.patch   
(rev 0)
+++ csw/mgar/pkg/nmh/trunk/files/-skip-chgrp-of-inc.patch   2010-10-25 
11:23:15 UTC (rev 11392)
@@ -0,0 +1,29 @@
+From db3d12ec17a80fad52a5a463ad42bfbc6d70ad91 Mon Sep 17 00:00:00 2001
+From: Oliver Kiddle 
+Date: Mon, 25 Oct 2010 12:52:51 +0200
+Subject: [PATCH] skip chgrp of inc
+
+---
+ uip/Makefile.in |6 +-
+ 1 files changed, 1 insertions(+), 5 deletions(-)
+
+diff --git a/uip/Makefile.in b/uip/Makefile.in
+index b3c6717..2919bb9 100644
+--- a/uip/Makefile.in
 b/uip/Makefile.in
+@@ -282,11 +282,7 @@ install-misc:
+ 
+ # install commands with special installation needs (thus no $(SCMDS) use here)
+ install-scmds:
+-  if test x$(SETGID_MAIL) != x; then \
+-$(INSTALL_PROGRAM) -g $(MAIL_SPOOL_GRP) -m 2755 inc 
$(DESTDIR)$(bindir)/$$cmd; \
+-  else \
+-$(INSTALL_PROGRAM) inc $(DESTDIR)$(bindir)/$$cmd; \
+-  fi
++  $(INSTALL_PROGRAM) inc $(DESTDIR)$(bindir)/$$cmd
+ 
+ uninstall:
+   for cmd in $(CMDS); do \
+-- 
+1.7.3
+


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.
___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


[csw-devel] SF.net SVN: gar:[13150] csw/mgar/pkg/zsh/trunk

2011-01-31 Thread opk
Revision: 13150
  http://gar.svn.sourceforge.net/gar/?rev=13150&view=rev
Author:   opk
Date: 2011-01-31 13:40:28 + (Mon, 31 Jan 2011)

Log Message:
---
update zsh to 4.3.11

Modified Paths:
--
csw/mgar/pkg/zsh/trunk/Makefile
csw/mgar/pkg/zsh/trunk/checksums

Modified: csw/mgar/pkg/zsh/trunk/Makefile
===
--- csw/mgar/pkg/zsh/trunk/Makefile 2011-01-31 09:43:20 UTC (rev 13149)
+++ csw/mgar/pkg/zsh/trunk/Makefile 2011-01-31 13:40:28 UTC (rev 13150)
@@ -1,5 +1,5 @@
 NAME = zsh
-VERSION = 4.3.10
+VERSION = 4.3.11
 CATEGORIES = devel
 
 DESCRIPTION = Powerful UNIX shell

Modified: csw/mgar/pkg/zsh/trunk/checksums
===
--- csw/mgar/pkg/zsh/trunk/checksums2011-01-31 09:43:20 UTC (rev 13149)
+++ csw/mgar/pkg/zsh/trunk/checksums2011-01-31 13:40:28 UTC (rev 13150)
@@ -1,4 +1 @@
-842c07918a370f97ef79b3eda4b86719  download/CSWzsh.gspec
-811a4ded41abe382f7044cdce4b28317  download/CSWzsh.postinstall
-c8a51272041c1a0268f1ea5a8a293395  download/CSWzsh.postremove
-74c5b275544400082a1cde806c98682a  download/zsh-4.3.10.tar.bz2
+3225c7f53b69f395e95723585d6785ed  zsh-4.3.11.tar.bz2


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.
___
devel mailing list
devel@lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/devel


SF.net SVN: gar:[22571] csw/mgar/pkg/octave/trunk

2013-11-23 Thread opk
Revision: 22571
  http://gar.svn.sourceforge.net/gar/?rev=22571&view=rev
Author:   opk
Date: 2013-11-23 16:52:34 + (Sat, 23 Nov 2013)
Log Message:
---
use Solaris Studio sunperf library for BLAS/Lapack to build octave

Modified Paths:
--
csw/mgar/pkg/octave/trunk/Makefile
csw/mgar/pkg/octave/trunk/checksums

Added Paths:
---
csw/mgar/pkg/octave/trunk/files/
csw/mgar/pkg/octave/trunk/files/0001-make-script-work-with-Solaris-sh.patch
csw/mgar/pkg/octave/trunk/files/0002-workaround-conflict-with-gets.patch

Modified: csw/mgar/pkg/octave/trunk/Makefile
===
--- csw/mgar/pkg/octave/trunk/Makefile  2013-11-23 08:53:43 UTC (rev 22570)
+++ csw/mgar/pkg/octave/trunk/Makefile  2013-11-23 16:52:34 UTC (rev 22571)
@@ -1,10 +1,7 @@
 # $Id$
 
-# TBD:
-#  configure: error: You are required to have BLAS and LAPACK libraries
-
 NAME = octave
-VERSION = 3.6.3
+VERSION = 3.6.4
 GARTYPE = v2
 
 DESCRIPTION = The GNU Octave language for numerical computations
@@ -14,9 +11,12 @@
 MASTER_SITES = $(GNU_MIRROR)
 DISTFILES= $(NAME)-$(VERSION).tar.bz2
 
-CONFIGURE_ARGS = $(DIRPATHS)
+PATCHFILES += 0001-make-script-work-with-Solaris-sh.patch 
0002-workaround-conflict-with-gets.patch
 
+# using the sunperf library for blas and lapack and therefore also the
+# sunf90 Fortran compiler but the C++ will only build with g++. 
 GARCOMPILER = GNU
+CONFIGURE_ARGS = $(DIRPATHS) F77=sunf90 --with-lapack=sunperf 
--with-blas=sunperf --without-opengl LD_LIBRARY_PATH="/opt/csw/lib" 
LDFLAGS="-L/opt/csw/lib -R/opt/csw/lib" FFLAGS="-xO2"
 
 include gar/category.mk
 

Modified: csw/mgar/pkg/octave/trunk/checksums
===
--- csw/mgar/pkg/octave/trunk/checksums 2013-11-23 08:53:43 UTC (rev 22570)
+++ csw/mgar/pkg/octave/trunk/checksums 2013-11-23 16:52:34 UTC (rev 22571)
@@ -1 +1 @@
-29ab7e502e5c963c058906f788670245  octave-3.6.3.tar.bz2
+e0d3e5e3d38a66d3f8593ba065c6e2fd  octave-3.6.4.tar.bz2

Added: 
csw/mgar/pkg/octave/trunk/files/0001-make-script-work-with-Solaris-sh.patch
===
--- csw/mgar/pkg/octave/trunk/files/0001-make-script-work-with-Solaris-sh.patch 
(rev 0)
+++ csw/mgar/pkg/octave/trunk/files/0001-make-script-work-with-Solaris-sh.patch 
2013-11-23 16:52:34 UTC (rev 22571)
@@ -0,0 +1,25 @@
+From a75ecf2a90ad3969962fc78e08a8bc7b65ff15fe Mon Sep 17 00:00:00 2001
+From: Oliver Kiddle 
+Date: Fri, 15 Nov 2013 14:00:51 +0100
+Subject: [PATCH] make script work with Solaris sh
+
+---
+ src/find-defun-files.sh | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/find-defun-files.sh b/src/find-defun-files.sh
+index d8b5ad2..fae1e8e 100755
+--- a/src/find-defun-files.sh
 b/src/find-defun-files.sh
+@@ -20,7 +20,7 @@ do
+   else
+ file="$srcdir/$arg"
+   fi
+-  if [ "`$EGREP -l "$DEFUN_PATTERN" $file`" ]; then
++  if $EGREP "$DEFUN_PATTERN" $file >/dev/null; then
+ echo "$file" | $SED 's,.*/,,; s/\.cc$/.df/; s/\.ll$/.df/; s/\.yy$/.df/';
+   fi
+ done
+-- 
+1.8.4.1
+

Added: csw/mgar/pkg/octave/trunk/files/0002-workaround-conflict-with-gets.patch
===
--- csw/mgar/pkg/octave/trunk/files/0002-workaround-conflict-with-gets.patch
(rev 0)
+++ csw/mgar/pkg/octave/trunk/files/0002-workaround-conflict-with-gets.patch
2013-11-23 16:52:34 UTC (rev 22571)
@@ -0,0 +1,25 @@
+From 50fa5dfc9c4dc2f3d961f8688cce2332517b9d74 Mon Sep 17 00:00:00 2001
+From: Oliver Kiddle 
+Date: Fri, 15 Nov 2013 14:02:37 +0100
+Subject: [PATCH 3/3] workaround conflict with gets
+
+---
+ libgnu/stdio.in.h | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/libgnu/stdio.in.h b/libgnu/stdio.in.h
+index 83f6862..7d56d47 100644
+--- a/libgnu/stdio.in.h
 b/libgnu/stdio.in.h
+@@ -706,7 +706,7 @@ _GL_WARN_ON_USE (getline, "getline is unportable - "
+removed it.  */
+ #undef gets
+ #if HAVE_RAW_DECL_GETS
+-_GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead");
++/* _GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead"); */
+ #endif
+ 
+ 
+-- 
+1.8.4.1
+

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



SF.net SVN: gar:[22623] csw/mgar/pkg/octave/trunk/Makefile

2013-12-03 Thread opk
Revision: 22623
  http://gar.svn.sourceforge.net/gar/?rev=22623&view=rev
Author:   opk
Date: 2013-12-03 10:42:02 + (Tue, 03 Dec 2013)
Log Message:
---
add some octave dependencies

Modified Paths:
--
csw/mgar/pkg/octave/trunk/Makefile

Modified: csw/mgar/pkg/octave/trunk/Makefile
===
--- csw/mgar/pkg/octave/trunk/Makefile  2013-12-01 19:48:59 UTC (rev 22622)
+++ csw/mgar/pkg/octave/trunk/Makefile  2013-12-03 10:42:02 UTC (rev 22623)
@@ -11,6 +11,8 @@
 MASTER_SITES = $(GNU_MIRROR)
 DISTFILES= $(NAME)-$(VERSION).tar.bz2
 
+RUNTIME_DEP_PKGS = CSWlibhdf5-7 CSWlibsunperf7 CSWsunmath CSWss12f95rt
+
 PATCHFILES += 0001-make-script-work-with-Solaris-sh.patch 
0002-workaround-conflict-with-gets.patch
 
 # using the sunperf library for blas and lapack and therefore also the

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



SF.net SVN: gar:[22669] csw/mgar/pkg/lang-python

2013-12-10 Thread opk
Revision: 22669
  http://gar.svn.sourceforge.net/gar/?rev=22669&view=rev
Author:   opk
Date: 2013-12-10 17:11:58 + (Tue, 10 Dec 2013)
Log Message:
---
add ZConfig which was previously there as part of CSWzope

Added Paths:
---
csw/mgar/pkg/lang-python/ZConfig/
csw/mgar/pkg/lang-python/ZConfig/Makefile
csw/mgar/pkg/lang-python/ZConfig/branches/
csw/mgar/pkg/lang-python/ZConfig/tags/
csw/mgar/pkg/lang-python/ZConfig/trunk/
csw/mgar/pkg/lang-python/ZConfig/trunk/Makefile
csw/mgar/pkg/lang-python/ZConfig/trunk/checksums
csw/mgar/pkg/lang-python/ZConfig/trunk/files/

Added: csw/mgar/pkg/lang-python/ZConfig/Makefile
===
--- csw/mgar/pkg/lang-python/ZConfig/Makefile   (rev 0)
+++ csw/mgar/pkg/lang-python/ZConfig/Makefile   2013-12-10 17:11:58 UTC (rev 
22669)
@@ -0,0 +1,2 @@
+%:
+   $(MAKE) -C trunk $*

Added: csw/mgar/pkg/lang-python/ZConfig/trunk/Makefile
===
--- csw/mgar/pkg/lang-python/ZConfig/trunk/Makefile 
(rev 0)
+++ csw/mgar/pkg/lang-python/ZConfig/trunk/Makefile 2013-12-10 17:11:58 UTC 
(rev 22669)
@@ -0,0 +1,31 @@
+# $Id$
+NAME = ZConfig
+VERSION = 3.0.3
+CATEGORIES = python
+GARTYPE = v2
+
+DESCRIPTION = Structured Configuration Library
+define BLURB
+  ZConfig is a configuration library intended for general use. It supports a
+  hierarchical schema-driven configuration model that allows a schema to 
specify
+  data conversion routines written in Python. ZConfig's model is very different
+  from the model supported by the ConfigParser module found in Python's 
standard
+  library, and is more suitable to configuration-intensive applications.
+endef
+
+MASTER_SITES = http://pypi.python.org/packages/source/Z/ZConfig/
+DISTFILES  = $(NAME)-$(VERSION).tar.gz
+PACKAGES = CSWpy-zconfig
+CATALOGNAME = py_zconfig
+
+LICENSE = LICENSE.txt
+ARCHALL = 1
+
+# tests need zope.testrunner
+TEST_SCRIPTS =
+
+# /usr/local is only an example here
+CHECKPKG_OVERRIDES_CSWpy-zconfig += 
file-with-bad-content|/usr/local|root/opt/csw/lib/python2.6/site-packages/ZConfig-3.0.3-py2.6.egg-info/PKG-INFO
+CHECKPKG_OVERRIDES_CSWpy-zconfig += 
file-with-bad-content|/usr/local|root/opt/csw/lib/python2.7/site-packages/ZConfig-3.0.3-py2.7.egg-info/PKG-INFO
+
+include gar/category.mk

Added: csw/mgar/pkg/lang-python/ZConfig/trunk/checksums
===
--- csw/mgar/pkg/lang-python/ZConfig/trunk/checksums
(rev 0)
+++ csw/mgar/pkg/lang-python/ZConfig/trunk/checksums2013-12-10 17:11:58 UTC 
(rev 22669)
@@ -0,0 +1 @@
+60a107c5857c3877368dfe5930559804  ZConfig-3.0.3.tar.gz

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



SF.net SVN: gar:[22725] csw/mgar/pkg/zsh/trunk

2013-12-20 Thread opk
Revision: 22725
  http://sourceforge.net/p/gar/code/22725
Author:   opk
Date: 2013-12-20 23:56:35 + (Fri, 20 Dec 2013)
Log Message:
---
update zsh to 5.0.4

Modified Paths:
--
csw/mgar/pkg/zsh/trunk/Makefile
csw/mgar/pkg/zsh/trunk/checksums

Modified: csw/mgar/pkg/zsh/trunk/Makefile
===
--- csw/mgar/pkg/zsh/trunk/Makefile 2013-12-20 15:06:49 UTC (rev 22724)
+++ csw/mgar/pkg/zsh/trunk/Makefile 2013-12-20 23:56:35 UTC (rev 22725)
@@ -1,5 +1,5 @@
 NAME = zsh
-VERSION = 5.0.1
+VERSION = 5.0.4
 GARTYPE = v2
 
 DESCRIPTION = Powerful UNIX shell
@@ -30,33 +30,6 @@
 CONFIGURE_ARGS += --enable-pcre
 CONFIGURE_ARGS += --enable-etcdir=$(sysconfdir)
 
-CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/share/zsh/functions/_urxvt
-CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/share|root/opt/csw/share/zsh/functions/_units
-CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/share|root/opt/csw/share/zsh/functions/_hg
-CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/share|root/opt/csw/share/zsh/functions/_loadkeys
-CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/share|root/opt/csw/share/zsh/functions/_ecasound
-CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/share|root/opt/csw/share/zsh/functions/_path_commands
-CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/share|root/opt/csw/share/zsh/functions/_lintian
-CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/share|root/opt/csw/share/zsh/functions/_lsusb
-CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/share|root/opt/csw/share/zsh/functions/run-help
-CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/share|root/opt/csw/share/zsh/functions/_cdrdao
-CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/share|root/opt/csw/share/zsh/functions/_setxkbmap
-CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/share/zsh/functions/_units
-CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/bin/zsh-$(VERSION)
-CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/share|root/opt/csw/share/man/man1/zshcontrib.1
-CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/share/zsh/functions/_gcc
-CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/share/zsh/functions/_urls
-CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/share/zsh/functions/_path_files
-CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/share/man/man1/zshmisc.1
-CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/share/man/man1/zshmodules.1
-CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/share/man/man1/zshoptions.1
-CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/share/man/man1/zshcontrib.1
-CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/share/man/man1/zshparam.1
-CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/share/zsh/functions/_complete_tag
-CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/share/zsh/functions/_twisted
-CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/share/zsh/functions/compaudit
-CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/share|root/opt/csw/share/zsh/functions/mere
-
 ETCSHELLS = /opt/csw/bin/zsh
 
 include gar/category.mk

Modified: csw/mgar/pkg/zsh/trunk/checksums
===
--- csw/mgar/pkg/zsh/trunk/checksums2013-12-20 15:06:49 UTC (rev 22724)
+++ csw/mgar/pkg/zsh/trunk/checksums2013-12-20 23:56:35 UTC (rev 22725)
@@ -1 +1 @@
-fa5f0f2b64df667d17993d06bb11a7bc  zsh-5.0.1.tar.bz2
+9829fe8932c25740173a272e8959cf8c  zsh-5.0.4.tar.bz2

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



SF.net SVN: gar:[22726] csw/mgar/pkg/zsh/trunk/Makefile

2013-12-20 Thread opk
Revision: 22726
  http://sourceforge.net/p/gar/code/22726
Author:   opk
Date: 2013-12-21 00:24:59 + (Sat, 21 Dec 2013)
Log Message:
---
add overrides for zsh

Modified Paths:
--
csw/mgar/pkg/zsh/trunk/Makefile

Modified: csw/mgar/pkg/zsh/trunk/Makefile
===
--- csw/mgar/pkg/zsh/trunk/Makefile 2013-12-20 23:56:35 UTC (rev 22725)
+++ csw/mgar/pkg/zsh/trunk/Makefile 2013-12-21 00:24:59 UTC (rev 22726)
@@ -30,6 +30,8 @@
 CONFIGURE_ARGS += --enable-pcre
 CONFIGURE_ARGS += --enable-etcdir=$(sysconfdir)
 
+CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/bin/zsh-$(VERSION)
+
 ETCSHELLS = /opt/csw/bin/zsh
 
 include gar/category.mk

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



SF.net SVN: gar:[22863] csw/mgar/pkg/zsh/trunk

2014-01-21 Thread opk
Revision: 22863
  http://sourceforge.net/p/gar/code/22863
Author:   opk
Date: 2014-01-21 21:50:56 + (Tue, 21 Jan 2014)
Log Message:
---
/tmp/opk-mgar/zsh/trunk: update zsh to 5.0.5

Modified Paths:
--
csw/mgar/pkg/zsh/trunk/Makefile
csw/mgar/pkg/zsh/trunk/checksums

Modified: csw/mgar/pkg/zsh/trunk/Makefile
===
--- csw/mgar/pkg/zsh/trunk/Makefile 2014-01-20 06:53:56 UTC (rev 22862)
+++ csw/mgar/pkg/zsh/trunk/Makefile 2014-01-21 21:50:56 UTC (rev 22863)
@@ -1,5 +1,5 @@
 NAME = zsh
-VERSION = 5.0.4
+VERSION = 5.0.5
 GARTYPE = v2
 
 DESCRIPTION = Powerful UNIX shell
@@ -30,8 +30,8 @@
 CONFIGURE_ARGS += --enable-pcre
 CONFIGURE_ARGS += --enable-etcdir=$(sysconfdir)
 
-CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/bin/zsh-$(VERSION)
-
+CHECKPKG_OVERRIDES_CSWzsh += 
file-with-bad-content|/usr/local|root/opt/csw/bin/zsh
+EXTRA_MERGE_EXCLUDE_FILES = /opt/csw/bin/zsh-$(VERSION)
 ETCSHELLS = /opt/csw/bin/zsh
 
 include gar/category.mk

Modified: csw/mgar/pkg/zsh/trunk/checksums
===
--- csw/mgar/pkg/zsh/trunk/checksums2014-01-20 06:53:56 UTC (rev 22862)
+++ csw/mgar/pkg/zsh/trunk/checksums2014-01-21 21:50:56 UTC (rev 22863)
@@ -1 +1 @@
-9829fe8932c25740173a272e8959cf8c  zsh-5.0.4.tar.bz2
+6156dc2f19b0a067bdbc0fb7f81e2017  zsh-5.0.5.tar.bz2

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



SF.net SVN: gar:[22871] csw/mgar/pkg

2014-01-23 Thread opk
Revision: 22871
  http://sourceforge.net/p/gar/code/22871
Author:   opk
Date: 2014-01-23 11:57:45 + (Thu, 23 Jan 2014)
Log Message:
---
add packaging of wmctrl

Added Paths:
---
csw/mgar/pkg/wmctrl/
csw/mgar/pkg/wmctrl/Makefile
csw/mgar/pkg/wmctrl/branches/
csw/mgar/pkg/wmctrl/tags/
csw/mgar/pkg/wmctrl/trunk/
csw/mgar/pkg/wmctrl/trunk/Makefile
csw/mgar/pkg/wmctrl/trunk/checksums
csw/mgar/pkg/wmctrl/trunk/files/
csw/mgar/pkg/wmctrl/trunk/files/0001-remove-gcc-specific-flags.patch

Added: csw/mgar/pkg/wmctrl/Makefile
===
--- csw/mgar/pkg/wmctrl/Makefile(rev 0)
+++ csw/mgar/pkg/wmctrl/Makefile2014-01-23 11:57:45 UTC (rev 22871)
@@ -0,0 +1,2 @@
+%:
+   $(MAKE) -C trunk $*

Index: csw/mgar/pkg/wmctrl/trunk
===
--- csw/mgar/pkg/wmctrl/trunk   2014-01-22 21:17:48 UTC (rev 22870)
+++ csw/mgar/pkg/wmctrl/trunk   2014-01-23 11:57:45 UTC (rev 22871)

Property changes on: csw/mgar/pkg/wmctrl/trunk
___
Added: svn:ignore
## -0,0 +1 ##
+work
Added: csw/mgar/pkg/wmctrl/trunk/Makefile
===
--- csw/mgar/pkg/wmctrl/trunk/Makefile  (rev 0)
+++ csw/mgar/pkg/wmctrl/trunk/Makefile  2014-01-23 11:57:45 UTC (rev 22871)
@@ -0,0 +1,28 @@
+# $Id$
+# TODO (release-critical prefixed with !, non release-critical with *)
+#
+NAME = wmctrl
+VERSION = 1.07
+GARTYPE = v2
+
+DESCRIPTION = Command-line tool to interact with the X Window Manager
+define BLURB
+  wmctrl provides command line access to almost all the features
+  defined in the EWMH specification. It can be used, for example, to
+  get information about the window manager, to get a detailed list of
+  desktops and managed windows, to switch and resize desktops, to make
+  windows full-screen, always-above or sticky, and to activate, close,
+  move, resize, maximize and minimize them.
+endef
+
+MASTER_SITES = http://tomas.styblo.name/wmctrl/dist/
+DISTFILES  = $(DISTNAME).tar.gz
+LICENSE = COPYING
+
+RUNTIME_DEP_PKGS_CSWwmctrl += CSWlibglib2-0-0
+
+PATCHFILES += 0001-remove-gcc-specific-flags.patch
+CONFIGURE_ARGS = $(DIRPATHS)
+TEST_SCRIPTS =
+
+include gar/category.mk


Property changes on: csw/mgar/pkg/wmctrl/trunk/Makefile
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: csw/mgar/pkg/wmctrl/trunk/checksums
===
--- csw/mgar/pkg/wmctrl/trunk/checksums (rev 0)
+++ csw/mgar/pkg/wmctrl/trunk/checksums 2014-01-23 11:57:45 UTC (rev 22871)
@@ -0,0 +1 @@
+1fe3c7a2caa6071e071ba34f587e1555  wmctrl-1.07.tar.gz

Added: csw/mgar/pkg/wmctrl/trunk/files/0001-remove-gcc-specific-flags.patch
===
--- csw/mgar/pkg/wmctrl/trunk/files/0001-remove-gcc-specific-flags.patch
(rev 0)
+++ csw/mgar/pkg/wmctrl/trunk/files/0001-remove-gcc-specific-flags.patch
2014-01-23 11:57:45 UTC (rev 22871)
@@ -0,0 +1,25 @@
+From 6e326d38e74027686a891e7b5aa95434a271a8a5 Mon Sep 17 00:00:00 2001
+From: Oliver Kiddle 
+Date: Thu, 23 Jan 2014 12:49:37 +0100
+Subject: [PATCH] remove gcc specific flags
+
+---
+ Makefile.in | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/Makefile.in b/Makefile.in
+index ec70e02..6dd0a0b 100644
+--- a/Makefile.in
 b/Makefile.in
+@@ -113,7 +113,7 @@ sharedstatedir = @sharedstatedir@
+ sysconfdir = @sysconfdir@
+ target_alias = @target_alias@
+ 
+-AM_CFLAGS = -Wall
++AM_CFLAGS =
+ AM_CPPFLAGS = @X_CFLAGS@ @GLIB_CFLAGS@
+ LDADD = @X_LIBS@ @X_PRE_LIBS@ -lX11 -lXmu @X_EXTRA_LIBS@ @GLIB_LIBS@
+ 
+-- 
+1.8.4.1
+

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



SF.net SVN: gar:[22872] csw/mgar/pkg/wmctrl/trunk/Makefile

2014-01-23 Thread opk
Revision: 22872
  http://sourceforge.net/p/gar/code/22872
Author:   opk
Date: 2014-01-23 12:02:47 + (Thu, 23 Jan 2014)
Log Message:
---
additional wmctrl dependency needed on sparc

Modified Paths:
--
csw/mgar/pkg/wmctrl/trunk/Makefile

Modified: csw/mgar/pkg/wmctrl/trunk/Makefile
===
--- csw/mgar/pkg/wmctrl/trunk/Makefile  2014-01-23 11:57:45 UTC (rev 22871)
+++ csw/mgar/pkg/wmctrl/trunk/Makefile  2014-01-23 12:02:47 UTC (rev 22872)
@@ -19,7 +19,7 @@
 DISTFILES  = $(DISTNAME).tar.gz
 LICENSE = COPYING
 
-RUNTIME_DEP_PKGS_CSWwmctrl += CSWlibglib2-0-0
+RUNTIME_DEP_PKGS_CSWwmctrl += CSWlibglib2-0-0 CSWlibintl8
 
 PATCHFILES += 0001-remove-gcc-specific-flags.patch
 CONFIGURE_ARGS = $(DIRPATHS)

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



SF.net SVN: gar:[22873] csw/mgar/pkg/meld/trunk

2014-01-23 Thread opk
Revision: 22873
  http://sourceforge.net/p/gar/code/22873
Author:   opk
Date: 2014-01-23 13:27:36 + (Thu, 23 Jan 2014)
Log Message:
---
update meld to 1.8.3

Modified Paths:
--
csw/mgar/pkg/meld/trunk/Makefile
csw/mgar/pkg/meld/trunk/checksums

Modified: csw/mgar/pkg/meld/trunk/Makefile
===
--- csw/mgar/pkg/meld/trunk/Makefile2014-01-23 12:02:47 UTC (rev 22872)
+++ csw/mgar/pkg/meld/trunk/Makefile2014-01-23 13:27:36 UTC (rev 22873)
@@ -2,20 +2,29 @@
 # TODO (release-critical prefixed with !, non release-critical with *)
 #
 NAME = meld
-VERSION = 1.5.4
+VERSION = 1.8.3
 GARTYPE = v2
 
 DESCRIPTION = Visual diff and merge tool
 define BLURB
-  Long description
+  Meld is a visual diff and merge tool targeted at developers. Meld
+  helps you compare files, directories and version controlled
+  projects. It provides tow- and three-way comparison of both files
+  and directories and has support for many popular version control
+  systems.
 endef
 
-MASTER_SITES = http://ftp.gnome.org/pub/GNOME/sources/meld/1.5/
+MASTER_SITES = http://ftp.gnome.org/pub/GNOME/sources/meld/$(basename 
$(VERSION))/
 DISTFILES  = $(DISTNAME).tar.xz
 
 # PATCHFILES += 0001-Allow-to-use-a-different-install-utility.patch
 PATCHFILES += 0001-Use-conditionals-for-installation-places.patch
 
+REINPLACEMENTS += python
+REINPLACE_MATCH_python = \#!.*python.*
+REINPLACE_WITH_python = \#!$(bindir)/python
+REINPLACE_FILES_python += bin/meld
+
 CONFIGURE_SCRIPTS =
 BUILD_SCRIPTS =
 INSTALL_SCRIPTS = meld
@@ -24,21 +33,10 @@
 EXTRA_MERGE_EXCLUDE_FILES = .*\.py[co]
 
 ARCHALL_CSWmeld = 1
-RUNTIME_DEP_PKGS_CSWmeld += CSWpython
+RUNTIME_DEP_PKGS_CSWmeld += CSWpy-gtk CSWpy-gobject
 
-CHECKPKG_OVERRIDES_CSWmeld += 
file-with-bad-content|/usr/local|root/opt/csw/bin/meld
-CHECKPKG_OVERRIDES_CSWmeld += 
file-with-bad-content|/usr/local|root/opt/csw/lib/python/site-packages/meld/paths.py
-CHECKPKG_OVERRIDES_CSWmeld += 
file-with-bad-content|/usr/local|root/opt/csw/lib/meld/meld/paths.py
-CHECKPKG_OVERRIDES_CSWmeld += 
file-with-bad-content|/usr/local|root/opt/csw/share/omf/meld/meld-fr.omf
-CHECKPKG_OVERRIDES_CSWmeld += 
file-with-bad-content|/usr/local|root/opt/csw/share/omf/meld/meld-C.omf
-CHECKPKG_OVERRIDES_CSWmeld += 
file-with-bad-content|/usr/local|root/opt/csw/share/omf/meld/meld-es.omf
-CHECKPKG_OVERRIDES_CSWmeld += 
file-with-bad-content|/usr/local|root/var/opt/csw/lib/scrollkeeper/scrollkeeper_docs
-CHECKPKG_OVERRIDES_CSWmeld += 
file-with-bad-content|/usr/local|root/var/opt/csw/lib/scrollkeeper/fr/scrollkeeper_cl.xml
-CHECKPKG_OVERRIDES_CSWmeld += 
file-with-bad-content|/usr/local|root/var/opt/csw/lib/scrollkeeper/fr/scrollkeeper_extended_cl.xml
-CHECKPKG_OVERRIDES_CSWmeld += 
file-with-bad-content|/usr/local|root/var/opt/csw/lib/scrollkeeper/es/scrollkeeper_cl.xml
-CHECKPKG_OVERRIDES_CSWmeld += 
file-with-bad-content|/usr/local|root/var/opt/csw/lib/scrollkeeper/es/scrollkeeper_extended_cl.xml
-CHECKPKG_OVERRIDES_CSWmeld += 
file-with-bad-content|/usr/local|root/var/opt/csw/lib/scrollkeeper/C/scrollkeeper_extended_cl.xml
-CHECKPKG_OVERRIDES_CSWmeld += 
file-with-bad-content|/usr/local|root/var/opt/csw/lib/scrollkeeper/C/scrollkeeper_cl.xml
+CHECKPKG_OVERRIDES_CSWmeld += surplus-dependency|CSWpy-gobject
+CHECKPKG_OVERRIDES_CSWmeld += surplus-dependency|CSWpy-gtk
 CHECKPKG_OVERRIDES_CSWmeld += pkgname-does-not-start-with-CSWpy-
 CHECKPKG_OVERRIDES_CSWmeld += catalogname-does-not-start-with-py_
 

Modified: csw/mgar/pkg/meld/trunk/checksums
===
--- csw/mgar/pkg/meld/trunk/checksums   2014-01-23 12:02:47 UTC (rev 22872)
+++ csw/mgar/pkg/meld/trunk/checksums   2014-01-23 13:27:36 UTC (rev 22873)
@@ -1 +1 @@
-2f3929551d876ff45acf21b2c1e3e71a  meld-1.5.4.tar.xz
+8254815c9358283e5e6a9d90f6846746  meld-1.8.3.tar.xz

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



SF.net SVN: gar:[22875] csw/mgar/pkg/qiv/trunk

2014-01-23 Thread opk
Revision: 22875
  http://sourceforge.net/p/gar/code/22875
Author:   opk
Date: 2014-01-23 20:50:45 + (Thu, 23 Jan 2014)
Log Message:
---
qiv/trunk: update to 2.3.1

Modified Paths:
--
csw/mgar/pkg/qiv/trunk/Makefile
csw/mgar/pkg/qiv/trunk/checksums
csw/mgar/pkg/qiv/trunk/files/0001-adapt-Makefile-for-opencsw.patch

Modified: csw/mgar/pkg/qiv/trunk/Makefile
===
--- csw/mgar/pkg/qiv/trunk/Makefile 2014-01-23 15:32:11 UTC (rev 22874)
+++ csw/mgar/pkg/qiv/trunk/Makefile 2014-01-23 20:50:45 UTC (rev 22875)
@@ -2,14 +2,14 @@
 # TODO (release-critical prefixed with !, non release-critical with *)
 #
 NAME = qiv
-VERSION = 2.2.4
+VERSION = 2.3.1
 GARTYPE = v2
 
 DESCRIPTION = Quick image viewer
 define BLURB
   Quick Image Viewer (qiv) is a fast and simple image viewer based
   on GDK and imlib. Features include zooming, fullscreen, statusbar,
-  screensaver mode, brighness/contrast control, transparency,
+  screensaver mode, brightness/contrast control, transparency,
   slideshow, exif autorotation and a browse mode.
 endef
 
@@ -18,10 +18,12 @@
 LICENSE = README.COPYING
 
 RUNTIME_DEP_PKGS += CSWlibmagic1 CSWlibgdk-x11-2-0-0 CSWlibgdk-pixbuf2-0-0 \
-  CSWlibgobject2-0-0 CSWlibimlib2-1 CSWlibglib2-0-0 CSWpango
+  CSWlibgobject2-0-0 CSWlibimlib2-1 CSWlibglib2-0-0 CSWlibpango1-0-0 \
+  CSWlibtiff5 CSWliblcms2-2 CSWlibexif12 CSWlibjpeg7
 
 PATCHFILES += 0001-adapt-Makefile-for-opencsw.patch
 CONFIGURE_SCRIPTS =
+EXTRA_PKG_CONFIG_PATH += /opt/csw/X11/lib/pkgconfig
 BUILD_ARGS = -f Makefile.Solaris
 TEST_SCRIPTS =
 INSTALL_ARGS = -f Makefile.Solaris

Modified: csw/mgar/pkg/qiv/trunk/checksums
===
--- csw/mgar/pkg/qiv/trunk/checksums2014-01-23 15:32:11 UTC (rev 22874)
+++ csw/mgar/pkg/qiv/trunk/checksums2014-01-23 20:50:45 UTC (rev 22875)
@@ -1 +1 @@
-1425f89c90f9c045858fccf24d894c97  qiv-2.2.4.tgz
+93aea7469be64ebd35277a6dac079fc8  qiv-2.3.1.tgz

Modified: csw/mgar/pkg/qiv/trunk/files/0001-adapt-Makefile-for-opencsw.patch
===
--- csw/mgar/pkg/qiv/trunk/files/0001-adapt-Makefile-for-opencsw.patch  
2014-01-23 15:32:11 UTC (rev 22874)
+++ csw/mgar/pkg/qiv/trunk/files/0001-adapt-Makefile-for-opencsw.patch  
2014-01-23 20:50:45 UTC (rev 22875)
@@ -1,14 +1,14 @@
-From 51625c4d79ede0386f6034bd08a113ee626b8aa0 Mon Sep 17 00:00:00 2001
+From 1e2f9e4981200dff4884c21eb9add3c1a18ad01e Mon Sep 17 00:00:00 2001
 From: Oliver Kiddle 
-Date: Fri, 5 Jul 2013 14:56:15 +0200
+Date: Thu, 23 Jan 2014 21:46:32 +0100
 Subject: [PATCH] adapt Makefile for opencsw
 
 ---
- Makefile.Solaris | 30 --
- 1 file changed, 12 insertions(+), 18 deletions(-)
+ Makefile.Solaris | 46 --
+ 1 file changed, 12 insertions(+), 34 deletions(-)
 
 diff --git a/Makefile.Solaris b/Makefile.Solaris
-index 3513f4d..74dd04c 100644
+index 527ec58..94c3c2a 100644
 --- a/Makefile.Solaris
 +++ b/Makefile.Solaris
 @@ -26,11 +26,11 @@ FILTER = 1
@@ -23,9 +23,9 @@
 -COMPRESS_PROG = gzip -9f
 +COMPRESS_PROG = true
  
- # Comment this line out if your system doesn't have libXinerama
- # installed (for centering on dual-screen)
-@@ -47,8 +47,8 @@ MAGIC = -DHAVE_MAGIC
+ # Comment this line out if your system doesn't have lcms2 installed
+ # (for minimal Color Management support)
+@@ -51,13 +51,13 @@ EXIF = -DHAVE_EXIF
  # Do not edit below here!
  ##
  
@@ -36,36 +36,53 @@
-fcaller-saves -ffast-math -fno-strength-reduce \
-fthread-jumps #-march=pentium #-DSTAT_MACROS_BROKEN
  
-@@ -129,21 +129,15 @@ distclean : clean
+-INCLUDES  := $(shell pkg-config --cflags gdk-2.0 imlib2)
+-LIBS  := $(shell pkg-config --libs gdk-2.0 imlib2) -lX11 lXext
++INCLUDES  := -I/opt/csw/include $(shell pkg-config --cflags gdk-2.0 imlib2)
++LIBS  := $(filter-out -lintl,$(shell pkg-config --libs gdk-2.0 imlib2)) 
-lX11 -lXext
  
+ # [as] thinks that this is not portable enough:
+ # [lc] I use a virtual screen of 1600x1200, and the resolution is 1024x768,
+@@ -140,33 +140,11 @@ distclean : clean
+ 
  install: $(PROGRAM)
@echo "Installing QIV..."
 -  @if [ ! -d $(PREFIX)/bin ]; then \
 -install -d -m 0755 $(PREFIX)/bin; \
 -echo install -d -m 0755 $(PREFIX)/bin; \
-+  @if [ ! -d $(DESTDIR)$(bindir) ]; then \
-+ginstall -d -m 0755 $(DESTDIR)$(bindir); \
-+echo ginstall -d -m 0755 $(DESTDIR)$(bindir); \
- fi
+-fi
 -  install -s -m 0755 $(PROGRAM) $(PREFIX)/bin
 -  @if [ ! -d $(PREFIX)/man/man1 ]; then \
 -echo install -d -m 0755 $(PREFIX)/man/man1; \
 -install -d -m 0755 $(PREFIX)/man/man1; \
-+  ginstall -s -m 0755 $(PROGRAM) $(DESTDIR)$(bindir)
-+  @if [ ! -d $(DE

SF.net SVN: gar:[22876] csw/mgar/pkg

2014-01-24 Thread opk
Revision: 22876
  http://sourceforge.net/p/gar/code/22876
Author:   opk
Date: 2014-01-24 12:03:57 + (Fri, 24 Jan 2014)
Log Message:
---
update hexedit to 1.2.13 and build it in gar

Added Paths:
---
csw/mgar/pkg/hexedit/
csw/mgar/pkg/hexedit/Makefile
csw/mgar/pkg/hexedit/branches/
csw/mgar/pkg/hexedit/tags/
csw/mgar/pkg/hexedit/trunk/
csw/mgar/pkg/hexedit/trunk/Makefile
csw/mgar/pkg/hexedit/trunk/checksums
csw/mgar/pkg/hexedit/trunk/files/

Added: csw/mgar/pkg/hexedit/Makefile
===
--- csw/mgar/pkg/hexedit/Makefile   (rev 0)
+++ csw/mgar/pkg/hexedit/Makefile   2014-01-24 12:03:57 UTC (rev 22876)
@@ -0,0 +1,2 @@
+%:
+   $(MAKE) -C trunk $*

Index: csw/mgar/pkg/hexedit/trunk
===
--- csw/mgar/pkg/hexedit/trunk  2014-01-23 20:50:45 UTC (rev 22875)
+++ csw/mgar/pkg/hexedit/trunk  2014-01-24 12:03:57 UTC (rev 22876)

Property changes on: csw/mgar/pkg/hexedit/trunk
___
Added: svn:ignore
## -0,0 +1 ##
+work
Added: csw/mgar/pkg/hexedit/trunk/Makefile
===
--- csw/mgar/pkg/hexedit/trunk/Makefile (rev 0)
+++ csw/mgar/pkg/hexedit/trunk/Makefile 2014-01-24 12:03:57 UTC (rev 22876)
@@ -0,0 +1,24 @@
+# $Id$
+# TODO (release-critical prefixed with !, non release-critical with *)
+#
+NAME = hexedit
+VERSION = 1.2.13
+GARTYPE = v2
+
+DESCRIPTION = View and edit files in hexadecimal or in ASCII
+define BLURB
+  hexedit shows a file both in ASCII and in hexadecimal. The file can
+  be a device as the file is read a piece at a time. You can modify the
+  file and search through it.
+endef
+
+MASTER_SITES = http://rigaux.org/
+DISTFILES  = $(DISTNAME)-$(VERSION).src.tgz
+DISTNAME = hexedit
+
+RUNTIME_DEP_PKGS = CSWlibncurses5
+
+CONFIGURE_ARGS = $(DIRPATHS) CPPFLAGS="-I/opt/csw/include 
-I/opt/csw/include/ncurses"
+TEST_SCRIPTS =
+
+include gar/category.mk


Property changes on: csw/mgar/pkg/hexedit/trunk/Makefile
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: csw/mgar/pkg/hexedit/trunk/checksums
===
--- csw/mgar/pkg/hexedit/trunk/checksums(rev 0)
+++ csw/mgar/pkg/hexedit/trunk/checksums2014-01-24 12:03:57 UTC (rev 
22876)
@@ -0,0 +1 @@
+a5af1378d028512a9cad27a5ba3e15f9  hexedit-1.2.13.src.tgz

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



SF.net SVN: gar:[22907] csw/mgar/pkg/libsunperf/trunk/Makefile

2014-01-28 Thread opk
Revision: 22907
  http://sourceforge.net/p/gar/code/22907
Author:   opk
Date: 2014-01-28 10:33:25 + (Tue, 28 Jan 2014)
Log Message:
---
rearrange sparc32 libsunperf.so to use the same structure as for a Solaris
Studio installation so the RUNPATH, which uses $ORIGIN, will work.

Modified Paths:
--
csw/mgar/pkg/libsunperf/trunk/Makefile

Modified: csw/mgar/pkg/libsunperf/trunk/Makefile
===
--- csw/mgar/pkg/libsunperf/trunk/Makefile  2014-01-27 20:42:03 UTC (rev 
22906)
+++ csw/mgar/pkg/libsunperf/trunk/Makefile  2014-01-28 10:33:25 UTC (rev 
22907)
@@ -51,13 +51,20 @@
 
 include gar/category.mk
 
-
 SRCDIR-sparcv9 = v9
 SRCDIR-amd64   = amd64
 
-install-custom:
+install-custom-i386:
ginstall -d $(DESTDIR)$(libdir)
-   $(foreach L,$(FLIBS-$(GARCH)),if [ -f $(SOS12_CC_HOME)/lib/$L ]; then 
ginstall $(SOS12_CC_HOME)/lib/$L $(DESTDIR)$(libdir)/$L; fi;)
+   $(foreach L,$(FLIBS-$(GARCH)),if [ -f $(SOS12_CC_HOME)/lib/$L ]; then 
ginstall $(SOS12_CC_HOME)/lib/$L $(DESTDIR)$(libdir)$(ISA_SS32-$(GARCH))/$L; 
fi;)
+
+install-custom-sparc:
+   ginstall -d $(DESTDIR)$(libdir)
+   ginstall -d $(DESTDIR)$(libdir)/v8
+   ln -s v8/$(FLIBS-sparc) $(DESTDIR)$(libdir)/$(FLIBS-sparc)
+   $(foreach L,$(FLIBS-$(GARCH)),if [ -f $(SOS12_CC_HOME)/lib/$L ]; then 
ginstall $(SOS12_CC_HOME)/lib/$L $(DESTDIR)$(libdir)$(ISA_SS32-$(GARCH))/v8/$L; 
fi;)
+
+install-custom: install-custom-$(GARCH)
ginstall -d $(DESTDIR)$(libdir)/$(ISA_DEFAULT64)
$(foreach L,$(FLIBS-$(GARCH)),if [ -f 
$(SOS12_CC_HOME)/lib/$(SRCDIR-$(ISA_DEFAULT64))/$L ]; then ginstall 
$(SOS12_CC_HOME)/lib/$(SRCDIR-$(ISA_DEFAULT64))/$L 
$(DESTDIR)$(libdir)/$(ISA_DEFAULT64)/$L; fi;)
@$(MAKECOOKIE)

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



SF.net SVN: gar:[22908] csw/mgar/pkg/libsunperf/trunk/Makefile

2014-01-28 Thread opk
Revision: 22908
  http://sourceforge.net/p/gar/code/22908
Author:   opk
Date: 2014-01-28 11:00:10 + (Tue, 28 Jan 2014)
Log Message:
---
libsunperf: seems I need to make cookies for custom make rules

Modified Paths:
--
csw/mgar/pkg/libsunperf/trunk/Makefile

Modified: csw/mgar/pkg/libsunperf/trunk/Makefile
===
--- csw/mgar/pkg/libsunperf/trunk/Makefile  2014-01-28 10:33:25 UTC (rev 
22907)
+++ csw/mgar/pkg/libsunperf/trunk/Makefile  2014-01-28 11:00:10 UTC (rev 
22908)
@@ -57,12 +57,14 @@
 install-custom-i386:
ginstall -d $(DESTDIR)$(libdir)
$(foreach L,$(FLIBS-$(GARCH)),if [ -f $(SOS12_CC_HOME)/lib/$L ]; then 
ginstall $(SOS12_CC_HOME)/lib/$L $(DESTDIR)$(libdir)$(ISA_SS32-$(GARCH))/$L; 
fi;)
+   @$(MAKECOOKIE)
 
 install-custom-sparc:
ginstall -d $(DESTDIR)$(libdir)
ginstall -d $(DESTDIR)$(libdir)/v8
ln -s v8/$(FLIBS-sparc) $(DESTDIR)$(libdir)/$(FLIBS-sparc)
$(foreach L,$(FLIBS-$(GARCH)),if [ -f $(SOS12_CC_HOME)/lib/$L ]; then 
ginstall $(SOS12_CC_HOME)/lib/$L $(DESTDIR)$(libdir)$(ISA_SS32-$(GARCH))/v8/$L; 
fi;)
+   @$(MAKECOOKIE)
 
 install-custom: install-custom-$(GARCH)
ginstall -d $(DESTDIR)$(libdir)/$(ISA_DEFAULT64)

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



SF.net SVN: gar:[22909] csw/mgar/pkg

2014-01-28 Thread opk
Revision: 22909
  http://sourceforge.net/p/gar/code/22909
Author:   opk
Date: 2014-01-28 12:36:44 + (Tue, 28 Jan 2014)
Log Message:
---
lang-python/matplotlib: had problems with Python 2.6, seems to work with 2.7

Modified Paths:
--
csw/mgar/pkg/lang-python/matplotlib/trunk/Makefile
csw/mgar/pkg/lang-python/matplotlib/trunk/checksums

Added Paths:
---
csw/mgar/pkg/lang-python/matplotlib/

csw/mgar/pkg/lang-python/matplotlib/trunk/files/0001-avoid-reserved-variable-names.patch

Removed Paths:
-
csw/mgar/pkg/matplotlib/

Modified: csw/mgar/pkg/lang-python/matplotlib/trunk/Makefile
===
--- csw/mgar/pkg/matplotlib/trunk/Makefile  2014-01-27 09:05:19 UTC (rev 
22898)
+++ csw/mgar/pkg/lang-python/matplotlib/trunk/Makefile  2014-01-28 12:36:44 UTC 
(rev 22909)
@@ -9,14 +9,45 @@
 # upstream bug: http://bugs.python.org/issue1250
 
 NAME = matplotlib
-VERSION = 1.1.0
+VERSION = 1.3.1
 CATEGORIES = python
-DESCRIPTION = A pure python plotting library
+CATALOGNAME = py_matplotlib
+
+DESCRIPTION = Python 2D plotting library
 define BLURB
+  Matplotlib is a python 2D plotting library which produces publication
+  quality figures in a variety of hardcopy formats and interactive
+  environments across platforms. matplotlib can be used in python scripts,
+  the python and ipython shell, web application servers, and six
+  graphical user interface toolkits.
 endef
+
 SPKG_SOURCEURL = http://matplotlib.sourceforge.net/
 MASTER_SITES = $(SF_MIRRORS)
 DISTFILES  = $(DISTNAME).tar.gz
-LICENSE = LICENSE.txt
+LICENSE = LICENSE/LICENSE
+
+BUILD_DEP_PKGS = CSWpython27-dev
+
+RUNTIME_DEP_PKGS = CSWlibatk
+RUNTIME_DEP_PKGS += CSWggettextrt
+RUNTIME_DEP_PKGS += CSWpng
+RUNTIME_DEP_PKGS += CSWfconfig
+RUNTIME_DEP_PKGS += CSWlibpython2-6-1-0
+RUNTIME_DEP_PKGS += CSWglib2
+RUNTIME_DEP_PKGS += CSWftype2
+RUNTIME_DEP_PKGS += CSWpango
+RUNTIME_DEP_PKGS += CSWlibcairo
+RUNTIME_DEP_PKGS += CSWgtk2
+RUNTIME_DEP_PKGS += CSWzlib
+
+PATCHFILES += 0001-avoid-reserved-variable-names.patch
+MODULATIONS_PYTHON_VERSION = 2_7
 CONFIGURE_ARGS = $(DIRPATHS)
+EXTRA_MERGE_EXCLUDE_FILES += .*\.egg-info.* .*\.pyo .*\.pyc
+
+pre-configure:
+   @rm -f 
work/build-isa-sparcv8/$(GARNAME)-$(GARVERSION)/lib/$(GARNAME)/tests/baseline_images/test_axes/shaped\
 data.svg
+   @$(MAKECOOKIE)
+
 include gar/category.mk

Modified: csw/mgar/pkg/lang-python/matplotlib/trunk/checksums
===
--- csw/mgar/pkg/matplotlib/trunk/checksums 2014-01-27 09:05:19 UTC (rev 
22898)
+++ csw/mgar/pkg/lang-python/matplotlib/trunk/checksums 2014-01-28 12:36:44 UTC 
(rev 22909)
@@ -1 +1 @@
-57a627f30b3b27821f808659889514c2  matplotlib-1.1.0.tar.gz
+444624ad58de05f9029b0b5811e11c17  matplotlib-1.3.1.tar.gz

Added: 
csw/mgar/pkg/lang-python/matplotlib/trunk/files/0001-avoid-reserved-variable-names.patch
===
--- 
csw/mgar/pkg/lang-python/matplotlib/trunk/files/0001-avoid-reserved-variable-names.patch
(rev 0)
+++ 
csw/mgar/pkg/lang-python/matplotlib/trunk/files/0001-avoid-reserved-variable-names.patch
2014-01-28 12:36:44 UTC (rev 22909)
@@ -0,0 +1,48 @@
+From bf6bfdd8c9591de27eceeb1ad18a0b18842796a4 Mon Sep 17 00:00:00 2001
+From: Oliver Kiddle 
+Date: Tue, 28 Jan 2014 12:26:44 +
+Subject: [PATCH] avoid reserved variable names
+
+---
+ lib/matplotlib/tri/_tri.cpp | 6 +++---
+ lib/matplotlib/tri/_tri.h   | 2 +-
+ 2 files changed, 4 insertions(+), 4 deletions(-)
+
+diff --git a/lib/matplotlib/tri/_tri.cpp b/lib/matplotlib/tri/_tri.cpp
+index 9dd538a..ce5260b 100644
+--- a/lib/matplotlib/tri/_tri.cpp
 b/lib/matplotlib/tri/_tri.cpp
+@@ -2177,14 +2177,14 @@ 
TrapezoidMapTriFinder::Trapezoid::set_upper_right(Trapezoid* upper_right_)
+ 
+ 
+ RandomNumberGenerator::RandomNumberGenerator(unsigned long seed)
+-: _M(21870), _A(1291), _C(4621), _seed(seed % _M)
++: M_(21870), A_(1291), C_(4621), _seed(seed % M_)
+ {}
+ 
+ unsigned long
+ RandomNumberGenerator::operator()(unsigned long max_value)
+ {
+-_seed = (_seed*_A + _C) % _M;
+-return (_seed*max_value) / _M;
++_seed = (_seed*A_ + C_) % M_;
++return (_seed*max_value) / M_;
+ }
+ 
+ 
+diff --git a/lib/matplotlib/tri/_tri.h b/lib/matplotlib/tri/_tri.h
+index 3662678..0d5acef 100644
+--- a/lib/matplotlib/tri/_tri.h
 b/lib/matplotlib/tri/_tri.h
+@@ -818,7 +818,7 @@ public:
+ unsigned long operator()(unsigned long max_value);
+ 
+ private:
+-const unsigned long _M, _A, _C;
++const unsigned long M_, A_, C_;
+ unsigned long _seed;
+ };
+ 
+-- 
+1.8.4.1
+

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



SF.net SVN: gar:[22914] csw/mgar/pkg/lang-python/matplotlib/trunk/Makefile

2014-01-29 Thread opk
Revision: 22914
  http://sourceforge.net/p/gar/code/22914
Author:   opk
Date: 2014-01-29 16:30:50 + (Wed, 29 Jan 2014)
Log Message:
---
lang-python/matplotlib: resolve checkpkg errors

Modified Paths:
--
csw/mgar/pkg/lang-python/matplotlib/trunk/Makefile

Modified: csw/mgar/pkg/lang-python/matplotlib/trunk/Makefile
===
--- csw/mgar/pkg/lang-python/matplotlib/trunk/Makefile  2014-01-29 15:10:57 UTC 
(rev 22913)
+++ csw/mgar/pkg/lang-python/matplotlib/trunk/Makefile  2014-01-29 16:30:50 UTC 
(rev 22914)
@@ -29,18 +29,19 @@
 
 BUILD_DEP_PKGS = CSWpython27-dev
 
-RUNTIME_DEP_PKGS = CSWlibatk
-RUNTIME_DEP_PKGS += CSWggettextrt
-RUNTIME_DEP_PKGS += CSWpng
-RUNTIME_DEP_PKGS += CSWfconfig
-RUNTIME_DEP_PKGS += CSWlibpython2-6-1-0
-RUNTIME_DEP_PKGS += CSWglib2
-RUNTIME_DEP_PKGS += CSWftype2
-RUNTIME_DEP_PKGS += CSWpango
-RUNTIME_DEP_PKGS += CSWlibcairo
-RUNTIME_DEP_PKGS += CSWgtk2
-RUNTIME_DEP_PKGS += CSWzlib
+RUNTIME_DEP_PKGS = CSWlibpython2-7-1-0
+RUNTIME_DEP_PKGS += CSWlibstdc++6
+RUNTIME_DEP_PKGS += CSWlibpng15-15
+RUNTIME_DEP_PKGS += CSWlibgcc-s1
+RUNTIME_DEP_PKGS += CSWlibfreetype6
 
+CHECKPKG_OVERRIDES_CSWpy-matplotlib += python-package-missing-py26-files
+CHECKPKG_OVERRIDES_CSWpy-matplotlib += 
file-with-bad-content|/usr/local|root/opt/csw/lib/python2.7/site-packages/matplotlib/dviread.py
+CHECKPKG_OVERRIDES_CSWpy-matplotlib += 
file-with-bad-content|/usr/local|root/opt/csw/lib/python2.7/site-packages/matplotlib/font_manager.py
+CHECKPKG_OVERRIDES_CSWpy-matplotlib += 
file-with-bad-content|/usr/local|root/opt/csw/lib/python2.7/site-packages/matplotlib/_mathtext_data.py
+CHECKPKG_OVERRIDES_CSWpy-matplotlib += 
file-with-bad-content|/usr/local|root/opt/csw/lib/python2.7/site-packages/matplotlib/tests/test_agg.py
+CHECKPKG_OVERRIDES_CSWpy-matplotlib += 
file-with-bad-content|/usr/share|root/opt/csw/lib/python2.7/site-packages/matplotlib/font_manager.py
+
 PATCHFILES += 0001-avoid-reserved-variable-names.patch
 MODULATIONS_PYTHON_VERSION = 2_7
 CONFIGURE_ARGS = $(DIRPATHS)

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



SF.net SVN: gar:[22916] csw/mgar/pkg/lang-python

2014-01-30 Thread opk
Revision: 22916
  http://sourceforge.net/p/gar/code/22916
Author:   opk
Date: 2014-01-30 09:51:42 + (Thu, 30 Jan 2014)
Log Message:
---
lang-python/pyparsing: package pyparsing module needed by matplotlib

Modified Paths:
--
csw/mgar/pkg/lang-python/matplotlib/trunk/Makefile

Added Paths:
---
csw/mgar/pkg/lang-python/pyparsing/
csw/mgar/pkg/lang-python/pyparsing/Makefile
csw/mgar/pkg/lang-python/pyparsing/branches/
csw/mgar/pkg/lang-python/pyparsing/tags/
csw/mgar/pkg/lang-python/pyparsing/trunk/
csw/mgar/pkg/lang-python/pyparsing/trunk/Makefile
csw/mgar/pkg/lang-python/pyparsing/trunk/checksums
csw/mgar/pkg/lang-python/pyparsing/trunk/files/

Modified: csw/mgar/pkg/lang-python/matplotlib/trunk/Makefile
===
--- csw/mgar/pkg/lang-python/matplotlib/trunk/Makefile  2014-01-29 21:23:23 UTC 
(rev 22915)
+++ csw/mgar/pkg/lang-python/matplotlib/trunk/Makefile  2014-01-30 09:51:42 UTC 
(rev 22916)
@@ -34,6 +34,7 @@
 RUNTIME_DEP_PKGS += CSWlibpng15-15
 RUNTIME_DEP_PKGS += CSWlibgcc-s1
 RUNTIME_DEP_PKGS += CSWlibfreetype6
+RUNTIME_DEP_PKGS += CSWpy-pyparsing
 
 CHECKPKG_OVERRIDES_CSWpy-matplotlib += python-package-missing-py26-files
 CHECKPKG_OVERRIDES_CSWpy-matplotlib += 
file-with-bad-content|/usr/local|root/opt/csw/lib/python2.7/site-packages/matplotlib/dviread.py

Added: csw/mgar/pkg/lang-python/pyparsing/Makefile
===
--- csw/mgar/pkg/lang-python/pyparsing/Makefile (rev 0)
+++ csw/mgar/pkg/lang-python/pyparsing/Makefile 2014-01-30 09:51:42 UTC (rev 
22916)
@@ -0,0 +1,2 @@
+%:
+   $(MAKE) -C trunk $*

Index: csw/mgar/pkg/lang-python/pyparsing/trunk
===
--- csw/mgar/pkg/lang-python/pyparsing/trunk2014-01-29 21:23:23 UTC (rev 
22915)
+++ csw/mgar/pkg/lang-python/pyparsing/trunk2014-01-30 09:51:42 UTC (rev 
22916)

Property changes on: csw/mgar/pkg/lang-python/pyparsing/trunk
___
Added: svn:ignore
## -0,0 +1 ##
+work
Added: csw/mgar/pkg/lang-python/pyparsing/trunk/Makefile
===
--- csw/mgar/pkg/lang-python/pyparsing/trunk/Makefile   
(rev 0)
+++ csw/mgar/pkg/lang-python/pyparsing/trunk/Makefile   2014-01-30 09:51:42 UTC 
(rev 22916)
@@ -0,0 +1,24 @@
+# $Id$
+
+NAME = pyparsing
+VERSION = 2.0.1
+CATEGORIES = python
+GARTYPE = v2
+
+DESCRIPTION = Python parsing module
+define BLURB
+  The pyparsing module is an alternative approach to creating and executing
+  simple grammars, vs. the traditional lex/yacc approach, or the use of regular
+  expressions. The pyparsing module provides a library of classes that client
+  code uses to construct the grammar directly in Python code.
+endef
+
+MASTER_SITES = $(SF_MIRRORS)
+DISTFILES  = $(DISTNAME).tar.gz
+LICENSE = LICENSE
+TEST_SCRIPTS =
+
+ARCHALL = 1
+
+include gar/category.mk
+


Property changes on: csw/mgar/pkg/lang-python/pyparsing/trunk/Makefile
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: csw/mgar/pkg/lang-python/pyparsing/trunk/checksums
===
--- csw/mgar/pkg/lang-python/pyparsing/trunk/checksums  
(rev 0)
+++ csw/mgar/pkg/lang-python/pyparsing/trunk/checksums  2014-01-30 09:51:42 UTC 
(rev 22916)
@@ -0,0 +1 @@
+37adec94104b98591507218bc82e7c31  pyparsing-2.0.1.tar.gz

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



SF.net SVN: gar:[22917] csw/mgar/pkg/lang-python/ipython/trunk

2014-01-30 Thread opk
Revision: 22917
  http://sourceforge.net/p/gar/code/22917
Author:   opk
Date: 2014-01-30 13:20:12 + (Thu, 30 Jan 2014)
Log Message:
---
ipython: update to 1.1.0

Modified Paths:
--
csw/mgar/pkg/lang-python/ipython/trunk/Makefile
csw/mgar/pkg/lang-python/ipython/trunk/checksums

Removed Paths:
-

csw/mgar/pkg/lang-python/ipython/trunk/files/0001-rename-filenames-containing-spaces.patch

Modified: csw/mgar/pkg/lang-python/ipython/trunk/Makefile
===
--- csw/mgar/pkg/lang-python/ipython/trunk/Makefile 2014-01-30 09:51:42 UTC 
(rev 22916)
+++ csw/mgar/pkg/lang-python/ipython/trunk/Makefile 2014-01-30 13:20:12 UTC 
(rev 22917)
@@ -7,7 +7,7 @@
 #   shipping ipythonx?)
 # 
 NAME= ipython
-VERSION = 0.13.2
+VERSION = 1.1.0
 CATEGORIES = python
 GARTYPE = v2
 
@@ -23,13 +23,18 @@
 PACKAGES = CSWipython
 CATALOGNAME  = ipython
 
-PATCHFILES += 0001-rename-filenames-containing-spaces.patch
+EXTRA_MERGE_EXCLUDE_FILES = .*\.gitignore
 
-CHECKPKG_OVERRIDES_CSWipython += 
file-with-bad-content|/usr/share|root/opt/csw/lib/python/site-packages/IPython/core/usage.py
-CHECKPKG_OVERRIDES_CSWipython += 
file-with-bad-content|/usr/local|root/opt/csw/lib/python/site-packages/IPython/utils/tests/test_path.py
-CHECKPKG_OVERRIDES_CSWipython += 
file-with-bad-content|/usr/local|root/opt/csw/lib/python/site-packages/IPython/external/pexpect/_pexpect.py
-CHECKPKG_OVERRIDES_CSWipython += 
file-with-bad-content|/usr/local|root/opt/csw/lib/python/site-packages/IPython/external/path/_path.py
-CHECKPKG_OVERRIDES_CSWipython += 
file-with-bad-content|/usr/local|root/opt/csw/lib/python/site-packages/IPython/core/magics/osm.py
+CHECKPKG_OVERRIDES_CSWipython += 
file-with-bad-content|/usr/local|root/opt/csw/lib/python2.7/site-packages/IPython/utils/tests/test_path.py
+CHECKPKG_OVERRIDES_CSWipython += 
file-with-bad-content|/usr/local|root/opt/csw/lib/python2.7/site-packages/IPython/external/path/_path.py
+CHECKPKG_OVERRIDES_CSWipython += 
file-with-bad-content|/usr/local|root/opt/csw/lib/python2.7/site-packages/IPython/external/pexpect/_pexpect.py
+CHECKPKG_OVERRIDES_CSWipython += 
file-with-bad-content|/usr/local|root/opt/csw/lib/python2.7/site-packages/IPython/core/magics/osm.py
+CHECKPKG_OVERRIDES_CSWipython += 
file-with-bad-content|/usr/share|root/opt/csw/lib/python2.7/site-packages/IPython/core/usage.py
+CHECKPKG_OVERRIDES_CSWipython += 
file-with-bad-content|/usr/local|root/opt/csw/lib/python2.6/site-packages/IPython/external/path/_path.py
+CHECKPKG_OVERRIDES_CSWipython += 
file-with-bad-content|/usr/local|root/opt/csw/lib/python2.6/site-packages/IPython/external/pexpect/_pexpect.py
+CHECKPKG_OVERRIDES_CSWipython += 
file-with-bad-content|/usr/local|root/opt/csw/lib/python2.6/site-packages/IPython/utils/tests/test_path.py
+CHECKPKG_OVERRIDES_CSWipython += 
file-with-bad-content|/usr/local|root/opt/csw/lib/python2.6/site-packages/IPython/core/magics/osm.py
+CHECKPKG_OVERRIDES_CSWipython += 
file-with-bad-content|/usr/share|root/opt/csw/lib/python2.6/site-packages/IPython/core/usage.py
 CHECKPKG_OVERRIDES_CSWipython += pkgname-does-not-start-with-CSWpy-
 CHECKPKG_OVERRIDES_CSWipython += catalogname-does-not-start-with-py_
 
@@ -37,8 +42,7 @@
 
 include gar/category.mk
 
-post-extract:
-   @( cd $(WORKSRC)/docs/examples/notebooks && mv Capturing\ Output.ipynb 
Capturing_Output.ipynb )
-   @( cd $(WORKSRC)/docs/examples/notebooks && mv Script\ Magics.ipynb 
Script_Magics.ipynb )
-   @( cd $(WORKSRC)/docs/examples/parallel && mv Parallel\ Magics.ipynb 
Parallel_Magics.ipynb )
+post-build-modulated:
+   @gsed -i '1 s/$(subst _,.,$(PYTHON_VERSION))//' 
$(WORKSRC)/build/scripts-$(subst _,.,$(PYTHON_VERSION))/*
@$(MAKECOOKIE)
+

Modified: csw/mgar/pkg/lang-python/ipython/trunk/checksums
===
--- csw/mgar/pkg/lang-python/ipython/trunk/checksums2014-01-30 09:51:42 UTC 
(rev 22916)
+++ csw/mgar/pkg/lang-python/ipython/trunk/checksums2014-01-30 13:20:12 UTC 
(rev 22917)
@@ -1 +1 @@
-ead3b7eb70c653b537fb9d96d71b8b2a  ipython-0.13.2.tar.gz
+70d69c78122923879232567ac3c47cef  ipython-1.1.0.tar.gz

Deleted: 
csw/mgar/pkg/lang-python/ipython/trunk/files/0001-rename-filenames-containing-spaces.patch
===
--- 
csw/mgar/pkg/lang-python/ipython/trunk/files/0001-rename-filenames-containing-spaces.patch
  2014-01-30 09:51:42 UTC (rev 22916)
+++ 
csw/mgar/pkg/lang-python/ipython/trunk/files/0001-rename-filenames-containing-spaces.patch
  2014-01-30 13:20:12 UTC (rev 22917)
@@ -1,27 +0,0 @@
-From 941fe385c376854c443eb777fe67630650f3ea14 Mon Sep 17 00:00:00 2001
-From: Oliver Kiddle 
-Date: Thu, 4 Jul 2013 11:48:13 +0200
-Subject: [PATCH] rename filenames containing spaces
-

- docs/examples/notebooks/00_notebook_tour.ipynb | 4 ++--
- 

SF.net SVN: gar:[22918] csw/mgar/pkg/zsh/trunk

2014-01-30 Thread opk
Revision: 22918
  http://sourceforge.net/p/gar/code/22918
Author:   opk
Date: 2014-01-30 13:48:45 + (Thu, 30 Jan 2014)
Log Message:
---
zsh: add completion function for opencsw alternatives

Modified Paths:
--
csw/mgar/pkg/zsh/trunk/Makefile
csw/mgar/pkg/zsh/trunk/files/_mgar

Added Paths:
---
csw/mgar/pkg/zsh/trunk/files/_alternatives

Modified: csw/mgar/pkg/zsh/trunk/Makefile
===
--- csw/mgar/pkg/zsh/trunk/Makefile 2014-01-30 13:20:12 UTC (rev 22917)
+++ csw/mgar/pkg/zsh/trunk/Makefile 2014-01-30 13:48:45 UTC (rev 22918)
@@ -11,7 +11,7 @@
 
 MASTER_SITES = $(SF_MIRRORS)
 DISTFILES  = $(NAME)-$(VERSION).tar.bz2
-DISTFILES += _pkgutil _mgar
+DISTFILES += _pkgutil _mgar _alternatives
 
 PACKAGES = CSWzsh
 CATALOGNAME_CSWzsh = zsh
@@ -41,5 +41,5 @@
 CPPFLAGS := -I$(includedir)/ncursesw $(CPPFLAGS)
 
 post-install-modulated:
-   cp -p $(WORKDIR)/_pkgutil $(WORKDIR)/_mgar 
$(DESTDIR)$(sharedstatedir)/$(NAME)/functions
+   cp -p $(WORKDIR)/_pkgutil $(WORKDIR)/_mgar $(WORKDIR)/_alternatives 
$(DESTDIR)$(sharedstatedir)/$(NAME)/functions
@$(MAKECOOKIE)

Added: csw/mgar/pkg/zsh/trunk/files/_alternatives
===
--- csw/mgar/pkg/zsh/trunk/files/_alternatives  (rev 0)
+++ csw/mgar/pkg/zsh/trunk/files/_alternatives  2014-01-30 13:48:45 UTC (rev 
22918)
@@ -0,0 +1,13 @@
+#compdef alternatives
+
+local -a args
+args=(
+  '(- 2)'{--display,--auto,--config} '(-)'{--set,--remove}
+  '(1 2 -)--install:path:_files:name: :priority'
+  '(1 2 -)'{--relink-missing,--list}
+  '2:path:_files'
+)
+(( CURRENT > 2 )) &&
+  args+='1:name:( ${${(f)"$(/opt/csw/sbin/alternatives --list)"}[2,-1]} )'
+
+_arguments $args

Modified: csw/mgar/pkg/zsh/trunk/files/_mgar
===
--- csw/mgar/pkg/zsh/trunk/files/_mgar  2014-01-30 13:20:12 UTC (rev 22917)
+++ csw/mgar/pkg/zsh/trunk/files/_mgar  2014-01-30 13:48:45 UTC (rev 22918)
@@ -7,6 +7,9 @@
 if (( CURRENT == 2 )); then
   cmds=(
 help:list\ available\ commands
+install:install\ files\ to\ staging\ directory
+makepatch:create\ a\ patch\ for\ outstanding\ changes
+check-prereqs checksum test
 ${${(M)${(f)"$(_call_program commands ${words[1]} help)"}:#  *}//  
(#b)([a-z-]##)[^A-Z]##(?)/$match[1]:${match[2]:l}}
   )
 

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



  1   2   >