From rmottola at users.sourceforge.net Thu Oct 1 09:01:11 2015 From: rmottola at users.sourceforge.net (rmottola at users.sourceforge.net) Date: Thu, 1 Oct 2015 07:01:11 +0000 Subject: SF.net SVN: gar:[25260] csw/mgar/pkg/gnutls/trunk Message-ID: <3nRQNp4gTkz1JB@mail.opencsw.org> Revision: 25260 http://sourceforge.net/p/gar/code/25260 Author: rmottola Date: 2015-10-01 07:01:10 +0000 (Thu, 01 Oct 2015) Log Message: ----------- gnutls/trunk: add doc build patch, ported from official gnutls repo Modified Paths: -------------- csw/mgar/pkg/gnutls/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/gnutls/trunk/files/0008_updatedgdocfrommaster.patch Modified: csw/mgar/pkg/gnutls/trunk/Makefile =================================================================== --- csw/mgar/pkg/gnutls/trunk/Makefile 2015-09-29 20:18:31 UTC (rev 25259) +++ csw/mgar/pkg/gnutls/trunk/Makefile 2015-10-01 07:01:10 UTC (rev 25260) @@ -34,10 +34,17 @@ PATCHFILES += 0006-CVE-2014-1959.patch PATCHFILES += 0007-CVE-2014-0092.patch +# Fix documentation build broken due perl +PATCHFILES += 0008_updatedgdocfrommaster.patch + UFILES_REGEX = $(NAME)-(\d+(?:\.\d+)*).tar.bz2 VENDOR_URL = http://www.gnu.org/software/gnutls/ +PACKAGING_PLATFORMS += solaris9-sparc solaris9-i386 +PACKAGING_PLATFORMS += solaris10-sparc solaris10-i386 + + PACKAGES += CSWlibgnutls26 CATALOGNAME_CSWlibgnutls = libgnutls26 SPKG_DESC_CSWlibgnutls26 = GNU Transport Layer Security libraries and tools providing libgnutls*.so.26 @@ -67,6 +74,7 @@ BUILD64_LIBS_ONLY = 1 CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --disable-guile +CONFIGURE_ARGS += NM=gnm # If defined with the default value, the test breaks # so we only keep the required items Added: csw/mgar/pkg/gnutls/trunk/files/0008_updatedgdocfrommaster.patch =================================================================== --- csw/mgar/pkg/gnutls/trunk/files/0008_updatedgdocfrommaster.patch (rev 0) +++ csw/mgar/pkg/gnutls/trunk/files/0008_updatedgdocfrommaster.patch 2015-10-01 07:01:10 UTC (rev 25260) @@ -0,0 +1,624 @@ +--- a/doc/scripts/gdoc Fri Apr 8 02:30:44 2011 ++++ b/gdoc.target.txt Wed Sep 30 19:30:50 2015 +@@ -1,4 +1,6 @@ +-#!/usr/bin/perl ++eval '(exit $?0)' && eval 'exec perl "$0" ${1+"$@"}' ++ & eval 'exec perl "$0" $argv:q' ++ if 0; + + ## Copyright (c) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Simon Josefsson + ## added -texinfo, -listfunc, -pkg-name +@@ -7,6 +9,8 @@ + ## Copyright (c) 2001, 2002 Nikos Mavrogiannopoulos + ## added -tex + ## Copyright (c) 1998 Michael Zucchi ++## Copyright (c) 2013 Adam Sampson ++## made highlighting not depend on hash order, for Perl 5.18 + + # This program is free software: you can redistribute it and/or modify + # it under the terms of the GNU General Public License as published by +@@ -132,11 +136,11 @@ + use POSIX qw(strftime); + + # match expressions used to find embedded type information +-$type_constant = "((?\$2", +- $type_func, "\$1", +- $type_struct, "\$1", +- $type_param, "\$1" ); ++ at highlights_html = ( [$type_constant, '"$1"'], ++ [$type_func, '"$1"'], ++ [$type_struct, '"$1"'], ++ [$type_param, '" $1 "'] ); + $blankline_html = "

"; + +-%highlights_texinfo = ( $type_constant, "\\\@code{\$2}", +- $type_func, "\\\@code{\$1}", +- $type_struct, "\\\@code{\$1}", +- $type_param, "\\\@code{\$1}" ); ++ at highlights_texinfo = ( [$type_param, '" \@code{$1} "'], ++ [$type_constant, '"\@code{$1} "'], ++ [$type_func, '"\@code{$1} "'], ++ [$type_struct, '"\@code{$1} "'], ++ ); + $blankline_texinfo = ""; + +-%highlights_tex = ( $type_constant, "{\\\\it \$2}", +- $type_func, "{\\\\bf \$1}", +- $type_struct, "{\\\\it \$1}", +- $type_param, "{\\\\bf \$1}" ); ++ at highlights_tex = ( [$type_param, '" {\\\bf $1} "'], ++ [$type_constant, '"{\\\it $1}"'], ++ [$type_func, '"{\\\bf $1}"'], ++ [$type_struct, '"{\\\it $1}"'], ++ ); + $blankline_tex = "\\\\"; + + # sgml, docbook format +-%highlights_sgml = ( $type_constant, "\$2", +- $type_func, "\$1", +- $type_struct, "\$1", +- $type_env, "\$1", +- $type_param, "\$1" ); ++ at highlights_sgml = ( [$type_constant, '"$1"'], ++ [$type_func, '"$1"'], ++ [$type_struct, '"$1"'], ++ [$type_env, '"$1"'], ++ [$type_param, '" $1 "'] ); + $blankline_sgml = "\n"; + + # these are pretty rough +-%highlights_man = ( $type_constant, "\\\\fB\$2\\\\fP", +- $type_func, "\\\\fB\$1\\\\fP", +- $type_struct, "\\\\fB\$1\\\\fP", +- $type_param, "\\\\fI\$1\\\\fP" ); ++ at highlights_man = ( [$type_constant, '"\\\fB$1\\\fP"'], ++ [$type_func, '"\\\fB$1\\\fP"'], ++ [$type_struct, '"\\\fB$1\\\fP"'], ++ [$type_param, '" \\\fI$1\\\fP "'] ); + $blankline_man = ""; + + # text-mode +-%highlights_text = ( $type_constant, "\$2", +- $type_func, "\$1", +- $type_struct, "\$1", +- $type_param, "\$1" ); ++ at highlights_text = ( [$type_constant, '"$1"'], ++ [$type_func, '"$1"'], ++ [$type_struct, '"$1"'], ++ [$type_param, '"$1 "'] ); + $blankline_text = ""; ++my $lineprefix = ""; + +- + sub usage { + print "Usage: $0 [ -v ] [ -docbook | -html | -text | -man | -tex | -texinfo -listfunc ]\n"; + print " [ -sourceversion verno ] [ -include file | -includefuncprefix ]\n"; +@@ -201,7 +207,7 @@ + + $verbose = 0; + $output_mode = "man"; +-%highlights = %highlights_man; ++ at highlights = @highlights_man; + $blankline = $blankline_man; + $modulename = "API Documentation"; + $sourceversion = strftime "%Y-%m-%d", localtime; +@@ -210,27 +216,27 @@ + $cmd = shift @ARGV; + if ($cmd eq "-html") { + $output_mode = "html"; +- %highlights = %highlights_html; ++ @highlights = @highlights_html; + $blankline = $blankline_html; + } elsif ($cmd eq "-man") { + $output_mode = "man"; +- %highlights = %highlights_man; ++ @highlights = @highlights_man; + $blankline = $blankline_man; + } elsif ($cmd eq "-tex") { + $output_mode = "tex"; +- %highlights = %highlights_tex; ++ @highlights = @highlights_tex; + $blankline = $blankline_tex; + } elsif ($cmd eq "-texinfo") { + $output_mode = "texinfo"; +- %highlights = %highlights_texinfo; ++ @highlights = @highlights_texinfo; + $blankline = $blankline_texinfo; + } elsif ($cmd eq "-text") { + $output_mode = "text"; +- %highlights = %highlights_text; ++ @highlights = @highlights_text; + $blankline = $blankline_text; + } elsif ($cmd eq "-docbook") { + $output_mode = "sgml"; +- %highlights = %highlights_sgml; ++ @highlights = @highlights_sgml; + $blankline = $blankline_sgml; + } elsif ($cmd eq "-listfunc") { + $output_mode = "listfunc"; +@@ -270,6 +276,8 @@ + my $name = shift @_; + my $contents = join "\n", @_; + ++ $name = " $name"; ++ + if ($name =~ m/$type_constant/) { + $name = $1; + # print STDERR "constant section '$1' = '$contents'\n"; +@@ -280,6 +288,7 @@ + $parameters{$name} = $contents; + } else { + # print STDERR "other section '$name' = '$contents'\n"; ++ $name =~ tr/ //d; + $sections{$name} = $contents; + push @sectionlist, $name; + } +@@ -296,35 +305,15 @@ + # sections => %descriont descriptions + # + +-sub repstr { +- $pattern = shift; +- $repl = shift; +- $match1 = shift; +- $match2 = shift; +- $match3 = shift; +- $match4 = shift; +- +- $output = $repl; +- $output =~ s,\$1,$match1,g; +- $output =~ s,\$2,$match2,g; +- $output =~ s,\$3,$match3,g; +- $output =~ s,\$4,$match4,g; +- +- eval "\$return = qq/$output/"; +- +-# print "pattern $pattern matched 1=$match1 2=$match2 3=$match3 4=$match4 replace $repl yielded $output interpolated $return\n"; +- +- $return; +-} +- + sub just_highlight { + my $contents = join "\n", @_; + my $line; + my $ret = ""; + +- foreach $pattern (keys %highlights) { +-# print "scanning pattern $pattern ($highlights{$pattern})\n"; +- $contents =~ s:$pattern:repstr($pattern, $highlights{$pattern}, $1, $2, $3, $4):gse; ++ foreach $highlight (@highlights) { ++ my ($pattern, $replace) = @$highlight; ++ #print "scanning pattern $pattern ($replace)\n"; ++ $contents =~ s/$pattern/$replace/gees; + } + foreach $line (split "\n", $contents) { + if ($line eq ""){ +@@ -370,13 +359,45 @@ + } + } + foreach $section (@{$args{'sectionlist'}}) { ++ $section =~ s/\@//g; + print "\n\@strong{$section:} " if $section ne $section_default; +- $args{'sections'}{$section} =~ s:([{}]):\@\1:gs; ++ $args{'sections'}{$section} =~ s:([{}]):\@$1:gs; + output_highlight($args{'sections'}{$section}); + } + print "\@end deftypefun\n\n"; + } + ++sub output_enum_texinfo { ++ my %args = %{$_[0]}; ++ my ($parameter, $section); ++ my $count; ++ my $name = $args{'enum'}; ++ my $param; ++ my $param2; ++ my $sec; ++ my $check; ++ my $type; ++ ++ print "\n\@c $name\n"; ++ print "\@table \@code\n"; ++ ++ $check=0; ++ foreach $parameter (@{$args{'parameterlist'}}) { ++ $param1 = $parameter; ++ $param1 =~ s/_/_\@-/g; ++ ++ $check = 1; ++ print "\@item ".$param1."\n"; ++# print "\n"; ++ ++ $param2 = $args{'parameters'}{$parameter}; ++ $out = just_highlight($param2); ++ chomp $out; ++ print $out . "\n"; ++ } ++ print "\@end table\n"; ++} ++ + # output in html + sub output_html { + my %args = %{$_[0]}; +@@ -428,7 +449,9 @@ + + $func =~ s/_/\\_/g; + +- print "\n\n\\subsection{". $func . "}\n\\label{" . $args{'function'} . "}\n"; ++ print "\n\n\\begin{function}\n"; ++ print "\\functionTitle{". $func . "}\n"; ++ print "\\index{". $func . "}\n"; + + $type = $args{'functiontype'}; + $type =~ s/_/\\_/g; +@@ -451,9 +474,8 @@ + } + print ")\n"; + +- print "\n{\\large{Arguments}}\n"; ++ print "\n\\begin{functionArguments}\n"; + +- print "\\begin{itemize}\n"; + $check=0; + foreach $parameter (@{$args{'parameterlist'}}) { + $param1 = $args{'parametertypes'}{$parameter}; +@@ -462,11 +484,12 @@ + $param2 =~ s/_/\\_/g; + + $check = 1; +- print "\\item {\\it ".$param1."} {\\bf ".$param2."}: \n"; ++ print "\\functionArgument {\\it ".$param1."} {\\bf ".$param2."}: \n"; + # print "\n"; + + $param3 = $args{'parameters'}{$parameter}; +- $param3 =~ s/#([a-zA-Z\_]+)/{\\it \1}/g; ++ $param3 =~ s/\#([a-zA-Z\_]+)/{\\it $1}/g; ++ $param3 =~ s/\%([a-zA-Z\_]+)/{\\bf $1}/g; + + $out = just_highlight($param3); + $out =~ s/_/\\_/g; +@@ -475,32 +498,73 @@ + if ($check==0) { + print "\\item void\n"; + } +- print "\\end{itemize}\n"; ++ print "\\end{functionArguments}\n"; + + foreach $section (@{$args{'sectionlist'}}) { + $sec = $section; + $sec =~ s/_/\\_/g; +- $sec =~ s/#([a-zA-Z\_]+)/{\\it \1}/g; ++ $sec =~ s/#([a-zA-Z\_]+)/{\\it $1}/g; + +- print "\n{\\large{$sec}}\\\\\n"; +- print "\\begin{rmfamily}\n"; ++ print "\n\\begin{function${sec}}\n"; ++ $out = $args{'sections'}{$section}; + +- $sec = $args{'sections'}{$section}; +- $sec =~ s/\\:/:/g; +- $sec =~ s/#([a-zA-Z\_]+)/{\\it \1}/g; +- $sec =~ s/->/\$\\rightarrow\$/g; +- $sec =~ s/([0-9]+)\^([0-9]+)/\$\{\1\}\^\{\2\}\$/g; ++ $out =~ s/\#([a-zA-Z\_]+)/{\\it $1}/g; ++ $out =~ s/\%([a-zA-Z\_]+)/{\\bf $1}/g; ++ $out =~ s/\@([a-zA-Z\_]+)/{\\bf $1}/g; ++ $out =~ s/_/\\_\\-/g; ++ $out =~ s/\$/\\\$/g; ++ $out =~ s/#/\\#/g; ++ $out =~ s/\n\n/\n/g; ++ $out =~ s/\\:/:/g; ++ $out =~ s/\-\>/\$\\rightarrow\$/g; ++ $out =~ s/([0-9]+)\^([0-9]+)/\$\{$1\}\^\{$2\}\$/g; + +- $out = just_highlight($sec); +- $out =~ s/_/\\_/g; +- + print $out; +- print "\\end{rmfamily}\n"; ++ print "\\end{function${sec}}\n"; + } +- print "\n"; ++ print "\\end{function}\n\n"; + } + ++sub output_enum_tex { ++ my %args = %{$_[0]}; ++ my ($parameter, $section); ++ my $count; ++ my $name = $args{'enum'}; ++ my $param; ++ my $param2; ++ my $sec; ++ my $check; ++ my $type; + ++ print "\n\n\\begin{enum}\n"; ++ $name =~ s/_/\\_/g; ++ print "\\enumTitle{". $name . "}\n"; ++ print "\\index{". $name . "}\n"; ++ ++ print "\n\\begin{enumList}\n"; ++ ++ $check=0; ++ foreach $parameter (@{$args{'parameterlist'}}) { ++ $param1 = $parameter; ++ $param1 =~ s/_/\\_\\-/g; ++ ++ $check = 1; ++ print "\\enumElement{".$param1."}{"; ++# print "\n"; ++ ++ $param2 = $args{'parameters'}{$parameter}; ++ $param2 =~ s/\#([a-zA-Z\_]+)/{\\it $1}/g; ++ $param2 =~ s/\%([a-zA-Z\_]+)/{\\bf $1}/g; ++ $out = just_highlight($param2); ++ $out =~ s/_/\\_/g; ++ chomp $out; ++ print $out . "}\n"; ++ } ++ print "\\end{enumList}\n"; ++ ++ print "\\end{enum}\n\n"; ++} ++ + # output in sgml DocBook + sub output_sgml { + my %args = %{$_[0]}; +@@ -639,11 +703,14 @@ + if ($args{'bugsto'}) { + print ".SH \"REPORTING BUGS\"\n"; + print "Report bugs to <". $args{'bugsto'} . ">.\n"; ++ print ".br\n"; ++ print "General guidelines for reporting bugs: http://www.gnu.org/gethelp/\n"; ++ print ".br\n"; + if ($args{'pkgname'}) { + print $args{'pkgname'} . " home page: " . + "http://www.gnu.org/software/" . $args{'module'} . "/\n"; + } +- print "General help using GNU software: http://www.gnu.org/gethelp/\n"; ++ print "\n"; + } + + if ($args{'copyright'}) { +@@ -670,6 +737,10 @@ + print ".B info " . $args{'seeinfo'} . "\n"; + print ".PP\n"; + print "should give you access to the complete manual.\n"; ++ print "As an alternative you may obtain the manual from:\n"; ++ print ".IP\n"; ++ print ".B http://www.gnu.org/software/" . $args{'module'} . "/manual/\n"; ++ print ".PP\n"; + } + } + +@@ -705,7 +776,11 @@ + eval "output_".$output_mode."(\@_);"; + } + ++sub output_enum { ++ eval "output_enum_".$output_mode."(\@_);"; ++} + ++ + ## + # takes a function prototype and spits out all the details + # stored in the global arrays/hsahes. +@@ -744,7 +819,7 @@ + # print STDERR " :> @args\n"; + $type = join " ", @args; + +- if ($parameters{$param} eq "" && $param != "void") { ++ if ((!defined($parameters{$param}) || $parameters{$param} eq "") && $param ne "void") { + $parameters{$param} = "-- undescribed --"; + print STDERR "warning: $lineno: Function parameter '$param' not described in '$function_name'\n"; + } +@@ -781,6 +856,56 @@ + } + } + ++sub dump_enum { ++ my $prototype = shift @_; ++ ++ if (($prototype =~ m/^\s*typedef\s+enum\s*[a-zA-Z0-9_~:]*\s*\{([\-a-zA-Z0-9_~=,:\s\(\)\<]+)\s*\}\s*([a-zA-Z0-9_]+);.*/)) { ++# || $prototype =~ m/^\s*enum\s+([a-zA-Z0-9_~:]+).*/) { ++ $args = $1; ++ $name = $2; ++ ++ foreach $arg (split ',', $args) { ++ # strip leading/trailing spaces ++ $arg =~ s/^\s*//; ++ $arg =~ s/\s*$//; ++ $arg =~ s/([A-Za-z0-9_]+)\s*=.*/$1/g; ++# print STDERR "SCAN ARG: '$arg'\n"; ++ ++ next if $arg eq ''; ++ if ((!defined($parameters{$arg}) || $parameters{$arg} eq "")) { ++ $parameters{$arg} = "-- undescribed --"; ++ print STDERR "warning: $lineno: Enumeration parameter '$arg' not described in '$name'\n"; ++ } ++ ++ push @parameterlist, $arg; ++ ++# print STDERR "param = '$arg'\n"; ++ } ++ } else { ++# print STDERR "warning: $lineno: Cannot understand enumeration: '$prototype'\n"; ++ return; ++ } ++ ++ output_enum({'enum' => $name, ++ 'module' => $modulename, ++ 'sourceversion' => $sourceversion, ++ 'include' => $include, ++ 'includefuncprefix' => $includefuncprefix, ++ 'bugsto' => $bugsto, ++ 'pkgname' => $pkgname, ++ 'copyright' => $copyright, ++ 'verbatimcopying' => $verbatimcopying, ++ 'seeinfo' => $seeinfo, ++ 'functiontype' => $return_type, ++ 'parameterlist' => \@parameterlist, ++ 'parameters' => \%parameters, ++ 'parametertypes' => \%parametertypes, ++ 'sectionlist' => \@sectionlist, ++ 'sections' => \%sections, ++ 'purpose' => $function_purpose ++ }); ++} ++ + ###################################################################### + # main + # states +@@ -797,7 +922,7 @@ + $doc_end = "\\*/"; + $doc_com = "\\s*\\*\\s*"; + $doc_func = $doc_com."(\\w+):?"; +-$doc_sect = $doc_com."([".$doc_special."[:upper:]][\\w ]+):\\s*(.*)"; ++$doc_sect = $doc_com."([".$doc_special."[:upper:]][\\w]+):\\s*(.*)"; + $doc_content = $doc_com."(.*)"; + + %constants = (); +@@ -809,6 +934,7 @@ + $contents = ""; + $section_default = "Description"; # default section + $section = $section_default; ++$enum = 0; + + $lineno = 0; + foreach $file (@ARGV) { +@@ -816,18 +942,21 @@ + print STDERR "Error: Cannot open file $file\n"; + next; + } +- while () { ++ while ($line = ) { + $lineno++; + + if ($state == 0) { +- if (/$doc_start/o) { ++ if ($line =~ /$doc_start/o) { + $state = 1; # next line is always the function name ++# print STDERR "XXX: start of doc comment\n"; + } + } elsif ($state == 1) { # this line is the function name (always) +- if (/$doc_func/o) { ++ if ($line =~ /$doc_func/o) { + $function = $1; + $state = 2; +- if (/-\s*(.*)/) { ++# print STDERR "XXX: start of doc comment, looking for prototype\n"; ++ ++ if ($line =~ /-\s*(.*)/) { + $function_purpose = $1; + } else { + $function_purpose = ""; +@@ -841,11 +970,11 @@ + $state = 0; + } + } elsif ($state == 2) { # look for head: lines, and include content +- if (/$doc_sect/o) { ++ if ($line =~ /$doc_sect/o) { + $newsection = $1; + $newcontents = $2; + +- if ($contents ne "") { ++ if ($contents ne '') { + dump_section($section, $contents); + $section = $section_default; + } +@@ -855,7 +984,7 @@ + $contents .= "\n"; + } + $section = $newsection; +- } elsif (/$doc_end/) { ++ } elsif ($line =~ /$doc_end/) { + + if ($contents ne "") { + dump_section($section, $contents); +@@ -863,13 +992,12 @@ + $contents = ""; + } + +-# print STDERR "end of doc comment, looking for prototype\n"; + $prototype = ""; + $state = 3; +- } elsif (/$doc_content/) { ++ } elsif ($line =~ /$doc_content/) { + # miguel-style comment kludge, look for blank lines after + # @parameter line to signify start of description +- if ($1 eq "" && $section =~ m/^@/) { ++ if ($1 eq '' && $section =~ m/^@/) { + dump_section($section, $contents); + $section = $section_default; + $contents = ""; +@@ -881,13 +1009,16 @@ + print STDERR "warning: $lineno: Bad line: $_"; + } + } elsif ($state == 3) { # scanning for function { (end of prototype) +- if (m#\s*/\*\s+MACDOC\s*#io) { ++ if ($line =~ m#\s*/\*\s+MACDOC\s*#io) { + # do nothing + } +- elsif (/([^\{]*)/) { ++ elsif ($enum == 1 && $line =~ /(^\s*\{).*/) { ++ $prototype .= "{"; ++ } ++ elsif ($line =~ /([^\{]*)/) { + $prototype .= $1; + } +- if (/\{/) { ++ if ($enum == 0 && $line =~ /\{/) { + $prototype =~ s@/\*.*?\*/@@gos; # strip comments. + $prototype =~ s@[\r\n]+@ @gos; # strip newlines/cr's. + $prototype =~ s@^ +@@gos; # strip leading spaces +@@ -901,9 +1032,32 @@ + %sections = (); + @sectionlist = (); + $prototype = ""; ++ $enum = 0; + + $state = 0; + } ++ elsif ($enum == 1 && $line =~ /\}/) { ++ $prototype =~ s@/\*.*?\*/@@gos; # strip comments. ++ $prototype =~ s@[\r\n]+@ @gos; # strip newlines/cr's. ++ $prototype =~ s@^ +@@gos; # strip leading spaces ++ dump_enum($prototype); ++ ++ $function = ""; ++ %constants = (); ++ %parameters = (); ++ %parametertypes = (); ++ @parameterlist = (); ++ %sections = (); ++ @sectionlist = (); ++ $prototype = ""; ++ $enum = 0; ++ ++ $state = 0; ++ } ++ elsif ($line =~ /([a-zA-Z\s]+)enum(.*)$/) { ++ $enum = 1; ++ } ++ + } + } + } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From lblume at users.sourceforge.net Thu Oct 1 11:02:53 2015 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Thu, 1 Oct 2015 09:02:53 +0000 Subject: SF.net SVN: gar:[25261] csw/mgar/pkg/mysql5/branches Message-ID: <3nRT4n2PNXz1NL@mail.opencsw.org> Revision: 25261 http://sourceforge.net/p/gar/code/25261 Author: lblume Date: 2015-10-01 09:02:53 +0000 (Thu, 01 Oct 2015) Log Message: ----------- mysql5/branches/mysql-5.5.x: Bump to 5.5.46 Modified Paths: -------------- csw/mgar/pkg/mysql5/branches/mysql-5.5.x/Makefile csw/mgar/pkg/mysql5/branches/mysql-5.5.x/checksums csw/mgar/pkg/mysql5/branches/mysql-5.7.x/Makefile csw/mgar/pkg/mysql5/branches/mysql-5.7.x/checksums Modified: csw/mgar/pkg/mysql5/branches/mysql-5.5.x/Makefile =================================================================== --- csw/mgar/pkg/mysql5/branches/mysql-5.5.x/Makefile 2015-10-01 07:01:10 UTC (rev 25260) +++ csw/mgar/pkg/mysql5/branches/mysql-5.5.x/Makefile 2015-10-01 09:02:53 UTC (rev 25261) @@ -14,7 +14,7 @@ PROJ_NAME = mysql NAME = $(PROJ_NAME)5 BASE_VERSION = 5.5 -PATCHLEVEL = 45 +PATCHLEVEL = 46 ALTS_PRIO = 55 VERSION = $(BASE_VERSION).$(PATCHLEVEL) Modified: csw/mgar/pkg/mysql5/branches/mysql-5.5.x/checksums =================================================================== --- csw/mgar/pkg/mysql5/branches/mysql-5.5.x/checksums 2015-10-01 07:01:10 UTC (rev 25260) +++ csw/mgar/pkg/mysql5/branches/mysql-5.5.x/checksums 2015-10-01 09:02:53 UTC (rev 25261) @@ -1 +1 @@ -86f13ff6cf3220f500629025fd471378 mysql-5.5.45.tar.gz +7f94c003b672d8edac1fb6adb391b090 mysql-5.5.46.tar.gz Modified: csw/mgar/pkg/mysql5/branches/mysql-5.7.x/Makefile =================================================================== --- csw/mgar/pkg/mysql5/branches/mysql-5.7.x/Makefile 2015-10-01 07:01:10 UTC (rev 25260) +++ csw/mgar/pkg/mysql5/branches/mysql-5.7.x/Makefile 2015-10-01 09:02:53 UTC (rev 25261) @@ -20,8 +20,8 @@ PROJ_NAME = mysql NAME = $(PROJ_NAME)57 BASE_VERSION = 5.7 -PATCHLEVEL = 5 -MILESTONE = m15 +PATCHLEVEL = 8 +MILESTONE = rc VERSION = $(BASE_VERSION).$(PATCHLEVEL)-$(MILESTONE) # Useful when making a series of builds on the same day Modified: csw/mgar/pkg/mysql5/branches/mysql-5.7.x/checksums =================================================================== --- csw/mgar/pkg/mysql5/branches/mysql-5.7.x/checksums 2015-10-01 07:01:10 UTC (rev 25260) +++ csw/mgar/pkg/mysql5/branches/mysql-5.7.x/checksums 2015-10-01 09:02:53 UTC (rev 25261) @@ -1 +1 @@ -95aa1873fd414482a1a88752cbde46bd mysql-5.7.5-m15.tar.gz +f6f1c39050f2428add2b0771c2766f82 mysql-5.7.8-rc.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Thu Oct 1 15:24:03 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 1 Oct 2015 13:24:03 +0000 Subject: SF.net SVN: gar:[25262] csw/mgar/pkg/gnutls3/trunk/Makefile Message-ID: <3nRZt74zFqzH7@mail.opencsw.org> Revision: 25262 http://sourceforge.net/p/gar/code/25262 Author: dmichelsen Date: 2015-10-01 13:24:03 +0000 (Thu, 01 Oct 2015) Log Message: ----------- gnutls3/trunk: Intermediate commit Modified Paths: -------------- csw/mgar/pkg/gnutls3/trunk/Makefile Modified: csw/mgar/pkg/gnutls3/trunk/Makefile =================================================================== --- csw/mgar/pkg/gnutls3/trunk/Makefile 2015-10-01 09:02:53 UTC (rev 25261) +++ csw/mgar/pkg/gnutls3/trunk/Makefile 2015-10-01 13:24:03 UTC (rev 25262) @@ -12,11 +12,11 @@ MASTER_SITES = ftp://ftp.gnutls.org/gcrypt/gnutls/v$(SUBV)/ DISTFILES += $(DISTNAME).tar.xz # PATCHFILES += 0001-Do-not-strip-norunpath.patch -PATCHFILES += 0002-Use-AF_UNIX-instead-of-AF_LOCAL-on-Solaris.patch +##PATCHFILES += 0002-Use-AF_UNIX-instead-of-AF_LOCAL-on-Solaris.patch # Some test scripts now uses some bashisms, so we make # sure that bash is used instead of sh -PATCHFILES += 0003-force-use-of-bash-shell-in-non-portable-test-scripts.patch +##PATCHFILES += 0003-force-use-of-bash-shell-in-non-portable-test-scripts.patch # Sun Studio 12 bails out on .deinit_func GARCOMPILER = GCC4 @@ -59,11 +59,12 @@ SPKG_DESC_CSWlibgnutls-dev = Development Files for GNU TLS PKGFILES_CSWlibgnutls-dev = $(PKGFILES_DEVEL) RUNTIME_DEP_PKGS_CSWlibgnutls-dev += CSWlibgnutls28 +RUNTIME_DEP_PKGS_CSWlibgnutls-dev += CSWlibp11kit-dev # The compilation complains with # "gets is a security hole - use fgets instead" # even if it is not used, so we remove this warning -PATCHFILES += 0001-no-gets-warning.patch +# PATCHFILES += 0001-no-gets-warning.patch # EXTRA_CPPFLAGS = -D_FILE_OFFSET_BITS=64 @@ -72,25 +73,25 @@ CONFIGURE_ARGS += $(DIRPATHS) CONFIGURE_ARGS += --with-lzo CONFIGURE_ARGS += --disable-guile -CONFIGURE_ARGS += --disable-libdane +#CONFIGURE_ARGS += --disable-libdane CONFIGURE_ARGS += --with-default-trust-store-file=$(sysconfdir)/ssl/certs/ca-certificates.crt CONFIGURE_ARGS += --with-unbound-root-key-file=$(sysconfdir)/unbound/root.key # libopts doesn't contains yet 64 bits libraries so we have to use # the included one meanwhile: see https://www.opencsw.org/mantis/view.php?id=5156 -CONFIGURE_ARGS += --enable-local-libopts +# CONFIGURE_ARGS += --enable-local-libopts # Workaround a host detection bug in configure for amd64 -CONFIGURE_ARGS += $(CONFIGURE_ARGS_$(ISA)) -CONFIGURE_ARGS_amd64 += --build=x86_64-pc-solaris2$(shell uname -r |sed -e 's/[^.]*//') +##CONFIGURE_ARGS += $(CONFIGURE_ARGS_$(ISA)) +##CONFIGURE_ARGS_amd64 += --build=x86_64-pc-solaris2$(shell uname -r |sed -e 's/[^.]*//') # If defined with the default value, the test breaks # # so we only keep the required items -LD_OPTIONS = $(LINKER_MAPS) $(LINKER_DIRECT) $(LINKER_IGNORE) +##LD_OPTIONS = $(LINKER_MAPS) $(LINKER_DIRECT) $(LINKER_IGNORE) include gar/category.mk # We must regerenere this file with autogen otherwise we run into an error like this: # error option template version mismatches autoopts/options.h header # We simply delete them as they will be regenerated thanks to the Makefile rules -pre-build: +xxpre-build: gfind $(WORKSRC) -regex ".*/src/.*-args.c" -delete @$(MAKECOOKIE) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rmottola at users.sourceforge.net Thu Oct 1 16:53:13 2015 From: rmottola at users.sourceforge.net (rmottola at users.sourceforge.net) Date: Thu, 1 Oct 2015 14:53:13 +0000 Subject: SF.net SVN: gar:[25263] csw/mgar/pkg/gnutls/trunk/Makefile Message-ID: <3nRcs04tvdzPk@mail.opencsw.org> Revision: 25263 http://sourceforge.net/p/gar/code/25263 Author: rmottola Date: 2015-10-01 14:53:13 +0000 (Thu, 01 Oct 2015) Log Message: ----------- gnutls/trunk: be more finegrained for 64bit builds Modified Paths: -------------- csw/mgar/pkg/gnutls/trunk/Makefile Modified: csw/mgar/pkg/gnutls/trunk/Makefile =================================================================== --- csw/mgar/pkg/gnutls/trunk/Makefile 2015-10-01 13:24:03 UTC (rev 25262) +++ csw/mgar/pkg/gnutls/trunk/Makefile 2015-10-01 14:53:13 UTC (rev 25263) @@ -71,7 +71,14 @@ GARCOMPILER = GNU -BUILD64_LIBS_ONLY = 1 +#BUILD64_LIBS_ONLY = 1 +# Enable 64 bits, but not for Solaris 9 x86 +BUILD64_5.9_sparc = 1 +BUILD64_5.10_sparc = 1 +BUILD64_5.9_i386 = +BUILD64_5.10_i386 = 1 +BUILD64 = $(BUILD64_$(GAROSREL)_$(GARCH)) + CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --disable-guile CONFIGURE_ARGS += NM=gnm This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rmottola at users.sourceforge.net Thu Oct 1 17:33:59 2015 From: rmottola at users.sourceforge.net (rmottola at users.sourceforge.net) Date: Thu, 1 Oct 2015 15:33:59 +0000 Subject: SF.net SVN: gar:[25264] csw/mgar/pkg/gnutls3/trunk/Makefile Message-ID: <3nRdm43HcXzTp@mail.opencsw.org> Revision: 25264 http://sourceforge.net/p/gar/code/25264 Author: rmottola Date: 2015-10-01 15:33:59 +0000 (Thu, 01 Oct 2015) Log Message: ----------- gnutls3/trunk: be more finegrained for 64bit builds Modified Paths: -------------- csw/mgar/pkg/gnutls3/trunk/Makefile Modified: csw/mgar/pkg/gnutls3/trunk/Makefile =================================================================== --- csw/mgar/pkg/gnutls3/trunk/Makefile 2015-10-01 14:53:13 UTC (rev 25263) +++ csw/mgar/pkg/gnutls3/trunk/Makefile 2015-10-01 15:33:59 UTC (rev 25264) @@ -68,8 +68,14 @@ # EXTRA_CPPFLAGS = -D_FILE_OFFSET_BITS=64 -BUILD64 = 1 +# Enable 64 bits, but not for Solaris 9 x86 +BUILD64_5.9_sparc = 1 +BUILD64_5.10_sparc = 1 +BUILD64_5.9_i386 = +BUILD64_5.10_i386 = 1 +BUILD64 = $(BUILD64_$(GAROSREL)_$(GARCH)) + CONFIGURE_ARGS += $(DIRPATHS) CONFIGURE_ARGS += --with-lzo CONFIGURE_ARGS += --disable-guile This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Fri Oct 2 10:31:18 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 2 Oct 2015 08:31:18 +0000 Subject: SF.net SVN: gar:[25265] csw/mgar/pkg/squid/trunk Message-ID: <3nS4L00Dh7zwT@mail.opencsw.org> Revision: 25265 http://sourceforge.net/p/gar/code/25265 Author: dmichelsen Date: 2015-10-02 08:31:18 +0000 (Fri, 02 Oct 2015) Log Message: ----------- squid/trunk: Update to 3.5.10 Modified Paths: -------------- csw/mgar/pkg/squid/trunk/Makefile csw/mgar/pkg/squid/trunk/checksums Modified: csw/mgar/pkg/squid/trunk/Makefile =================================================================== --- csw/mgar/pkg/squid/trunk/Makefile 2015-10-01 15:33:59 UTC (rev 25264) +++ csw/mgar/pkg/squid/trunk/Makefile 2015-10-02 08:31:18 UTC (rev 25265) @@ -2,7 +2,7 @@ # $Id$ # NAME = squid -VERSION = 3.5.9 +VERSION = 3.5.10 GARTYPE = v2 DESCRIPTION = High performance Web proxy cache Modified: csw/mgar/pkg/squid/trunk/checksums =================================================================== --- csw/mgar/pkg/squid/trunk/checksums 2015-10-01 15:33:59 UTC (rev 25264) +++ csw/mgar/pkg/squid/trunk/checksums 2015-10-02 08:31:18 UTC (rev 25265) @@ -1 +1 @@ -69faebf77e4973c71f43a5a3346c6805 squid-3.5.9.tar.bz2 +79fc4117e8fc76572819e8497d7c0b29 squid-3.5.10.tar.bz2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rmottola at users.sourceforge.net Fri Oct 2 12:24:21 2015 From: rmottola at users.sourceforge.net (rmottola at users.sourceforge.net) Date: Fri, 2 Oct 2015 10:24:21 +0000 Subject: SF.net SVN: gar:[25266] csw/mgar/pkg/nettle/trunk Message-ID: <3nS6rJ6XNdz11n@mail.opencsw.org> Revision: 25266 http://sourceforge.net/p/gar/code/25266 Author: rmottola Date: 2015-10-02 10:24:21 +0000 (Fri, 02 Oct 2015) Log Message: ----------- nettle/trunk: update from version 3.0 to 3.1.1 Modified Paths: -------------- csw/mgar/pkg/nettle/trunk/Makefile csw/mgar/pkg/nettle/trunk/checksums Modified: csw/mgar/pkg/nettle/trunk/Makefile =================================================================== --- csw/mgar/pkg/nettle/trunk/Makefile 2015-10-02 08:31:18 UTC (rev 25265) +++ csw/mgar/pkg/nettle/trunk/Makefile 2015-10-02 10:24:21 UTC (rev 25266) @@ -2,7 +2,7 @@ # TODO (release-critical prefixed with !, non release-critical with *) # NAME = nettle -VERSION = 3.0 +VERSION = 3.1.1 GARTYPE = v2 DESCRIPTION = A low-level cryptographic library @@ -12,7 +12,7 @@ like LSH or GNUPG, or even in kernel space. endef -MASTER_SITES = http://www.lysator.liu.se/~nisse/archive/ +MASTER_SITES = ftp://ftp.gnu.org/gnu/nettle/ DISTNAME = $(NAME)-$(VERSION) DISTFILES = $(DISTNAME).tar.gz @@ -20,27 +20,27 @@ LICENSE = COPYING.LESSERv3 -PACKAGES += CSWlibhogweed3 -PKGFILES_CSWlibhogweed3 += $(call pkgfiles_lib,libhogweed.so.3) -SPKG_DESC_CSWlibhogweed3 += A low-level cryptographic library, libhogweed.so.3 -RUNTIME_DEP_PKGS_CSWlibhogweed3 += CSWlibgmp10 -RUNTIME_DEP_PKGS_CSWlibhogweed3 += CSWlibnettle5 +PACKAGES += CSWlibhogweed4 +PKGFILES_CSWlibhogweed4 += $(call pkgfiles_lib,libhogweed.so.4) +SPKG_DESC_CSWlibhogweed4 += A low-level cryptographic library, libhogweed.so.4 +RUNTIME_DEP_PKGS_CSWlibhogweed4 += CSWlibgmp10 +RUNTIME_DEP_PKGS_CSWlibhogweed4 += CSWlibnettle6 -PACKAGES += CSWlibnettle5 -PKGFILES_CSWlibnettle5 += $(call pkgfiles_lib,libnettle.so.5) -SPKG_DESC_CSWlibnettle5 += A low-level cryptographic library, libnettle.so.5 +PACKAGES += CSWlibnettle6 +PKGFILES_CSWlibnettle6 += $(call pkgfiles_lib,libnettle.so.6) +SPKG_DESC_CSWlibnettle6 += A low-level cryptographic library, libnettle.so.6 PACKAGES += CSWlibnettle-dev PKGFILES_CSWlibnettle-dev = $(PKGFILES_DEVEL) -SPKG_DESC_CSWlibnettle-dev = Development files for libnettle.so.5 and libhogweed.so.3 -RUNTIME_DEP_PKGS_CSWlibnettle-dev += CSWlibhogweed3 -RUNTIME_DEP_PKGS_CSWlibnettle-dev += CSWlibnettle5 +SPKG_DESC_CSWlibnettle-dev = Development files for libnettle.so.6 and libhogweed.so.4 +RUNTIME_DEP_PKGS_CSWlibnettle-dev += CSWlibhogweed4 +RUNTIME_DEP_PKGS_CSWlibnettle-dev += CSWlibnettle6 PACKAGES += CSWlibnettle-utils SPKG_DESC_CSWlibnettle-utils = Utility programs for libnettle # PKGFILES is catchall -RUNTIME_DEP_PKGS_CSWlibnettle-utils += CSWlibhogweed3 -RUNTIME_DEP_PKGS_CSWlibnettle-utils += CSWlibnettle5 +RUNTIME_DEP_PKGS_CSWlibnettle-utils += CSWlibhogweed4 +RUNTIME_DEP_PKGS_CSWlibnettle-utils += CSWlibnettle6 RUNTIME_DEP_PKGS_CSWlibnettle-utils += CSWlibgmp10 # This is just the default location Modified: csw/mgar/pkg/nettle/trunk/checksums =================================================================== --- csw/mgar/pkg/nettle/trunk/checksums 2015-10-02 08:31:18 UTC (rev 25265) +++ csw/mgar/pkg/nettle/trunk/checksums 2015-10-02 10:24:21 UTC (rev 25266) @@ -1 +1 @@ -f64b1bf1e774b7ae6e507318e340250e nettle-3.0.tar.gz +b40fa88dc32f37a182b6b42092ebb144 nettle-3.1.1.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rmottola at users.sourceforge.net Fri Oct 2 12:53:38 2015 From: rmottola at users.sourceforge.net (rmottola at users.sourceforge.net) Date: Fri, 2 Oct 2015 10:53:38 +0000 Subject: SF.net SVN: gar:[25267] csw/mgar/pkg/nettle/trunk/Makefile Message-ID: <3nS7V52ySnz14h@mail.opencsw.org> Revision: 25267 http://sourceforge.net/p/gar/code/25267 Author: rmottola Date: 2015-10-02 10:53:38 +0000 (Fri, 02 Oct 2015) Log Message: ----------- nettle/trunk: be more finegrained about 64bit builds Modified Paths: -------------- csw/mgar/pkg/nettle/trunk/Makefile Modified: csw/mgar/pkg/nettle/trunk/Makefile =================================================================== --- csw/mgar/pkg/nettle/trunk/Makefile 2015-10-02 10:24:21 UTC (rev 25266) +++ csw/mgar/pkg/nettle/trunk/Makefile 2015-10-02 10:53:38 UTC (rev 25267) @@ -46,8 +46,14 @@ # This is just the default location CHECKPKG_OVERRIDES_CSWlibnettle-utils += file-with-bad-content|/usr/local|root/opt/csw/share/info/nettle.info -BUILD64_LIBS_ONLY = 1 +# Enable 64 bits, but not for Solaris 9 x86 +BUILD64_5.9_sparc = 1 +BUILD64_5.10_sparc = 1 +BUILD64_5.9_i386 = +BUILD64_5.10_i386 = 1 +BUILD64 = $(BUILD64_$(GAROSREL)_$(GARCH)) + CONFIGURE_ARGS += $(DIRPATHS) CONFIGURE_ARGS += --enable-shared This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rmottola at users.sourceforge.net Fri Oct 2 13:05:09 2015 From: rmottola at users.sourceforge.net (rmottola at users.sourceforge.net) Date: Fri, 2 Oct 2015 11:05:09 +0000 Subject: SF.net SVN: gar:[25268] csw/mgar/pkg/nettle/trunk/Makefile Message-ID: <3nS7lN6fyZz17D@mail.opencsw.org> Revision: 25268 http://sourceforge.net/p/gar/code/25268 Author: rmottola Date: 2015-10-02 11:05:08 +0000 (Fri, 02 Oct 2015) Log Message: ----------- nettle/trunk: actually enable solaris9 Modified Paths: -------------- csw/mgar/pkg/nettle/trunk/Makefile Modified: csw/mgar/pkg/nettle/trunk/Makefile =================================================================== --- csw/mgar/pkg/nettle/trunk/Makefile 2015-10-02 10:53:38 UTC (rev 25267) +++ csw/mgar/pkg/nettle/trunk/Makefile 2015-10-02 11:05:08 UTC (rev 25268) @@ -20,6 +20,10 @@ LICENSE = COPYING.LESSERv3 +PACKAGING_PLATFORMS += solaris9-sparc solaris9-i386 +PACKAGING_PLATFORMS += solaris10-sparc solaris10-i386 + + PACKAGES += CSWlibhogweed4 PKGFILES_CSWlibhogweed4 += $(call pkgfiles_lib,libhogweed.so.4) SPKG_DESC_CSWlibhogweed4 += A low-level cryptographic library, libhogweed.so.4 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Fri Oct 2 14:38:04 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 2 Oct 2015 12:38:04 +0000 Subject: SF.net SVN: gar:[25269] csw/mgar/pkg/jdk8/trunk Message-ID: <3nS9pZ4Cy0z1Bk@mail.opencsw.org> Revision: 25269 http://sourceforge.net/p/gar/code/25269 Author: dmichelsen Date: 2015-10-02 12:38:04 +0000 (Fri, 02 Oct 2015) Log Message: ----------- jdk8/trunk: Update to 1.8.0u60 Modified Paths: -------------- csw/mgar/pkg/jdk8/trunk/Makefile csw/mgar/pkg/jdk8/trunk/checksums Modified: csw/mgar/pkg/jdk8/trunk/Makefile =================================================================== --- csw/mgar/pkg/jdk8/trunk/Makefile 2015-10-02 11:05:08 UTC (rev 25268) +++ csw/mgar/pkg/jdk8/trunk/Makefile 2015-10-02 12:38:04 UTC (rev 25269) @@ -1,6 +1,6 @@ NAME = jre8 -SPKG_VERSION = 1.8.0_45 -VERSION = 8u45 +SPKG_VERSION = 1.8.0_60 +VERSION = 8u60 GARTYPE = v2 DESCRIPTION = Java Development Kit 8 Modified: csw/mgar/pkg/jdk8/trunk/checksums =================================================================== --- csw/mgar/pkg/jdk8/trunk/checksums 2015-10-02 11:05:08 UTC (rev 25268) +++ csw/mgar/pkg/jdk8/trunk/checksums 2015-10-02 12:38:04 UTC (rev 25269) @@ -1,2 +1,2 @@ -1e4a49f541c7623ac26c43c98580077e jdk-8u45-solaris-sparcv9.tar.gz -3bbffc17b1d2c0af319007167556a1cd jdk-8u45-solaris-x64.tar.gz +0e5279b1f295c3834826ba9dd1d231b0 jdk-8u60-solaris-sparcv9.tar.gz +2c7a070f4a0c3248e084626c25b27557 jdk-8u60-solaris-x64.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From lblume at users.sourceforge.net Fri Oct 2 15:03:42 2015 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Fri, 2 Oct 2015 13:03:42 +0000 Subject: SF.net SVN: gar:[25270] csw/mgar/pkg/ImageMagick/trunk Message-ID: <3nSBNC2Cbbz1FW@mail.opencsw.org> Revision: 25270 http://sourceforge.net/p/gar/code/25270 Author: lblume Date: 2015-10-02 13:03:42 +0000 (Fri, 02 Oct 2015) Log Message: ----------- ImageMagick/trunk: Bump to 6.9.2-3 Modified Paths: -------------- csw/mgar/pkg/ImageMagick/trunk/Makefile csw/mgar/pkg/ImageMagick/trunk/checksums Modified: csw/mgar/pkg/ImageMagick/trunk/Makefile =================================================================== --- csw/mgar/pkg/ImageMagick/trunk/Makefile 2015-10-02 12:38:04 UTC (rev 25269) +++ csw/mgar/pkg/ImageMagick/trunk/Makefile 2015-10-02 13:03:42 UTC (rev 25270) @@ -1,6 +1,6 @@ NAME = imagemagick -VERSION = 6.9.1 -GARSUBREV = 1 +VERSION = 6.9.2 +GARSUBREV = 3 #BETAREV = beta20140518 GARTYPE = v2 Modified: csw/mgar/pkg/ImageMagick/trunk/checksums =================================================================== --- csw/mgar/pkg/ImageMagick/trunk/checksums 2015-10-02 12:38:04 UTC (rev 25269) +++ csw/mgar/pkg/ImageMagick/trunk/checksums 2015-10-02 13:03:42 UTC (rev 25270) @@ -1 +1 @@ -5721a1b252bc0f67c6c73e2b266d0174 ImageMagick-6.9.1-1.tar.xz +5007e8f213f47e89e70270ed57791d07 ImageMagick-6.9.2-3.tar.xz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Fri Oct 2 15:14:16 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 2 Oct 2015 13:14:16 +0000 Subject: SF.net SVN: gar:[25271] csw/mgar/pkg/clojure/trunk Message-ID: <3nSBdr3QkPz1J3@mail.opencsw.org> Revision: 25271 http://sourceforge.net/p/gar/code/25271 Author: dmichelsen Date: 2015-10-02 13:14:16 +0000 (Fri, 02 Oct 2015) Log Message: ----------- clojure/trunk: Update to 1.7.0 Modified Paths: -------------- csw/mgar/pkg/clojure/trunk/Makefile csw/mgar/pkg/clojure/trunk/checksums Modified: csw/mgar/pkg/clojure/trunk/Makefile =================================================================== --- csw/mgar/pkg/clojure/trunk/Makefile 2015-10-02 13:03:42 UTC (rev 25270) +++ csw/mgar/pkg/clojure/trunk/Makefile 2015-10-02 13:14:16 UTC (rev 25271) @@ -2,12 +2,12 @@ # TODO (release-critical prefixed with !, non release-critical with *) # NAME = clojure -VERSION = 1.6.0 +VERSION = 1.7.0 GARTYPE = v2 DESCRIPTION = A dynamic programming language that targets the Java Virtual Machine -MASTER_SITES = http://repo1.maven.org/maven2/org/clojure/clojure/1.6.0/ +MASTER_SITES = http://repo1.maven.org/maven2/org/clojure/clojure/$(VERSION)/ DISTFILES += $(DISTNAME).zip DISTFILES += clojure EXPANDVARS += clojure Modified: csw/mgar/pkg/clojure/trunk/checksums =================================================================== --- csw/mgar/pkg/clojure/trunk/checksums 2015-10-02 13:03:42 UTC (rev 25270) +++ csw/mgar/pkg/clojure/trunk/checksums 2015-10-02 13:14:16 UTC (rev 25271) @@ -1 +1 @@ -c102956589a49ebc9e3d488b6aeb29cd clojure-1.6.0.zip +3a5eb73192ed957afcbaac09e571769b clojure-1.7.0.zip This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Fri Oct 2 15:21:17 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 2 Oct 2015 13:21:17 +0000 Subject: SF.net SVN: gar:[25272] csw/mgar/pkg/tomcat8/trunk Message-ID: <3nSBmR3qSCz1LW@mail.opencsw.org> Revision: 25272 http://sourceforge.net/p/gar/code/25272 Author: dmichelsen Date: 2015-10-02 13:21:16 +0000 (Fri, 02 Oct 2015) Log Message: ----------- tomcat8/trunk: Update to 8.0.27 Modified Paths: -------------- csw/mgar/pkg/tomcat8/trunk/Makefile csw/mgar/pkg/tomcat8/trunk/checksums csw/mgar/pkg/tomcat8/trunk/files/cswtomcat8 Modified: csw/mgar/pkg/tomcat8/trunk/Makefile =================================================================== --- csw/mgar/pkg/tomcat8/trunk/Makefile 2015-10-02 13:14:16 UTC (rev 25271) +++ csw/mgar/pkg/tomcat8/trunk/Makefile 2015-10-02 13:21:16 UTC (rev 25272) @@ -1,5 +1,5 @@ NAME = apache-tomcat -VERSION = 8.0.23 +VERSION = 8.0.27 DESCRIPTION = Apache Jakarta Tomcat 8 Servlet/JSP Container Modified: csw/mgar/pkg/tomcat8/trunk/checksums =================================================================== --- csw/mgar/pkg/tomcat8/trunk/checksums 2015-10-02 13:14:16 UTC (rev 25271) +++ csw/mgar/pkg/tomcat8/trunk/checksums 2015-10-02 13:21:16 UTC (rev 25272) @@ -1 +1 @@ -f4381824abf458650f72ec12d8e81fde apache-tomcat-8.0.23.tar.gz +a20be33bfb31a2c6e2eca755fb211cb9 apache-tomcat-8.0.27.tar.gz Modified: csw/mgar/pkg/tomcat8/trunk/files/cswtomcat8 =================================================================== --- csw/mgar/pkg/tomcat8/trunk/files/cswtomcat8 2015-10-02 13:14:16 UTC (rev 25271) +++ csw/mgar/pkg/tomcat8/trunk/files/cswtomcat8 2015-10-02 13:21:16 UTC (rev 25272) @@ -4,7 +4,7 @@ # # Configuration file documentation # -# tomcat7 +# tomcat8 # # This file let you change the values of a few variables used # by the init script to control the environment of tomcat6 @@ -18,12 +18,12 @@ # /opt/csw/etc # This directory contain global config files # -# If there exist a /etc/opt/csw/tomcat7 config file, then the +# If there exist a /etc/opt/csw/tomcat8 config file, then the # environment variables defined in this file are used and the # /opt/csw/etc/tomcat6/conf/tomcat6 file is ignored even if it # exist. # -# If there exist only a /opt/csw/etc/tomcat7/conf/tomcat7 config +# If there exist only a /opt/csw/etc/tomcat8/conf/tomcat8 config # file, then the environnement variables defined in this file are # used. # @@ -73,8 +73,8 @@ # Use the configuration file to supered their value # -SPECIFIC_CONFIG_FILE=/etc/opt/csw/cswtomcat7 -GLOBAL_CONFIG_FILE=/opt/csw/etc/cswtomcat7 +SPECIFIC_CONFIG_FILE=/etc/opt/csw/cswtomcat8 +GLOBAL_CONFIG_FILE=/opt/csw/etc/cswtomcat8 JAVA_HOME=/usr/java TOMCAT_USER=tomcat @@ -120,7 +120,7 @@ fi fi -CATALINA_HOME=/opt/csw/share/tomcat7 +CATALINA_HOME=/opt/csw/share/tomcat8 export JAVA_HOME export CATALINA_HOME This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rmottola at users.sourceforge.net Fri Oct 2 16:53:09 2015 From: rmottola at users.sourceforge.net (rmottola at users.sourceforge.net) Date: Fri, 2 Oct 2015 14:53:09 +0000 Subject: SF.net SVN: gar:[25273] csw/mgar/pkg/nettle/trunk/Makefile Message-ID: <3nSDpR5V7qz1QB@mail.opencsw.org> Revision: 25273 http://sourceforge.net/p/gar/code/25273 Author: rmottola Date: 2015-10-02 14:53:09 +0000 (Fri, 02 Oct 2015) Log Message: ----------- nettle/trunk: no longer needed with 3.1.1 Modified Paths: -------------- csw/mgar/pkg/nettle/trunk/Makefile Modified: csw/mgar/pkg/nettle/trunk/Makefile =================================================================== --- csw/mgar/pkg/nettle/trunk/Makefile 2015-10-02 13:21:16 UTC (rev 25272) +++ csw/mgar/pkg/nettle/trunk/Makefile 2015-10-02 14:53:09 UTC (rev 25273) @@ -47,8 +47,6 @@ RUNTIME_DEP_PKGS_CSWlibnettle-utils += CSWlibnettle6 RUNTIME_DEP_PKGS_CSWlibnettle-utils += CSWlibgmp10 -# This is just the default location -CHECKPKG_OVERRIDES_CSWlibnettle-utils += file-with-bad-content|/usr/local|root/opt/csw/share/info/nettle.info # Enable 64 bits, but not for Solaris 9 x86 BUILD64_5.9_sparc = 1 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Fri Oct 2 17:02:03 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 2 Oct 2015 15:02:03 +0000 Subject: SF.net SVN: gar:[25274] csw/mgar/pkg Message-ID: <3nSF0n3f8Nz1Sm@mail.opencsw.org> Revision: 25274 http://sourceforge.net/p/gar/code/25274 Author: dmichelsen Date: 2015-10-02 15:02:02 +0000 (Fri, 02 Oct 2015) Log Message: ----------- tomcat-native/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/tomcat-native/ csw/mgar/pkg/tomcat-native/Makefile csw/mgar/pkg/tomcat-native/branches/ csw/mgar/pkg/tomcat-native/tags/ csw/mgar/pkg/tomcat-native/trunk/ csw/mgar/pkg/tomcat-native/trunk/Makefile csw/mgar/pkg/tomcat-native/trunk/checksums csw/mgar/pkg/tomcat-native/trunk/files/ Added: csw/mgar/pkg/tomcat-native/Makefile =================================================================== --- csw/mgar/pkg/tomcat-native/Makefile (rev 0) +++ csw/mgar/pkg/tomcat-native/Makefile 2015-10-02 15:02:02 UTC (rev 25274) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Index: csw/mgar/pkg/tomcat-native/trunk =================================================================== --- csw/mgar/pkg/tomcat-native/trunk 2015-10-02 14:53:09 UTC (rev 25273) +++ csw/mgar/pkg/tomcat-native/trunk 2015-10-02 15:02:02 UTC (rev 25274) Property changes on: csw/mgar/pkg/tomcat-native/trunk ___________________________________________________________________ Added: svn:ignore ## -0,0 +1 ## +work Added: csw/mgar/pkg/tomcat-native/trunk/Makefile =================================================================== --- csw/mgar/pkg/tomcat-native/trunk/Makefile (rev 0) +++ csw/mgar/pkg/tomcat-native/trunk/Makefile 2015-10-02 15:02:02 UTC (rev 25274) @@ -0,0 +1,46 @@ +# $Id$ +# TODO (release-critical prefixed with !, non release-critical with *) +# +NAME = tomcat-native +VERSION = 1.1.33 +GARTYPE = v2 + +DESCRIPTION = Tomcat Native Java library + +MASTER_SITES = http://www.us.apache.org/dist/tomcat/tomcat-connectors/native/$(VERSION)/source/ +DISTNAME = $(NAME)-$(VERSION)-src +DISTFILES = $(DISTNAME).tar.gz + +BUILD_DEP_PKGS += CSWjdk8 + +PACKAGES += CSWlibtcnative1-0 +SPKG_DESC_CSWlibtcnative1-0 = Tomcat Native Java library +PKGFILES_CSWlibtcnative1-0 += $(call pkgfiles_lib,libtcnative-1.so) +RUNTIME_DEP_PKGS_CSWlibtcnative1-0 += CSWlibapr1-0 +RUNTIME_DEP_PKGS_CSWlibtcnative1-0 += CSWlibssl1-0-0 + +PACKAGES += CSWlibtcnative-dev +SPKG_DESC_CSWlibtcnative-dev = Development files for Tomcat Native Java library +# The .so *must* go into the library package as this name id dlopen'ed by java +PKGFILES_DEVEL_SHAREDLIBLINK = +CHECKPKG_OVERRIDES_CSWlibtcnative1-0 += shared-lib-package-contains-so-symlink|file=/opt/csw/lib/libtcnative-1.so +CHECKPKG_OVERRIDES_CSWlibtcnative1-0 += shared-lib-package-contains-so-symlink|file=/opt/csw/lib/sparcv9/libtcnative-1.so +CHECKPKG_OVERRIDES_CSWlibtcnative1-0 += shared-lib-package-contains-so-symlink|file=/opt/csw/lib/amd64/libtcnative-1.so +# PKGFILES is catchall +#PKGFILES_CSWlibtcnative-dev += $(PKGFILES_DEVEL) +RUNTIME_DEP_PKGS_CSWlibtcnative-dev += CSWlibtcnative1-0 + +CONFIGURE_SCRIPTS = $(WORKSRC)/jni/native/configure +BUILD_SCRIPTS = $(WORKSRC)/jni/native/Makefile +TEST_SCRIPTS = +INSTALL_SCRIPTS = $(WORKSRC)/jni/native/Makefile + +BUILD64 = 1 + +CONFIGURE_ARGS += $(DIRPATHS) +CONFIGURE_ARGS += --with-apr=$(bindir)/apr-1-config +CONFIGURE_ARGS += --with-ssl=$(prefix) +CONFIGURE_ARGS += --with-java-home=$(prefix)/java/jdk/jdk8 + +include gar/category.mk + Property changes on: csw/mgar/pkg/tomcat-native/trunk/Makefile ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Added: csw/mgar/pkg/tomcat-native/trunk/checksums =================================================================== --- csw/mgar/pkg/tomcat-native/trunk/checksums (rev 0) +++ csw/mgar/pkg/tomcat-native/trunk/checksums 2015-10-02 15:02:02 UTC (rev 25274) @@ -0,0 +1 @@ +04b66308560abf2f08c658eb1703546d tomcat-native-1.1.33-src.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From jake_goerzen at users.sourceforge.net Fri Oct 2 20:36:23 2015 From: jake_goerzen at users.sourceforge.net (jake_goerzen at users.sourceforge.net) Date: Fri, 2 Oct 2015 18:36:23 +0000 Subject: SF.net SVN: gar:[25275] csw/mgar/pkg/dovecot/trunk Message-ID: <3nSKm25DWczFD@mail.opencsw.org> Revision: 25275 http://sourceforge.net/p/gar/code/25275 Author: jake_goerzen Date: 2015-10-02 18:36:22 +0000 (Fri, 02 Oct 2015) Log Message: ----------- dovecot: update to 2.2.19; switch to GCC compiler; enable 64-bit build Modified Paths: -------------- csw/mgar/pkg/dovecot/trunk/Makefile csw/mgar/pkg/dovecot/trunk/checksums Modified: csw/mgar/pkg/dovecot/trunk/Makefile =================================================================== --- csw/mgar/pkg/dovecot/trunk/Makefile 2015-10-02 15:02:02 UTC (rev 25274) +++ csw/mgar/pkg/dovecot/trunk/Makefile 2015-10-02 18:36:22 UTC (rev 25275) @@ -2,7 +2,7 @@ # - SSL certs to /etc/opt/csw/ssl? # - /var/run/dovecot instead of /var/opt/csw/run? NAME = dovecot -VERSION = 2.2.18 +VERSION = 2.2.19 GARTYPE = v2 DESCRIPTION = Secure IMAP server @@ -18,7 +18,7 @@ DISTFILES = $(NAME)-$(VERSION).tar.gz UFILES_REGEX = $(NAME)-(\d+(?:\.\d+)*).tar.gz -GARCOMPILER = SOS12 +GARCOMPILER = GNU PACKAGES = CSWdovecot CSWdovecot-dev @@ -40,8 +40,9 @@ RUNTIME_DEP_PKGS_CSWdovecot += CSWlibldap2-4-2 RUNTIME_DEP_PKGS_CSWdovecot += CSWliblzma5 RUNTIME_DEP_PKGS_CSWdovecot += CSWlibintl8 -RUNTIME_DEP_PKGS_CSWdovecot += CSWlibicui18n54 -RUNTIME_DEP_PKGS_CSWdovecot += CSWlibicuuc54 +RUNTIME_DEP_PKGS_CSWdovecot += CSWlibicui18n55 +RUNTIME_DEP_PKGS_CSWdovecot += CSWlibicuuc55 +RUNTIME_DEP_PKGS_CSWdovecot += CSWlibgcc-s1 PKGFILES_CSWdovecot-dev = $(PKGFILES_DEVEL) @@ -74,8 +75,8 @@ CONFIGURE_ARGS += --with-zlib CONFIGURE_ARGS += --with-bzlib -# Disable linker map forcing SUNW_1.22.2 as the linked MySQL needs SUNW_1.22.5 -LINKER_MAPS = +BUILD64 = 1 +ISAEXEC = 1 EXTRA_INC = /opt/csw/include/mysql /opt/csw/include/postgresql Modified: csw/mgar/pkg/dovecot/trunk/checksums =================================================================== --- csw/mgar/pkg/dovecot/trunk/checksums 2015-10-02 15:02:02 UTC (rev 25274) +++ csw/mgar/pkg/dovecot/trunk/checksums 2015-10-02 18:36:22 UTC (rev 25275) @@ -1 +1 @@ -1e42eb3b69544c447ad882d7858f3630 dovecot-2.2.18.tar.gz +95591b6556413edc2f0b160fb469d04c dovecot-2.2.19.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From lblume at users.sourceforge.net Mon Oct 5 09:44:54 2015 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Mon, 5 Oct 2015 07:44:54 +0000 Subject: SF.net SVN: gar:[25276] csw/mgar/pkg/ImageMagick/trunk/Makefile Message-ID: <3nTv930XjBz11l@mail.opencsw.org> Revision: 25276 http://sourceforge.net/p/gar/code/25276 Author: lblume Date: 2015-10-05 07:44:53 +0000 (Mon, 05 Oct 2015) Log Message: ----------- ImageMagick/trunk: Dependency adjustment Modified Paths: -------------- csw/mgar/pkg/ImageMagick/trunk/Makefile Modified: csw/mgar/pkg/ImageMagick/trunk/Makefile =================================================================== --- csw/mgar/pkg/ImageMagick/trunk/Makefile 2015-10-02 18:36:22 UTC (rev 25275) +++ csw/mgar/pkg/ImageMagick/trunk/Makefile 2015-10-05 07:44:53 UTC (rev 25276) @@ -117,7 +117,7 @@ RUNTIME_DEP_PKGS_CSWimagemagick += CSWlibwebp4 RUNTIME_DEP_PKGS_CSWimagemagick += CSWlibjbig2 RUNTIME_DEP_PKGS_CSWimagemagick += CSWlibdjvulibre21 -RUNTIME_DEP_PKGS_CSWimagemagick += CSWlibpng15-15 +RUNTIME_DEP_PKGS_CSWimagemagick += CSWlibpng16-16 RUNTIME_DEP_PKGS_CSWimagemagick += CSWlibwmflite0-2-7 RUNTIME_DEP_PKGS_CSWimagemagick += CSWlibopenjp2-7 RUNTIME_DEP_PKGS_CSWimagemagick += CSWlibglib2-0-0 @@ -133,10 +133,9 @@ ifeq ($(shell /usr/bin/uname -p),sparc) RUNTIME_DEP_PKGS_CSWlibmagickcore6q16hdri2 += CSWlibintl8 RUNTIME_DEP_PKGS_CSWlibmagickwand6q16hdri2 += CSWlibintl8 -RUNTIME_DEP_PKGS_CSWimagemagick += CSWlibintl8 RUNTIME_DEP_PKGS_CSWimagemagick += CSWlibfontconfig1 RUNTIME_DEP_PKGS_CSWimagemagick += CSWlibfreetype6 -RUNTIME_DEP_PKGS_CSWlibmagick++6q16hdri5 += CSWlibintl8 +RUNTIME_DEP_PKGS_CSWlibmagick++6q16hdri6 += CSWlibintl8 endif ### This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From lblume at users.sourceforge.net Mon Oct 5 10:54:33 2015 From: lblume at users.sourceforge.net (lblume at users.sourceforge.net) Date: Mon, 5 Oct 2015 08:54:33 +0000 Subject: SF.net SVN: gar:[25277] csw/mgar/pkg/ImageMagick/trunk/Makefile Message-ID: <3nTwjH3Mfrz14y@mail.opencsw.org> Revision: 25277 http://sourceforge.net/p/gar/code/25277 Author: lblume Date: 2015-10-05 08:54:33 +0000 (Mon, 05 Oct 2015) Log Message: ----------- ImageMagick/trunk: One more dep specific to sparc Modified Paths: -------------- csw/mgar/pkg/ImageMagick/trunk/Makefile Modified: csw/mgar/pkg/ImageMagick/trunk/Makefile =================================================================== --- csw/mgar/pkg/ImageMagick/trunk/Makefile 2015-10-05 07:44:53 UTC (rev 25276) +++ csw/mgar/pkg/ImageMagick/trunk/Makefile 2015-10-05 08:54:33 UTC (rev 25277) @@ -135,6 +135,7 @@ RUNTIME_DEP_PKGS_CSWlibmagickwand6q16hdri2 += CSWlibintl8 RUNTIME_DEP_PKGS_CSWimagemagick += CSWlibfontconfig1 RUNTIME_DEP_PKGS_CSWimagemagick += CSWlibfreetype6 +RUNTIME_DEP_PKGS_CSWimagemagick += CSWlibintl8 RUNTIME_DEP_PKGS_CSWlibmagick++6q16hdri6 += CSWlibintl8 endif ### This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rmottola at users.sourceforge.net Mon Oct 5 18:38:41 2015 From: rmottola at users.sourceforge.net (rmottola at users.sourceforge.net) Date: Mon, 5 Oct 2015 16:38:41 +0000 Subject: SF.net SVN: gar:[25278] csw/mgar/pkg/gnutls3/trunk Message-ID: <3nV70s5MPWz8l@mail.opencsw.org> Revision: 25278 http://sourceforge.net/p/gar/code/25278 Author: rmottola Date: 2015-10-05 16:38:41 +0000 (Mon, 05 Oct 2015) Log Message: ----------- gnutls3/trunk: update to 3.4.5, use internal tasn1 and disable p11-kit for now Modified Paths: -------------- csw/mgar/pkg/gnutls3/trunk/Makefile csw/mgar/pkg/gnutls3/trunk/checksums Modified: csw/mgar/pkg/gnutls3/trunk/Makefile =================================================================== --- csw/mgar/pkg/gnutls3/trunk/Makefile 2015-10-05 08:54:33 UTC (rev 25277) +++ csw/mgar/pkg/gnutls3/trunk/Makefile 2015-10-05 16:38:41 UTC (rev 25278) @@ -1,5 +1,5 @@ NAME = gnutls -VERSION = 3.1.28 +VERSION = 3.4.5 DESCRIPTION = GNU Transport Layer Security libraries and tools define BLURB @@ -43,14 +43,14 @@ PKGFILES_CSWlibgnutls28 = $(PKGFILES_RT) PKGFILES_CSWlibgnutls28 += $(docdir)/libgnutls28/.* RUNTIME_DEP_PKGS_CSWlibgnutls28 += CSWlibz1 -RUNTIME_DEP_PKGS_CSWlibgnutls28 += CSWlibhogweed2 +RUNTIME_DEP_PKGS_CSWlibgnutls28 += CSWlibhogweed4 RUNTIME_DEP_PKGS_CSWlibgnutls28 += CSWlibgcc-s1 RUNTIME_DEP_PKGS_CSWlibgnutls28 += CSWlibp11kit0 RUNTIME_DEP_PKGS_CSWlibgnutls28 += CSWlibgmp10 RUNTIME_DEP_PKGS_CSWlibgnutls28 += CSWlibstdc++6 RUNTIME_DEP_PKGS_CSWlibgnutls28 += CSWlibintl8 RUNTIME_DEP_PKGS_CSWlibgnutls28 += CSWlibiconv2 -RUNTIME_DEP_PKGS_CSWlibgnutls28 += CSWlibnettle4 +RUNTIME_DEP_PKGS_CSWlibgnutls28 += CSWlibnettle6 # We put all libs in one package as they are .so.28 and are all bumped together CHECKPKG_OVERRIDES_CSWlibgnutls28 += shared-lib-pkgname-mismatch @@ -77,6 +77,8 @@ CONFIGURE_ARGS += $(DIRPATHS) +CONFIGURE_ARGS += --with-included-libtasn1 +CONFIGURE_ARGS += --without-p11-kit CONFIGURE_ARGS += --with-lzo CONFIGURE_ARGS += --disable-guile #CONFIGURE_ARGS += --disable-libdane Modified: csw/mgar/pkg/gnutls3/trunk/checksums =================================================================== --- csw/mgar/pkg/gnutls3/trunk/checksums 2015-10-05 08:54:33 UTC (rev 25277) +++ csw/mgar/pkg/gnutls3/trunk/checksums 2015-10-05 16:38:41 UTC (rev 25278) @@ -1 +1 @@ -76b4043c9c8806daf6296a0a38d10e96 gnutls-3.1.28.tar.xz +f5dae0e0ecda28aab12386e6c0705d4c gnutls-3.4.5.tar.xz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Wed Oct 7 09:15:39 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 7 Oct 2015 07:15:39 +0000 Subject: SF.net SVN: gar:[25279] csw/mgar/pkg Message-ID: <3nW6QQ2JdDz16F@mail.opencsw.org> Revision: 25279 http://sourceforge.net/p/gar/code/25279 Author: dmichelsen Date: 2015-10-07 07:15:38 +0000 (Wed, 07 Oct 2015) Log Message: ----------- libsodium/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/libsodium/ csw/mgar/pkg/libsodium/Makefile csw/mgar/pkg/libsodium/branches/ csw/mgar/pkg/libsodium/tags/ csw/mgar/pkg/libsodium/trunk/ csw/mgar/pkg/libsodium/trunk/Makefile csw/mgar/pkg/libsodium/trunk/checksums csw/mgar/pkg/libsodium/trunk/files/ Added: csw/mgar/pkg/libsodium/Makefile =================================================================== --- csw/mgar/pkg/libsodium/Makefile (rev 0) +++ csw/mgar/pkg/libsodium/Makefile 2015-10-07 07:15:38 UTC (rev 25279) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Index: csw/mgar/pkg/libsodium/trunk =================================================================== --- csw/mgar/pkg/libsodium/trunk 2015-10-05 16:38:41 UTC (rev 25278) +++ csw/mgar/pkg/libsodium/trunk 2015-10-07 07:15:38 UTC (rev 25279) Property changes on: csw/mgar/pkg/libsodium/trunk ___________________________________________________________________ Added: svn:ignore ## -0,0 +1 ## +work Added: csw/mgar/pkg/libsodium/trunk/Makefile =================================================================== --- csw/mgar/pkg/libsodium/trunk/Makefile (rev 0) +++ csw/mgar/pkg/libsodium/trunk/Makefile 2015-10-07 07:15:38 UTC (rev 25279) @@ -0,0 +1,35 @@ +# $Id$ +# TODO (release-critical prefixed with !, non release-critical with *) +# +NAME = libsodium +VERSION = 1.0.3 +GARTYPE = v2 + +DESCRIPTION = The Sodium crypto library + +MASTER_SITES = https://download.libsodium.org/libsodium/releases/ +DISTFILES += $(DISTNAME).tar.gz + +VENDOR_URL = http://libsodium.org + +PACKAGES += CSWlibsodium13 +SPKG_DESC_CSWlibsodium13 = The Sodium crypto library, libsodium.so.13 +PKGFILES_CSWlibsodium13 += $(call pkgfiles_lib,libsodium.so.13) +RUNTIME_DEP_PKGS_CSWlibsodium13 += CSWlibgcc-s1 +RUNTIME_DEP_PKGS_CSWlibsodium13 += CSWlibssp0 + +PACKAGES += CSWlibsodium-dev +SPKG_DESC_CSWlibsodium-dev = Development files for libsodium.so.13 +# PKGFILES is catchall +RUNTIME_DEP_PKGS_CSWlibsodium-dev += CSWlibsodium13 + +GARCOMPILER = GNU + +BUILD64 = 1 +CONFIGURE_ARGS += $(DIRPATHS) + +# We need 'id -u' to generate the uid +CONFIGURE_ENV_PATH = /usr/xpg4/bin:$(PATH) + +include gar/category.mk + Property changes on: csw/mgar/pkg/libsodium/trunk/Makefile ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Added: csw/mgar/pkg/libsodium/trunk/checksums =================================================================== --- csw/mgar/pkg/libsodium/trunk/checksums (rev 0) +++ csw/mgar/pkg/libsodium/trunk/checksums 2015-10-07 07:15:38 UTC (rev 25279) @@ -0,0 +1 @@ +b3bcc98e34d3250f55ae196822307fab libsodium-1.0.3.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Wed Oct 7 10:53:06 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 7 Oct 2015 08:53:06 +0000 Subject: SF.net SVN: gar:[25280] csw/mgar/pkg/logstash/trunk Message-ID: <3nW8Zj28CXz1C9@mail.opencsw.org> Revision: 25280 http://sourceforge.net/p/gar/code/25280 Author: dmichelsen Date: 2015-10-07 08:53:06 +0000 (Wed, 07 Oct 2015) Log Message: ----------- logstash/trunk: Update to 1.5.4 Modified Paths: -------------- csw/mgar/pkg/logstash/trunk/Makefile csw/mgar/pkg/logstash/trunk/checksums Modified: csw/mgar/pkg/logstash/trunk/Makefile =================================================================== --- csw/mgar/pkg/logstash/trunk/Makefile 2015-10-07 07:15:38 UTC (rev 25279) +++ csw/mgar/pkg/logstash/trunk/Makefile 2015-10-07 08:53:06 UTC (rev 25280) @@ -2,7 +2,7 @@ # TODO (release-critical prefixed with !, non release-critical with *) # NAME = logstash -VERSION = 1.5.1 +VERSION = 1.5.4 GARTYPE = v2 DESCRIPTION = A tool for managing events and logs @@ -38,6 +38,11 @@ # This is the DTD for SMF CHECKPKG_OVERRIDES_CSWlogstash += file-with-bad-content|/usr/share|root/var/opt/csw/svc/manifest/cswlogstash.xml +# This is some other stuff an not related to init.d +CHECKPKG_OVERRIDES_CSWlogstash += init-file-missing-cswinitsmf-class|/opt/csw/share/logstash/vendor/bundle/jruby/1.9/gems/puma-2.11.3-java/tools/jungle/init.d/README.md|class=none +CHECKPKG_OVERRIDES_CSWlogstash += init-file-missing-cswinitsmf-class|/opt/csw/share/logstash/vendor/bundle/jruby/1.9/gems/puma-2.11.3-java/tools/jungle/init.d/puma|class=none +CHECKPKG_OVERRIDES_CSWlogstash += init-file-missing-cswinitsmf-class|/opt/csw/share/logstash/vendor/bundle/jruby/1.9/gems/puma-2.11.3-java/tools/jungle/init.d/run-puma|class=none + LICENSE = LICENSE CONFIGURE_SCRIPTS = Modified: csw/mgar/pkg/logstash/trunk/checksums =================================================================== --- csw/mgar/pkg/logstash/trunk/checksums 2015-10-07 07:15:38 UTC (rev 25279) +++ csw/mgar/pkg/logstash/trunk/checksums 2015-10-07 08:53:06 UTC (rev 25280) @@ -1 +1 @@ -43ec8edb6b0f3defc5337d045ebd8d4c logstash-1.5.1.tar.gz +e68f82c5f1f49a5207473ee3cea7b84b logstash-1.5.4.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Wed Oct 7 11:48:26 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 7 Oct 2015 09:48:26 +0000 Subject: SF.net SVN: gar:[25281] csw/mgar/pkg/curl/trunk Message-ID: <3nW9pY113Hz1Fr@mail.opencsw.org> Revision: 25281 http://sourceforge.net/p/gar/code/25281 Author: dmichelsen Date: 2015-10-07 09:48:26 +0000 (Wed, 07 Oct 2015) Log Message: ----------- curl/trunk: Update to 7.45.0 Modified Paths: -------------- csw/mgar/pkg/curl/trunk/Makefile csw/mgar/pkg/curl/trunk/checksums Modified: csw/mgar/pkg/curl/trunk/Makefile =================================================================== --- csw/mgar/pkg/curl/trunk/Makefile 2015-10-07 08:53:06 UTC (rev 25280) +++ csw/mgar/pkg/curl/trunk/Makefile 2015-10-07 09:48:26 UTC (rev 25281) @@ -1,5 +1,5 @@ NAME = curl -VERSION = 7.44.0 +VERSION = 7.45.0 GARTYPE = v2 DESCRIPTION = Command line tool and library for client-side URL transfers Modified: csw/mgar/pkg/curl/trunk/checksums =================================================================== --- csw/mgar/pkg/curl/trunk/checksums 2015-10-07 08:53:06 UTC (rev 25280) +++ csw/mgar/pkg/curl/trunk/checksums 2015-10-07 09:48:26 UTC (rev 25281) @@ -1 +1 @@ -2f924c80bb7124dff1b39f54ffda3781 curl-7.44.0.tar.lzma +c9a0a77f71fdc6b0f925bc3e79eb77f6 curl-7.45.0.tar.lzma This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From cgrzemba at users.sourceforge.net Wed Oct 7 12:50:08 2015 From: cgrzemba at users.sourceforge.net (cgrzemba at users.sourceforge.net) Date: Wed, 7 Oct 2015 10:50:08 +0000 Subject: SF.net SVN: gar:[25282] csw/mgar/pkg/apache24/trunk Message-ID: <3nWC9m24WCz1LR@mail.opencsw.org> Revision: 25282 http://sourceforge.net/p/gar/code/25282 Author: cgrzemba Date: 2015-10-07 10:50:08 +0000 (Wed, 07 Oct 2015) Log Message: ----------- apache24/trunk: merge Dago's update Modified Paths: -------------- csw/mgar/pkg/apache24/trunk/Makefile csw/mgar/pkg/apache24/trunk/checksums Modified: csw/mgar/pkg/apache24/trunk/Makefile =================================================================== --- csw/mgar/pkg/apache24/trunk/Makefile 2015-10-07 09:48:26 UTC (rev 25281) +++ csw/mgar/pkg/apache24/trunk/Makefile 2015-10-07 10:50:08 UTC (rev 25282) @@ -1,7 +1,7 @@ # $Id: Makefile 18185 2012-06-01 02:30:46Z bdwalton $ NAME = httpd -VERSION = 2.4.12 +VERSION = 2.4.16 GARTYPE = v2 PACKAGING_PLATFORMS = solaris10-i386 solaris10-sparc @@ -63,6 +63,7 @@ SPKG_DESC_CSWapache24-dev = The Apache 2.4 Development Files PKGFILES_CSWapache24-dev = $(PKGFILES_DEVEL) RUNTIME_DEP_PKGS_CSWapache24-dev += CSWapache24-manual +CHECKPKG_OVERRIDES_CSWapache24-dev += surplus-dependency|CSWapache24-manual # This is a fallback CHECKPKG_OVERRIDES_CSWapache24-dev += file-with-bad-content|/usr/local|root/opt/csw/include/apache2/httpd.h Modified: csw/mgar/pkg/apache24/trunk/checksums =================================================================== --- csw/mgar/pkg/apache24/trunk/checksums 2015-10-07 09:48:26 UTC (rev 25281) +++ csw/mgar/pkg/apache24/trunk/checksums 2015-10-07 10:50:08 UTC (rev 25282) @@ -1 +1 @@ -ec8676a7fe62433883868b8341da6734 httpd-2.4.12.tar.gz +e7b1d7761fcb5cafe9f95a955373dd7b httpd-2.4.16.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From cgrzemba at users.sourceforge.net Wed Oct 7 13:10:42 2015 From: cgrzemba at users.sourceforge.net (cgrzemba at users.sourceforge.net) Date: Wed, 7 Oct 2015 11:10:42 +0000 Subject: SF.net SVN: gar:[25283] csw/mgar/pkg/apache24/trunk/Makefile Message-ID: <3nWCdX4Hmdz1Q2@mail.opencsw.org> Revision: 25283 http://sourceforge.net/p/gar/code/25283 Author: cgrzemba Date: 2015-10-07 11:10:42 +0000 (Wed, 07 Oct 2015) Log Message: ----------- apache24/trunk: add module.laod to the preserve configuration Modified Paths: -------------- csw/mgar/pkg/apache24/trunk/Makefile Modified: csw/mgar/pkg/apache24/trunk/Makefile =================================================================== --- csw/mgar/pkg/apache24/trunk/Makefile 2015-10-07 10:50:08 UTC (rev 25282) +++ csw/mgar/pkg/apache24/trunk/Makefile 2015-10-07 11:10:42 UTC (rev 25283) @@ -86,6 +86,8 @@ PRESERVECONF += $(sysconfdir)/apache2/extra/httpd-mpm.conf PRESERVECONF += $(sysconfdir)/apache2/extra/httpd-default.conf PRESERVECONF += $(sysconfdir)/apache2/extra/httpd-ssl.conf +PRESERVECONF += $(sysconfdir)/apache2/extra/modules.load +PRESERVECONF += $(sysconfdir)/64/apache2/extra/modules.load PRESERVECONF += $(sysconfdir)/apache2/envvars-std PRESERVECONF += $(sysconfdir)/apache2/magic PRESERVECONF += $(sysconfdir)/apache2/httpd.conf This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From cgrzemba at users.sourceforge.net Thu Oct 8 11:43:41 2015 From: cgrzemba at users.sourceforge.net (cgrzemba at users.sourceforge.net) Date: Thu, 8 Oct 2015 09:43:41 +0000 Subject: SF.net SVN: gar:[25284] csw/mgar/pkg/lang-python Message-ID: <3nWnfl1QKtzK3@mail.opencsw.org> Revision: 25284 http://sourceforge.net/p/gar/code/25284 Author: cgrzemba Date: 2015-10-08 09:43:40 +0000 (Thu, 08 Oct 2015) Log Message: ----------- lang-python/pycarddav/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/lang-python/pycarddav/ csw/mgar/pkg/lang-python/pycarddav/Makefile csw/mgar/pkg/lang-python/pycarddav/branches/ csw/mgar/pkg/lang-python/pycarddav/tags/ csw/mgar/pkg/lang-python/pycarddav/trunk/ csw/mgar/pkg/lang-python/pycarddav/trunk/Makefile csw/mgar/pkg/lang-python/pycarddav/trunk/checksums csw/mgar/pkg/lang-python/pycarddav/trunk/files/ Added: csw/mgar/pkg/lang-python/pycarddav/Makefile =================================================================== --- csw/mgar/pkg/lang-python/pycarddav/Makefile (rev 0) +++ csw/mgar/pkg/lang-python/pycarddav/Makefile 2015-10-08 09:43:40 UTC (rev 25284) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Index: csw/mgar/pkg/lang-python/pycarddav/trunk =================================================================== --- csw/mgar/pkg/lang-python/pycarddav/trunk 2015-10-07 11:10:42 UTC (rev 25283) +++ csw/mgar/pkg/lang-python/pycarddav/trunk 2015-10-08 09:43:40 UTC (rev 25284) Property changes on: csw/mgar/pkg/lang-python/pycarddav/trunk ___________________________________________________________________ Added: svn:ignore ## -0,0 +1 ## +work Added: csw/mgar/pkg/lang-python/pycarddav/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/pycarddav/trunk/Makefile (rev 0) +++ csw/mgar/pkg/lang-python/pycarddav/trunk/Makefile 2015-10-08 09:43:40 UTC (rev 25284) @@ -0,0 +1,30 @@ +# Copyright 2009 OpenCSW +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +NAME = pycarddav +OWNER = geier +VERSION = v0.7.0 +CATEGORIES = python +GARTYPE = v2 + +DESCRIPTION = CardDAV CLI client +define BLURB +endef + +# git at github.com:geopy/geopy.git +# GIT_REPOS = http://github.com/$(NAME)/$(NAME).git +GIT_REPOS = git://github.com/$(OWNER)/$(NAME).git +# proxy: only for URI git, need socat +# GIT_USE_PROXY = 1 +GIT_TREEISH_pycarddav.git = $(VERSION) + + +LICENSE = COPYING + +# does not work on Python 2.6 +ARCHALL = 1 +SKIPTEST = 1 + +include gar/category.mk + Property changes on: csw/mgar/pkg/lang-python/pycarddav/trunk/Makefile ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Added: csw/mgar/pkg/lang-python/pycarddav/trunk/checksums =================================================================== This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From cgrzemba at users.sourceforge.net Thu Oct 8 15:27:24 2015 From: cgrzemba at users.sourceforge.net (cgrzemba at users.sourceforge.net) Date: Thu, 8 Oct 2015 13:27:24 +0000 Subject: SF.net SVN: gar:[25285] csw/mgar/pkg/lang-python Message-ID: <3nWtcn5W1ZzSf@mail.opencsw.org> Revision: 25285 http://sourceforge.net/p/gar/code/25285 Author: cgrzemba Date: 2015-10-08 13:27:24 +0000 (Thu, 08 Oct 2015) Log Message: ----------- lang-python/urwid/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/lang-python/urwid/ csw/mgar/pkg/lang-python/urwid/Makefile csw/mgar/pkg/lang-python/urwid/branches/ csw/mgar/pkg/lang-python/urwid/tags/ csw/mgar/pkg/lang-python/urwid/trunk/ csw/mgar/pkg/lang-python/urwid/trunk/Makefile csw/mgar/pkg/lang-python/urwid/trunk/checksums csw/mgar/pkg/lang-python/urwid/trunk/files/ Added: csw/mgar/pkg/lang-python/urwid/Makefile =================================================================== --- csw/mgar/pkg/lang-python/urwid/Makefile (rev 0) +++ csw/mgar/pkg/lang-python/urwid/Makefile 2015-10-08 13:27:24 UTC (rev 25285) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Index: csw/mgar/pkg/lang-python/urwid/trunk =================================================================== --- csw/mgar/pkg/lang-python/urwid/trunk 2015-10-08 09:43:40 UTC (rev 25284) +++ csw/mgar/pkg/lang-python/urwid/trunk 2015-10-08 13:27:24 UTC (rev 25285) Property changes on: csw/mgar/pkg/lang-python/urwid/trunk ___________________________________________________________________ Added: svn:ignore ## -0,0 +1 ## +work Added: csw/mgar/pkg/lang-python/urwid/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/urwid/trunk/Makefile (rev 0) +++ csw/mgar/pkg/lang-python/urwid/trunk/Makefile 2015-10-08 13:27:24 UTC (rev 25285) @@ -0,0 +1,34 @@ +# Copyright 2009 OpenCSW +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +NAME = urwid +OWNER = wardi +VERSION = release-1.3.0 +GIT_TAG = release-$(VERSION) +CATEGORIES = python +GARTYPE = v2 + +DESCRIPTION = Urwid is a console user interface library +define BLURB +endef + +# git at github.com:geopy/geopy.git +# GIT_REPOS = http://github.com/$(NAME)/$(NAME).git +GIT_REPOS = git://github.com/$(OWNER)/$(NAME).git +# proxy: only for URI git, need socat +# GIT_USE_PROXY = 1 +GIT_TREEISH_pycarddav.git = $(GIT_TAG) + +LICENSE = COPYING + +PACKAGING_PLATFORMS = solaris10-sparc solaris10-i386 + +RUNTIME_DEP_PKGS_CSWpy-urwid += CSWlibpython2-7-1-0 +RUNTIME_DEP_PKGS_CSWpy-urwid += CSWlibpython2-6-1-0 +RUNTIME_DEP_PKGS_CSWpy-urwid += CSWlibgcc-s1 + +SKIPTEST = 1 + +include gar/category.mk + Property changes on: csw/mgar/pkg/lang-python/urwid/trunk/Makefile ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Added: csw/mgar/pkg/lang-python/urwid/trunk/checksums =================================================================== This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From cgrzemba at users.sourceforge.net Thu Oct 8 15:28:34 2015 From: cgrzemba at users.sourceforge.net (cgrzemba at users.sourceforge.net) Date: Thu, 8 Oct 2015 13:28:34 +0000 Subject: SF.net SVN: gar:[25286] csw/mgar/pkg/lang-python/pyxdg/trunk Message-ID: <3nWtf54s7NzW3@mail.opencsw.org> Revision: 25286 http://sourceforge.net/p/gar/code/25286 Author: cgrzemba Date: 2015-10-08 13:28:34 +0000 (Thu, 08 Oct 2015) Log Message: ----------- lang-python/pyxdg/trunk: update version, use GITHUB repo Modified Paths: -------------- csw/mgar/pkg/lang-python/pyxdg/trunk/Makefile csw/mgar/pkg/lang-python/pyxdg/trunk/checksums Modified: csw/mgar/pkg/lang-python/pyxdg/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/pyxdg/trunk/Makefile 2015-10-08 13:27:24 UTC (rev 25285) +++ csw/mgar/pkg/lang-python/pyxdg/trunk/Makefile 2015-10-08 13:28:34 UTC (rev 25286) @@ -2,7 +2,9 @@ # TODO (release-critical prefixed with !, non release-critical with *) # NAME = pyxdg -VERSION = 0.19 +OWNER = takluyver +VERSION = 0.25 +GIT_TAG = rel-$(VERSION) CATEGORIES = python GARTYPE = v2 @@ -11,17 +13,24 @@ endef VENDOR_URL = http://www.freedesktop.org/wiki/Software/pyxdg -MASTER_SITES = http://www.freedesktop.org/~lanius/ -DISTFILES = $(DISTNAME).tar.gz -DISTFILES += changelog.CSW +# MASTER_SITES = http://www.freedesktop.org/~lanius/ +# DISTFILES = $(DISTNAME).tar.gz +# DISTFILES += changelog.CSW +GIT_REPOS = git://github.com/$(OWNER)/$(NAME).git +GIT_TREEISH_pyxdg.git = $(GIT_TAG) +LICENSE = COPYING + PACKAGES = CSWpy-xdg ARCHALL = 1 +SKIPTEST = 1 -TEST_SCRIPTS = # XDG_DATADIRS contains /usr/share ... after /opt/csw/share -CHECKPKG_OVERRIDES += file-with-bad-content|/usr/share|root/opt/csw/lib/python/site-packages/xdg/BaseDirectory.py +CHECKPKG_OVERRIDES_CSWpy-xdg += file-with-bad-content|/usr/share|root/opt/csw/lib/python2.6/site-packages/xdg/BaseDirectory.py +CHECKPKG_OVERRIDES_CSWpy-xdg += file-with-bad-content|/usr/share|root/opt/csw/lib/python2.6/site-packages/xdg/IconTheme.py +CHECKPKG_OVERRIDES_CSWpy-xdg += file-with-bad-content|/usr/share|root/opt/csw/lib/python2.7/site-packages/xdg/BaseDirectory.py +CHECKPKG_OVERRIDES_CSWpy-xdg += file-with-bad-content|/usr/share|root/opt/csw/lib/python2.7/site-packages/xdg/IconTheme.py include gar/category.mk Modified: csw/mgar/pkg/lang-python/pyxdg/trunk/checksums =================================================================== --- csw/mgar/pkg/lang-python/pyxdg/trunk/checksums 2015-10-08 13:27:24 UTC (rev 25285) +++ csw/mgar/pkg/lang-python/pyxdg/trunk/checksums 2015-10-08 13:28:34 UTC (rev 25286) @@ -1 +0,0 @@ -9f33542e846d0fc1e0bfa992a8555b0a pyxdg-0.19.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From cgrzemba at users.sourceforge.net Thu Oct 8 15:45:58 2015 From: cgrzemba at users.sourceforge.net (cgrzemba at users.sourceforge.net) Date: Thu, 8 Oct 2015 13:45:58 +0000 Subject: SF.net SVN: gar:[25287] csw/mgar/pkg/lang-python/urwid/trunk/Makefile Message-ID: <3nWv2r1F2yzYl@mail.opencsw.org> Revision: 25287 http://sourceforge.net/p/gar/code/25287 Author: cgrzemba Date: 2015-10-08 13:45:57 +0000 (Thu, 08 Oct 2015) Log Message: ----------- lang-python/urwid/trunk: polish version string Modified Paths: -------------- csw/mgar/pkg/lang-python/urwid/trunk/Makefile Modified: csw/mgar/pkg/lang-python/urwid/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/urwid/trunk/Makefile 2015-10-08 13:28:34 UTC (rev 25286) +++ csw/mgar/pkg/lang-python/urwid/trunk/Makefile 2015-10-08 13:45:57 UTC (rev 25287) @@ -4,7 +4,7 @@ NAME = urwid OWNER = wardi -VERSION = release-1.3.0 +VERSION = 1.3.0 GIT_TAG = release-$(VERSION) CATEGORIES = python GARTYPE = v2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Thu Oct 8 16:58:24 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 8 Oct 2015 14:58:24 +0000 Subject: SF.net SVN: gar:[25288] csw/mgar/pkg/stunnel/trunk Message-ID: <3nWwdn5Nc0zdT@mail.opencsw.org> Revision: 25288 http://sourceforge.net/p/gar/code/25288 Author: dmichelsen Date: 2015-10-08 14:58:23 +0000 (Thu, 08 Oct 2015) Log Message: ----------- stunnel/trunk: Update to 5.24 Modified Paths: -------------- csw/mgar/pkg/stunnel/trunk/Makefile csw/mgar/pkg/stunnel/trunk/checksums Modified: csw/mgar/pkg/stunnel/trunk/Makefile =================================================================== --- csw/mgar/pkg/stunnel/trunk/Makefile 2015-10-08 13:45:57 UTC (rev 25287) +++ csw/mgar/pkg/stunnel/trunk/Makefile 2015-10-08 14:58:23 UTC (rev 25288) @@ -7,7 +7,7 @@ # Test on Solaris 8 / 9 for comparison # NAME = stunnel -VERSION = 5.23 +VERSION = 5.24 # BETA = b4 GARTYPE = v2 Modified: csw/mgar/pkg/stunnel/trunk/checksums =================================================================== --- csw/mgar/pkg/stunnel/trunk/checksums 2015-10-08 13:45:57 UTC (rev 25287) +++ csw/mgar/pkg/stunnel/trunk/checksums 2015-10-08 14:58:23 UTC (rev 25288) @@ -1 +1 @@ -55470899902f706e2cd39a614524ca1a stunnel-5.23.tar.gz +24ad1f10525181edcf82433aac8bad0b stunnel-5.24.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From cgrzemba at users.sourceforge.net Thu Oct 8 17:17:42 2015 From: cgrzemba at users.sourceforge.net (cgrzemba at users.sourceforge.net) Date: Thu, 8 Oct 2015 15:17:42 +0000 Subject: SF.net SVN: gar:[25289] csw/mgar/pkg/lang-python/pycarddav/trunk/Makefile Message-ID: <3nWx443pDYzh8@mail.opencsw.org> Revision: 25289 http://sourceforge.net/p/gar/code/25289 Author: cgrzemba Date: 2015-10-08 15:17:42 +0000 (Thu, 08 Oct 2015) Log Message: ----------- lang-python/pycarddav/trunk: add module dependencies Modified Paths: -------------- csw/mgar/pkg/lang-python/pycarddav/trunk/Makefile Modified: csw/mgar/pkg/lang-python/pycarddav/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/pycarddav/trunk/Makefile 2015-10-08 14:58:23 UTC (rev 25288) +++ csw/mgar/pkg/lang-python/pycarddav/trunk/Makefile 2015-10-08 15:17:42 UTC (rev 25289) @@ -22,9 +22,24 @@ LICENSE = COPYING +RUNTIME_DEP_PKGS += CSWpy-vobject +RUNTIME_DEP_PKGS += CSWpy-requests +RUNTIME_DEP_PKGS += CSWpy-lxml +RUNTIME_DEP_PKGS += CSWpy-urwid +RUNTIME_DEP_PKGS += CSWpy-xdg +CHECKPKG_OVERRIDES_CSWpy-pycarddav += surplus-dependency|CSWpy-urwid +CHECKPKG_OVERRIDES_CSWpy-pycarddav += surplus-dependency|CSWpy-lxml +CHECKPKG_OVERRIDES_CSWpy-pycarddav += surplus-dependency|CSWpy-requests +CHECKPKG_OVERRIDES_CSWpy-pycarddav += surplus-dependency|CSWpy-xdg +CHECKPKG_OVERRIDES_CSWpy-pycarddav += surplus-dependency|CSWpy-vobject + # does not work on Python 2.6 ARCHALL = 1 SKIPTEST = 1 include gar/category.mk +post-install: + ginstall -d $(DESTDIR)$(sysconfdir)/xdg/pycard + ginstall $(WORKSRC)/pycard.conf.sample $(DESTDIR)$(sysconfdir)/xdg/pycard + $(MAKECOOKIE) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Fri Oct 9 16:48:31 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 9 Oct 2015 14:48:31 +0000 Subject: SF.net SVN: gar:[25290] csw/mgar/pkg/wavpack/trunk Message-ID: <3nXXN56SYmz1F1@mail.opencsw.org> Revision: 25290 http://sourceforge.net/p/gar/code/25290 Author: dmichelsen Date: 2015-10-09 14:48:31 +0000 (Fri, 09 Oct 2015) Log Message: ----------- wavpack/trunk: Update to 4.75.2 Modified Paths: -------------- csw/mgar/pkg/wavpack/trunk/Makefile csw/mgar/pkg/wavpack/trunk/checksums Modified: csw/mgar/pkg/wavpack/trunk/Makefile =================================================================== --- csw/mgar/pkg/wavpack/trunk/Makefile 2015-10-08 15:17:42 UTC (rev 25289) +++ csw/mgar/pkg/wavpack/trunk/Makefile 2015-10-09 14:48:31 UTC (rev 25290) @@ -1,5 +1,5 @@ NAME = wavpack -VERSION = 4.70.0 +VERSION = 4.75.2 GARTYPE = v2 DESCRIPTION = Open audio compression format @@ -14,7 +14,7 @@ MASTER_SITES = http://www.wavpack.com/ DISTFILES += $(DISTNAME).tar.bz2 -PATCHFILES += 0001-Includes-are-needed-for-other-compilers-too.patch +#PATCHFILES += 0001-Includes-are-needed-for-other-compilers-too.patch PACKAGES += CSWlibwavpack1 SPKG_DESC_CSWlibwavpack1 = Open audio compression format library, libwavpack.so.1 @@ -31,6 +31,8 @@ PKGFILES_CSWlibwavpack-dev = $(PKGFILES_DEVEL) RUNTIME_DEP_PKGS_CSWlibwavpack-dev = CSWlibwavpack1 +EXTRA_CPPFLAGS += -D__inline=inline + BUILD64 = 1 ISAEXEC = 1 Modified: csw/mgar/pkg/wavpack/trunk/checksums =================================================================== --- csw/mgar/pkg/wavpack/trunk/checksums 2015-10-08 15:17:42 UTC (rev 25289) +++ csw/mgar/pkg/wavpack/trunk/checksums 2015-10-09 14:48:31 UTC (rev 25290) @@ -1 +1 @@ -4c0186ef0dc8367ce5cd7cc0f398b714 wavpack-4.70.0.tar.bz2 +e8bbc4c3382f9148918ad7b896e10ac1 wavpack-4.75.2.tar.bz2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From guillomovitch at users.sourceforge.net Sun Oct 11 22:26:50 2015 From: guillomovitch at users.sourceforge.net (guillomovitch at users.sourceforge.net) Date: Sun, 11 Oct 2015 20:26:50 +0000 Subject: SF.net SVN: gar:[25291] csw/mgar/pkg/fusioninventory-agent/trunk Message-ID: <3nYvnQ3M6tzfM@mail.opencsw.org> Revision: 25291 http://sourceforge.net/p/gar/code/25291 Author: guillomovitch Date: 2015-10-11 20:26:50 +0000 (Sun, 11 Oct 2015) Log Message: ----------- new version 2.3.17 Modified Paths: -------------- csw/mgar/pkg/fusioninventory-agent/trunk/Makefile csw/mgar/pkg/fusioninventory-agent/trunk/checksums Modified: csw/mgar/pkg/fusioninventory-agent/trunk/Makefile =================================================================== --- csw/mgar/pkg/fusioninventory-agent/trunk/Makefile 2015-10-09 14:48:31 UTC (rev 25290) +++ csw/mgar/pkg/fusioninventory-agent/trunk/Makefile 2015-10-11 20:26:50 UTC (rev 25291) @@ -2,7 +2,7 @@ # TODO (release-critical prefixed with !, non release-critical with *) # NAME = fusioninventory-agent -VERSION = 2.3.16 +VERSION = 2.3.17 GARTYPE = v2 CATEGORIES = cpan Modified: csw/mgar/pkg/fusioninventory-agent/trunk/checksums =================================================================== --- csw/mgar/pkg/fusioninventory-agent/trunk/checksums 2015-10-09 14:48:31 UTC (rev 25290) +++ csw/mgar/pkg/fusioninventory-agent/trunk/checksums 2015-10-11 20:26:50 UTC (rev 25291) @@ -1 +1 @@ -89467ae101a89544a6fbade2e7a879fe FusionInventory-Agent-2.3.16.tar.gz +29002653bc5c25cd0e42b5990dc4cd2f FusionInventory-Agent-2.3.17.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rmottola at users.sourceforge.net Wed Oct 14 22:15:45 2015 From: rmottola at users.sourceforge.net (rmottola at users.sourceforge.net) Date: Wed, 14 Oct 2015 20:15:45 +0000 Subject: SF.net SVN: gar:[25292] csw/mgar/pkg/guile/trunk Message-ID: <3nblPG6Q4Bz1B0@mail.opencsw.org> Revision: 25292 http://sourceforge.net/p/gar/code/25292 Author: rmottola Date: 2015-10-14 20:15:45 +0000 (Wed, 14 Oct 2015) Log Message: ----------- guile/trunk: bump base and be fine about 64bit Modified Paths: -------------- csw/mgar/pkg/guile/trunk/Makefile csw/mgar/pkg/guile/trunk/checksums Modified: csw/mgar/pkg/guile/trunk/Makefile =================================================================== --- csw/mgar/pkg/guile/trunk/Makefile 2015-10-11 20:26:50 UTC (rev 25291) +++ csw/mgar/pkg/guile/trunk/Makefile 2015-10-14 20:15:45 UTC (rev 25292) @@ -1,7 +1,7 @@ # $Id$ NAME = guile -VERSION = 2.0.9 +VERSION = 2.0.11 GARTYPE = v2 DESCRIPTION = GNU extensibility library @@ -21,14 +21,22 @@ GARCOMPILER = GNU -PACKAGING_PLATFORMS = solaris10-sparc +PACKAGING_PLATFORMS += solaris9-sparc +PACKAGING_PLATFORMS += solaris9-i386 +PACKAGING_PLATFORMS += solaris10-sparc PACKAGING_PLATFORMS += solaris10-i386 CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --disable-silent-rules -BUILD64 = 1 +# Enable 64 bits, but not for Solaris 9 x86 +BUILD64_5.9_sparc = 1 +BUILD64_5.10_sparc = 1 +BUILD64_5.9_i386 = +BUILD64_5.10_i386 = 1 +BUILD64 = $(BUILD64_$(GAROSREL)_$(GARCH)) + # runtime dependencies as explicited in the project's README file: BUILD_DEP_PKGS += CSWlibgmp-dev BUILD_DEP_PKGS += CSWlibiconv-dev Modified: csw/mgar/pkg/guile/trunk/checksums =================================================================== --- csw/mgar/pkg/guile/trunk/checksums 2015-10-11 20:26:50 UTC (rev 25291) +++ csw/mgar/pkg/guile/trunk/checksums 2015-10-14 20:15:45 UTC (rev 25292) @@ -1 +1 @@ -a69b575d4a633bdd9118f3a4a1e97766 guile-2.0.9.tar.xz +03f1bce1a4983076d955003472306a13 guile-2.0.11.tar.xz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rmottola at users.sourceforge.net Thu Oct 15 00:26:33 2015 From: rmottola at users.sourceforge.net (rmottola at users.sourceforge.net) Date: Wed, 14 Oct 2015 22:26:33 +0000 Subject: SF.net SVN: gar:[25293] csw/mgar/pkg/libunistring/trunk/Makefile Message-ID: <3nbpJ421DTz1H7@mail.opencsw.org> Revision: 25293 http://sourceforge.net/p/gar/code/25293 Author: rmottola Date: 2015-10-14 22:26:32 +0000 (Wed, 14 Oct 2015) Log Message: ----------- tweak build platforms and 64bit settins Modified Paths: -------------- csw/mgar/pkg/libunistring/trunk/Makefile Modified: csw/mgar/pkg/libunistring/trunk/Makefile =================================================================== --- csw/mgar/pkg/libunistring/trunk/Makefile 2015-10-14 20:15:45 UTC (rev 25292) +++ csw/mgar/pkg/libunistring/trunk/Makefile 2015-10-14 22:26:32 UTC (rev 25293) @@ -12,6 +12,12 @@ MASTER_SITES = $(GNU_MIRROR) DISTFILES = $(DISTNAME).tar.gz +PACKAGING_PLATFORMS += solaris9-sparc +PACKAGING_PLATFORMS += solaris9-i386 +PACKAGING_PLATFORMS += solaris10-sparc +PACKAGING_PLATFORMS += solaris10-i386 + + PACKAGES += CSWlibunistring0 SPKG_DESC_CSWlibunistring0 = Provides functions for manipulating Unicode strings, libunistring.so.0 PKGFILES_CSWlibunistring0 += $(call pkgfiles_lib,libunistring.so.0) @@ -26,7 +32,12 @@ CHECKPKG_OVERRIDES_CSWlibunistring-dev += file-with-bad-content|/usr/local|root/opt/csw/share/doc/libunistring/libunistring_15.html CHECKPKG_OVERRIDES_CSWlibunistring-dev += file-with-bad-content|/usr/local|root/opt/csw/share/info/libunistring.info -BUILD64_LIBS_ONLY = 1 +# Enable 64 bits, but not for Solaris 9 x86 +BUILD64_5.9_sparc = 1 +BUILD64_5.10_sparc = 1 +BUILD64_5.9_i386 = +BUILD64_5.10_i386 = 1 +BUILD64 = $(BUILD64_$(GAROSREL)_$(GARCH)) EXTRA_MERGE_EXCLUDE_FILES += $(libdir)/charset\.alias This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rmottola at users.sourceforge.net Thu Oct 15 12:37:04 2015 From: rmottola at users.sourceforge.net (rmottola at users.sourceforge.net) Date: Thu, 15 Oct 2015 10:37:04 +0000 Subject: SF.net SVN: gar:[25294] csw/mgar/pkg/guile/trunk/Makefile Message-ID: <3nc6W21b6jz19@mail.opencsw.org> Revision: 25294 http://sourceforge.net/p/gar/code/25294 Author: rmottola Date: 2015-10-15 10:37:03 +0000 (Thu, 15 Oct 2015) Log Message: ----------- guile/trunk: update and tweak depdendencies and overrides Modified Paths: -------------- csw/mgar/pkg/guile/trunk/Makefile Modified: csw/mgar/pkg/guile/trunk/Makefile =================================================================== --- csw/mgar/pkg/guile/trunk/Makefile 2015-10-14 22:26:32 UTC (rev 25293) +++ csw/mgar/pkg/guile/trunk/Makefile 2015-10-15 10:37:03 UTC (rev 25294) @@ -55,7 +55,7 @@ CATALOGNAME_CSWguile = guile SPKG_DESC_CSWguile += $(DESCRIPTION) RUNTIME_DEP_PKGS_CSWguile += CSWlibguile2-0-22 -RUNTIME_DEP_PKGS_CSWguile += CSWlibintl8 +#RUNTIME_DEP_PKGS_CSWguile += CSWlibintl8 PACKAGES += CSWlibguile2-0-22 CATALOGNAME_CSWlibguile2-0-22 = libguile2_0_22 @@ -75,10 +75,10 @@ RUNTIME_DEP_PKGS_CSWlibguile2-0-22 += CSWlibunistring0 RUNTIME_DEP_PKGS_CSWlibguile2-0-22 += CSWlibgcc-s1 RUNTIME_DEP_PKGS_CSWlibguile2-0-22 += CSWlibgmp10 -RUNTIME_DEP_PKGS_CSWlibguile2-0-22 += CSWlibffi5 -CHECKPKG_OVERRIDES_CSWlibguile2-0-22 += file-with-bad-content|/usr/share|root/opt/csw/lib/guile/2.0/ccache/ice-9/slib.go -CHECKPKG_OVERRIDES_CSWlibguile2-0-22 += file-with-bad-content|/usr/share|root/opt/csw/lib/sparcv9/guile/2.0/ccache/ice-9/slib.go -CHECKPKG_OVERRIDES_CSWlibguile2-0-22 += file-with-bad-content|/usr/share|root/opt/csw/lib/amd64/guile/2.0/ccache/ice-9/slib.go +RUNTIME_DEP_PKGS_CSWlibguile2-0-22 += CSWlibffi6 +#CHECKPKG_OVERRIDES_CSWlibguile2-0-22 += file-with-bad-content|/usr/share|root/opt/csw/lib/guile/2.0/ccache/ice-9/slib.go +#CHECKPKG_OVERRIDES_CSWlibguile2-0-22 += file-with-bad-content|/usr/share|root/opt/csw/lib/sparcv9/guile/2.0/ccache/ice-9/slib.go +#CHECKPKG_OVERRIDES_CSWlibguile2-0-22 += file-with-bad-content|/usr/share|root/opt/csw/lib/amd64/guile/2.0/ccache/ice-9/slib.go PACKAGES += CSWlibguilereadline-v18-18 CATALOGNAME_CSWlibguilereadline-v18-18 = libguilereadline_v18_18 @@ -94,11 +94,11 @@ RUNTIME_DEP_PKGS_CSWlibguilereadline-v18-18 += CSWlibguile2-0-22 RUNTIME_DEP_PKGS_CSWlibguilereadline-v18-18 += CSWlibunistring0 RUNTIME_DEP_PKGS_CSWlibguilereadline-v18-18 += CSWlibgcc-s1 -RUNTIME_DEP_PKGS_CSWlibguilereadline-v18-18 += CSWlibltdl7 -RUNTIME_DEP_PKGS_CSWlibguilereadline-v18-18 += CSWlibffi5 -RUNTIME_DEP_PKGS_CSWlibguilereadline-v18-18 += CSWlibncurses5 -RUNTIME_DEP_PKGS_CSWlibguilereadline-v18-18 += CSWlibgmp10 -RUNTIME_DEP_PKGS_CSWlibguilereadline-v18-18 += CSWlibgc1 +#RUNTIME_DEP_PKGS_CSWlibguilereadline-v18-18 += CSWlibltdl7 +#RUNTIME_DEP_PKGS_CSWlibguilereadline-v18-18 += CSWlibffi6 +#RUNTIME_DEP_PKGS_CSWlibguilereadline-v18-18 += CSWlibncurses5 +#RUNTIME_DEP_PKGS_CSWlibguilereadline-v18-18 += CSWlibgmp10 +#RUNTIME_DEP_PKGS_CSWlibguilereadline-v18-18 += CSWlibgc1 # old library provided for those dependencies which didn't change to 2.x PACKAGES += CSWlibguile-ltdl1 @@ -118,9 +118,9 @@ CHECKPKG_OVERRIDES_CSWlibguile12 += file-with-bad-content|/export/home|root/opt/csw/lib/sparcv9/libguile.so.12.3.0 CHECKPKG_OVERRIDES_CSWlibguile12 += binary-disallowed-placement|file=opt/csw/lib/amd64/libguile.so.12.3.0|arch_id=3|arch_name=i386|bad_path=amd64 CHECKPKG_OVERRIDES_CSWlibguile12 += file-with-bad-content|/export/home|root/opt/csw/lib/amd64/libguile.so.12.3.0 -CHECKPKG_OVERRIDES_CSWlibguile12 += no-direct-binding|/opt/csw/lib/libguile.so.12.3.0|is|not|directly|bound|to|soname|libguile-ltdl.so.1 -CHECKPKG_OVERRIDES_CSWlibguile12 += no-direct-binding|/opt/csw/lib/sparcv9/libguile.so.12.3.0|is|not|directly|bound|to|soname|libguile-ltdl.so.1 -CHECKPKG_OVERRIDES_CSWlibguile12 += no-direct-binding|/opt/csw/lib/amd64/libguile.so.12.3.0|is|not|directly|bound|to|soname|libguile-ltdl.so.1 +#CHECKPKG_OVERRIDES_CSWlibguile12 += no-direct-binding|/opt/csw/lib/libguile.so.12.3.0|is|not|directly|bound|to|soname|libguile-ltdl.so.1 +#CHECKPKG_OVERRIDES_CSWlibguile12 += no-direct-binding|/opt/csw/lib/sparcv9/libguile.so.12.3.0|is|not|directly|bound|to|soname|libguile-ltdl.so.1 +#CHECKPKG_OVERRIDES_CSWlibguile12 += no-direct-binding|/opt/csw/lib/amd64/libguile.so.12.3.0|is|not|directly|bound|to|soname|libguile-ltdl.so.1 CHECKPKG_OVERRIDES_CSWlibguile12 += binary-disallowed-placement|file=opt/csw/lib/sparcv9/libguile.so.12.3.0|arch_id=2|arch_name=sparcv8|bad_path=sparcv9 CHECKPKG_OVERRIDES_CSWlibguile-ltdl1 += binary-disallowed-placement|file=opt/csw/lib/sparcv9/libguile-ltdl.so.1.0.0|arch_id=2|arch_name=sparcv8|bad_path=sparcv9 CHECKPKG_OVERRIDES_CSWlibguile-ltdl1 += binary-disallowed-placement|file=opt/csw/lib/amd64/libguile-ltdl.so.1.0.0|arch_id=3|arch_name=i386|bad_path=amd64 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Thu Oct 15 16:19:13 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 15 Oct 2015 14:19:13 +0000 Subject: SF.net SVN: gar:[25295] csw/mgar/pkg/lang-python/carbon/trunk/files Message-ID: <3ncCRH3y0czMc@mail.opencsw.org> Revision: 25295 http://sourceforge.net/p/gar/code/25295 Author: dmichelsen Date: 2015-10-15 14:19:12 +0000 (Thu, 15 Oct 2015) Log Message: ----------- lang-python/carbon/trunk: Add instance support to Carbon daemons Modified Paths: -------------- csw/mgar/pkg/lang-python/carbon/trunk/files/cswcarbon-aggregator.xml csw/mgar/pkg/lang-python/carbon/trunk/files/cswcarbon-cache.xml csw/mgar/pkg/lang-python/carbon/trunk/files/cswcarbon-relay.xml Modified: csw/mgar/pkg/lang-python/carbon/trunk/files/cswcarbon-aggregator.xml =================================================================== (Binary files differ) Modified: csw/mgar/pkg/lang-python/carbon/trunk/files/cswcarbon-cache.xml =================================================================== (Binary files differ) Modified: csw/mgar/pkg/lang-python/carbon/trunk/files/cswcarbon-relay.xml =================================================================== (Binary files differ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Thu Oct 15 16:47:51 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 15 Oct 2015 14:47:51 +0000 Subject: SF.net SVN: gar:[25296] csw/mgar/pkg/lang-python/carbon/trunk/files Message-ID: <3ncD4P1v8fzQh@mail.opencsw.org> Revision: 25296 http://sourceforge.net/p/gar/code/25296 Author: dmichelsen Date: 2015-10-15 14:47:51 +0000 (Thu, 15 Oct 2015) Log Message: ----------- lang-python/carbon/trunk: Inherit parameters in multi-instance Modified Paths: -------------- csw/mgar/pkg/lang-python/carbon/trunk/files/cswcarbon-aggregator.xml csw/mgar/pkg/lang-python/carbon/trunk/files/cswcarbon-cache.xml csw/mgar/pkg/lang-python/carbon/trunk/files/cswcarbon-relay.xml Modified: csw/mgar/pkg/lang-python/carbon/trunk/files/cswcarbon-aggregator.xml =================================================================== (Binary files differ) Modified: csw/mgar/pkg/lang-python/carbon/trunk/files/cswcarbon-cache.xml =================================================================== (Binary files differ) Modified: csw/mgar/pkg/lang-python/carbon/trunk/files/cswcarbon-relay.xml =================================================================== (Binary files differ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rmottola at users.sourceforge.net Thu Oct 15 17:37:45 2015 From: rmottola at users.sourceforge.net (rmottola at users.sourceforge.net) Date: Thu, 15 Oct 2015 15:37:45 +0000 Subject: SF.net SVN: gar:[25297] csw/mgar/pkg/libunistring/trunk Message-ID: <3ncF9x03RdzZH@mail.opencsw.org> Revision: 25297 http://sourceforge.net/p/gar/code/25297 Author: rmottola Date: 2015-10-15 15:37:45 +0000 (Thu, 15 Oct 2015) Log Message: ----------- libunistring/trunk: bump version to 0.9.5 which includes new soname 2 Modified Paths: -------------- csw/mgar/pkg/libunistring/trunk/Makefile csw/mgar/pkg/libunistring/trunk/checksums Modified: csw/mgar/pkg/libunistring/trunk/Makefile =================================================================== --- csw/mgar/pkg/libunistring/trunk/Makefile 2015-10-15 14:47:51 UTC (rev 25296) +++ csw/mgar/pkg/libunistring/trunk/Makefile 2015-10-15 15:37:45 UTC (rev 25297) @@ -2,7 +2,7 @@ # TODO (release-critical prefixed with !, non release-critical with *) # NAME = libunistring -VERSION = 0.9.3 +VERSION = 0.9.5 GARTYPE = v2 DESCRIPTION = Provides functions for manipulating Unicode strings @@ -18,19 +18,19 @@ PACKAGING_PLATFORMS += solaris10-i386 -PACKAGES += CSWlibunistring0 -SPKG_DESC_CSWlibunistring0 = Provides functions for manipulating Unicode strings, libunistring.so.0 -PKGFILES_CSWlibunistring0 += $(call pkgfiles_lib,libunistring.so.0) -RUNTIME_DEP_PKGS_CSWlibunistring0 += CSWlibiconv2 +PACKAGES += CSWlibunistring2 +SPKG_DESC_CSWlibunistring2 = Provides functions for manipulating Unicode strings, libunistring.so.2 +PKGFILES_CSWlibunistring2 += $(call pkgfiles_lib,libunistring.so.2) +RUNTIME_DEP_PKGS_CSWlibunistring2 += CSWlibiconv2 PACKAGES += CSWlibunistring-dev -SPKG_DESC_CSWlibunistring-dev = Development files for libunistring.so.0 +SPKG_DESC_CSWlibunistring-dev = Development files for libunistring.so.2 # PKGFILES is catchall -RUNTIME_DEP_PKGS_CSWlibunistring-dev += CSWlibunistring0 +RUNTIME_DEP_PKGS_CSWlibunistring-dev += CSWlibunistring2 # These are just docs, override for now -CHECKPKG_OVERRIDES_CSWlibunistring-dev += file-with-bad-content|/usr/local|root/opt/csw/share/doc/libunistring/libunistring_15.html -CHECKPKG_OVERRIDES_CSWlibunistring-dev += file-with-bad-content|/usr/local|root/opt/csw/share/info/libunistring.info +#CHECKPKG_OVERRIDES_CSWlibunistring-dev += file-with-bad-content|/usr/local|root/opt/csw/share/doc/libunistring/libunistring_15.html +#CHECKPKG_OVERRIDES_CSWlibunistring-dev += file-with-bad-content|/usr/local|root/opt/csw/share/info/libunistring.info # Enable 64 bits, but not for Solaris 9 x86 BUILD64_5.9_sparc = 1 Modified: csw/mgar/pkg/libunistring/trunk/checksums =================================================================== --- csw/mgar/pkg/libunistring/trunk/checksums 2015-10-15 14:47:51 UTC (rev 25296) +++ csw/mgar/pkg/libunistring/trunk/checksums 2015-10-15 15:37:45 UTC (rev 25297) @@ -1 +1 @@ -db8eca3b64163abadf8c40e5cecc261f libunistring-0.9.3.tar.gz +1a705bcdcb83799d544137617b377cfd libunistring-0.9.5.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Fri Oct 16 18:19:09 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 16 Oct 2015 16:19:09 +0000 Subject: SF.net SVN: gar:[25298] csw/mgar/pkg/less/trunk Message-ID: <3nct3K2HxFz1HL@mail.opencsw.org> Revision: 25298 http://sourceforge.net/p/gar/code/25298 Author: dmichelsen Date: 2015-10-16 16:19:08 +0000 (Fri, 16 Oct 2015) Log Message: ----------- less/trunk: Update to 481 Modified Paths: -------------- csw/mgar/pkg/less/trunk/Makefile csw/mgar/pkg/less/trunk/checksums Modified: csw/mgar/pkg/less/trunk/Makefile =================================================================== --- csw/mgar/pkg/less/trunk/Makefile 2015-10-15 15:37:45 UTC (rev 25297) +++ csw/mgar/pkg/less/trunk/Makefile 2015-10-16 16:19:08 UTC (rev 25298) @@ -1,5 +1,5 @@ NAME = less -VERSION = 458 +VERSION = 481 GARTYPE = v2 DESCRIPTION = Less is a free, open-source file pager Modified: csw/mgar/pkg/less/trunk/checksums =================================================================== --- csw/mgar/pkg/less/trunk/checksums 2015-10-15 15:37:45 UTC (rev 25297) +++ csw/mgar/pkg/less/trunk/checksums 2015-10-16 16:19:08 UTC (rev 25298) @@ -1 +1 @@ -935b38aa2e73c888c210dedf8fd94f49 less-458.tar.gz +50ef46065c65257141a7340123527767 less-481.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Fri Oct 16 22:07:46 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 16 Oct 2015 20:07:46 +0000 Subject: SF.net SVN: gar:[25299] csw/mgar/pkg/lang-python/python/branches/python-2.7 Message-ID: <3ncz714l3Hz1T5@mail.opencsw.org> Revision: 25299 http://sourceforge.net/p/gar/code/25299 Author: dmichelsen Date: 2015-10-16 20:07:46 +0000 (Fri, 16 Oct 2015) Log Message: ----------- lang-python/python/branches/python-2.7: Update to 2.7.10 and fix curses support as reported in #5254 Modified Paths: -------------- csw/mgar/pkg/lang-python/python/branches/python-2.7/Makefile csw/mgar/pkg/lang-python/python/branches/python-2.7/checksums Modified: csw/mgar/pkg/lang-python/python/branches/python-2.7/Makefile =================================================================== --- csw/mgar/pkg/lang-python/python/branches/python-2.7/Makefile 2015-10-16 16:19:08 UTC (rev 25298) +++ csw/mgar/pkg/lang-python/python/branches/python-2.7/Makefile 2015-10-16 20:07:46 UTC (rev 25299) @@ -1,7 +1,7 @@ # $Id$ NAME = Python -VERSION = 2.7.8 +VERSION = 2.7.10 VER = 2.7 DVER = 2-7 UVER = 2_7 @@ -58,6 +58,9 @@ EXTRA_INC += $(prefix)/bdb48/include EXTRA_LIB += $(prefix)/bdb48/lib +# We have one for ncurses and one for ncursesw +EXTRA_INC += $(includedir)/ncurses + # There is a file name conflict over libffi.so symlink between libffi package # and a gcc-java package. While it will ultimately belong to libffi_dev, the # symlink is currently under a subdirectory. @@ -122,7 +125,7 @@ RUNTIME_DEP_PKGS_CSWidle$(CVER) += CSWpython$(CVER)-tk RUNTIME_DEP_PKGS_CSWpython$(CVER) += CSWbdb48 RUNTIME_DEP_PKGS_CSWpython$(CVER) += CSWlibbz2-1-0 -RUNTIME_DEP_PKGS_CSWpython$(CVER) += CSWlibffi5 +RUNTIME_DEP_PKGS_CSWpython$(CVER) += CSWlibffi6 RUNTIME_DEP_PKGS_CSWpython$(CVER) += CSWlibgcc-s1 RUNTIME_DEP_PKGS_CSWpython$(CVER) += CSWlibgdbm4 RUNTIME_DEP_PKGS_CSWpython$(CVER) += CSWlibintl8 Modified: csw/mgar/pkg/lang-python/python/branches/python-2.7/checksums =================================================================== --- csw/mgar/pkg/lang-python/python/branches/python-2.7/checksums 2015-10-16 16:19:08 UTC (rev 25298) +++ csw/mgar/pkg/lang-python/python/branches/python-2.7/checksums 2015-10-16 20:07:46 UTC (rev 25299) @@ -1 +1 @@ -d235bdfa75b8396942e360a70487ee00 Python-2.7.8.tar.xz +c685ef0b8e9f27b5e3db5db12b268ac6 Python-2.7.10.tar.xz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Sun Oct 18 22:21:01 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 18 Oct 2015 20:21:01 +0000 Subject: SF.net SVN: gar:[25300] csw/mgar/pkg/readline/trunk Message-ID: <3nfCKV2B1Czlp@mail.opencsw.org> Revision: 25300 http://sourceforge.net/p/gar/code/25300 Author: dmichelsen Date: 2015-10-18 20:21:01 +0000 (Sun, 18 Oct 2015) Log Message: ----------- readline/trunk: Update to 6.3 and enable Solaris 9, this is important to build Python 2.7.10 on Solaris 9 for infrastructure Modified Paths: -------------- csw/mgar/pkg/readline/trunk/Makefile csw/mgar/pkg/readline/trunk/checksums Modified: csw/mgar/pkg/readline/trunk/Makefile =================================================================== --- csw/mgar/pkg/readline/trunk/Makefile 2015-10-16 20:07:46 UTC (rev 25299) +++ csw/mgar/pkg/readline/trunk/Makefile 2015-10-18 20:21:01 UTC (rev 25300) @@ -1,5 +1,5 @@ NAME = readline -VERSION = 6.2 +VERSION = 6.3 GARTYPE = v2 DESCRIPTION = GNU readline @@ -16,6 +16,9 @@ DISTFILES = $(NAME)-$(VERSION).tar.gz PATCHFILES += patch-history.3.diff +PACKAGING_PLATFORMS += solaris9-sparc solaris9-i386 +PACKAGING_PLATFORMS += solaris10-sparc solaris10-i386 + VENDOR_URL = http://tiswww.case.edu/php/chet/readline/rltop.html # From pkg/readline43 Modified: csw/mgar/pkg/readline/trunk/checksums =================================================================== --- csw/mgar/pkg/readline/trunk/checksums 2015-10-16 20:07:46 UTC (rev 25299) +++ csw/mgar/pkg/readline/trunk/checksums 2015-10-18 20:21:01 UTC (rev 25300) @@ -1 +1 @@ -67948acb2ca081f23359d0256e9a271c readline-6.2.tar.gz +33c8fb279e981274f485fd91da77e94a readline-6.3.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Mon Oct 19 14:09:48 2015 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Mon, 19 Oct 2015 12:09:48 +0000 Subject: SF.net SVN: gar:[25301] csw/mgar/pkg/clamav/trunk Message-ID: <3nfcNF16qxz14b@mail.opencsw.org> Revision: 25301 http://sourceforge.net/p/gar/code/25301 Author: bonivart Date: 2015-10-19 12:09:48 +0000 (Mon, 19 Oct 2015) Log Message: ----------- clamav/trunk: testing 0.99-rc1 Modified Paths: -------------- csw/mgar/pkg/clamav/trunk/Makefile csw/mgar/pkg/clamav/trunk/checksums Modified: csw/mgar/pkg/clamav/trunk/Makefile =================================================================== --- csw/mgar/pkg/clamav/trunk/Makefile 2015-10-18 20:21:01 UTC (rev 25300) +++ csw/mgar/pkg/clamav/trunk/Makefile 2015-10-19 12:09:48 UTC (rev 25301) @@ -1,42 +1,41 @@ NAME = clamav -VERSION = 0.98.7 +VERSION = 0.99-rc1 GARTYPE = v2 DESCRIPTION = Clam AntiVirus define BLURB endef -SF_PROJECT = clamav -MASTER_SITES = $(SF_MIRRORS) +MASTER_SITES = http://www.clamav.net/downloads/release_candidate/ DISTFILES = $(NAME)-$(VERSION).tar.gz PACKAGES += CSWclamav CATALOGNAME_CSWclamav = clamav SPKG_DESC_CSWclamav = $(DESCRIPTION) -RUNTIME_DEP_PKGS_CSWclamav = CSWlibclam6 +RUNTIME_DEP_PKGS_CSWclamav = CSWlibclam7 RUNTIME_DEP_PKGS_CSWclamav += CSWlibz1 RUNTIME_DEP_PKGS_CSWclamav += CSWlibncurses5 RUNTIME_DEP_PKGS_CSWclamav += CSWlibbz2-1-0 RUNTIME_DEP_PKGS_CSWclamav += CSWlibssl1-0-0 -PACKAGES += CSWlibclam6 -CATALOGNAME_CSWlibclam6 = libclam6 -SPKG_DESC_CSWlibclam6 = $(DESCRIPTION) Library -RUNTIME_DEP_PKGS_CSWlibclam6 = CSWlibz1 -RUNTIME_DEP_PKGS_CSWlibclam6 += CSWlibltdl7 -RUNTIME_DEP_PKGS_CSWlibclam6 += CSWlibiconv2 -RUNTIME_DEP_PKGS_CSWlibclam6 += CSWlibgcc-s1 -RUNTIME_DEP_PKGS_CSWlibclam6 += CSWlibstdc++6 -RUNTIME_DEP_PKGS_CSWlibclam6 += CSWlibxml2-2 -RUNTIME_DEP_PKGS_CSWlibclam6 += CSWlibbz2-1-0 -RUNTIME_DEP_PKGS_CSWlibclam6 += CSWlibssl1-0-0 -INCOMPATIBLE_PKGS_CSWlibclam6 = CSWlibclamav +PACKAGES += CSWlibclam7 +CATALOGNAME_CSWlibclam7 = libclam7 +SPKG_DESC_CSWlibclam7 = $(DESCRIPTION) Library +RUNTIME_DEP_PKGS_CSWlibclam7 = CSWlibz1 +RUNTIME_DEP_PKGS_CSWlibclam7 += CSWlibltdl7 +RUNTIME_DEP_PKGS_CSWlibclam7 += CSWlibiconv2 +RUNTIME_DEP_PKGS_CSWlibclam7 += CSWlibgcc-s1 +RUNTIME_DEP_PKGS_CSWlibclam7 += CSWlibstdc++6 +RUNTIME_DEP_PKGS_CSWlibclam7 += CSWlibxml2-2 +RUNTIME_DEP_PKGS_CSWlibclam7 += CSWlibbz2-1-0 +RUNTIME_DEP_PKGS_CSWlibclam7 += CSWlibssl1-0-0 +INCOMPATIBLE_PKGS_CSWlibclam7 += CSWlibclamav CSWlibclam6 -PACKAGES += CSWlibclam6-dev -CATALOGNAME_CSWlibclam6-dev = libclam6_dev -SPKG_DESC_CSWlibclam6-dev = $(DESCRIPTION) Development -RUNTIME_DEP_PKGS_CSWlibclam6-dev = CSWlibclam6 -INCOMPATIBLE_PKGS_CSWlibclam6-dev = CSWlibclamav-devel CSWlibclamav6-devel +PACKAGES += CSWlibclam7-dev +CATALOGNAME_CSWlibclam7-dev = libclam7_dev +SPKG_DESC_CSWlibclam7-dev = $(DESCRIPTION) Development +RUNTIME_DEP_PKGS_CSWlibclam7-dev = CSWlibclam7 +INCOMPATIBLE_PKGS_CSWlibclam7-dev += CSWlibclamav-devel CSWlibclamav6-devel CSWlibclam6-dev PATCHFILES += 0001-config.patch @@ -64,9 +63,9 @@ EXTRA_MERGE_EXCLUDE_FILES = .*~ $(libdir)/.*\.a $(libdir)/.*\.la -PKGFILES_CSWlibclam6-dev = $(PKGFILES_DEVEL) -PKGFILES_CSWlibclam6 = $(PKGFILES_RT) -PKGFILES_CSWlibclam6 += $(docdir)/libclamav/.* +PKGFILES_CSWlibclam7-dev = $(PKGFILES_DEVEL) +PKGFILES_CSWlibclam7 = $(PKGFILES_RT) +PKGFILES_CSWlibclam7 += $(docdir)/libclamav/.* PROTOTYPE_MODIFIERS = 1 PROTOTYPE_FILES_1 = \/var\/opt\/csw\/clamav.* @@ -88,9 +87,6 @@ #SKIPTEST = 1 -# Only "needed" for examples -CHECKPKG_OVERRIDES_CSWclamav += missing-dependency|CSWperl - # These are harmless examples CHECKPKG_OVERRIDES_CSWclamav += file-with-bad-content|/usr/local|root/etc/opt/csw/clamd.conf.CSW CHECKPKG_OVERRIDES_CSWclamav += file-with-bad-content|/usr/local|root/etc/opt/csw/clamav-milter.conf.CSW @@ -103,15 +99,23 @@ CHECKPKG_OVERRIDES_CSWclamav += file-with-bad-content|/usr/local|root/opt/csw/bin/clamdscan CHECKPKG_OVERRIDES_CSWclamav += file-with-bad-content|/usr/local|root/opt/csw/bin/clambc CHECKPKG_OVERRIDES_CSWclamav += file-with-bad-content|/usr/local|root/opt/csw/bin/freshclam -CHECKPKG_OVERRIDES_CSWlibclam6 += file-with-bad-content|/usr/local|root/opt/csw/lib/libclamav.so.6.1.26 +CHECKPKG_OVERRIDES_CSWlibclam7 += file-with-bad-content|/usr/local|root/opt/csw/lib/libclamav.so.7.1.1 # We don't split to three separate packages -CHECKPKG_OVERRIDES_CSWlibclam6 += shared-lib-pkgname-mismatch|file=opt/csw/lib/libclamav.so.6.1.26|soname=libclamav.so.6|pkgname=CSWlibclam6|expected=CSWlibclamav6 -CHECKPKG_OVERRIDES_CSWlibclam6 += shared-lib-pkgname-mismatch|file=opt/csw/lib/libclamunrar.so.6.1.26|soname=libclamunrar.so.6|pkgname=CSWlibclam6|expected=CSWlibclamunrar6 -CHECKPKG_OVERRIDES_CSWlibclam6 += shared-lib-pkgname-mismatch|file=opt/csw/lib/libclamunrar_iface.so.6.1.26|soname=libclamunrar_iface.so.6|pkgname=CSWlibclam6|expected=CSWlibclamunrar-iface6 +CHECKPKG_OVERRIDES_CSWlibclam7 += shared-lib-pkgname-mismatch|file=opt/csw/lib/libclamav.so.7.1.1|soname=libclamav.so.7|pkgname=CSWlibclam7|expected=CSWlibclamav7 +CHECKPKG_OVERRIDES_CSWlibclam7 += shared-lib-pkgname-mismatch|file=opt/csw/lib/libclamunrar.so.7.1.1|soname=libclamunrar.so.7|pkgname=CSWlibclam7|expected=CSWlibclamunrar7 +CHECKPKG_OVERRIDES_CSWlibclam7 += shared-lib-pkgname-mismatch|file=opt/csw/lib/libclamunrar_iface.so.7.1.1|soname=libclamunrar_iface.so.7|pkgname=CSWlibclam7|expected=CSWlibclamunrar-iface7 +# Should not matter since the old pkg is declared incompatible +CHECKPKG_OVERRIDES_CSWlibclam7-dev += file-collision|/opt/csw/bin/clamav-config|CSWlibclam6-dev|CSWlibclam7-dev +CHECKPKG_OVERRIDES_CSWlibclam7-dev += file-collision|/opt/csw/lib/libclamunrar_iface.so|CSWlibclam6-dev|CSWlibclam7-dev +CHECKPKG_OVERRIDES_CSWlibclam7-dev += file-collision|/opt/csw/include/clamav.h|CSWlibclam6-dev|CSWlibclam7-dev +CHECKPKG_OVERRIDES_CSWlibclam7-dev += file-collision|/opt/csw/lib/pkgconfig/libclamav.pc|CSWlibclam6-dev|CSWlibclam7-dev +CHECKPKG_OVERRIDES_CSWlibclam7-dev += file-collision|/opt/csw/lib/libclamav.so|CSWlibclam6-dev|CSWlibclam7-dev +CHECKPKG_OVERRIDES_CSWlibclam7-dev += file-collision|/opt/csw/lib/libclamunrar.so|CSWlibclam6-dev|CSWlibclam7-dev + # Weirdly needed for sparc -CHECKPKG_OVERRIDES_CSWlibclam6 += surplus-dependency|CSWlibstdc++6 +CHECKPKG_OVERRIDES_CSWlibclam7 += surplus-dependency|CSWlibstdc++6 # Weirdly needed for i386 CHECKPKG_OVERRIDES_CSWclamav += surplus-dependency|CSWlibbz2-1-0 Modified: csw/mgar/pkg/clamav/trunk/checksums =================================================================== --- csw/mgar/pkg/clamav/trunk/checksums 2015-10-18 20:21:01 UTC (rev 25300) +++ csw/mgar/pkg/clamav/trunk/checksums 2015-10-19 12:09:48 UTC (rev 25301) @@ -1 +1 @@ -157c601161da1c2d5a0e48ea1b49e067 clamav-0.98.7.tar.gz +022ffb40c085047dd4475a62b50af914 clamav-0.99-rc1.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Mon Oct 19 14:51:46 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 19 Oct 2015 12:51:46 +0000 Subject: SF.net SVN: gar:[25302] csw/mgar/pkg/readline/trunk/Makefile Message-ID: <3nfdJX6fKsz17h@mail.opencsw.org> Revision: 25302 http://sourceforge.net/p/gar/code/25302 Author: dmichelsen Date: 2015-10-19 12:51:46 +0000 (Mon, 19 Oct 2015) Log Message: ----------- readline/trunk: Remove obsoletion to *.so.4 as rdeps have been rebuild Modified Paths: -------------- csw/mgar/pkg/readline/trunk/Makefile Modified: csw/mgar/pkg/readline/trunk/Makefile =================================================================== --- csw/mgar/pkg/readline/trunk/Makefile 2015-10-19 12:09:48 UTC (rev 25301) +++ csw/mgar/pkg/readline/trunk/Makefile 2015-10-19 12:51:46 UTC (rev 25302) @@ -21,13 +21,11 @@ VENDOR_URL = http://tiswww.case.edu/php/chet/readline/rltop.html -# From pkg/readline43 -FOREIGN_PACKAGES += CSWlibhistory4 -OBSOLETED_BY_CSWlibhistory4 = CSWreadline -FOREIGN_PACKAGES += CSWlibreadline4 -OBSOLETED_BY_CSWlibreadline4 = CSWreadline - # From pkg/readline52 +# The only packages left that depend on the CSWreadline stub to pull in libreadline.so.5 are +# - CSWclisp +# - CSWsqlite +# Remove the obsoletion when the above packages have been rebuild FOREIGN_PACKAGES += CSWlibhistory5 OBSOLETED_BY_CSWlibhistory5 = CSWreadline FOREIGN_PACKAGES += CSWlibreadline5 @@ -37,9 +35,6 @@ CATALOGNAME_CSWlibhistory6 = libhistory6 SPKG_DESC_CSWlibhistory6 = GNU readline library, libhistory.so.6 PKGFILES_CSWlibhistory6 = $(call pkgfiles_lib,libhistory.so.6) -# This dependency is not really necessary, just because we unconditionally add -# "-lncurses" to LDFLAGS as this does not happen automatically. -RUNTIME_DEP_PKGS_CSWlibhistory6 += CSWlibncurses5 OBSOLETED_BY_CSWlibhistory6 = CSWreadline PACKAGES += CSWlibreadline6 @@ -56,17 +51,14 @@ RUNTIME_DEP_PKGS_CSWlibreadline-dev += CSWlibhistory6 RUNTIME_DEP_PKGS_CSWlibreadline-dev += CSWlibreadline6 +REINPLACE_USRLOCAL += examples/rl-fgets.c + BUILD64_LIBS_ONLY = 1 NORUNPATH = 1 -CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += $(DIRPATHS) CONFIGURE_ARGS += --with-curses include gar/category.mk -post-install-modulated: - perl -pi -e 's,/usr/local/lib,$(libdir),' \ - $(DESTDIR)/opt/csw/share/readline/rl-fgets.c - @$(MAKECOOKIE) - -LDFLAGS := $(filter-out -xarch=%,$(filter-out -m%,$(LDFLAGS))) -R$(libdir) -lncurses +LDFLAGS := $(filter-out -xarch=%,$(filter-out -xchip=%,$(filter-out -m%,$(LDFLAGS)))) -R$(libdir) -lncurses This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From janholzh at users.sourceforge.net Wed Oct 21 09:06:30 2015 From: janholzh at users.sourceforge.net (janholzh at users.sourceforge.net) Date: Wed, 21 Oct 2015 07:06:30 +0000 Subject: SF.net SVN: gar:[25303] csw/mgar/pkg/samba/branches/samba4 Message-ID: <3ngjYM5tZnzZn@mail.opencsw.org> Revision: 25303 http://sourceforge.net/p/gar/code/25303 Author: janholzh Date: 2015-10-21 07:06:29 +0000 (Wed, 21 Oct 2015) Log Message: ----------- samba/branches/samba4: update to 4.3.1 Modified Paths: -------------- csw/mgar/pkg/samba/branches/samba4/Makefile csw/mgar/pkg/samba/branches/samba4/checksums Modified: csw/mgar/pkg/samba/branches/samba4/Makefile =================================================================== --- csw/mgar/pkg/samba/branches/samba4/Makefile 2015-10-19 12:51:46 UTC (rev 25302) +++ csw/mgar/pkg/samba/branches/samba4/Makefile 2015-10-21 07:06:29 UTC (rev 25303) @@ -1,5 +1,5 @@ NAME = samba -VERSION = 4.3.0 +VERSION = 4.3.1 GARTYPE = v2 DESCRIPTION = Tools to access a servers filespace and printers via SMB (server) @@ -48,10 +48,10 @@ #PATCHFILES +=fix_bugid_10877 #From https://bugzilla.samba.org/show_bug.cgi?id=11053 -PATCHFILES +=fix_bugid_11053 +#PATCHFILES +=fix_bugid_11053 #From https://bugzilla.samba.org/show_bug.cgi?id=11508 -PATCHFILES +=fix_bugid_11508 +#PATCHFILES +=fix_bugid_11508 #From https://bugzilla.samba.org/show_bug.cgi?id=11511 PATCHFILES +=fix_bugid_11511 Modified: csw/mgar/pkg/samba/branches/samba4/checksums =================================================================== --- csw/mgar/pkg/samba/branches/samba4/checksums 2015-10-19 12:51:46 UTC (rev 25302) +++ csw/mgar/pkg/samba/branches/samba4/checksums 2015-10-21 07:06:29 UTC (rev 25303) @@ -1 +1 @@ -8f6452eca69f8b38f97bb8d8a738180a samba-4.3.0.tar.gz +e63a481cad0603db1a9239d7606cbc9a samba-4.3.1.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From cgrzemba at users.sourceforge.net Thu Oct 22 13:12:37 2015 From: cgrzemba at users.sourceforge.net (cgrzemba at users.sourceforge.net) Date: Thu, 22 Oct 2015 11:12:37 +0000 Subject: SF.net SVN: gar:[25304] csw/mgar/pkg/php5/branches/php-5.6.x Message-ID: <3nhQzC6MHDz16c@mail.opencsw.org> Revision: 25304 http://sourceforge.net/p/gar/code/25304 Author: cgrzemba Date: 2015-10-22 11:12:37 +0000 (Thu, 22 Oct 2015) Log Message: ----------- php5/branches/php-5.6.x: update version, build modphp for Apache24 Modified Paths: -------------- csw/mgar/pkg/php5/branches/php-5.6.x/Makefile csw/mgar/pkg/php5/branches/php-5.6.x/checksums csw/mgar/pkg/php5/branches/php-5.6.x/files/0001-Strip-usr-ucblib-references.patch csw/mgar/pkg/php5/branches/php-5.6.x/files/CSWap2-modphp5.postinstall csw/mgar/pkg/php5/branches/php-5.6.x/files/CSWap2-modphp5.preremove Added Paths: ----------- csw/mgar/pkg/php5/branches/php-5.6.x/files/0006-disable-zts-build csw/mgar/pkg/php5/branches/php-5.6.x/files/map.solaris10 Modified: csw/mgar/pkg/php5/branches/php-5.6.x/Makefile =================================================================== --- csw/mgar/pkg/php5/branches/php-5.6.x/Makefile 2015-10-21 07:06:29 UTC (rev 25303) +++ csw/mgar/pkg/php5/branches/php-5.6.x/Makefile 2015-10-22 11:12:37 UTC (rev 25304) @@ -1,5 +1,5 @@ NAME = php -VERSION = 5.6.0 +VERSION = 5.6.13 GARTYPE = v2 DESCRIPTION = A high-level scripting language. @@ -17,14 +17,16 @@ endef EXTRA_MODULATORS = SAPI -MODULATIONS_SAPI = cgi ap2 +# MODULATIONS_SAPI = cgi ap2 +MODULATIONS_SAPI = ap2 MERGE_SCRIPTS_isa-default-sapi-cgi = copy-all MERGE_SCRIPTS_isa-default-sapi-ap2 = copy-all # turn on the build scripts to enable/disable modules PHP5_EXT = 1 -AP2_MODS = 1 -AP2_MODFILES = *libphp5.so +# this triggers /bin/ap2mod_build_scripts +# AP2_MODS = 1 +# AP2_MODFILES = *libphp5.so # at least for a decent echo used during build. PATH := /opt/csw/gnu:/opt/csw/bin:$(PATH) @@ -34,7 +36,8 @@ MASTER_SITES += http://snaps.php.net/ # SF_PROJECT = $(shell echo $(NAME) | sed -e 's/[0-9]//g') -EXTRA_INSTALL_ENV = INSTALL_ROOT=$(DESTDIR) +EXTRA_INSTALL_ENV = INSTALL_ROOT=$(DESTDIR) +EXTRA_TEST_ENV = NO_INTERACTION=1 VENDOR_URL = http://www.php.net/ LICENSE = LICENSE @@ -47,8 +50,9 @@ DISTFILES += CSWap2-modphp5.postinstall DISTFILES += CSWap2-modphp5.preremove DISTFILES += httpd-php5.conf +DISTFILES += map.solaris10 -# PATCHFILES += 0001-Strip-usr-ucblib-references.patch +PATCHFILES += 0001-Strip-usr-ucblib-references.patch PATCHFILES += 0003-Do-not-activate-php5-module-during-package-build.patch # TBD: Where specifically do these come from? @@ -57,12 +61,14 @@ PATCHFILES += 0004-Do-not-add-Wno-write-strings-unconditionally.patch PATCHFILES += 0005-Remove-another-Wno.patch +# our apache24 has threaded and prefork MPM, needs 'autoreconf' +PATCHFILES += 0006-disable-zts-build BUILD_DEP_PKGS += CSWlibgdbm-dev CSWlibidn-dev CSWlibgd-dev CSWcoreutils BUILD_DEP_PKGS += CSWlibxml2-dev CSWlibexpat1 CSWlibz-dev CSWlibcurl-dev CSWjpeg BUILD_DEP_PKGS += CSWlibpng-dev CSWt1lib-dev CSWlibgdbm-dev CSWlibgmp10 -BUILD_DEP_PKGS += CSWggettext-dev CSWlibssl-dev CSWlibgd2 CSWbdb42devel -BUILD_DEP_PKGS += CSWlibcares-dev CSWftype2 CSWlibiconv-dev CSWlibc-client-dev +BUILD_DEP_PKGS += CSWggettext-dev CSWlibssl-dev CSWlibgd2 +BUILD_DEP_PKGS += CSWlibcares-dev CSWftype2 CSWlibiconv-dev BUILD_DEP_PKGS += CSWopenldap-dev CSWlibkrb5-dev CSWsasl CSWlibltdl7 BUILD_DEP_PKGS += CSWmcrypt-dev CSWfreetds CSWmysql-dev CSWunixodbc BUILD_DEP_PKGS += CSWlibreadline-dev CSWlibncurses-dev CSWnetsnmp-dev @@ -72,7 +78,7 @@ BUILD_DEP_PKGS += CSWlibaspell-dev PRESERVECONF = $(sysconfdir)/php.ini $(sysconfdir)/pear.conf -PRESERVECONF += /opt/csw/apache2/etc/extra/httpd-php5.conf +PRESERVECONF += $(sysconfdir)/apache2/extra/httpd-php5.conf MIGRATE_FILES_CSWphp5 = "php.ini" MIGRATE_SOURCE_DIR_CSWphp5 = /opt/csw/php5/lib MIGRATE_DEST_DIR = $(sysconfdir) @@ -82,17 +88,18 @@ CATALOGNAME_CSWphp5-$(subst _,-,$(1)) ?= php5_$(subst -,_,$(1)) SPKG_DESC_CSWphp5-$(subst _,-,$(1)) ?= The $(1) extention for PHP5 RUNTIME_DEP_PKGS_CSWphp5-$(subst _,-,$(1)) ?= CSWphp5 $(2) -OBSOLETED_BY_CSWphp5-$(subst _,-,$(1)) ?= CSWphp5$(subst _,-,$(1)) +# OBSOLETED_BY_CSWphp5-$(subst _,-,$(1)) ?= CSWphp5$(subst _,-,$(1)) PKGFILES_CSWphp5-$(subst _,-,$(1)) ?= .*lib/php/extensions/.*/$(1).so .*php5/extensions/$(1) -CHECKPKG_OVERRIDES_CSWphp5-$(subst _,-,$(1)) += surplus-dependency|CSWphp5 +# CHECKPKG_OVERRIDES_CSWphp5-$(subst _,-,$(1)) += surplus-dependency|CSWphp5 endef PACKAGES = CSWphp5 CATALOGNAME_CSWphp5 = php5 SPKG_DESC_CSWphp5 = A High-Level Scripting Language RUNTIME_DEP_PKGS_CSWphp5 += CSWlibxml2-2 CSWlibexpat1 CSWlibz1 -RUNTIME_DEP_PKGS_CSWphp5 += CSWlibicui18n51 -RUNTIME_DEP_PKGS_CSWphp5 += CSWlibicuuc51 +RUNTIME_DEP_PKGS_CSWphp5 += CSWlibicui18n55 +RUNTIME_DEP_PKGS_CSWphp5 += CSWlibicuuc55 +RUNTIME_DEP_PKGS_CSWphp5 += CSWlibicuio55 INCOMPATIBLE_PKGS_CSWphp5 = CSWphp5mimemagic CSWphp5mhash CSWphp5dbase INCOMPATIBLE_PKGS_CSWphp5 += CSWphp5ncurses CSWmodphp5 # embeded 'magic' information to detect file types...odd, but... @@ -101,12 +108,12 @@ CHECKPKG_OVERRIDES_CSWphp5 += file-with-bad-content|/usr/local|root/opt/csw/php5/bin/php-cgi # verify these... CHECKPKG_OVERRIDES_CSWphp5 += file-with-bad-content|/usr/local|root/etc/opt/csw/php5/php.ini.CSW +CHECKPKG_OVERRIDES_CSWphp5 += file-with-bad-content|/usr/local|root/opt/csw/php5/php/man/man1/php-config.1 PACKAGES += CSWphp5-dev CATALOGNAME_CSWphp5-dev = php5_dev SPKG_DESC_CSWphp5-dev = Development files for php5 RUNTIME_DEP_PKGS_CSWphp5-dev = CSWphp5 -OBSOLETED_BY_CSWphp5-dev = CSWphp5devel PKGFILES_CSWphp5-dev = $(prefix)/php5/bin/php-config PKGFILES_CSWphp5-dev = $(prefix)/bin/php-config PKGFILES_CSWphp5-dev += $(prefix)/php5/bin/phpize @@ -134,17 +141,16 @@ CHECKPKG_OVERRIDES_CSWphp5-dev += file-with-bad-content|/usr/local|root/opt/csw/php5/lib/php/build/phpize.m4 CHECKPKG_OVERRIDES_CSWphp5-dev += file-with-bad-content|/usr/local|root/opt/csw/php5/man/man1/php-config.1 -PACKAGES += CSWap2-modphp5 -CATALOGNAME_CSWap2-modphp5 = ap2_modphp5 -SPKG_DESC_CSWap2-modphp5 = The apache 2.2.x php5 module -RUNTIME_DEP_PKGS_CSWap2-modphp5 = CSWphp5 CSWapache2 CSWlibxml2-2 -RUNTIME_DEP_PKGS_CSWap2-modphp5 += CSWlibexpat1 CSWlibz1 -RUNTIME_DEP_PKGS_CSWap2-modphp5 += CSWlibicui18n51 -RUNTIME_DEP_PKGS_CSWap2-modphp5 += CSWlibicuuc51 -OBSOLETED_BY_CSWap2-modphp5 = CSWap2modphp5 -PKGFILES_CSWap2-modphp5 += $(prefix)/apache2.* -CHECKPKG_OVERRIDES_CSWap2-modphp5 += surplus-dependency|CSWphp5 -CHECKPKG_OVERRIDES_CSWap2-modphp5 += file-with-bad-content|/usr/local|root/opt/csw/apache2/libexec/libphp5.so +PACKAGES += CSWap24-modphp5 +SPKG_DESC_CSWap24-modphp5 = The apache 2.4.x php5 module +RUNTIME_DEP_PKGS_CSWap24-modphp5 = CSWphp5 CSWapache24 CSWlibxml2-2 +RUNTIME_DEP_PKGS_CSWap24-modphp5 += CSWlibexpat1 CSWlibz1 +RUNTIME_DEP_PKGS_CSWap24-modphp5 += CSWlibicui18n55 +RUNTIME_DEP_PKGS_CSWap24-modphp5 += CSWlibicuuc55 +RUNTIME_DEP_PKGS_CSWap24-modphp5 += CSWlibicuio55 +PKGFILES_CSWap24-modphp5 += $(libdir)/apache2/modules.* +CHECKPKG_OVERRIDES_CSWap24-modphp5 += surplus-dependency|CSWphp5 +CHECKPKG_OVERRIDES_CSWap24-modphp5 += file-with-bad-content|/usr/local|root/opt/csw/lib/apache2/modules/libphp5.so $(eval $(call php5_subpackage,bcmath,)) $(eval $(call php5_subpackage,bz2,CSWlibbz2-1-0)) @@ -156,7 +162,7 @@ PKGFILES_CSWphp5-dom += .*include/php/ext/dom.* $(eval $(call php5_subpackage,exif,)) $(eval $(call php5_subpackage,ftp,CSWlibssl1-0-0)) -$(eval $(call php5_subpackage,gd,CSWlibgd2 CSWlibt1-5)) +$(eval $(call php5_subpackage,gd,CSWlibgd3 CSWlibt1-5 CSWlibxpm4)) PKGFILES_CSWphp5-gd += .*/include/php/ext/gd.* $(eval $(call php5_subpackage,gettext,CSWlibintl8)) $(eval $(call php5_subpackage,gmp,CSWlibgmp10)) @@ -164,7 +170,7 @@ PKGFILES_CSWphp5-hash += .*/include/php/ext/hash.* $(eval $(call php5_subpackage,iconv,CSWlibiconv2)) PKGFILES_CSWphp5-iconv += .*/include/php/ext/iconv.* -$(eval $(call php5_subpackage,imap,CSWlibc-client2007f)) +$(eval $(call php5_subpackage,imap,)) $(eval $(call php5_subpackage,json,)) $(eval $(call php5_subpackage,ldap,CSWliblber2-4-2 CSWlibldap2-4-2)) $(eval $(call php5_subpackage,mbstring,)) @@ -207,14 +213,14 @@ $(eval $(call php5_subpackage,session,CSWlibmm)) PKGFILES_CSWphp5-session += .*/include/php/ext/session.* $(eval $(call php5_subpackage,shmop,)) -$(eval $(call php5_subpackage,snmp,CSWlibnetsnmp25)) +$(eval $(call php5_subpackage,snmp,CSWlibnetsnmp30)) $(eval $(call php5_subpackage,soap,CSWlibxml2-2)) $(eval $(call php5_subpackage,sockets,)) -$(eval $(call php5_subpackage,sqlite,CSWsqlite)) +# $(eval $(call php5_subpackage,sqlite,CSWsqlite)) $(eval $(call php5_subpackage,sysvmsg,)) $(eval $(call php5_subpackage,sysvsem,)) $(eval $(call php5_subpackage,sysvshm,)) -$(eval $(call php5_subpackage,tidy,CSWlibtidy0-99)) +$(eval $(call php5_subpackage,tidy,CSWlibtidy0-99-0)) $(eval $(call php5_subpackage,tokenizer,)) $(eval $(call php5_subpackage,wddx,)) $(eval $(call php5_subpackage,xmlreader,CSWlibxml2-2)) @@ -222,7 +228,7 @@ $(eval $(call php5_subpackage,xmlwriter,CSWlibxml2-2)) $(eval $(call php5_subpackage,xsl,CSWlibxml2-2 CSWlibxslt1 CSWlibexslt0)) $(eval $(call php5_subpackage,zip,CSWlibz1)) -$(eval $(call php5_subpackage,ibm_db2,)) +# $(eval $(call php5_subpackage,ibm_db2,)) # Use reinplacement until this is fixed: # https://bugs.php.net/bug.php?id=66298 @@ -234,6 +240,7 @@ EXTRA_CFLAGS = -I$(prefix)/include/ncursesw EXTRA_LIB = /opt/csw/postgresql/lib +GARCOMPILER = SOS12U4 # GARCOMPILER = GNU # We link with /usr/ccs/bin/ld which requires setting the path to libCstd.so, @@ -241,7 +248,10 @@ SUBDIR64-sparc = v9 SUBDIR64-i386 = amd64 #EXTRA_LINKER_FLAGS = -L$($(GARCOMPILER)_CC_HOME)/lib/$(SUBDIR$(MEMORYMODEL)-$(GARCH)) -lCstd -lz -EXTRA_LINKER_FLAGS = -L$($(GARCOMPILER)_CC_HOME)/lib/$(SUBDIR$(MEMORYMODEL)-$(GARCH)) -lCrun +# EXTRA_LINKER_FLAGS = -L$($(GARCOMPILER)_CC_HOME)/lib/$(SUBDIR$(MEMORYMODEL)-$(GARCH)) -lCrun +# /opt/solarisstudio12.4/lib/compilers/ +EXTRA_LINKER_FLAGS = -L$($(GARCOMPILER)_CC_HOME)/lib/compilers/ -lCrun +EXTRA_LD_OPTIONS = -M "$(abspath $(WORKDIR)/map.solaris10)" NOISALIST = 1 STRIP_LIBTOOL = 1 @@ -255,12 +265,12 @@ EXTRA_CONFIGURE_EXPORTS += DB2DIR # This is needed for DB2 module -CONFIGURE_ENV_IBM_DB_INCLUDE = /opt/IBM/db2/V8.1/include -CONFIGURE_ENV_IBM_DB_LIB = /opt/IBM/db2/V8.1/lib -CONFIGURE_ENV_DB2INSTANCE = db2inst1 -CONFIGURE_ENV_DB2DIR = /opt/IBM/db2/V8.1 +# CONFIGURE_ENV_IBM_DB_INCLUDE = /opt/IBM/db2/V8.1/include +# CONFIGURE_ENV_IBM_DB_LIB = /opt/IBM/db2/V8.1/lib +# CONFIGURE_ENV_DB2INSTANCE = db2inst1 +# CONFIGURE_ENV_DB2DIR = /opt/IBM/db2/V8.1 -EXTRA_RUNPATH_LINKER_FLAGS += -R$(CONFIGURE_ENV_IBM_DB_LIB) +# EXTRA_RUNPATH_LINKER_FLAGS += -R$(CONFIGURE_ENV_IBM_DB_LIB) # We need CMSG_SPACE # EXTRA_CPPFLAGS += -D_XPG4_2 -D__EXTENSIONS__ @@ -325,7 +335,7 @@ CONFIGURE_ARGS += --with-gdbm=$(prefix) CONFIGURE_ARGS += --with-gettext=shared,$(prefix) CONFIGURE_ARGS += --with-gmp=shared,$(prefix) -CONFIGURE_ARGS += --with-ibm-db2=shared,/export/db2inst1/sqllib +# CONFIGURE_ARGS += --with-ibm-db2=shared,/export/db2inst1/sqllib CONFIGURE_ARGS += --with-iconv=shared,$(prefix) CONFIGURE_ARGS += --with-imap-ssl=$(prefix) CONFIGURE_ARGS += --with-imap=shared,$(prefix) @@ -369,11 +379,12 @@ CONFIGURE_ARGS += --enable-cli ifeq ($(SAPI),ap2) -CONFIGURE_ARGS += --with-apxs2=$(prefix)/apache2/sbin/apxs +CONFIGURE_ARGS += --with-apxs2=$(prefix)/bin/apxs endif # Disable Tests (report submitted to PHP QA) -#SKIPTEST = 1 +# works, but takes a lot of time +SKIPTEST = 1 #ENABLE_CHECK = 0 TEST_TARGET = test @@ -385,6 +396,10 @@ @-(cd $(WORKSRC); rm .gitignore; git add -A; git commit -m 'adding files that were previously ignored' ) @$(MAKECOOKIE) +pre-configure-modulated: + (cd $(WORKSRC) && autoreconf) + @$(MAKECOOKIE) + xxxxpre-configure-modulated: @echo Munging c-client routine in configure. @(cd $(WORKSRC); \ @@ -395,23 +410,23 @@ # this allows apxs to install the module. stupid, but i couldn't make # the darn thing _not_ do try to add the httpd.conf lines, even with # patching... -pre-install-modulated: AP2SYSCONF=/opt/csw/apache2/etc -pre-install-modulated: $(PI_SCRIPTS) - @(mkdir -p $(DESTDIR)$(AP2SYSCONF); \ - cp $(AP2SYSCONF)/httpd.conf $(DESTDIR)$(AP2SYSCONF) ) - @echo "LoadModule foo_module libexec/mod_foo.so" >> $(DESTDIR)$(AP2SYSCONF)/httpd.conf - @echo "LoadModule foo1_module libexec/mod_foo1.so" >> $(DESTDIR)$(AP2SYSCONF)/httpd.conf - @echo "LoadModule foo2_module libexec/mod_foo2.so" >> $(DESTDIR)$(AP2SYSCONF)/httpd.conf - @$(MAKECOOKIE) +# pre-install-modulated: AP2SYSCONF=$(sysconfdir)/apache2 +# pre-install-modulated: $(PI_SCRIPTS) +# @(mkdir -p $(DESTDIR)$(AP2SYSCONF); \ +# cp $(AP2SYSCONF)/httpd.conf $(DESTDIR)$(AP2SYSCONF) ) +# @echo "LoadModule foo_module libexec/mod_foo.so" >> $(DESTDIR)$(AP2SYSCONF)/httpd.conf +# @echo "LoadModule foo1_module libexec/mod_foo1.so" >> $(DESTDIR)$(AP2SYSCONF)/httpd.conf +# @echo "LoadModule foo2_module libexec/mod_foo2.so" >> $(DESTDIR)$(AP2SYSCONF)/httpd.conf +# @$(MAKECOOKIE) -post-install-modulated: AP2SYSCONF=/opt/csw/apache2/etc/httpd.conf -post-install-modulated: AP2EXTCONF=/opt/csw/apache2/etc/extra +post-install-modulated: AP2SYSCONF=$(sysconfdir)/apache2/httpd.conf +post-install-modulated: AP2EXTCONF=$(sysconfdir)/apache2/extra post-install-modulated: INIDEST=$(DESTDIR)/etc$(prefix)/php5/php.ini post-install-modulated: @rm -f $(DESTDIR)$(AP2SYSCONF) - @mkdir -p $(DESTDIR)$(AP2EXTCONF) - @cp $(WORKDIR)/httpd-php5.conf $(DESTDIR)$(AP2EXTCONF) - @cp $(WORKSRC)/php.ini-production $(INIDEST) + @ginstall -d -m 0755 $(DESTDIR)$(AP2EXTCONF) + @ginstall -m 0644 $(WORKDIR)/httpd-php5.conf $(DESTDIR)$(AP2EXTCONF) + @ginstall -m 0644 $(WORKSRC)/php.ini-production $(INIDEST) @ginstall -m 0755 $(DOWNLOADDIR)/phpext $(DESTDIR)$(prefix)/php5/bin/ @perl -pi -e 's/^;extension=php_(.*).dll/;extension=$$1.so/' $(INIDEST) @rm -rf $(DESTDIR)/.cha* $(DESTDIR)/.dep* $(DESTDIR)/.reg* $(DESTDIR)/.l* $(DESTDIR)/.f* Modified: csw/mgar/pkg/php5/branches/php-5.6.x/checksums =================================================================== --- csw/mgar/pkg/php5/branches/php-5.6.x/checksums 2015-10-21 07:06:29 UTC (rev 25303) +++ csw/mgar/pkg/php5/branches/php-5.6.x/checksums 2015-10-22 11:12:37 UTC (rev 25304) @@ -1 +1 @@ -642825d75ce2634d9513d5b21dbee521 php-5.6.0.tar.xz +de4a8ff544986d9e0da90522fa66f195 php-5.6.13.tar.xz Modified: csw/mgar/pkg/php5/branches/php-5.6.x/files/0001-Strip-usr-ucblib-references.patch =================================================================== --- csw/mgar/pkg/php5/branches/php-5.6.x/files/0001-Strip-usr-ucblib-references.patch 2015-10-21 07:06:29 UTC (rev 25303) +++ csw/mgar/pkg/php5/branches/php-5.6.x/files/0001-Strip-usr-ucblib-references.patch 2015-10-22 11:12:37 UTC (rev 25304) @@ -9,15 +9,14 @@ --- acinclude.m4 | 2 +- aclocal.m4 | 2 +- - configure | 39 +-------------------------------------- configure.in | 2 -- - 4 files changed, 3 insertions(+), 42 deletions(-) + 3 files changed, 3 insertions(+), 42 deletions(-) diff --git a/acinclude.m4 b/acinclude.m4 index 557722f..28d8b1c 100644 --- a/acinclude.m4 +++ b/acinclude.m4 -@@ -2051,7 +2051,7 @@ dnl +@@ -2062,7 +2062,7 @@ dnl dnl Search for the sendmail binary dnl AC_DEFUN([PHP_PROG_SENDMAIL], [ @@ -27,10 +26,10 @@ PHP_SUBST(PROG_SENDMAIL) ]) diff --git a/aclocal.m4 b/aclocal.m4 -index cde7793..bb24bf9 100644 +index 189149f..ad73fd9 100644 --- a/aclocal.m4 +++ b/aclocal.m4 -@@ -2051,7 +2051,7 @@ dnl +@@ -2062,7 +2062,7 @@ dnl dnl Search for the sendmail binary dnl AC_DEFUN([PHP_PROG_SENDMAIL], [ @@ -39,68 +38,11 @@ AC_PATH_PROG(PROG_SENDMAIL, sendmail,[], $PATH:$PHP_ALT_PATH) PHP_SUBST(PROG_SENDMAIL) ]) -diff --git a/configure b/configure -index 5658cd7..65da668 100755 ---- a/configure -+++ b/configure -@@ -13963,7 +13963,7 @@ fi - - - -- PHP_ALT_PATH=/usr/bin:/usr/sbin:/usr/etc:/etc:/usr/ucblib:/usr/lib -+ PHP_ALT_PATH=/usr/bin:/usr/sbin:/usr/etc:/etc:/usr/lib - # Extract the first word of "sendmail", so it can be a program name with args. - set dummy sendmail; ac_word=$2 - echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -@@ -14166,43 +14166,6 @@ if test -d /usr/pkg/include -a -d /usr/pkg/lib ; then - CPPFLAGS="$CPPFLAGS -I/usr/pkg/include" - LDFLAGS="$LDFLAGS -L/usr/pkg/lib" - fi --test -d /usr/ucblib && -- if test "/usr/ucblib" != "/usr/$PHP_LIBDIR" && test "/usr/ucblib" != "/usr/lib"; then -- -- if test -z "/usr/ucblib" || echo "/usr/ucblib" | grep '^/' >/dev/null ; then -- ai_p=/usr/ucblib -- else -- -- ep_dir="`echo /usr/ucblib|$SED 's%/*[^/][^/]*/*$%%'`" -- -- ep_realdir="`(cd \"$ep_dir\" && pwd)`" -- ai_p="$ep_realdir/`basename \"/usr/ucblib\"`" -- fi -- -- -- -- -- -- unique=`echo $ai_p|$SED 's/[^a-zA-Z0-9]/_/g'` -- -- cmd="echo $ac_n \"\$LIBPATH$unique$ac_c\"" -- if test -n "$unique" && test "`eval $cmd`" = "" ; then -- eval "LIBPATH$unique=set" -- -- test -n "$ld_runpath_switch" && LDFLAGS="$LDFLAGS $ld_runpath_switch$ai_p" -- LDFLAGS="$LDFLAGS -L$ai_p" -- PHP_RPATHS="$PHP_RPATHS $ai_p" -- -- fi -- -- -- -- fi -- -- -- -- -- - - unset ac_cv_func_socket - unset ac_cv_func___socket diff --git a/configure.in b/configure.in -index 7b6e2a8..7568ed7 100644 +index 5764727..25f54d7 100644 --- a/configure.in +++ b/configure.in -@@ -359,8 +359,6 @@ if test -d /usr/pkg/include -a -d /usr/pkg/lib ; then +@@ -435,8 +435,6 @@ if test -d /usr/pkg/include -a -d /usr/pkg/lib ; then CPPFLAGS="$CPPFLAGS -I/usr/pkg/include" LDFLAGS="$LDFLAGS -L/usr/pkg/lib" fi @@ -109,6 +51,3 @@ dnl First, library checks. dnl ------------------------------------------------------------------------- --- -1.7.3.2 - Added: csw/mgar/pkg/php5/branches/php-5.6.x/files/0006-disable-zts-build =================================================================== --- csw/mgar/pkg/php5/branches/php-5.6.x/files/0006-disable-zts-build (rev 0) +++ csw/mgar/pkg/php5/branches/php-5.6.x/files/0006-disable-zts-build 2015-10-22 11:12:37 UTC (rev 25304) @@ -0,0 +1,11 @@ +--- a/sapi/apache2handler/config.m4 ++++ b/sapi/apache2handler/config.m4 +@@ -122,7 +122,7 @@ if test "$PHP_APXS2" != "no"; then + PHP_BUILD_THREAD_SAFE + fi + else +- APACHE_THREADED_MPM=`$APXS_HTTPD -V | grep 'threaded:.*yes'` ++ APACHE_THREADED_MPM=`$APXS_HTTPD -V | grep 'forked:.*no'` + if test -n "$APACHE_THREADED_MPM"; then + PHP_BUILD_THREAD_SAFE + fi Modified: csw/mgar/pkg/php5/branches/php-5.6.x/files/CSWap2-modphp5.postinstall =================================================================== --- csw/mgar/pkg/php5/branches/php-5.6.x/files/CSWap2-modphp5.postinstall 2015-10-21 07:06:29 UTC (rev 25303) +++ csw/mgar/pkg/php5/branches/php-5.6.x/files/CSWap2-modphp5.postinstall 2015-10-22 11:12:37 UTC (rev 25304) @@ -1,20 +1,20 @@ #!/bin/sh -CSW_PREFIX=${PKG_INSTALL_ROOT}/opt/csw -AP2_CONFIG=$CSW_PREFIX/apache2/etc/httpd.conf +CSW_PREFIX=${PKG_INSTALL_ROOT}/etc/opt/csw +AP2_CONFIG=$CSW_PREFIX/apache2/httpd.conf # Configure mod_php5 in httpd.conf if [ -n "`egrep 'IfModule (mod_php|php_module)' $AP2_CONFIG`" ] then echo "Existing mod_php5 configuration detected" -elif [ -n "`egrep '#Include etc/extra/httpd-php5.conf' $AP2_CONFIG`" ]; then +elif [ -n "`egrep '#Include extra/httpd-php5.conf' $AP2_CONFIG`" ]; then echo "Re-enabling existing config" - perl -i -plne 's,^#(Include etc/extra/httpd-php5.conf),$1,' $AP2_CONFIG + perl -i -plne 's,^#(Include extra/httpd-php5.conf),$1,' $AP2_CONFIG else echo "Adding Include for extra/http-php5.conf to httpd.conf" cat << END >> $AP2_CONFIG -Include etc/extra/httpd-php5.conf +Include extra/httpd-php5.conf END fi Modified: csw/mgar/pkg/php5/branches/php-5.6.x/files/CSWap2-modphp5.preremove =================================================================== --- csw/mgar/pkg/php5/branches/php-5.6.x/files/CSWap2-modphp5.preremove 2015-10-21 07:06:29 UTC (rev 25303) +++ csw/mgar/pkg/php5/branches/php-5.6.x/files/CSWap2-modphp5.preremove 2015-10-22 11:12:37 UTC (rev 25304) @@ -1,10 +1,10 @@ #!/bin/sh -CSW_PREFIX=${PKG_INSTALL_ROOT}/opt/csw -AP2_CONFIG=$CSW_PREFIX/apache2/etc/httpd.conf +CSW_PREFIX=${PKG_INSTALL_ROOT}/etc/opt/csw +AP2_CONFIG=$CSW_PREFIX/apache2/httpd.conf echo "Disabling httpd-php5.conf in httpd.conf" -perl -i -plne 's,(? Revision: 25305 http://sourceforge.net/p/gar/code/25305 Author: cgrzemba Date: 2015-10-22 13:02:20 +0000 (Thu, 22 Oct 2015) Log Message: ----------- php5/branches/php-5.6.x: remove extensions recipe subtree Removed Paths: ------------- csw/mgar/pkg/php5/branches/php-5.6.x/extensions/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From cgrzemba at users.sourceforge.net Thu Oct 22 16:40:11 2015 From: cgrzemba at users.sourceforge.net (cgrzemba at users.sourceforge.net) Date: Thu, 22 Oct 2015 14:40:11 +0000 Subject: SF.net SVN: gar:[25306] csw/mgar/pkg/php5/branches/php-5.6.x/Makefile Message-ID: <3nhWZL4wGzz1HX@mail.opencsw.org> Revision: 25306 http://sourceforge.net/p/gar/code/25306 Author: cgrzemba Date: 2015-10-22 14:40:10 +0000 (Thu, 22 Oct 2015) Log Message: ----------- php5/branches/php-5.6.x: add runtime dependencies Modified Paths: -------------- csw/mgar/pkg/php5/branches/php-5.6.x/Makefile Modified: csw/mgar/pkg/php5/branches/php-5.6.x/Makefile =================================================================== --- csw/mgar/pkg/php5/branches/php-5.6.x/Makefile 2015-10-22 13:02:20 UTC (rev 25305) +++ csw/mgar/pkg/php5/branches/php-5.6.x/Makefile 2015-10-22 14:40:10 UTC (rev 25306) @@ -150,6 +150,7 @@ RUNTIME_DEP_PKGS_CSWap24-modphp5 += CSWlibicuio55 PKGFILES_CSWap24-modphp5 += $(libdir)/apache2/modules.* CHECKPKG_OVERRIDES_CSWap24-modphp5 += surplus-dependency|CSWphp5 +CHECKPKG_OVERRIDES_CSWap24-modphp5 += surplus-dependency|CSWapache24 CHECKPKG_OVERRIDES_CSWap24-modphp5 += file-with-bad-content|/usr/local|root/opt/csw/lib/apache2/modules/libphp5.so $(eval $(call php5_subpackage,bcmath,)) @@ -170,7 +171,8 @@ PKGFILES_CSWphp5-hash += .*/include/php/ext/hash.* $(eval $(call php5_subpackage,iconv,CSWlibiconv2)) PKGFILES_CSWphp5-iconv += .*/include/php/ext/iconv.* -$(eval $(call php5_subpackage,imap,)) +$(eval $(call php5_subpackage,imap,CSWlibc-client-dev)) + $(eval $(call php5_subpackage,json,)) $(eval $(call php5_subpackage,ldap,CSWliblber2-4-2 CSWlibldap2-4-2)) $(eval $(call php5_subpackage,mbstring,)) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Fri Oct 23 10:21:07 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 23 Oct 2015 08:21:07 +0000 Subject: SF.net SVN: gar:[25307] csw/mgar/pkg/lang-python Message-ID: <3nhz6R59Yvz24@mail.opencsw.org> Revision: 25307 http://sourceforge.net/p/gar/code/25307 Author: dmichelsen Date: 2015-10-23 08:21:06 +0000 (Fri, 23 Oct 2015) Log Message: ----------- lang-python/supervisor/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/lang-python/supervisor/ csw/mgar/pkg/lang-python/supervisor/Makefile csw/mgar/pkg/lang-python/supervisor/branches/ csw/mgar/pkg/lang-python/supervisor/tags/ csw/mgar/pkg/lang-python/supervisor/trunk/ csw/mgar/pkg/lang-python/supervisor/trunk/Makefile csw/mgar/pkg/lang-python/supervisor/trunk/checksums csw/mgar/pkg/lang-python/supervisor/trunk/files/ Added: csw/mgar/pkg/lang-python/supervisor/Makefile =================================================================== --- csw/mgar/pkg/lang-python/supervisor/Makefile (rev 0) +++ csw/mgar/pkg/lang-python/supervisor/Makefile 2015-10-23 08:21:06 UTC (rev 25307) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Index: csw/mgar/pkg/lang-python/supervisor/trunk =================================================================== --- csw/mgar/pkg/lang-python/supervisor/trunk 2015-10-22 14:40:10 UTC (rev 25306) +++ csw/mgar/pkg/lang-python/supervisor/trunk 2015-10-23 08:21:06 UTC (rev 25307) Property changes on: csw/mgar/pkg/lang-python/supervisor/trunk ___________________________________________________________________ Added: svn:ignore ## -0,0 +1 ## +work Added: csw/mgar/pkg/lang-python/supervisor/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/supervisor/trunk/Makefile (rev 0) +++ csw/mgar/pkg/lang-python/supervisor/trunk/Makefile 2015-10-23 08:21:06 UTC (rev 25307) @@ -0,0 +1,30 @@ +# $Id$ + +NAME = supervisor +VERSION = 3.1.3 +CATEGORIES = python +GARTYPE = v2 + +DESCRIPTION = A system for controlling process state under UNIX + +DISTFILES = $(DISTNAME).tar.gz +VENDOR_URL = http://supervisord.org + +# No need for Python 2.6, this is an application package +MODULATIONS_PYTHON_VERSION = 2_7 + +# Package name according to website +PACKAGES += CSWsupervisord +SPKG_DESC_CSWsupervisord = A system for controlling process state under UNIX +# PKGFILES is catchall +ARCHALL_CSWsupervisord = 1 +CHECKPKG_OVERRIDES_CSWsupervisord += pkgname-does-not-start-with-CSWpy- +CHECKPKG_OVERRIDES_CSWsupervisord += catalogname-does-not-start-with-py_ + +REINPLACE_USRLOCAL += supervisor/options.py +REINPLACE_USRLOCAL += supervisor/tests/base.py + +# We get a ECONNREFUSED because of priviledged port +SKIPTEST ?= 1 + +include gar/category.mk Property changes on: csw/mgar/pkg/lang-python/supervisor/trunk/Makefile ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Added: csw/mgar/pkg/lang-python/supervisor/trunk/checksums =================================================================== --- csw/mgar/pkg/lang-python/supervisor/trunk/checksums (rev 0) +++ csw/mgar/pkg/lang-python/supervisor/trunk/checksums 2015-10-23 08:21:06 UTC (rev 25307) @@ -0,0 +1 @@ +aad263c4fbc070de63dd354864d5e552 supervisor-3.1.3.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Fri Oct 23 11:49:33 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 23 Oct 2015 09:49:33 +0000 Subject: SF.net SVN: gar:[25308] csw/mgar/gar/v2/gar.lib.mk Message-ID: <3nj14S4Hdsz62@mail.opencsw.org> Revision: 25308 http://sourceforge.net/p/gar/code/25308 Author: dmichelsen Date: 2015-10-23 09:49:32 +0000 (Fri, 23 Oct 2015) Log Message: ----------- mGAR v2: Fix environment for Python builds Modified Paths: -------------- csw/mgar/gar/v2/gar.lib.mk Modified: csw/mgar/gar/v2/gar.lib.mk =================================================================== --- csw/mgar/gar/v2/gar.lib.mk 2015-10-23 08:21:06 UTC (rev 25307) +++ csw/mgar/gar/v2/gar.lib.mk 2015-10-23 09:49:32 UTC (rev 25308) @@ -863,7 +863,7 @@ PYCONFIGURE_CMD = config configure-%/setup.py: @echo " ==> Running setup.py $(PYBUILD_TYPE) in $*" - @( cd $* ; $(BUILD_ENV) $(PYTHON_EXECUTABLE) ./setup.py $(PYCONFIGURE_CMD) $(CONFIGURE_ARGS) ) + @( cd $* ; $(CONFIGURE_ENV) $(PYTHON_EXECUTABLE) ./setup.py $(PYCONFIGURE_CMD) $(CONFIGURE_ARGS) ) @$(MAKECOOKIE) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Fri Oct 23 13:47:30 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 23 Oct 2015 11:47:30 +0000 Subject: SF.net SVN: gar:[25309] csw/mgar/pkg/apache24/trunk Message-ID: <3nj3hh26spz9W@mail.opencsw.org> Revision: 25309 http://sourceforge.net/p/gar/code/25309 Author: dmichelsen Date: 2015-10-23 11:47:30 +0000 (Fri, 23 Oct 2015) Log Message: ----------- apache24/trunk: Update to 2.4.17 Modified Paths: -------------- csw/mgar/pkg/apache24/trunk/Makefile csw/mgar/pkg/apache24/trunk/checksums Modified: csw/mgar/pkg/apache24/trunk/Makefile =================================================================== --- csw/mgar/pkg/apache24/trunk/Makefile 2015-10-23 09:49:32 UTC (rev 25308) +++ csw/mgar/pkg/apache24/trunk/Makefile 2015-10-23 11:47:30 UTC (rev 25309) @@ -1,7 +1,7 @@ # $Id: Makefile 18185 2012-06-01 02:30:46Z bdwalton $ NAME = httpd -VERSION = 2.4.16 +VERSION = 2.4.17 GARTYPE = v2 PACKAGING_PLATFORMS = solaris10-i386 solaris10-sparc Modified: csw/mgar/pkg/apache24/trunk/checksums =================================================================== --- csw/mgar/pkg/apache24/trunk/checksums 2015-10-23 09:49:32 UTC (rev 25308) +++ csw/mgar/pkg/apache24/trunk/checksums 2015-10-23 11:47:30 UTC (rev 25309) @@ -1 +1 @@ -e7b1d7761fcb5cafe9f95a955373dd7b httpd-2.4.16.tar.gz +5984049a2311de7173ba545643c450bb httpd-2.4.17.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Fri Oct 23 15:29:56 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 23 Oct 2015 13:29:56 +0000 Subject: SF.net SVN: gar:[25310] csw/mgar/pkg/libxml2/trunk Message-ID: <3nj5yq3hpBzDg@mail.opencsw.org> Revision: 25310 http://sourceforge.net/p/gar/code/25310 Author: dmichelsen Date: 2015-10-23 13:29:55 +0000 (Fri, 23 Oct 2015) Log Message: ----------- libxml2/trunk: Update to 2.9.2, enable Python 2.6/2.7 modulation Modified Paths: -------------- csw/mgar/pkg/libxml2/trunk/Makefile csw/mgar/pkg/libxml2/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/libxml2/trunk/files/0001-Forcefully-disable-the-symbol-versioning.patch csw/mgar/pkg/libxml2/trunk/files/0002-fix-PyCapsulate-for-python-version-less-2.7.patch Modified: csw/mgar/pkg/libxml2/trunk/Makefile =================================================================== --- csw/mgar/pkg/libxml2/trunk/Makefile 2015-10-23 11:47:30 UTC (rev 25309) +++ csw/mgar/pkg/libxml2/trunk/Makefile 2015-10-23 13:29:55 UTC (rev 25310) @@ -3,7 +3,7 @@ # ! There are test failures, unfortunately. NAME = libxml2 -VERSION = 2.9.1 +VERSION = 2.9.2 GARTYPE = v2 DESCRIPTION = XML Parser Library @@ -17,10 +17,18 @@ # PATCHFILES = 0001-Forcefully-disable-the-symbol-versioning.patch # see Bug: https://www.opencsw.org/mantis/view.php?id=5093 -PATCHFILES = 0002-fix-PyCapsulate-for-python-version-less-2.7.patch +#PATCHFILES = 0002-fix-PyCapsulate-for-python-version-less-2.7.patch -sysconfdir = /etc/opt/csw -localstatedir = /var/opt/csw +EXTRA_MODULATORS += PYTHON_VERSION +MODULATIONS_PYTHON_VERSION = 2.6 2.7 +# We need 64 bit just once as it is without python anyway +SKIP_MODULATIONS += isa-sparcv9-python_version-2.7 +SKIP_MODULATIONS += isa-amd64-python_version-2.7 +PYTHON = $(bindir)/python$(PYTHON_VERSION) +MERGE_SCRIPTS_isa-default-python_version-2.6 += copy-all +MERGE_SCRIPTS_isa-default-python_version-2.7 += copy-all +MERGE_SCRIPTS_isa-default64-python_version-2.6 += copy-relocated-only copy-config-only +MERGE_DIRS_isa-default64-python_version-2.6 += $(libdir) # Force custom mapfile because sudo uses one and sudo uses libxml2 LINKER_MAPS = -M "$(abspath $(WORKDIR)/map.sudo)" @@ -29,10 +37,11 @@ EXTRA_CPPFLAGS += -DXML_SGML_DEFAULT_CATALOG=\\\"$(sysconfdir)/sgml/catalog\\\" # We don't have 64 bit Python yet -CONFIGURE_ARGS_32 = --with-python=$(prefix) +CONFIGURE_ARGS_32 = --with-python=$(PYTHON) CONFIGURE_ARGS_64 = --without-python -CONFIGURE_ARGS = $(DIRPATHS) $(CONFIGURE_ARGS_$(MEMORYMODEL)) +CONFIGURE_ARGS += $(DIRPATHS) +CONFIGURE_ARGS += $(CONFIGURE_ARGS_$(MEMORYMODEL)) BUILD64_LIBS_ONLY = 1 @@ -42,21 +51,26 @@ PACKAGES += CSWlibxml2-2 OBSOLETED_BY_CSWlibxml2-2 = CSWlibxml2 -SPKG_DESC_CSWlibxml2-2 = XML Parser Library +SPKG_DESC_CSWlibxml2-2 = XML Parser Library +PKGFILES_CSWlibxml2-2 += $(call pkgfiles_lib,libxml2.so.2) +PKGFILES_CSWlibxml2-2 += $(bindir)/xmlcatalog +PKGFILES_CSWlibxml2-2 += $(bindir)/xmllint +PKGFILES_CSWlibxml2-2 += $(mandir)/man1/xmlcatalog.1 +PKGFILES_CSWlibxml2-2 += $(mandir)/man1/xmllint.1 RUNTIME_DEP_PKGS_CSWlibxml2-2 += CSWliblzma5 RUNTIME_DEP_PKGS_CSWlibxml2-2 += CSWlibiconv2 RUNTIME_DEP_PKGS_CSWlibxml2-2 += CSWlibz1 -# The catch-all package. PACKAGES += CSWlibxml2-dev OBSOLETED_BY_CSWlibxml2-dev = CSWlibxml2devel SPKG_DESC_CSWlibxml2-dev = XML Parser Library Developer Files RUNTIME_DEP_PKGS_CSWlibxml2-dev = CSWlibxml2-2 -PKGFILES_CSWlibxml2-dev = $(PKGFILES_DEVEL) -PKGFILES_CSWlibxml2-dev += $(docdir)/libxml2/.* -PKGFILES_CSWlibxml2-dev += $(sharedstatedir)/gtk-doc/.* -PKGFILES_CSWlibxml2-dev += $(libdir)/xml2Conf.sh -PKGFILES_CSWlibxml2-dev += $(call isadirs,$(libdir),xml2Conf.sh) +# PKGFILES is catchall +# PKGFILES_CSWlibxml2-dev = $(PKGFILES_DEVEL) +# PKGFILES_CSWlibxml2-dev += $(docdir)/libxml2/.* +# PKGFILES_CSWlibxml2-dev += $(sharedstatedir)/gtk-doc/.* +# PKGFILES_CSWlibxml2-dev += $(libdir)/xml2Conf.sh +# PKGFILES_CSWlibxml2-dev += $(call isadirs,$(libdir),xml2Conf.sh) PACKAGES += CSWpy-libxml2 OBSOLETED_BY_CSWpy-libxml2 = CSWpylibxml2 @@ -64,18 +78,18 @@ RUNTIME_DEP_PKGS_CSWpy-libxml2 = CSWlibpython2-6-1-0 RUNTIME_DEP_PKGS_CSWpy-libxml2 += CSWlibxml2-2 RUNTIME_DEP_PKGS_CSWpy-libxml2 += CSWpython -PKGFILES_CSWpy-libxml2 = $(libdir)/python/.* -PKGFILES_CSWpy-libxml2 += $(docdir)/pylibxml2/.* +PKGFILES_CSWpy-libxml2 += $(libdir)/python.* +PKGFILES_CSWpy-libxml2 += $(docdir)/libxml2-python-* # There is no 64-bit Python. CHECKPKG_OVERRIDES_CSWpy-libxml2 += 64-bit-binaries-missing -EXTRA_PAX_ARGS = -s ",^\.$(docdir)/libxml2-$(VERSION),.$(docdir)/libxml2,p" -EXTRA_PAX_ARGS += -s ",^\.$(docdir)/libxml2-python-$(VERSION),.$(docdir)/pylibxml2,p" -EXTRA_PAX_ARGS += -s ",^\.$(libdir)/python[^/]*,.$(libdir)/python,p" +#EXTRA_PAX_ARGS = -s ",^\.$(docdir)/libxml2-$(VERSION),.$(docdir)/libxml2,p" +#EXTRA_PAX_ARGS += -s ",^\.$(docdir)/libxml2-python-$(VERSION),.$(docdir)/pylibxml2,p" +# EXTRA_PAX_ARGS += -s ",^\.$(libdir)/python[^/]*,.$(libdir)/python,p" CHECKPKG_OVERRIDES_CSWlibxml2-dev += file-with-bad-content|/usr/share|root/opt/csw/share/doc/libxml2/html/xml.html # http://lists.opencsw.org/pipermail/maintainers/2011-August/015093.html -SKIPTEST = 1 +SKIPTEST ?= 1 include gar/category.mk Modified: csw/mgar/pkg/libxml2/trunk/checksums =================================================================== --- csw/mgar/pkg/libxml2/trunk/checksums 2015-10-23 11:47:30 UTC (rev 25309) +++ csw/mgar/pkg/libxml2/trunk/checksums 2015-10-23 13:29:55 UTC (rev 25310) @@ -1 +1 @@ -9c0cfef285d5c4a5c80d00904ddab380 libxml2-2.9.1.tar.gz +9e6a9aca9d155737868b3dc5fd82f788 libxml2-2.9.2.tar.gz Deleted: csw/mgar/pkg/libxml2/trunk/files/0001-Forcefully-disable-the-symbol-versioning.patch =================================================================== --- csw/mgar/pkg/libxml2/trunk/files/0001-Forcefully-disable-the-symbol-versioning.patch 2015-10-23 11:47:30 UTC (rev 25309) +++ csw/mgar/pkg/libxml2/trunk/files/0001-Forcefully-disable-the-symbol-versioning.patch 2015-10-23 13:29:55 UTC (rev 25310) @@ -1,36 +0,0 @@ -From 43f2a579cd9808557fa2d8ce4d5f5b6f94d627b0 Mon Sep 17 00:00:00 2001 -From: Maciej Blizinski -Date: Sat, 25 May 2013 09:07:33 +0200 -Subject: [PATCH] Forcefully disable the symbol versioning 2 - ---- - configure | 10 +--------- - 1 file changed, 1 insertion(+), 9 deletions(-) - -diff --git a/configure b/configure -index 80dd0fc..f314402 100755 ---- a/configure -+++ b/configure -@@ -11876,18 +11876,10 @@ if test "$lt_cv_prog_gnu_ld" = yes; then - VERSION_SCRIPT_FLAGS=-Wl,--version-script= - else - case $host in -- *-*-sunos*) VERSION_SCRIPT_FLAGS="-Wl,-M -Wl,";; -+ *-*-sunos*) VERSION_SCRIPT_FLAGS="-Wl,-M";; - esac - fi - -- if test -n "$VERSION_SCRIPT_FLAGS"; then -- USE_VERSION_SCRIPT_TRUE= -- USE_VERSION_SCRIPT_FALSE='#' --else -- USE_VERSION_SCRIPT_TRUE='#' -- USE_VERSION_SCRIPT_FALSE= --fi -- - - - _cppflags="${CPPFLAGS}" --- -1.8.1.4 - Deleted: csw/mgar/pkg/libxml2/trunk/files/0002-fix-PyCapsulate-for-python-version-less-2.7.patch =================================================================== --- csw/mgar/pkg/libxml2/trunk/files/0002-fix-PyCapsulate-for-python-version-less-2.7.patch 2015-10-23 11:47:30 UTC (rev 25309) +++ csw/mgar/pkg/libxml2/trunk/files/0002-fix-PyCapsulate-for-python-version-less-2.7.patch 2015-10-23 13:29:55 UTC (rev 25310) @@ -1,17 +0,0 @@ ---- a/python/libxml_wrap.h -+++ b/python/libxml_wrap.h -@@ -34,13 +34,13 @@ - #define PyBytes_AsString PyString_AsString - #define PyBytes_AS_STRING PyString_AS_STRING - #define PyBytes_GET_SIZE PyString_GET_SIZE -+#endif - - #define PyCapsule_New PyCObject_FromVoidPtrAndDesc - #define PyCapsule_CheckExact PyCObject_Check - #define PyCapsule_GetPointer(o, n) PyCObject_GetDesc((o)) - - #endif --#endif - - /** - * ATTRIBUTE_UNUSED: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Fri Oct 23 15:36:08 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 23 Oct 2015 13:36:08 +0000 Subject: SF.net SVN: gar:[25311] csw/mgar/pkg/libxml2/trunk/Makefile Message-ID: <3nj65w4t7jzH4@mail.opencsw.org> Revision: 25311 http://sourceforge.net/p/gar/code/25311 Author: dmichelsen Date: 2015-10-23 13:36:08 +0000 (Fri, 23 Oct 2015) Log Message: ----------- libxml2/trunk: Cleanup comments Modified Paths: -------------- csw/mgar/pkg/libxml2/trunk/Makefile Modified: csw/mgar/pkg/libxml2/trunk/Makefile =================================================================== --- csw/mgar/pkg/libxml2/trunk/Makefile 2015-10-23 13:29:55 UTC (rev 25310) +++ csw/mgar/pkg/libxml2/trunk/Makefile 2015-10-23 13:36:08 UTC (rev 25311) @@ -64,18 +64,14 @@ PACKAGES += CSWlibxml2-dev OBSOLETED_BY_CSWlibxml2-dev = CSWlibxml2devel SPKG_DESC_CSWlibxml2-dev = XML Parser Library Developer Files +# PKGFILES is catchall RUNTIME_DEP_PKGS_CSWlibxml2-dev = CSWlibxml2-2 -# PKGFILES is catchall -# PKGFILES_CSWlibxml2-dev = $(PKGFILES_DEVEL) -# PKGFILES_CSWlibxml2-dev += $(docdir)/libxml2/.* -# PKGFILES_CSWlibxml2-dev += $(sharedstatedir)/gtk-doc/.* -# PKGFILES_CSWlibxml2-dev += $(libdir)/xml2Conf.sh -# PKGFILES_CSWlibxml2-dev += $(call isadirs,$(libdir),xml2Conf.sh) PACKAGES += CSWpy-libxml2 OBSOLETED_BY_CSWpy-libxml2 = CSWpylibxml2 SPKG_DESC_CSWpy-libxml2 = XML Parser Library Python Bindings RUNTIME_DEP_PKGS_CSWpy-libxml2 = CSWlibpython2-6-1-0 +RUNTIME_DEP_PKGS_CSWpy-libxml2 += CSWlibpython2-7-1-0 RUNTIME_DEP_PKGS_CSWpy-libxml2 += CSWlibxml2-2 RUNTIME_DEP_PKGS_CSWpy-libxml2 += CSWpython PKGFILES_CSWpy-libxml2 += $(libdir)/python.* @@ -83,10 +79,6 @@ # There is no 64-bit Python. CHECKPKG_OVERRIDES_CSWpy-libxml2 += 64-bit-binaries-missing -#EXTRA_PAX_ARGS = -s ",^\.$(docdir)/libxml2-$(VERSION),.$(docdir)/libxml2,p" -#EXTRA_PAX_ARGS += -s ",^\.$(docdir)/libxml2-python-$(VERSION),.$(docdir)/pylibxml2,p" -# EXTRA_PAX_ARGS += -s ",^\.$(libdir)/python[^/]*,.$(libdir)/python,p" - CHECKPKG_OVERRIDES_CSWlibxml2-dev += file-with-bad-content|/usr/share|root/opt/csw/share/doc/libxml2/html/xml.html # http://lists.opencsw.org/pipermail/maintainers/2011-August/015093.html This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Fri Oct 23 15:48:09 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 23 Oct 2015 13:48:09 +0000 Subject: SF.net SVN: gar:[25312] csw/mgar/pkg/libxml2/trunk/Makefile Message-ID: <3nj6Ml3ZfqzKX@mail.opencsw.org> Revision: 25312 http://sourceforge.net/p/gar/code/25312 Author: dmichelsen Date: 2015-10-23 13:48:09 +0000 (Fri, 23 Oct 2015) Log Message: ----------- libxml2/trunk: Remove extra dependency to liblzma.so Modified Paths: -------------- csw/mgar/pkg/libxml2/trunk/Makefile Modified: csw/mgar/pkg/libxml2/trunk/Makefile =================================================================== --- csw/mgar/pkg/libxml2/trunk/Makefile 2015-10-23 13:36:08 UTC (rev 25311) +++ csw/mgar/pkg/libxml2/trunk/Makefile 2015-10-23 13:48:09 UTC (rev 25312) @@ -57,7 +57,8 @@ PKGFILES_CSWlibxml2-2 += $(bindir)/xmllint PKGFILES_CSWlibxml2-2 += $(mandir)/man1/xmlcatalog.1 PKGFILES_CSWlibxml2-2 += $(mandir)/man1/xmllint.1 -RUNTIME_DEP_PKGS_CSWlibxml2-2 += CSWliblzma5 +# This was used in the past but is no longer the case +# RUNTIME_DEP_PKGS_CSWlibxml2-2 += CSWliblzma5 RUNTIME_DEP_PKGS_CSWlibxml2-2 += CSWlibiconv2 RUNTIME_DEP_PKGS_CSWlibxml2-2 += CSWlibz1 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Mon Oct 26 10:18:18 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 26 Oct 2015 09:18:18 +0000 Subject: SF.net SVN: gar:[25313] csw/mgar/pkg Message-ID: <3nkrF72CJSzyt@mail.opencsw.org> Revision: 25313 http://sourceforge.net/p/gar/code/25313 Author: dmichelsen Date: 2015-10-26 09:18:17 +0000 (Mon, 26 Oct 2015) Log Message: ----------- itstool/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/itstool/ csw/mgar/pkg/itstool/Makefile csw/mgar/pkg/itstool/branches/ csw/mgar/pkg/itstool/tags/ csw/mgar/pkg/itstool/trunk/ csw/mgar/pkg/itstool/trunk/Makefile csw/mgar/pkg/itstool/trunk/checksums csw/mgar/pkg/itstool/trunk/files/ Added: csw/mgar/pkg/itstool/Makefile =================================================================== --- csw/mgar/pkg/itstool/Makefile (rev 0) +++ csw/mgar/pkg/itstool/Makefile 2015-10-26 09:18:17 UTC (rev 25313) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Index: csw/mgar/pkg/itstool/trunk =================================================================== --- csw/mgar/pkg/itstool/trunk 2015-10-23 13:48:09 UTC (rev 25312) +++ csw/mgar/pkg/itstool/trunk 2015-10-26 09:18:17 UTC (rev 25313) Property changes on: csw/mgar/pkg/itstool/trunk ___________________________________________________________________ Added: svn:ignore ## -0,0 +1 ## +work Added: csw/mgar/pkg/itstool/trunk/Makefile =================================================================== --- csw/mgar/pkg/itstool/trunk/Makefile (rev 0) +++ csw/mgar/pkg/itstool/trunk/Makefile 2015-10-26 09:18:17 UTC (rev 25313) @@ -0,0 +1,30 @@ +# $Id$ +# TODO (release-critical prefixed with !, non release-critical with *) +# +NAME = itstool +VERSION = 2.0.2 +GARTYPE = v2 + +DESCRIPTION = Translate your XML documents with PO files + +MASTER_SITES = http://files.itstool.org/itstool/ +DISTFILES = $(DISTNAME).tar.bz2 + +VENDOR_URL = http://itstool.org + +PACKAGES += CSWitstool +SPKG_DESC_CSWitstool = Translate your XML documents with PO files +# PKGFILES is catchall +ARCHALL_CSWitstool = 1 +RUNTIME_DEP_PKGS_CSWitstool += CSWpy-libxml2 + +# Dependencies to Python modules can not be tracked by checkpkg +CHECKPKG_OVERRIDES_CSWitstool += surplus-dependency|CSWpy-libxml2 + +# This is in addition to /opt/csw/share +CHECKPKG_OVERRIDES_CSWitstool += file-with-bad-content|/usr/share|root/opt/csw/bin/itstool + +REINPLACE_USRLOCAL += itstool.in + +include gar/category.mk + Property changes on: csw/mgar/pkg/itstool/trunk/Makefile ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Added: csw/mgar/pkg/itstool/trunk/checksums =================================================================== --- csw/mgar/pkg/itstool/trunk/checksums (rev 0) +++ csw/mgar/pkg/itstool/trunk/checksums 2015-10-26 09:18:17 UTC (rev 25313) @@ -0,0 +1 @@ +d472d877a7bc49899a73d442085b2f93 itstool-2.0.2.tar.bz2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Mon Oct 26 13:11:34 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 26 Oct 2015 12:11:34 +0000 Subject: SF.net SVN: gar:[25314] csw/mgar/pkg/libxslt/trunk/Makefile Message-ID: <3nkw4y5Qmdz13f@mail.opencsw.org> Revision: 25314 http://sourceforge.net/p/gar/code/25314 Author: dmichelsen Date: 2015-10-26 12:11:34 +0000 (Mon, 26 Oct 2015) Log Message: ----------- libxslt/trunk: Enable Python modulation Modified Paths: -------------- csw/mgar/pkg/libxslt/trunk/Makefile Modified: csw/mgar/pkg/libxslt/trunk/Makefile =================================================================== --- csw/mgar/pkg/libxslt/trunk/Makefile 2015-10-26 09:18:17 UTC (rev 25313) +++ csw/mgar/pkg/libxslt/trunk/Makefile 2015-10-26 12:11:34 UTC (rev 25314) @@ -14,6 +14,17 @@ VENDOR_URL = http://xmlsoft.org/XSLT/ +EXTRA_MODULATORS += PYTHON_VERSION +MODULATIONS_PYTHON_VERSION = 2.6 2.7 +# We need 64 bit just once as it is without python anyway +SKIP_MODULATIONS += isa-sparcv9-python_version-2.7 +SKIP_MODULATIONS += isa-amd64-python_version-2.7 +PYTHON = $(bindir)/python$(PYTHON_VERSION) +MERGE_SCRIPTS_isa-default-python_version-2.6 += copy-all +MERGE_SCRIPTS_isa-default-python_version-2.7 += copy-all +MERGE_SCRIPTS_isa-default64-python_version-2.6 += copy-relocated-only copy-config-only +MERGE_DIRS_isa-default64-python_version-2.6 += $(bindir) $(libdir) + BUILD_DEP_PKGS += CSWlibxml2-dev BUILD_DEP_PKGS += CSWlibgcrypt-dev BUILD_DEP_PKGS += CSWlibgpg-error-dev @@ -21,9 +32,11 @@ PACKAGES = CSWlibxslt SPKG_DESC_CSWlibxslt = XSLT engine runtime package +# PKGFILES is catchall RUNTIME_DEP_PKGS_CSWlibxslt += CSWlibxml2-2 RUNTIME_DEP_PKGS_CSWlibxslt += CSWlibxslt1 RUNTIME_DEP_PKGS_CSWlibxslt += CSWlibexslt0 +RUNTIME_DEP_PKGS_CSWlibxslt += CSWlibiconv2 PACKAGES += CSWlibxslt-dev SPKG_DESC_CSWlibxslt-dev = XSLT engine development package @@ -41,10 +54,13 @@ PKGFILES_CSWpy-libxslt = $(libdir)/python.* PKGFILES_CSWpy-libxslt += $(docdir)/libxslt-python-$(VERSION)/.* RUNTIME_DEP_PKGS_CSWpy-libxslt += CSWlibpython2-6-1-0 +RUNTIME_DEP_PKGS_CSWpy-libxslt += CSWlibpython2-7-1-0 RUNTIME_DEP_PKGS_CSWpy-libxslt += CSWpython RUNTIME_DEP_PKGS_CSWpy-libxslt += CSWlibxslt1 RUNTIME_DEP_PKGS_CSWpy-libxslt += CSWlibexslt0 RUNTIME_DEP_PKGS_CSWpy-libxslt += CSWlibxml2-2 +RUNTIME_DEP_PKGS_CSWpy-libxslt += CSWlibiconv2 +RUNTIME_DEP_PKGS_CSWpy-libxslt += CSWlibgcrypt20 OBSOLETED_BY_CSWpy-libxslt = CSWpylibxslt # Sadly, yes.... @@ -55,7 +71,8 @@ SPKG_DESC_CSWlibexslt0 += XSLT engine runtime package, libexslt.so.0 RUNTIME_DEP_PKGS_CSWlibexslt0 += CSWlibxml2-2 RUNTIME_DEP_PKGS_CSWlibexslt0 += CSWlibxslt1 -RUNTIME_DEP_PKGS_CSWlibexslt0 += CSWlibgcrypt11 +RUNTIME_DEP_PKGS_CSWlibexslt0 += CSWlibgcrypt20 +RUNTIME_DEP_PKGS_CSWlibexslt0 += CSWlibiconv2 RUNTIME_DEP_PKGS_CSWlibexslt0-sparc += CSWlibgpg-error0 RUNTIME_DEP_PKGS_CSWlibexslt0 += $(RUNTIME_DEP_PKGS_CSWlibexslt0-$(GARCH)) @@ -64,9 +81,10 @@ PKGFILES_CSWlibxslt1 += $(call pkgfiles_lib,libxslt.so.1) RUNTIME_DEP_PKGS_CSWlibxslt1 += CSWlibxml2-2 -CONFIGURE_ARGS_32 = +CONFIGURE_ARGS_32 = --with-python=$(PYTHON) CONFIGURE_ARGS_64 = --without-python -CONFIGURE_ARGS = $(DIRPATHS) $(CONFIGURE_ARGS_$(MEMORYMODEL)) +CONFIGURE_ARGS += $(DIRPATHS) +CONFIGURE_ARGS += $(CONFIGURE_ARGS_$(MEMORYMODEL)) BUILD64 = 1 ISAEXEC = 1 @@ -74,9 +92,3 @@ PYCOMPILE = 1 include gar/category.mk - -post-merge: - @echo Correcting DTD reference in tutorial materials. - @( cd $(PKGROOT)$(docdir)/$(NAME)-$(VERSION)/html/tutorial2/; \ - perl -pi -e 's!/usr/share!/opt/csw/share!' libxslt_pipes.xml) - @$(MAKECOOKIE) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Mon Oct 26 13:41:31 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 26 Oct 2015 12:41:31 +0000 Subject: SF.net SVN: gar:[25315] csw/mgar/pkg/libxslt/trunk/Makefile Message-ID: <3nkwlS6pkTz167@mail.opencsw.org> Revision: 25315 http://sourceforge.net/p/gar/code/25315 Author: dmichelsen Date: 2015-10-26 12:41:30 +0000 (Mon, 26 Oct 2015) Log Message: ----------- libxslt/trunk: Add overrides for linker anomaly Modified Paths: -------------- csw/mgar/pkg/libxslt/trunk/Makefile Modified: csw/mgar/pkg/libxslt/trunk/Makefile =================================================================== --- csw/mgar/pkg/libxslt/trunk/Makefile 2015-10-26 12:11:34 UTC (rev 25314) +++ csw/mgar/pkg/libxslt/trunk/Makefile 2015-10-26 12:41:30 UTC (rev 25315) @@ -81,6 +81,12 @@ PKGFILES_CSWlibxslt1 += $(call pkgfiles_lib,libxslt.so.1) RUNTIME_DEP_PKGS_CSWlibxslt1 += CSWlibxml2-2 +# These are linker-anomalies in Sparc +CHECKPKG_OVERRIDES_CSWlibexslt0 += surplus-dependency|CSWlibiconv2 +CHECKPKG_OVERRIDES_CSWpy-libxslt += surplus-dependency|CSWlibgcrypt20 +CHECKPKG_OVERRIDES_CSWpy-libxslt += surplus-dependency|CSWlibiconv2 +CHECKPKG_OVERRIDES_CSWlibxslt += surplus-dependency|CSWlibiconv2 + CONFIGURE_ARGS_32 = --with-python=$(PYTHON) CONFIGURE_ARGS_64 = --without-python CONFIGURE_ARGS += $(DIRPATHS) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Mon Oct 26 13:43:14 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 26 Oct 2015 12:43:14 +0000 Subject: SF.net SVN: gar:[25316] csw/mgar/pkg/meld/trunk Message-ID: <3nkwny560Kz18Y@mail.opencsw.org> Revision: 25316 http://sourceforge.net/p/gar/code/25316 Author: dmichelsen Date: 2015-10-26 12:43:13 +0000 (Mon, 26 Oct 2015) Log Message: ----------- meld/trunk: Update to 3.14.1 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/Makefile 2015-10-26 12:41:30 UTC (rev 25315) +++ csw/mgar/pkg/meld/trunk/Makefile 2015-10-26 12:43:13 UTC (rev 25316) @@ -2,7 +2,8 @@ # TODO (release-critical prefixed with !, non release-critical with *) # NAME = meld -VERSION = 1.8.6 +VERSION = 3.14.1 +CATEGORIES = python GARTYPE = v2 DESCRIPTION = Visual diff and merge tool @@ -14,43 +15,37 @@ systems. endef -MASTER_SITES = http://ftp.gnome.org/pub/GNOME/sources/meld/$(basename $(VERSION))/ +MASTER_SITES = https://download.gnome.org/sources/meld/$(shell echo $(VERSION) | cut -d. -f1).$(shell echo $(VERSION) | cut -d. -f2)/ DISTFILES = $(DISTNAME).tar.xz -# PATCHFILES += 0001-Allow-to-use-a-different-install-utility.patch -PATCHFILES += 0001-Use-conditionals-for-installation-places.patch +VENDOR_URL = http://meldmerge.org -REINPLACEMENTS += python -REINPLACE_MATCH_python = \#!.*python.* -REINPLACE_WITH_python = \#!$(bindir)/python -REINPLACE_FILES_python += bin/meld +BUILD_DEP_PKGS += CSWitstool -CONFIGURE_SCRIPTS = -BUILD_SCRIPTS = -INSTALL_SCRIPTS = meld -TEST_SCRIPTS = +PACKAGES += CSWmeld +SPKG_DESC_CSWmeld = Visual diff and merge tool +# PKGFILES is catchall +ARCHALL_CSWmeld = 1 +RUNTIME_DEP_PKGS_CSWmeld += CSWpy-gtk +RUNTIME_DEP_PKGS_CSWmeld += CSWpy-gobject -EXTRA_MERGE_EXCLUDE_FILES = .*\.py[co] +# This is ok as it is an addition to /opt/csw/share +CHECKPKG_OVERRIDES_CSWmeld += file-with-bad-content|/usr/share|root/opt/csw/lib/python2.7/site-packages/meld/conf.py -ARCHALL_CSWmeld = 1 -RUNTIME_DEP_PKGS_CSWmeld += CSWpy-gtk CSWpy-gobject - 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_ -include gar/category.mk +MODULATIONS_PYTHON_VERSION = 2_7 -install-meld: - cd $(WORKSRC) && gmake \ - prefix=$(prefix) \ - localstatedir=$(localstatedir) \ - sysconfdir=$(sysconfdir) \ - DESTDIR=$(DESTDIR) \ - libdir_=$(libdir)/python/site-packages \ - install - @$(MAKECOOKIE) +REINPLACE_USRLOCAL += meld/conf.py -# msgfmt, install -PATH := /opt/csw/gnu:$(PATH) +# For msgfmt, install +BUILD_ENV_PATH = /opt/csw/gnu:$(PATH) +INSTALL_ENV_PATH = /opt/csw/gnu:$(PATH) + +# This file is also in CSWglib2 +EXTRA_MERGE_EXCLUDE_FILES += $(prefix)/share/glib-2.0/schemas/gschemas.compiled + +include gar/category.mk Modified: csw/mgar/pkg/meld/trunk/checksums =================================================================== --- csw/mgar/pkg/meld/trunk/checksums 2015-10-26 12:41:30 UTC (rev 25315) +++ csw/mgar/pkg/meld/trunk/checksums 2015-10-26 12:43:13 UTC (rev 25316) @@ -1 +1 @@ -872e6c28a7913f1eab1cacf27d6d1e5a meld-1.8.6.tar.xz +820c5c4dc59faa51fa65c47b0fef6247 meld-3.14.1.tar.xz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From janholzh at users.sourceforge.net Mon Oct 26 14:42:05 2015 From: janholzh at users.sourceforge.net (janholzh at users.sourceforge.net) Date: Mon, 26 Oct 2015 13:42:05 +0000 Subject: SF.net SVN: gar:[25317] csw/mgar/pkg/lang-python/virtualenv/trunk Message-ID: <3nky5T0vKHz1DF@mail.opencsw.org> Revision: 25317 http://sourceforge.net/p/gar/code/25317 Author: janholzh Date: 2015-10-26 13:42:04 +0000 (Mon, 26 Oct 2015) Log Message: ----------- lang-python/virtualenv/trunk: update to 13.1.2 Modified Paths: -------------- csw/mgar/pkg/lang-python/virtualenv/trunk/Makefile csw/mgar/pkg/lang-python/virtualenv/trunk/checksums Modified: csw/mgar/pkg/lang-python/virtualenv/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/virtualenv/trunk/Makefile 2015-10-26 12:43:13 UTC (rev 25316) +++ csw/mgar/pkg/lang-python/virtualenv/trunk/Makefile 2015-10-26 13:42:04 UTC (rev 25317) @@ -3,7 +3,7 @@ # $Id$ NAME = virtualenv -VERSION = 1.10.1 +VERSION = 13.1.2 CATEGORIES = python GARTYPE = v2 SPKG_DESC_CSWpy-virtualenv = Virtual Python Environment builder @@ -18,10 +18,14 @@ DISTFILES = $(NAME)-$(VERSION).tar.gz LICENSE = PKG-INFO BUILD_DEP_PKGS += CSWpy-mock -DEP_PKGS = CSWpython-dev +DEP_PKGS = CSWpython27-dev DEP_PKGS = CSWpy-setuptools + +MODULATIONS_PYTHON_VERSION = 2_6 2_7 +SKIPTEST = 1 + # /usr/share references are fine, these are docstrings. CHECKPKG_OVERRIDES_CSWpy-virtualenv += file-with-bad-content -CHECKPKG_OVERRIDES_CSWpy-virtualenv += surplus-dependency|CSWpython-dev +CHECKPKG_OVERRIDES_CSWpy-virtualenv += surplus-dependency|CSWpython27-dev CHECKPKG_OVERRIDES_CSWpy-virtualenv += surplus-dependency|CSWpy-setuptools include gar/category.mk Modified: csw/mgar/pkg/lang-python/virtualenv/trunk/checksums =================================================================== --- csw/mgar/pkg/lang-python/virtualenv/trunk/checksums 2015-10-26 12:43:13 UTC (rev 25316) +++ csw/mgar/pkg/lang-python/virtualenv/trunk/checksums 2015-10-26 13:42:04 UTC (rev 25317) @@ -1 +1 @@ -3a04aa2b32c76c83725ed4d9918e362e virtualenv-1.10.1.tar.gz +b989598f068d64b32dead530eb25589a virtualenv-13.1.2.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From janholzh at users.sourceforge.net Mon Oct 26 15:47:31 2015 From: janholzh at users.sourceforge.net (janholzh at users.sourceforge.net) Date: Mon, 26 Oct 2015 14:47:31 +0000 Subject: SF.net SVN: gar:[25318] csw/mgar/pkg/lang-python Message-ID: <3nkzXz1H1Jz1HH@mail.opencsw.org> Revision: 25318 http://sourceforge.net/p/gar/code/25318 Author: janholzh Date: 2015-10-26 14:47:30 +0000 (Mon, 26 Oct 2015) Log Message: ----------- lang-python/letsencrypt/trunk: add letsencrypt Added Paths: ----------- csw/mgar/pkg/lang-python/letsencrypt/ csw/mgar/pkg/lang-python/letsencrypt/Makefile csw/mgar/pkg/lang-python/letsencrypt/branches/ csw/mgar/pkg/lang-python/letsencrypt/tags/ csw/mgar/pkg/lang-python/letsencrypt/trunk/ csw/mgar/pkg/lang-python/letsencrypt/trunk/Makefile csw/mgar/pkg/lang-python/letsencrypt/trunk/checksums csw/mgar/pkg/lang-python/letsencrypt/trunk/files/ Added: csw/mgar/pkg/lang-python/letsencrypt/Makefile =================================================================== --- csw/mgar/pkg/lang-python/letsencrypt/Makefile (rev 0) +++ csw/mgar/pkg/lang-python/letsencrypt/Makefile 2015-10-26 14:47:30 UTC (rev 25318) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Index: csw/mgar/pkg/lang-python/letsencrypt/trunk =================================================================== --- csw/mgar/pkg/lang-python/letsencrypt/trunk 2015-10-26 13:42:04 UTC (rev 25317) +++ csw/mgar/pkg/lang-python/letsencrypt/trunk 2015-10-26 14:47:30 UTC (rev 25318) Property changes on: csw/mgar/pkg/lang-python/letsencrypt/trunk ___________________________________________________________________ Added: svn:ignore ## -0,0 +1 ## +work Added: csw/mgar/pkg/lang-python/letsencrypt/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/letsencrypt/trunk/Makefile (rev 0) +++ csw/mgar/pkg/lang-python/letsencrypt/trunk/Makefile 2015-10-26 14:47:30 UTC (rev 25318) @@ -0,0 +1,56 @@ +# Copyright 2009 OpenCSW +# Distributed under the terms of the GNU General Public License v2 +# $Id$ +# Work in progress quick moving Version so don't release yet. Just to get deps in place and track +NAME = letsencrypt +VERSION = 0.0.0.dev20151024 +CATEGORIES = python +GARTYPE = v2 +SPKG_DESC_CSWletsencrypt = Let's Encrypt client +#ARCHALL_CSWpy-virtualenv = 1 + +define BLURB +The Let's Encrypt Client is a tool to automatically receive and install X.509 certificates to enable TLS on servers. The client will interoperate with the Let's Encrypt CA. +endef + +PACKAGES = CSWletsencrypt +VENDOR_URL = http://pypi.python.org/pypi/letsencrypt +DISTFILES = $(NAME)-$(VERSION).tar.gz +LICENSE = PKG-INFO + +RUNTIME_DEP_PKGS_CSWletsencrypt += CSWpy-zope-interface +RUNTIME_DEP_PKGS_CSWletsencrypt += CSWpy-six +RUNTIME_DEP_PKGS_CSWletsencrypt += CSWpy-setuptools +RUNTIME_DEP_PKGS_CSWletsencrypt += CSWpy-requests +RUNTIME_DEP_PKGS_CSWletsencrypt += CSWpy-tz +RUNTIME_DEP_PKGS_CSWletsencrypt += CSWpy-mock +RUNTIME_DEP_PKGS_CSWletsencrypt += CSWpy-openssl +#Missing: + +#RUNTIME_DEP_PKGS_CSWletsencrypt += CSWpy-configargparse +#RUNTIME_DEP_PKGS_CSWletsencrypt += CSWpy-zope-component +#RUNTIME_DEP_PKGS_CSWletsencrypt += CSWpy-psutil +#RUNTIME_DEP_PKGS_CSWletsencrypt += CSWpy-cryptography +#RUNTIME_DEP_PKGS_CSWletsencrypt += CSWpy-configobj +#RUNTIME_DEP_PKGS_CSWletsencrypt += CSWpy-acme +#RUNTIME_DEP_PKGS_CSWletsencrypt += CSWpy-py2-pythondialog +#RUNTIME_DEP_PKGS_CSWletsencrypt += CSWpy-parsedatetime +#RUNTIME_DEP_PKGS_CSWletsencrypt += CSWpy-pyrfc3339 + + +MODULATIONS_PYTHON_VERSION = 2_7 +SKIPTEST = 1 + + +CHECKPKG_OVERRIDES_CSWletsencrypt += pkgname-does-not-start-with-CSWpy- +CHECKPKG_OVERRIDES_CSWletsencrypt += catalogname-does-not-start-with-py_ +CHECKPKG_OVERRIDES_CSWletsencrypt += surplus-dependency|CSWpy-zope-component +CHECKPKG_OVERRIDES_CSWletsencrypt += surplus-dependency|CSWpy-openssl +CHECKPKG_OVERRIDES_CSWletsencrypt += surplus-dependency|CSWpy-setuptools +CHECKPKG_OVERRIDES_CSWletsencrypt += surplus-dependency|CSWpy-requests +CHECKPKG_OVERRIDES_CSWletsencrypt += surplus-dependency|CSWpy-tz +CHECKPKG_OVERRIDES_CSWletsencrypt += surplus-dependency|CSWpy-six +CHECKPKG_OVERRIDES_CSWletsencrypt += surplus-dependency|CSWpy-mock +CHECKPKG_OVERRIDES_CSWletsencrypt += surplus-dependency|CSWpy-zope-interface + +include gar/category.mk Property changes on: csw/mgar/pkg/lang-python/letsencrypt/trunk/Makefile ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Added: csw/mgar/pkg/lang-python/letsencrypt/trunk/checksums =================================================================== --- csw/mgar/pkg/lang-python/letsencrypt/trunk/checksums (rev 0) +++ csw/mgar/pkg/lang-python/letsencrypt/trunk/checksums 2015-10-26 14:47:30 UTC (rev 25318) @@ -0,0 +1 @@ +86b8ffc407af81b66a69d1dad29c0705 letsencrypt-0.0.0.dev20151024.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From janholzh at users.sourceforge.net Mon Oct 26 15:53:07 2015 From: janholzh at users.sourceforge.net (janholzh at users.sourceforge.net) Date: Mon, 26 Oct 2015 14:53:07 +0000 Subject: SF.net SVN: gar:[25319] csw/mgar/pkg/lang-python/zope-interface/trunk Message-ID: <3nkzgK2S5Rz1Kk@mail.opencsw.org> Revision: 25319 http://sourceforge.net/p/gar/code/25319 Author: janholzh Date: 2015-10-26 14:53:07 +0000 (Mon, 26 Oct 2015) Log Message: ----------- lang-python/zope-interface/trunk: update to 4.1.3 Modified Paths: -------------- csw/mgar/pkg/lang-python/zope-interface/trunk/Makefile csw/mgar/pkg/lang-python/zope-interface/trunk/checksums Modified: csw/mgar/pkg/lang-python/zope-interface/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/zope-interface/trunk/Makefile 2015-10-26 14:47:30 UTC (rev 25318) +++ csw/mgar/pkg/lang-python/zope-interface/trunk/Makefile 2015-10-26 14:53:07 UTC (rev 25319) @@ -3,7 +3,7 @@ # $Id$ NAME = zope.interface -VERSION = 4.1.1 +VERSION = 4.1.3 CATEGORIES = python GARTYPE = v2 Modified: csw/mgar/pkg/lang-python/zope-interface/trunk/checksums =================================================================== --- csw/mgar/pkg/lang-python/zope-interface/trunk/checksums 2015-10-26 14:47:30 UTC (rev 25318) +++ csw/mgar/pkg/lang-python/zope-interface/trunk/checksums 2015-10-26 14:53:07 UTC (rev 25319) @@ -1 +1 @@ -edcd5f719c5eb2e18894c4d06e29b6c6 zope.interface-4.1.1.tar.gz +9ae3d24c0c7415deb249dd1a132f0f79 zope.interface-4.1.3.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From janholzh at users.sourceforge.net Mon Oct 26 15:56:03 2015 From: janholzh at users.sourceforge.net (janholzh at users.sourceforge.net) Date: Mon, 26 Oct 2015 14:56:03 +0000 Subject: SF.net SVN: gar:[25320] csw/mgar/pkg/lang-python/six/trunk Message-ID: <3nkzkj2mM8z1N9@mail.opencsw.org> Revision: 25320 http://sourceforge.net/p/gar/code/25320 Author: janholzh Date: 2015-10-26 14:56:03 +0000 (Mon, 26 Oct 2015) Log Message: ----------- lang-python/six/trunk: update to 1.10.0 Modified Paths: -------------- csw/mgar/pkg/lang-python/six/trunk/Makefile csw/mgar/pkg/lang-python/six/trunk/checksums Modified: csw/mgar/pkg/lang-python/six/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/six/trunk/Makefile 2015-10-26 14:53:07 UTC (rev 25319) +++ csw/mgar/pkg/lang-python/six/trunk/Makefile 2015-10-26 14:56:03 UTC (rev 25320) @@ -1,7 +1,7 @@ # $Id$ NAME = six -VERSION = 1.9.0 +VERSION = 1.10.0 CATEGORIES = python GARTYPE = v2 Modified: csw/mgar/pkg/lang-python/six/trunk/checksums =================================================================== --- csw/mgar/pkg/lang-python/six/trunk/checksums 2015-10-26 14:53:07 UTC (rev 25319) +++ csw/mgar/pkg/lang-python/six/trunk/checksums 2015-10-26 14:56:03 UTC (rev 25320) @@ -1 +1 @@ -476881ef4012262dfc8adc645ee786c4 six-1.9.0.tar.gz +34eed507548117b2ab523ab14b2f8b55 six-1.10.0.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From janholzh at users.sourceforge.net Mon Oct 26 16:01:55 2015 From: janholzh at users.sourceforge.net (janholzh at users.sourceforge.net) Date: Mon, 26 Oct 2015 15:01:55 +0000 Subject: SF.net SVN: gar:[25321] csw/mgar/pkg/lang-python/pytz/trunk/Makefile Message-ID: <3nkzsS0dN8z1Qb@mail.opencsw.org> Revision: 25321 http://sourceforge.net/p/gar/code/25321 Author: janholzh Date: 2015-10-26 15:01:54 +0000 (Mon, 26 Oct 2015) Log Message: ----------- lang-python/pytz/trunk: update to 2015.7 Modified Paths: -------------- csw/mgar/pkg/lang-python/pytz/trunk/Makefile Modified: csw/mgar/pkg/lang-python/pytz/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/pytz/trunk/Makefile 2015-10-26 14:56:03 UTC (rev 25320) +++ csw/mgar/pkg/lang-python/pytz/trunk/Makefile 2015-10-26 15:01:54 UTC (rev 25321) @@ -1,6 +1,6 @@ # $Id$ NAME = pytz -VERSION = 2015.4 +VERSION = 2015.7 CATEGORIES = python GARTYPE = v2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From janholzh at users.sourceforge.net Mon Oct 26 16:02:28 2015 From: janholzh at users.sourceforge.net (janholzh at users.sourceforge.net) Date: Mon, 26 Oct 2015 15:02:28 +0000 Subject: SF.net SVN: gar:[25322] csw/mgar/pkg/lang-python/requests/trunk Message-ID: <3nkzt66tgfz1T0@mail.opencsw.org> Revision: 25322 http://sourceforge.net/p/gar/code/25322 Author: janholzh Date: 2015-10-26 15:02:27 +0000 (Mon, 26 Oct 2015) Log Message: ----------- lang-python/requests/trunk: update to 2.8.1 Modified Paths: -------------- csw/mgar/pkg/lang-python/requests/trunk/Makefile csw/mgar/pkg/lang-python/requests/trunk/checksums Modified: csw/mgar/pkg/lang-python/requests/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/requests/trunk/Makefile 2015-10-26 15:01:54 UTC (rev 25321) +++ csw/mgar/pkg/lang-python/requests/trunk/Makefile 2015-10-26 15:02:27 UTC (rev 25322) @@ -2,7 +2,7 @@ # TODO (release-critical prefixed with !, non release-critical with *) # NAME = requests -VERSION = 2.3.0 +VERSION = 2.8.1 GARTYPE = v2 CATEGORIES = python Modified: csw/mgar/pkg/lang-python/requests/trunk/checksums =================================================================== --- csw/mgar/pkg/lang-python/requests/trunk/checksums 2015-10-26 15:01:54 UTC (rev 25321) +++ csw/mgar/pkg/lang-python/requests/trunk/checksums 2015-10-26 15:02:27 UTC (rev 25322) @@ -1 +1 @@ -7449ffdc8ec9ac37bbcd286003c80f00 requests-2.3.0.tar.gz +a27ea3d72d7822906ddce5e252d6add9 requests-2.8.1.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From janholzh at users.sourceforge.net Mon Oct 26 16:02:56 2015 From: janholzh at users.sourceforge.net (janholzh at users.sourceforge.net) Date: Mon, 26 Oct 2015 15:02:56 +0000 Subject: SF.net SVN: gar:[25323] csw/mgar/pkg/lang-python/pytz/trunk/checksums Message-ID: <3nkztf6cXLz1WP@mail.opencsw.org> Revision: 25323 http://sourceforge.net/p/gar/code/25323 Author: janholzh Date: 2015-10-26 15:02:56 +0000 (Mon, 26 Oct 2015) Log Message: ----------- lang-python/pytz/trunk: add checksums Modified Paths: -------------- csw/mgar/pkg/lang-python/pytz/trunk/checksums Modified: csw/mgar/pkg/lang-python/pytz/trunk/checksums =================================================================== --- csw/mgar/pkg/lang-python/pytz/trunk/checksums 2015-10-26 15:02:27 UTC (rev 25322) +++ csw/mgar/pkg/lang-python/pytz/trunk/checksums 2015-10-26 15:02:56 UTC (rev 25323) @@ -1 +1 @@ -39f7375c4b1fa34cdcb4b4765d08f817 pytz-2015.4.tar.bz2 +ad650c0ce9150d3b53d29d686c09fdda pytz-2015.7.tar.bz2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From janholzh at users.sourceforge.net Mon Oct 26 18:28:15 2015 From: janholzh at users.sourceforge.net (janholzh at users.sourceforge.net) Date: Mon, 26 Oct 2015 17:28:15 +0000 Subject: SF.net SVN: gar:[25324] csw/mgar/pkg/lang-python Message-ID: <3nl36L5Q5Fz2v@mail.opencsw.org> Revision: 25324 http://sourceforge.net/p/gar/code/25324 Author: janholzh Date: 2015-10-26 17:28:15 +0000 (Mon, 26 Oct 2015) Log Message: ----------- lang-python/pycparser/trunk: add pycparser Added Paths: ----------- csw/mgar/pkg/lang-python/pycparser/ csw/mgar/pkg/lang-python/pycparser/Makefile csw/mgar/pkg/lang-python/pycparser/branches/ csw/mgar/pkg/lang-python/pycparser/tags/ csw/mgar/pkg/lang-python/pycparser/trunk/ csw/mgar/pkg/lang-python/pycparser/trunk/Makefile csw/mgar/pkg/lang-python/pycparser/trunk/checksums csw/mgar/pkg/lang-python/pycparser/trunk/files/ Added: csw/mgar/pkg/lang-python/pycparser/Makefile =================================================================== --- csw/mgar/pkg/lang-python/pycparser/Makefile (rev 0) +++ csw/mgar/pkg/lang-python/pycparser/Makefile 2015-10-26 17:28:15 UTC (rev 25324) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Index: csw/mgar/pkg/lang-python/pycparser/trunk =================================================================== --- csw/mgar/pkg/lang-python/pycparser/trunk 2015-10-26 15:02:56 UTC (rev 25323) +++ csw/mgar/pkg/lang-python/pycparser/trunk 2015-10-26 17:28:15 UTC (rev 25324) Property changes on: csw/mgar/pkg/lang-python/pycparser/trunk ___________________________________________________________________ Added: svn:ignore ## -0,0 +1 ## +work Added: csw/mgar/pkg/lang-python/pycparser/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/pycparser/trunk/Makefile (rev 0) +++ csw/mgar/pkg/lang-python/pycparser/trunk/Makefile 2015-10-26 17:28:15 UTC (rev 25324) @@ -0,0 +1,16 @@ + +NAME = pycparser +VERSION = 2.14 +CATEGORIES = python +GARTYPE = v2 + +DESCRIPTION = C parser in Python + +DISTFILES = $(DISTNAME).tar.gz +VENDOR_URL = https://pypi.python.org/pypi/pycparser + +ARCHALL_CSWpy-pycparser = 1 + +LICENSE = LICENSE + +include gar/category.mk Property changes on: csw/mgar/pkg/lang-python/pycparser/trunk/Makefile ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Added: csw/mgar/pkg/lang-python/pycparser/trunk/checksums =================================================================== --- csw/mgar/pkg/lang-python/pycparser/trunk/checksums (rev 0) +++ csw/mgar/pkg/lang-python/pycparser/trunk/checksums 2015-10-26 17:28:15 UTC (rev 25324) @@ -0,0 +1 @@ +a2bc8d28c923b4fe2b2c3b4b51a4f935 pycparser-2.14.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From cgrzemba at users.sourceforge.net Tue Oct 27 10:06:20 2015 From: cgrzemba at users.sourceforge.net (cgrzemba at users.sourceforge.net) Date: Tue, 27 Oct 2015 09:06:20 +0000 Subject: SF.net SVN: gar:[25325] csw/mgar/pkg/php5/branches/php-5.6.x/files/CSWphp5. postinstall Message-ID: <3nlRws6zXrzGw@mail.opencsw.org> Revision: 25325 http://sourceforge.net/p/gar/code/25325 Author: cgrzemba Date: 2015-10-27 09:06:20 +0000 (Tue, 27 Oct 2015) Log Message: ----------- php5/branches/php-5.6.x: update zend api version in php.ini Modified Paths: -------------- csw/mgar/pkg/php5/branches/php-5.6.x/files/CSWphp5.postinstall Modified: csw/mgar/pkg/php5/branches/php-5.6.x/files/CSWphp5.postinstall =================================================================== --- csw/mgar/pkg/php5/branches/php-5.6.x/files/CSWphp5.postinstall 2015-10-26 17:28:15 UTC (rev 25324) +++ csw/mgar/pkg/php5/branches/php-5.6.x/files/CSWphp5.postinstall 2015-10-27 09:06:20 UTC (rev 25325) @@ -6,7 +6,7 @@ # the new php.ini doesn't have this line at all, but the old one might. # update it if required. -if [ "no-debug-non-zts-20090626" != "$curextdir" ]; then +if [ "no-debug-non-zts-20131226" != "$curextdir" ]; then echo "Updating extension_dir..." - perl -i.bak -plne "s,no-debug-non-zts-[0-9]+,no-debug-non-zts-20090626," /etc/opt/csw/php5/php.ini + perl -i.bak -plne "s,no-debug-non-zts-[0-9]+,no-debug-non-zts-20131226," /etc/opt/csw/php5/php.ini fi This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From janholzh at users.sourceforge.net Tue Oct 27 11:00:39 2015 From: janholzh at users.sourceforge.net (janholzh at users.sourceforge.net) Date: Tue, 27 Oct 2015 10:00:39 +0000 Subject: SF.net SVN: gar:[25326] csw/mgar/pkg/lang-python/cffi/trunk Message-ID: <3nlT7f2lgSzKT@mail.opencsw.org> Revision: 25326 http://sourceforge.net/p/gar/code/25326 Author: janholzh Date: 2015-10-27 10:00:38 +0000 (Tue, 27 Oct 2015) Log Message: ----------- lang-python/cffi/trunk: add py_cffi Modified Paths: -------------- csw/mgar/pkg/lang-python/cffi/trunk/Makefile csw/mgar/pkg/lang-python/cffi/trunk/checksums Modified: csw/mgar/pkg/lang-python/cffi/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/cffi/trunk/Makefile 2015-10-27 09:06:20 UTC (rev 25325) +++ csw/mgar/pkg/lang-python/cffi/trunk/Makefile 2015-10-27 10:00:38 UTC (rev 25326) @@ -1,6 +1,6 @@ NAME = cffi -VERSION = 1.1.0 +VERSION = 1.3.0 CATEGORIES = python GARTYPE = v2 @@ -9,15 +9,15 @@ DISTFILES = $(DISTNAME).tar.gz VENDOR_URL = https://pypi.python.org/pypi/cffi -GARCOMPILER = SOS12U4 - LICENSE = LICENSE RUNTIME_DEP_PKGS_CSWpy-cffi += CSWlibpython2-7-1-0 RUNTIME_DEP_PKGS_CSWpy-cffi += CSWlibpython2-6-1-0 RUNTIME_DEP_PKGS_CSWpy-cffi += CSWlibffi6 RUNTIME_DEP_PKGS_CSWpy-cffi += CSWpy-pycparser +RUNTIME_DEP_PKGS_CSWpy-cffi += CSWlibgcc-s1 -TEST_SCRIPTS = +CHECKPKG_OVERRIDES_CSWpy-cffi += surplus-dependency|CSWpy-pycparser + include gar/category.mk Modified: csw/mgar/pkg/lang-python/cffi/trunk/checksums =================================================================== --- csw/mgar/pkg/lang-python/cffi/trunk/checksums 2015-10-27 09:06:20 UTC (rev 25325) +++ csw/mgar/pkg/lang-python/cffi/trunk/checksums 2015-10-27 10:00:38 UTC (rev 25326) @@ -1 +1 @@ -b58d43a708e757f63a905c6a0d9ecf7a cffi-1.1.0.tar.gz +a40ed8c8ac653c8fc7d5603711b06eaf cffi-1.3.0.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From janholzh at users.sourceforge.net Tue Oct 27 11:12:34 2015 From: janholzh at users.sourceforge.net (janholzh at users.sourceforge.net) Date: Tue, 27 Oct 2015 10:12:34 +0000 Subject: SF.net SVN: gar:[25327] csw/mgar/pkg/lang-python/pyasn1/trunk Message-ID: <3nlTP94MZtzMx@mail.opencsw.org> Revision: 25327 http://sourceforge.net/p/gar/code/25327 Author: janholzh Date: 2015-10-27 10:12:34 +0000 (Tue, 27 Oct 2015) Log Message: ----------- lang-python/pyasn1/trunk: update to 0.1.9 Modified Paths: -------------- csw/mgar/pkg/lang-python/pyasn1/trunk/Makefile csw/mgar/pkg/lang-python/pyasn1/trunk/checksums Modified: csw/mgar/pkg/lang-python/pyasn1/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/pyasn1/trunk/Makefile 2015-10-27 10:00:38 UTC (rev 25326) +++ csw/mgar/pkg/lang-python/pyasn1/trunk/Makefile 2015-10-27 10:12:34 UTC (rev 25327) @@ -3,7 +3,7 @@ # NAME = pyasn1 -VERSION = 0.1.7 +VERSION = 0.1.9 GARTYPE = v2 CATEGORIES = python Modified: csw/mgar/pkg/lang-python/pyasn1/trunk/checksums =================================================================== --- csw/mgar/pkg/lang-python/pyasn1/trunk/checksums 2015-10-27 10:00:38 UTC (rev 25326) +++ csw/mgar/pkg/lang-python/pyasn1/trunk/checksums 2015-10-27 10:12:34 UTC (rev 25327) @@ -1 +1 @@ -2cbd80fcd4c7b1c82180d3d76fee18c8 pyasn1-0.1.7.tar.gz +f00a02a631d4016818659d1cc38d229a pyasn1-0.1.9.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From janholzh at users.sourceforge.net Tue Oct 27 11:31:05 2015 From: janholzh at users.sourceforge.net (janholzh at users.sourceforge.net) Date: Tue, 27 Oct 2015 10:31:05 +0000 Subject: SF.net SVN: gar:[25328] csw/mgar/pkg/lang-python Message-ID: <3nlTpX4t5nzQR@mail.opencsw.org> Revision: 25328 http://sourceforge.net/p/gar/code/25328 Author: janholzh Date: 2015-10-27 10:31:05 +0000 (Tue, 27 Oct 2015) Log Message: ----------- lang-python/idna/trunk: add py_idna Added Paths: ----------- csw/mgar/pkg/lang-python/idna/ csw/mgar/pkg/lang-python/idna/Makefile csw/mgar/pkg/lang-python/idna/branches/ csw/mgar/pkg/lang-python/idna/tags/ csw/mgar/pkg/lang-python/idna/trunk/ csw/mgar/pkg/lang-python/idna/trunk/Makefile csw/mgar/pkg/lang-python/idna/trunk/checksums csw/mgar/pkg/lang-python/idna/trunk/files/ Added: csw/mgar/pkg/lang-python/idna/Makefile =================================================================== --- csw/mgar/pkg/lang-python/idna/Makefile (rev 0) +++ csw/mgar/pkg/lang-python/idna/Makefile 2015-10-27 10:31:05 UTC (rev 25328) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Index: csw/mgar/pkg/lang-python/idna/trunk =================================================================== --- csw/mgar/pkg/lang-python/idna/trunk 2015-10-27 10:12:34 UTC (rev 25327) +++ csw/mgar/pkg/lang-python/idna/trunk 2015-10-27 10:31:05 UTC (rev 25328) Property changes on: csw/mgar/pkg/lang-python/idna/trunk ___________________________________________________________________ Added: svn:ignore ## -0,0 +1 ## +work Added: csw/mgar/pkg/lang-python/idna/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/idna/trunk/Makefile (rev 0) +++ csw/mgar/pkg/lang-python/idna/trunk/Makefile 2015-10-27 10:31:05 UTC (rev 25328) @@ -0,0 +1,22 @@ +# $Id$ +# TODO (release-critical prefixed with !, non release-critical with *) +# + +NAME = idna +VERSION = 2.0 +GARTYPE = v2 +CATEGORIES = python + +DESCRIPTION = Internationalized Domain Names in Applications + +MASTER_SITES += $(PYPI_MIRROR) +DISTFILES += $(DISTNAME).tar.gz + +PACKAGES += CSWpy-idna +SPKG_DESC_CSWpy-idna = Internationalized Domain Names in Applications +# PKGFILES is catchall +ARCHALL_CSWpy-idna = 1 + +SKIPTEST = 1 + +include gar/category.mk Property changes on: csw/mgar/pkg/lang-python/idna/trunk/Makefile ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Added: csw/mgar/pkg/lang-python/idna/trunk/checksums =================================================================== --- csw/mgar/pkg/lang-python/idna/trunk/checksums (rev 0) +++ csw/mgar/pkg/lang-python/idna/trunk/checksums 2015-10-27 10:31:05 UTC (rev 25328) @@ -0,0 +1 @@ +bd17a9d15e755375f48a62c13b25b801 idna-2.0.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From cgrzemba at users.sourceforge.net Tue Oct 27 11:56:25 2015 From: cgrzemba at users.sourceforge.net (cgrzemba at users.sourceforge.net) Date: Tue, 27 Oct 2015 10:56:25 +0000 Subject: SF.net SVN: gar:[25329] csw/mgar/pkg/php5/branches/php-5.6.x Message-ID: <3nlVMr6M3gzT8@mail.opencsw.org> Revision: 25329 http://sourceforge.net/p/gar/code/25329 Author: cgrzemba Date: 2015-10-27 10:56:25 +0000 (Tue, 27 Oct 2015) Log Message: ----------- php5/branches/php-5.6.x: fix apache sysconf path, fix apache module package name Modified Paths: -------------- csw/mgar/pkg/php5/branches/php-5.6.x/Makefile Added Paths: ----------- csw/mgar/pkg/php5/branches/php-5.6.x/files/CSWap24-modphp5.cswreleasenotes csw/mgar/pkg/php5/branches/php-5.6.x/files/CSWap24-modphp5.postinstall csw/mgar/pkg/php5/branches/php-5.6.x/files/CSWap24-modphp5.preremove Removed Paths: ------------- csw/mgar/pkg/php5/branches/php-5.6.x/files/CSWap2-modphp5.cswreleasenotes csw/mgar/pkg/php5/branches/php-5.6.x/files/CSWap2-modphp5.postinstall csw/mgar/pkg/php5/branches/php-5.6.x/files/CSWap2-modphp5.preremove Modified: csw/mgar/pkg/php5/branches/php-5.6.x/Makefile =================================================================== --- csw/mgar/pkg/php5/branches/php-5.6.x/Makefile 2015-10-27 10:31:05 UTC (rev 25328) +++ csw/mgar/pkg/php5/branches/php-5.6.x/Makefile 2015-10-27 10:56:25 UTC (rev 25329) @@ -78,7 +78,7 @@ BUILD_DEP_PKGS += CSWlibaspell-dev PRESERVECONF = $(sysconfdir)/php.ini $(sysconfdir)/pear.conf -PRESERVECONF += $(sysconfdir)/apache2/extra/httpd-php5.conf +PRESERVECONF += $(sysconfdir_ap2)/extra/httpd-php5.conf MIGRATE_FILES_CSWphp5 = "php.ini" MIGRATE_SOURCE_DIR_CSWphp5 = /opt/csw/php5/lib MIGRATE_DEST_DIR = $(sysconfdir) @@ -283,6 +283,7 @@ #EXTRA_CPPFLAGS += -D_RWSTD_NO_NEW_HEADER sysconfdir = /etc$(prefix)/php5 +sysconfdir_ap2 = /etc$(prefix)/apache2 CONFIGURE_ARGS += --prefix=$(prefix)/php5 CONFIGURE_ARGS += --sysconfdir=$(sysconfdir) @@ -412,7 +413,7 @@ # this allows apxs to install the module. stupid, but i couldn't make # the darn thing _not_ do try to add the httpd.conf lines, even with # patching... -# pre-install-modulated: AP2SYSCONF=$(sysconfdir)/apache2 +# pre-install-modulated: AP2SYSCONF=$(sysconfdir_ap2) # pre-install-modulated: $(PI_SCRIPTS) # @(mkdir -p $(DESTDIR)$(AP2SYSCONF); \ # cp $(AP2SYSCONF)/httpd.conf $(DESTDIR)$(AP2SYSCONF) ) @@ -421,8 +422,8 @@ # @echo "LoadModule foo2_module libexec/mod_foo2.so" >> $(DESTDIR)$(AP2SYSCONF)/httpd.conf # @$(MAKECOOKIE) -post-install-modulated: AP2SYSCONF=$(sysconfdir)/apache2/httpd.conf -post-install-modulated: AP2EXTCONF=$(sysconfdir)/apache2/extra +post-install-modulated: AP2SYSCONF=$(sysconfdir_ap2)/httpd.conf +post-install-modulated: AP2EXTCONF=$(sysconfdir_ap2)/extra post-install-modulated: INIDEST=$(DESTDIR)/etc$(prefix)/php5/php.ini post-install-modulated: @rm -f $(DESTDIR)$(AP2SYSCONF) Deleted: csw/mgar/pkg/php5/branches/php-5.6.x/files/CSWap2-modphp5.cswreleasenotes =================================================================== --- csw/mgar/pkg/php5/branches/php-5.6.x/files/CSWap2-modphp5.cswreleasenotes 2015-10-27 10:31:05 UTC (rev 25328) +++ csw/mgar/pkg/php5/branches/php-5.6.x/files/CSWap2-modphp5.cswreleasenotes 2015-10-27 10:56:25 UTC (rev 25329) @@ -1,2 +0,0 @@ -/usr/local references: - libexec/libphp5.so -> embeds 'magic' filetype info in the binary Deleted: csw/mgar/pkg/php5/branches/php-5.6.x/files/CSWap2-modphp5.postinstall =================================================================== --- csw/mgar/pkg/php5/branches/php-5.6.x/files/CSWap2-modphp5.postinstall 2015-10-27 10:31:05 UTC (rev 25328) +++ csw/mgar/pkg/php5/branches/php-5.6.x/files/CSWap2-modphp5.postinstall 2015-10-27 10:56:25 UTC (rev 25329) @@ -1,29 +0,0 @@ -#!/bin/sh - -CSW_PREFIX=${PKG_INSTALL_ROOT}/etc/opt/csw -AP2_CONFIG=$CSW_PREFIX/apache2/httpd.conf - -# Configure mod_php5 in httpd.conf -if [ -n "`egrep 'IfModule (mod_php|php_module)' $AP2_CONFIG`" ] -then - echo "Existing mod_php5 configuration detected" -elif [ -n "`egrep '#Include extra/httpd-php5.conf' $AP2_CONFIG`" ]; then - echo "Re-enabling existing config" - perl -i -plne 's,^#(Include extra/httpd-php5.conf),$1,' $AP2_CONFIG -else - echo "Adding Include for extra/http-php5.conf to httpd.conf" - cat << END >> $AP2_CONFIG - -Include extra/httpd-php5.conf -END -fi - -# Finito -cat < embeds 'magic' filetype info in the binary Added: csw/mgar/pkg/php5/branches/php-5.6.x/files/CSWap24-modphp5.postinstall =================================================================== --- csw/mgar/pkg/php5/branches/php-5.6.x/files/CSWap24-modphp5.postinstall (rev 0) +++ csw/mgar/pkg/php5/branches/php-5.6.x/files/CSWap24-modphp5.postinstall 2015-10-27 10:56:25 UTC (rev 25329) @@ -0,0 +1,29 @@ +#!/bin/sh + +CSW_PREFIX=${PKG_INSTALL_ROOT}/etc/opt/csw +AP2_CONFIG=$CSW_PREFIX/apache2/httpd.conf + +# Configure mod_php5 in httpd.conf +if [ -n "`egrep 'IfModule (mod_php|php_module)' $AP2_CONFIG`" ] +then + echo "Existing mod_php5 configuration detected" +elif [ -n "`egrep '#Include extra/httpd-php5.conf' $AP2_CONFIG`" ]; then + echo "Re-enabling existing config" + perl -i -plne 's,^#(Include extra/httpd-php5.conf),$1,' $AP2_CONFIG +else + echo "Adding Include for extra/http-php5.conf to httpd.conf" + cat << END >> $AP2_CONFIG + +Include extra/httpd-php5.conf +END +fi + +# Finito +cat < Revision: 25330 http://sourceforge.net/p/gar/code/25330 Author: janholzh Date: 2015-10-27 11:05:05 +0000 (Tue, 27 Oct 2015) Log Message: ----------- lang-python/enum34/trunk: add py_enum34 Added Paths: ----------- csw/mgar/pkg/lang-python/enum34/ csw/mgar/pkg/lang-python/enum34/Makefile csw/mgar/pkg/lang-python/enum34/branches/ csw/mgar/pkg/lang-python/enum34/tags/ csw/mgar/pkg/lang-python/enum34/trunk/ csw/mgar/pkg/lang-python/enum34/trunk/Makefile csw/mgar/pkg/lang-python/enum34/trunk/checksums csw/mgar/pkg/lang-python/enum34/trunk/files/ Added: csw/mgar/pkg/lang-python/enum34/Makefile =================================================================== --- csw/mgar/pkg/lang-python/enum34/Makefile (rev 0) +++ csw/mgar/pkg/lang-python/enum34/Makefile 2015-10-27 11:05:05 UTC (rev 25330) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Index: csw/mgar/pkg/lang-python/enum34/trunk =================================================================== --- csw/mgar/pkg/lang-python/enum34/trunk 2015-10-27 10:56:25 UTC (rev 25329) +++ csw/mgar/pkg/lang-python/enum34/trunk 2015-10-27 11:05:05 UTC (rev 25330) Property changes on: csw/mgar/pkg/lang-python/enum34/trunk ___________________________________________________________________ Added: svn:ignore ## -0,0 +1 ## +work Added: csw/mgar/pkg/lang-python/enum34/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/enum34/trunk/Makefile (rev 0) +++ csw/mgar/pkg/lang-python/enum34/trunk/Makefile 2015-10-27 11:05:05 UTC (rev 25330) @@ -0,0 +1,21 @@ +# $Id$ +# TODO (release-critical prefixed with !, non release-critical with *) +# + +NAME = enum34 +VERSION = 1.0.4 +GARTYPE = v2 +CATEGORIES = python + +DESCRIPTION = Support for enumerations + +MASTER_SITES += $(PYPI_MIRROR) +DISTFILES += $(DISTNAME).tar.gz + +PACKAGES += CSWpy-enum34 +SPKG_DESC_CSWpy-asn = Support for enumerations +# PKGFILES is catchall +ARCHALL_CSWpy-enum34 = 1 +SKIPTEST = 1 + +include gar/category.mk Property changes on: csw/mgar/pkg/lang-python/enum34/trunk/Makefile ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Added: csw/mgar/pkg/lang-python/enum34/trunk/checksums =================================================================== --- csw/mgar/pkg/lang-python/enum34/trunk/checksums (rev 0) +++ csw/mgar/pkg/lang-python/enum34/trunk/checksums 2015-10-27 11:05:05 UTC (rev 25330) @@ -0,0 +1 @@ +ac80f432ac9373e7d162834b264034b6 enum34-1.0.4.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Tue Oct 27 12:56:02 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 27 Oct 2015 11:56:02 +0000 Subject: SF.net SVN: gar:[25331] csw/mgar/pkg/squid/branches Message-ID: <3nlWhd6bH3zZY@mail.opencsw.org> Revision: 25331 http://sourceforge.net/p/gar/code/25331 Author: dmichelsen Date: 2015-10-27 11:56:01 +0000 (Tue, 27 Oct 2015) Log Message: ----------- squid/branches/squid-4.x: Initial commit Modified Paths: -------------- csw/mgar/pkg/squid/branches/squid-4.x/Makefile csw/mgar/pkg/squid/branches/squid-4.x/checksums Added Paths: ----------- csw/mgar/pkg/squid/branches/squid-4.x/ Modified: csw/mgar/pkg/squid/branches/squid-4.x/Makefile =================================================================== --- csw/mgar/pkg/squid/trunk/Makefile 2015-10-19 12:51:46 UTC (rev 25302) +++ csw/mgar/pkg/squid/branches/squid-4.x/Makefile 2015-10-27 11:56:01 UTC (rev 25331) @@ -2,7 +2,7 @@ # $Id$ # NAME = squid -VERSION = 3.5.10 +VERSION = 4.0.1 GARTYPE = v2 DESCRIPTION = High performance Web proxy cache @@ -13,9 +13,8 @@ endef V1 = $(shell echo $(VERSION) | cut -d. -f1) -V12 = $(shell echo $(VERSION) | cut -d. -f1,2) -MASTER_SITES = http://www.squid-cache.org/Versions/v$(V1)/$(V12)/ -DISTFILES += $(DISTNAME).tar.bz2 +MASTER_SITES = http://www.squid-cache.org/Versions/v$(V1)/ +DISTFILES += $(DISTNAME).tar.xz # ssl_crtd fails to build on OpenSolaris/OpenIndiana/Solaris 11 # From http://bugs.squid-cache.org/show_bug.cgi?id=3664 @@ -42,7 +41,7 @@ RUNTIME_DEP_PKGS_CSWsquid += CSWlibintl8 RUNTIME_DEP_PKGS_CSWsquid += CSWlibkrb5-3 RUNTIME_DEP_PKGS_CSWsquid += CSWlibcom-err3 -RUNTIME_DEP_PKGS_CSWsquid += CSWlibnettle4 +RUNTIME_DEP_PKGS_CSWsquid += CSWlibnettle6 RUNTIME_DEP_PKGS_CSWsquid += CSWlibgnutls28 # Linker anomaly Modified: csw/mgar/pkg/squid/branches/squid-4.x/checksums =================================================================== --- csw/mgar/pkg/squid/trunk/checksums 2015-10-19 12:51:46 UTC (rev 25302) +++ csw/mgar/pkg/squid/branches/squid-4.x/checksums 2015-10-27 11:56:01 UTC (rev 25331) @@ -1 +1 @@ -79fc4117e8fc76572819e8497d7c0b29 squid-3.5.10.tar.bz2 +95c2e01bd5ff09185fe9c4afa0ce746a squid-4.0.1.tar.xz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From janholzh at users.sourceforge.net Tue Oct 27 13:02:17 2015 From: janholzh at users.sourceforge.net (janholzh at users.sourceforge.net) Date: Tue, 27 Oct 2015 12:02:17 +0000 Subject: SF.net SVN: gar:[25332] csw/mgar/pkg/lang-python Message-ID: <3nlWqt1BCJzd8@mail.opencsw.org> Revision: 25332 http://sourceforge.net/p/gar/code/25332 Author: janholzh Date: 2015-10-27 12:02:17 +0000 (Tue, 27 Oct 2015) Log Message: ----------- lang-python/ipaddress/trunk: add py_ipaddress Added Paths: ----------- csw/mgar/pkg/lang-python/ipaddress/ csw/mgar/pkg/lang-python/ipaddress/Makefile csw/mgar/pkg/lang-python/ipaddress/branches/ csw/mgar/pkg/lang-python/ipaddress/tags/ csw/mgar/pkg/lang-python/ipaddress/trunk/ csw/mgar/pkg/lang-python/ipaddress/trunk/Makefile csw/mgar/pkg/lang-python/ipaddress/trunk/checksums csw/mgar/pkg/lang-python/ipaddress/trunk/files/ Added: csw/mgar/pkg/lang-python/ipaddress/Makefile =================================================================== --- csw/mgar/pkg/lang-python/ipaddress/Makefile (rev 0) +++ csw/mgar/pkg/lang-python/ipaddress/Makefile 2015-10-27 12:02:17 UTC (rev 25332) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Index: csw/mgar/pkg/lang-python/ipaddress/trunk =================================================================== --- csw/mgar/pkg/lang-python/ipaddress/trunk 2015-10-27 11:56:01 UTC (rev 25331) +++ csw/mgar/pkg/lang-python/ipaddress/trunk 2015-10-27 12:02:17 UTC (rev 25332) Property changes on: csw/mgar/pkg/lang-python/ipaddress/trunk ___________________________________________________________________ Added: svn:ignore ## -0,0 +1 ## +work Added: csw/mgar/pkg/lang-python/ipaddress/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/ipaddress/trunk/Makefile (rev 0) +++ csw/mgar/pkg/lang-python/ipaddress/trunk/Makefile 2015-10-27 12:02:17 UTC (rev 25332) @@ -0,0 +1,20 @@ +# $Id$ +# TODO (release-critical prefixed with !, non release-critical with *) +# + +NAME = ipaddress +VERSION = 1.0.14 +GARTYPE = v2 +CATEGORIES = python + +DESCRIPTION = IPv4/IPv6 manipulation library + +MASTER_SITES += $(PYPI_MIRROR) +DISTFILES += $(DISTNAME).tar.gz + +PACKAGES += CSWpy-ipaddress +SPKG_DESC_CSWpy-asn = IPv4/IPv6 manipulation library +# PKGFILES is catchall +ARCHALL_CSWpy-ipaddress = 1 + +include gar/category.mk Property changes on: csw/mgar/pkg/lang-python/ipaddress/trunk/Makefile ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Added: csw/mgar/pkg/lang-python/ipaddress/trunk/checksums =================================================================== --- csw/mgar/pkg/lang-python/ipaddress/trunk/checksums (rev 0) +++ csw/mgar/pkg/lang-python/ipaddress/trunk/checksums 2015-10-27 12:02:17 UTC (rev 25332) @@ -0,0 +1 @@ +e2f2f6593b2b8a7e8abba0fbdf33f046 ipaddress-1.0.14.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From janholzh at users.sourceforge.net Tue Oct 27 14:50:59 2015 From: janholzh at users.sourceforge.net (janholzh at users.sourceforge.net) Date: Tue, 27 Oct 2015 13:50:59 +0000 Subject: SF.net SVN: gar:[25333] csw/mgar/pkg/lang-python Message-ID: <3nlZFM6w3LzhY@mail.opencsw.org> Revision: 25333 http://sourceforge.net/p/gar/code/25333 Author: janholzh Date: 2015-10-27 13:50:58 +0000 (Tue, 27 Oct 2015) Log Message: ----------- lang-python/cryptography/trunk: add py_cryptography Added Paths: ----------- csw/mgar/pkg/lang-python/cryptography/ csw/mgar/pkg/lang-python/cryptography/Makefile csw/mgar/pkg/lang-python/cryptography/branches/ csw/mgar/pkg/lang-python/cryptography/tags/ csw/mgar/pkg/lang-python/cryptography/trunk/ csw/mgar/pkg/lang-python/cryptography/trunk/Makefile csw/mgar/pkg/lang-python/cryptography/trunk/checksums csw/mgar/pkg/lang-python/cryptography/trunk/files/ Added: csw/mgar/pkg/lang-python/cryptography/Makefile =================================================================== --- csw/mgar/pkg/lang-python/cryptography/Makefile (rev 0) +++ csw/mgar/pkg/lang-python/cryptography/Makefile 2015-10-27 13:50:58 UTC (rev 25333) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Index: csw/mgar/pkg/lang-python/cryptography/trunk =================================================================== --- csw/mgar/pkg/lang-python/cryptography/trunk 2015-10-27 12:02:17 UTC (rev 25332) +++ csw/mgar/pkg/lang-python/cryptography/trunk 2015-10-27 13:50:58 UTC (rev 25333) Property changes on: csw/mgar/pkg/lang-python/cryptography/trunk ___________________________________________________________________ Added: svn:ignore ## -0,0 +1 ## +work Added: csw/mgar/pkg/lang-python/cryptography/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/cryptography/trunk/Makefile (rev 0) +++ csw/mgar/pkg/lang-python/cryptography/trunk/Makefile 2015-10-27 13:50:58 UTC (rev 25333) @@ -0,0 +1,44 @@ +# Copyright 2009 OpenCSW +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + + +NAME = cryptography +VERSION = 1.0.2 +CATEGORIES = python +GARTYPE = v2 +SPKG_DESC_CSWpy-cryptography = Cryptography is a package which provides cryptographic recipes and primitives to Python developers + +define BLURB +Cryptography is a package which provides cryptographic recipes and primitives to Python developers +endef + +PACKAGES = CSWpy-cryptography +VENDOR_URL = http://pypi.python.org/pypi/cryptography +DISTFILES = $(NAME)-$(VERSION).tar.gz +LICENSE = PKG-INFO + +RUNTIME_DEP_PKGS_CSWpy-cryptography += CSWpy-six +RUNTIME_DEP_PKGS_CSWpy-cryptography += CSWpy-asn1 +RUNTIME_DEP_PKGS_CSWpy-cryptography += CSWpy-idna +RUNTIME_DEP_PKGS_CSWpy-cryptography += CSWpy-cffi +RUNTIME_DEP_PKGS_CSWpy-cryptography += CSWpy-ipaddress +RUNTIME_DEP_PKGS_CSWpy-cryptography += CSWpy-enum34 +RUNTIME_DEP_PKGS_CSWpy-cryptography += CSWlibpython2-7-1-0 +RUNTIME_DEP_PKGS_CSWpy-cryptography += CSWlibgcc-s1 +RUNTIME_DEP_PKGS_CSWpy-cryptography += CSWlibpython2-6-1-0 +RUNTIME_DEP_PKGS_CSWpy-cryptography += CSWlibssl1-0-0 + +CHECKPKG_OVERRIDES_CSWpy-cryptography += surplus-dependency|CSWpy-idna +CHECKPKG_OVERRIDES_CSWpy-cryptography += surplus-dependency|CSWpy-ipaddress +CHECKPKG_OVERRIDES_CSWpy-cryptography += surplus-dependency|CSWpy-six +CHECKPKG_OVERRIDES_CSWpy-cryptography += surplus-dependency|CSWpy-cffi +CHECKPKG_OVERRIDES_CSWpy-cryptography += surplus-dependency|CSWpy-asn1 +CHECKPKG_OVERRIDES_CSWpy-cryptography += surplus-dependency|CSWpy-enum34 + + + +SKIPTEST = 1 + + +include gar/category.mk Property changes on: csw/mgar/pkg/lang-python/cryptography/trunk/Makefile ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Added: csw/mgar/pkg/lang-python/cryptography/trunk/checksums =================================================================== --- csw/mgar/pkg/lang-python/cryptography/trunk/checksums (rev 0) +++ csw/mgar/pkg/lang-python/cryptography/trunk/checksums 2015-10-27 13:50:58 UTC (rev 25333) @@ -0,0 +1 @@ +6a8627da0c6199fca941dc8170f9b583 cryptography-1.0.2.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Fri Oct 30 13:29:28 2015 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 30 Oct 2015 12:29:28 +0000 Subject: SF.net SVN: gar:[25334] csw/mgar/pkg/lang-python/python/branches/python-2.7 /Makefile Message-ID: <3nnNHr3fpTzQg@mail.opencsw.org> Revision: 25334 http://sourceforge.net/p/gar/code/25334 Author: dmichelsen Date: 2015-10-30 12:29:28 +0000 (Fri, 30 Oct 2015) Log Message: ----------- lang-python/python/branches/python-2.7: Add build deps as reported in #5254 Modified Paths: -------------- csw/mgar/pkg/lang-python/python/branches/python-2.7/Makefile Modified: csw/mgar/pkg/lang-python/python/branches/python-2.7/Makefile =================================================================== --- csw/mgar/pkg/lang-python/python/branches/python-2.7/Makefile 2015-10-27 13:50:58 UTC (rev 25333) +++ csw/mgar/pkg/lang-python/python/branches/python-2.7/Makefile 2015-10-30 12:29:28 UTC (rev 25334) @@ -155,6 +155,8 @@ BUILD_DEP_PKGS += CSWlibsqlite3-dev BUILD_DEP_PKGS += CSWlibgdbm-dev BUILD_DEP_PKGS += CSWlibgcrypt-dev +BUILD_DEP_PKGS += CSWlibssl-dev +BUILD_DEP_PKGS += CSWlibncurses-dev # Allow to choose the default Python version. # Python 2.6 is the default one as of 2013-07-21. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.