[CVS] OpenPKG: openpkg-src/asmifier/ asmifier.sh asmifier.spec
OpenPKG CVS Repository http://cvs.openpkg.org/ Server: cvs.openpkg.org Name: Ralf S. Engelschall Root: /v/openpkg/cvs Email: r...@openpkg.org Module: openpkg-src Date: 14-Jun-2009 21:31:35 Branch: HEAD Handle: 2009061420313401 Added files: openpkg-src/asmifierasmifier.sh asmifier.spec Log: new package: asmifier 3.2 (Java Bytecode Disassembler) Summary: RevisionChanges Path 1.1 +30 -0 openpkg-src/asmifier/asmifier.sh 1.1 +83 -0 openpkg-src/asmifier/asmifier.spec patch -p0 <<'@@ .' Index: openpkg-src/asmifier/asmifier.sh $ cvs diff -u -r0 -r1.1 asmifier.sh --- /dev/null 2009-06-14 21:31:31 +0200 +++ asmifier.sh 2009-06-14 21:31:35 +0200 @@ -0,0 +1,30 @@ +#!/bin/sh + +# usage +if [ $# -eq 0 ]; then +echo "$0: USAGE: asmifier " 1>&2 +echo "$0: USAGE: asmifier [] " 1>&2 +exit 1 +fi + +# determine dumping mode (ASM instructions or bytecode mnemonic) +class="org.objectweb.asm.util.ASMifierClassVisitor" +if [ ".$1" = "-m" ]; then + class="org.objectweb.asm.util.TraceClassVisitor" + shift +fi + +# allow to decode .class files from current directory +if [ $# -eq 1 ]; then +set -- . "$1" +fi + +# late sanity check for usage +if [ $# -ne 2 ]; then +echo "$0: ERROR: invalid number of arguments" 1>&2 +exit 1 +fi + +# execute ASMifier +...@l_prefix@/bin/java -cp "@l_prefix@/libexec/asmifier/asm-all.jar:$1" $class "$2" + @@ . patch -p0 <<'@@ .' Index: openpkg-src/asmifier/asmifier.spec $ cvs diff -u -r0 -r1.1 asmifier.spec --- /dev/null 2009-06-14 21:31:31 +0200 +++ asmifier.spec 2009-06-14 21:31:35 +0200 @@ -0,0 +1,83 @@ +## +## asmifier.spec -- OpenPKG RPM Package Specification +## Copyright (c) 2000-2009 OpenPKG Foundation e.V. <http://openpkg.net/> +## +## Permission to use, copy, modify, and distribute this software for +## any purpose with or without fee is hereby granted, provided that +## the above copyright notice and this permission notice appear in all +## copies. +## +## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED +## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR +## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF +## USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT +## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +## SUCH DAMAGE. +## + +# package information +Name: asmifier +Summary: Java Bytecode Disassembler +URL: http://download.forge.objectweb.org/asm/asm-3.2-bin.zip +Vendor: INRIA, France Telecom +Packager: OpenPKG Foundation e.V. +Distribution: OpenPKG Community +Class:EVAL +Group:Compiler +License: MIT-style +Version: 3.2 +Release: 20090614 + +# list of sources +Source0: http://download.forge.objectweb.org/asm/asm-%{version}-bin.zip +Source1: asmifier.sh + +# build information +Prefix: %{l_prefix} +BuildRoot:%{l_buildroot} +BuildPreReq: OpenPKG, openpkg >= 20060823, infozip +PreReq: OpenPKG, openpkg >= 20060823, java, JAVA-JDK +AutoReq: no +AutoReqProv: no + +%description +ASMifier is a small command-line tool for disassembling Java +bytecode based on ASM's ASMifierClassVisitor class. + +%track +prog asmifier = { +version = %{version} +url = http://forge.ow2.org/project/showfiles.php?group_id=23&release_id=3334 +regex = asm-(__VER__)-bin\.zip +} + +%prep +%setup -q -T -c +unzip -q -x %{SOURCE0} + +%build + +%install +rm -rf $RPM_BUILD_ROOT +%{l_shtool} mkdir -f -p -m 755 \ +$RPM_BUILD_ROOT%{l_prefix}/bin \ +$RPM_BUILD_ROOT%{l_prefix}/libexec/asmifier +%{l_
[CVS] OpenPKG: openpkg-src/source-highlight/ source-highlight.spec
OpenPKG CVS Repository http://cvs.openpkg.org/ Server: cvs.openpkg.org Name: Ralf S. Engelschall Root: /v/openpkg/cvs Email: r...@openpkg.org Module: openpkg-src Date: 14-Jun-2009 20:16:44 Branch: HEAD Handle: 2009061419164400 Added files: openpkg-src/source-highlight source-highlight.spec Log: new package: source-highlight 3.1 (GNU Source Syntax Highlighting) Summary: RevisionChanges Path 1.1 +101 -0 openpkg-src/source-highlight/source-highlight.spec patch -p0 <<'@@ .' Index: openpkg-src/source-highlight/source-highlight.spec $ cvs diff -u -r0 -r1.1 source-highlight.spec --- /dev/null 2009-06-14 20:16:34 +0200 +++ source-highlight.spec 2009-06-14 20:16:44 +0200 @@ -0,0 +1,101 @@ +## +## source-highlight.spec -- OpenPKG RPM Package Specification +## Copyright (c) 2000-2009 OpenPKG Foundation e.V. <http://openpkg.net/> +## +## Permission to use, copy, modify, and distribute this software for +## any purpose with or without fee is hereby granted, provided that +## the above copyright notice and this permission notice appear in all +## copies. +## +## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED +## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR +## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF +## USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT +## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +## SUCH DAMAGE. +## + +# package information +Name: source-highlight +Summary: GNU Source Syntax Highlighting +URL: http://www.gnu.org/software/src-highlite/ +Vendor: Lorenzo Bettini +Packager: OpenPKG Foundation e.V. +Distribution: OpenPKG Community +Class:EVAL +Group:Typesetting +License: GPL +Version: 3.1 +Release: 20090614 + +# list of sources +Source0: ftp://ftp.gnu.org/gnu/src-highlite/source-highlight-%{version}.tar.gz + +# build information +Prefix: %{l_prefix} +BuildRoot:%{l_buildroot} +BuildPreReq: OpenPKG, openpkg >= 20060823, make, gcc, gcc::with_cxx = yes, flex, bison +PreReq: OpenPKG, openpkg >= 20060823 +BuildPreReq: boost +PreReq: boost +AutoReq: no +AutoReqProv: no + +%description +GNU Source-Highlight, given a source file, produces a document with +syntax highlighting. It also provides a C++ highlight library. It +reads source language specifications dynamically, thus it can be +easily extended (without recompiling the sources) for handling new +languages. It also reads output format specifications dynamically, +and thus it can be easily extended (without recompiling the sources) +for handling new output formats. The syntax for these specifications +is quite easy. + +%track +prog source-highlight = { +version = %{version} +url = ftp://ftp.gnu.org/gnu/src-highlite/ +regex = source-highlight-(__VER__)\.tar\.gz +} + +%prep +%setup -q + +%build +CC="%{l_cc}" \ +CXX="%{l_cxx}" \ +CFLAGS="%{l_cflags -O}" \ +CXXFLAGS="%{l_cxxflags -O}" \ +CPPFLAGS="%{l_cppflags}" \ +LDFLAGS="%{l_ldflags}" \ +./configure \ +--prefix=%{l_prefix} \ +--mandir=%{l_prefix}/man \ +--infodir=%{l_prefix}/info \ +--with-bash-completion=%{l_prefix}/etc/source-highlight \ +--with-boost=%{l_prefix} \ +--with-boost-libdir=%{l_prefix}/lib \ +--with-boost-regex=boost_regex-mt \ +--disable-shared +%{l_make} %{l_mflags -O} + +%install +rm -rf $RPM_BUILD_ROOT +%{l_make} %{l_mflags} install AM_MAKEFLAGS="DESTDIR=$RPM_BUILD_ROOT" +strip $RPM_BUILD_ROOT%{l_prefix}/bin/* >/dev/null 2>&1 || true +rm -f $RPM_BUILD_ROOT%{l_prefix}/info/dir >/dev/null 2>&1 || true +rm -rf $RPM_BUILD_
[CVS] OpenPKG: openpkg-src/swig/ swig.spec
OpenPKG CVS Repository http://cvs.openpkg.org/ Server: cvs.openpkg.org Name: Ralf S. Engelschall Root: /v/openpkg/cvs Email: r...@openpkg.org Module: openpkg-src Date: 14-Jun-2009 19:49:42 Branch: HEAD Handle: 2009061418494100 Modified files: openpkg-src/swigswig.spec Log: modifying package: swig-1.3.39 20090327 -> 20090614 Summary: RevisionChanges Path 1.66+2 -1 openpkg-src/swig/swig.spec patch -p0 <<'@@ .' Index: openpkg-src/swig/swig.spec $ cvs diff -u -r1.65 -r1.66 swig.spec --- openpkg-src/swig/swig.spec18 Apr 2009 13:16:24 - 1.65 +++ openpkg-src/swig/swig.spec14 Jun 2009 17:49:41 - 1.66 @@ -32,7 +32,7 @@ Group:CompilerCompiler License: BSD-style Version: 1.3.39 -Release: 20090327 +Release: 20090614 # list of sources Source0: http://switch.dl.sourceforge.net/sourceforge/swig/swig-%{version}.tar.gz @@ -72,6 +72,7 @@ CXXFLAGS="%{l_cxxflags -O}" \ ./configure \ --prefix=%{l_prefix} \ +--mandir=%{l_prefix}/man \ --with-swiglibdir=%{l_prefix}/libexec/swig \ --disable-shared \ --without-x @@ . __ OpenPKG http://openpkg.org CVS Repository Commit List openpkg-cvs@openpkg.org
[CVS] OpenPKG: openpkg-src/lesstif/ lesstif.spec
OpenPKG CVS Repository http://cvs.openpkg.org/ Server: cvs.openpkg.org Name: Ralf S. Engelschall Root: /v/openpkg/cvs Email: r...@openpkg.org Module: openpkg-src Date: 14-Jun-2009 19:49:12 Branch: HEAD Handle: 2009061418491200 Modified files: openpkg-src/lesstif lesstif.spec Log: modifying package: lesstif-0.95.2 20090608 -> 20090614 Summary: RevisionChanges Path 1.42+2 -1 openpkg-src/lesstif/lesstif.spec patch -p0 <<'@@ .' Index: openpkg-src/lesstif/lesstif.spec $ cvs diff -u -r1.41 -r1.42 lesstif.spec --- openpkg-src/lesstif/lesstif.spec 8 Jun 2009 08:13:31 - 1.41 +++ openpkg-src/lesstif/lesstif.spec 14 Jun 2009 17:49:12 - 1.42 @@ -32,7 +32,7 @@ Group:XWindow License: LGPL Version: 0.95.2 -Release: 20090608 +Release: 20090614 # list of sources Source0: http://switch.dl.sourceforge.net/lesstif/lesstif-%{version}.tar.gz @@ -71,6 +71,7 @@ LDFLAGS="%{l_ldflags}" \ ./configure \ --prefix=%{l_prefix} \ +--mandir=%{l_prefix}/man \ --with-x \ --x-includes=`%{l_rc} --query x11_incdir` \ --x-libraries=`%{l_rc} --query x11_libdir` \ @@ . __ OpenPKG http://openpkg.org CVS Repository Commit List openpkg-cvs@openpkg.org
[CVS] OpenPKG: openpkg-src/cscope/ cscope.spec
OpenPKG CVS Repository http://cvs.openpkg.org/ Server: cvs.openpkg.org Name: Ralf S. Engelschall Root: /v/openpkg/cvs Email: r...@openpkg.org Module: openpkg-src Date: 14-Jun-2009 19:48:33 Branch: HEAD Handle: 2009061418483300 Modified files: openpkg-src/cscope cscope.spec Log: modifying package: cscope-15.7a 20090501 -> 20090614 Summary: RevisionChanges Path 1.26+2 -1 openpkg-src/cscope/cscope.spec patch -p0 <<'@@ .' Index: openpkg-src/cscope/cscope.spec $ cvs diff -u -r1.25 -r1.26 cscope.spec --- openpkg-src/cscope/cscope.spec30 Apr 2009 22:07:19 - 1.25 +++ openpkg-src/cscope/cscope.spec14 Jun 2009 17:48:33 - 1.26 @@ -32,7 +32,7 @@ Group:Development License: BSD Version: 15.7a -Release: 20090501 +Release: 20090614 # list of sources Source0: http://switch.dl.sourceforge.net/sourceforge/cscope/cscope-%{version}.tar.bz2 @@ -71,6 +71,7 @@ GREP="grep" \ ./configure \ --prefix=%{l_prefix} \ +--mandir=%{l_prefix}/man \ --with-ncurses=%{l_prefix} \ --with-bison \ --with-flex @@ . __ OpenPKG http://openpkg.org CVS Repository Commit List openpkg-cvs@openpkg.org
[CVS] OpenPKG: openpkg-src/imagemagick/ imagemagick.spec
OpenPKG CVS Repository http://cvs.openpkg.org/ Server: cvs.openpkg.org Name: Ralf S. Engelschall Root: /v/openpkg/cvs Email: r...@openpkg.org Module: openpkg-src Date: 14-Jun-2009 19:47:36 Branch: HEAD Handle: 2009061418473600 Modified files: openpkg-src/imagemagick imagemagick.spec Log: upgrading package: imagemagick 6.5.3.5 -> 6.5.3.6 Summary: RevisionChanges Path 1.575 +2 -2 openpkg-src/imagemagick/imagemagick.spec patch -p0 <<'@@ .' Index: openpkg-src/imagemagick/imagemagick.spec $ cvs diff -u -r1.574 -r1.575 imagemagick.spec --- openpkg-src/imagemagick/imagemagick.spec 12 Jun 2009 19:03:53 - 1.574 +++ openpkg-src/imagemagick/imagemagick.spec 14 Jun 2009 17:47:36 - 1.575 @@ -23,7 +23,7 @@ # package version %define V_major 6.5.3 -%define V_minor 5 +%define V_minor 6 %define V_dist %{V_major}-%{V_minor} %define V_opkg %{V_major}.%{V_minor} @@ -38,7 +38,7 @@ Group:Graphics License: ImageMagick Version: %{V_opkg} -Release: 20090612 +Release: 20090614 # package options %option with_perl no @@ . __ OpenPKG http://openpkg.org CVS Repository Commit List openpkg-cvs@openpkg.org
[CVS] OpenPKG: openpkg-src/automake/ automake.spec
OpenPKG CVS Repository http://cvs.openpkg.org/ Server: cvs.openpkg.org Name: Ralf S. Engelschall Root: /v/openpkg/cvs Email: r...@openpkg.org Module: openpkg-src Date: 14-Jun-2009 19:47:07 Branch: HEAD Handle: 2009061418470600 Modified files: openpkg-src/automakeautomake.spec Log: modifying package: automake-1.11 20090528 -> 20090614 Summary: RevisionChanges Path 1.80+2 -1 openpkg-src/automake/automake.spec patch -p0 <<'@@ .' Index: openpkg-src/automake/automake.spec $ cvs diff -u -r1.79 -r1.80 automake.spec --- openpkg-src/automake/automake.spec28 May 2009 20:51:29 - 1.79 +++ openpkg-src/automake/automake.spec14 Jun 2009 17:47:06 - 1.80 @@ -32,7 +32,7 @@ Group:Building License: GPL Version: 1.11 -Release: 20090528 +Release: 20090614 # list of sources Source0: ftp://ftp.gnu.org/gnu/automake/automake-%{version}.tar.gz @@ -69,6 +69,7 @@ CFLAGS="%{l_cflags -O}" \ ./configure \ --prefix=%{l_prefix} \ +--mandir=%{l_prefix}/man \ --infodir=%{l_prefix}/info %{l_make} %{l_mflags} @@ . __ OpenPKG http://openpkg.org CVS Repository Commit List openpkg-cvs@openpkg.org
[CVS] OpenPKG: openpkg-src/openldap/ openldap.spec
OpenPKG CVS Repository http://cvs.openpkg.org/ Server: cvs.openpkg.org Name: Ralf S. Engelschall Root: /v/openpkg/cvs Email: r...@openpkg.org Module: openpkg-src Date: 14-Jun-2009 19:46:38 Branch: HEAD Handle: 2009061418463700 Modified files: openpkg-src/openldapopenldap.spec Log: modifying package: openldap-2.4.16 20090516 -> 20090614 Summary: RevisionChanges Path 1.228 +3 -1 openpkg-src/openldap/openldap.spec patch -p0 <<'@@ .' Index: openpkg-src/openldap/openldap.spec $ cvs diff -u -r1.227 -r1.228 openldap.spec --- openpkg-src/openldap/openldap.spec16 May 2009 11:07:25 - 1.227 +++ openpkg-src/openldap/openldap.spec14 Jun 2009 17:46:37 - 1.228 @@ -32,7 +32,7 @@ Group:LDAP License: GPL Version: 2.4.16 -Release: 20090516 +Release: 20090614 # package options %option with_server yes @@ -116,6 +116,8 @@ export LIBS="" export ARGS="" ARGS="$ARGS --prefix=%{l_prefix}" +ARGS="$ARGS --mandir=%{l_prefix}/man" +ARGS="$ARGS --infodir=%{l_prefix}/info" ARGS="$ARGS --libexecdir=%{l_prefix}/libexec/openldap" ARGS="$ARGS --localstatedir=%{l_prefix}/var/openldap" ARGS="$ARGS --enable-syslog" @@ . __ OpenPKG http://openpkg.org CVS Repository Commit List openpkg-cvs@openpkg.org
[CVS] OpenPKG: openpkg-src/lcdf-typetools/ lcdf-typetools.spec
OpenPKG CVS Repository http://cvs.openpkg.org/ Server: cvs.openpkg.org Name: Ralf S. Engelschall Root: /v/openpkg/cvs Email: r...@openpkg.org Module: openpkg-src Date: 14-Jun-2009 19:44:19 Branch: HEAD Handle: 2009061418441900 Modified files: openpkg-src/lcdf-typetools lcdf-typetools.spec Log: upgrading package: lcdf-typetools 2.78 -> 2.79 Summary: RevisionChanges Path 1.58+2 -2 openpkg-src/lcdf-typetools/lcdf-typetools.spec patch -p0 <<'@@ .' Index: openpkg-src/lcdf-typetools/lcdf-typetools.spec $ cvs diff -u -r1.57 -r1.58 lcdf-typetools.spec --- openpkg-src/lcdf-typetools/lcdf-typetools.spec18 Apr 2009 13:11:43 - 1.57 +++ openpkg-src/lcdf-typetools/lcdf-typetools.spec14 Jun 2009 17:44:19 - 1.58 @@ -22,7 +22,7 @@ ## # package version -%define V_typetools 2.78 +%define V_typetools 2.79 %define V_t1utils 1.34 %define V_autofont0.96 %define V_fontools20070807 @@ -38,7 +38,7 @@ Group:Typesetting License: GPL+MIT-style Version: %{V_typetools} -Release: 20090407 +Release: 20090614 # list of sources Source0: http://www.lcdf.org/type/lcdf-typetools-%{V_typetools}.tar.gz @@ . __ OpenPKG http://openpkg.org CVS Repository Commit List openpkg-cvs@openpkg.org
[CVS] OpenPKG: openpkg-src/indent/ indent.spec
OpenPKG CVS Repository http://cvs.openpkg.org/ Server: cvs.openpkg.org Name: Ralf S. Engelschall Root: /v/openpkg/cvs Email: r...@openpkg.org Module: openpkg-src Date: 14-Jun-2009 19:44:17 Branch: HEAD Handle: 2009061418441700 Modified files: openpkg-src/indent indent.spec Log: modifying package: indent-2.2.10 20090216 -> 20090614 Summary: RevisionChanges Path 1.44+3 -1 openpkg-src/indent/indent.spec patch -p0 <<'@@ .' Index: openpkg-src/indent/indent.spec $ cvs diff -u -r1.43 -r1.44 indent.spec --- openpkg-src/indent/indent.spec18 Apr 2009 13:11:17 - 1.43 +++ openpkg-src/indent/indent.spec14 Jun 2009 17:44:17 - 1.44 @@ -32,7 +32,7 @@ Group:Development License: GPL Version: 2.2.10 -Release: 20090216 +Release: 20090614 # list of sources Source0: ftp://ftp.gnu.org/gnu/indent/indent-%{version}.tar.gz @@ -74,6 +74,8 @@ LIBS="-lintl -liconv" \ ./configure \ --prefix=%{l_prefix} \ +--mandir=%{l_prefix}/man \ +--infodir=%{l_prefix}/info \ --disable-nls %{l_make} %{l_mflags} @@ . __ OpenPKG http://openpkg.org CVS Repository Commit List openpkg-cvs@openpkg.org
[CVS] OpenPKG: openpkg-src/drupal-theme-misc/ drupal-theme-misc.spec
OpenPKG CVS Repository http://cvs.openpkg.org/ Server: cvs.openpkg.org Name: Ralf S. Engelschall Root: /v/openpkg/cvs Email: r...@openpkg.org Module: openpkg-src Date: 14-Jun-2009 19:44:09 Branch: HEAD Handle: 2009061418440900 Modified files: openpkg-src/drupal-theme-misc drupal-theme-misc.spec Log: modifying package: drupal-theme-misc-6.x 20090612 -> 20090614 Summary: RevisionChanges Path 1.6 +2 -2 openpkg-src/drupal-theme-misc/drupal-theme-misc.spec patch -p0 <<'@@ .' Index: openpkg-src/drupal-theme-misc/drupal-theme-misc.spec $ cvs diff -u -r1.5 -r1.6 drupal-theme-misc.spec --- openpkg-src/drupal-theme-misc/drupal-theme-misc.spec 12 Jun 2009 19:00:03 - 1.5 +++ openpkg-src/drupal-theme-misc/drupal-theme-misc.spec 14 Jun 2009 17:44:09 - 1.6 @@ -34,7 +34,7 @@ %define V_theme_framework6.x-2.4 %define V_theme_fourseasons 6.x-2.0 %define V_theme_nista6.x-4.8 -%define V_theme_sky 6.x-3.0 +%define V_theme_sky 6.x-3.1 %define V_theme_zen 6.x-1.0 # package information @@ -48,7 +48,7 @@ Group:CMS License: GPL Version: %{V_drupal} -Release: 20090612 +Release: 20090614 # list of sources Source0: http://ftp.drupal.org/files/projects/alek_2_0-%{V_theme_alek_2_0}.tar.gz @@ . __ OpenPKG http://openpkg.org CVS Repository Commit List openpkg-cvs@openpkg.org
[CVS] OpenPKG: openpkg-src/global/ global.spec
OpenPKG CVS Repository http://cvs.openpkg.org/ Server: cvs.openpkg.org Name: Ralf S. Engelschall Root: /v/openpkg/cvs Email: r...@openpkg.org Module: openpkg-src Date: 14-Jun-2009 19:44:00 Branch: HEAD Handle: 200906141844 Modified files: openpkg-src/global global.spec Log: modifying package: global-5.7.5 20090314 -> 20090614 Summary: RevisionChanges Path 1.42+4 -2 openpkg-src/global/global.spec patch -p0 <<'@@ .' Index: openpkg-src/global/global.spec $ cvs diff -u -r1.41 -r1.42 global.spec --- openpkg-src/global/global.spec18 Apr 2009 13:10:46 - 1.41 +++ openpkg-src/global/global.spec14 Jun 2009 17:44:00 - 1.42 @@ -32,7 +32,7 @@ Group:Development License: GPL Version: 5.7.5 -Release: 20090314 +Release: 20090614 # list of sources Source0: ftp://ftp.gnu.org/pub/gnu/global/global-%{version}.tar.gz @@ -69,7 +69,9 @@ CPPFLAGS="%{l_cppflags}" \ LDFLAGS="%{l_ldflags}" \ ./configure \ ---prefix=%{l_prefix} +--prefix=%{l_prefix} \ +--mandir=%{l_prefix}/man \ +--infodir=%{l_prefix}/info %{l_make} %{l_mflags -O} %install @@ . __ OpenPKG http://openpkg.org CVS Repository Commit List openpkg-cvs@openpkg.org
[CVS] OpenPKG: openpkg-src/gnuplot/ gnuplot.spec
OpenPKG CVS Repository http://cvs.openpkg.org/ Server: cvs.openpkg.org Name: Ralf S. Engelschall Root: /v/openpkg/cvs Email: r...@openpkg.org Module: openpkg-src Date: 14-Jun-2009 19:43:35 Branch: HEAD Handle: 2009061418433500 Modified files: openpkg-src/gnuplot gnuplot.spec Log: modifying package: gnuplot-4.2.5 20090608 -> 20090614 Summary: RevisionChanges Path 1.39+3 -1 openpkg-src/gnuplot/gnuplot.spec patch -p0 <<'@@ .' Index: openpkg-src/gnuplot/gnuplot.spec $ cvs diff -u -r1.38 -r1.39 gnuplot.spec --- openpkg-src/gnuplot/gnuplot.spec 8 Jun 2009 08:15:59 - 1.38 +++ openpkg-src/gnuplot/gnuplot.spec 14 Jun 2009 17:43:35 - 1.39 @@ -32,7 +32,7 @@ Group:Diagram License: GPL Version: 4.2.5 -Release: 20090608 +Release: 20090614 # package options %option with_x11 no @@ -79,6 +79,8 @@ LIBS="-lz" \ ./configure \ --prefix=%{l_prefix} \ +--mandir=%{l_prefix}/man \ +--infodir=%{l_prefix}/info \ --with-readline=%{l_prefix} \ --with-png=%{l_prefix} \ --with-gd=%{l_prefix} \ @@ . __ OpenPKG http://openpkg.org CVS Repository Commit List openpkg-cvs@openpkg.org
[CVS] OpenPKG: openpkg-src/gengetopt/ gengetopt.spec
OpenPKG CVS Repository http://cvs.openpkg.org/ Server: cvs.openpkg.org Name: Ralf S. Engelschall Root: /v/openpkg/cvs Email: r...@openpkg.org Module: openpkg-src Date: 14-Jun-2009 19:42:20 Branch: HEAD Handle: 2009061418422000 Modified files: openpkg-src/gengetopt gengetopt.spec Log: upgrading package: gengetopt 2.22.1 -> 2.22.2 Summary: RevisionChanges Path 1.11+2 -2 openpkg-src/gengetopt/gengetopt.spec patch -p0 <<'@@ .' Index: openpkg-src/gengetopt/gengetopt.spec $ cvs diff -u -r1.10 -r1.11 gengetopt.spec --- openpkg-src/gengetopt/gengetopt.spec 18 Apr 2009 13:10:38 - 1.10 +++ openpkg-src/gengetopt/gengetopt.spec 14 Jun 2009 17:42:20 - 1.11 @@ -31,8 +31,8 @@ Class:EVAL Group:CompilerCompiler License: GPL -Version: 2.22.1 -Release: 20080427 +Version: 2.22.2 +Release: 20090614 # list of sources Source0: ftp://ftp.gnu.org/gnu/gengetopt/gengetopt-%{version}.tar.gz @@ . __ OpenPKG http://openpkg.org CVS Repository Commit List openpkg-cvs@openpkg.org
[CVS] OpenPKG: openpkg-src/perl-sys/ perl-sys.spec
OpenPKG CVS Repository http://cvs.openpkg.org/ Server: cvs.openpkg.org Name: Ralf S. Engelschall Root: /v/openpkg/cvs Email: r...@openpkg.org Module: openpkg-src Date: 14-Jun-2009 19:42:17 Branch: HEAD Handle: 2009061418421700 Modified files: openpkg-src/perl-sysperl-sys.spec Log: modifying package: perl-sys-5.10.0 20090531 -> 20090614 Summary: RevisionChanges Path 1.257 +2 -2 openpkg-src/perl-sys/perl-sys.spec patch -p0 <<'@@ .' Index: openpkg-src/perl-sys/perl-sys.spec $ cvs diff -u -r1.256 -r1.257 perl-sys.spec --- openpkg-src/perl-sys/perl-sys.spec31 May 2009 18:00:26 - 1.256 +++ openpkg-src/perl-sys/perl-sys.spec14 Jun 2009 17:42:17 - 1.257 @@ -24,7 +24,7 @@ # versions of individual parts %define V_perl5.10.0 %define V_unix_syslog 1.1 -%define V_archive_tar 1.48 +%define V_archive_tar 1.52 %define V_archive_zip 1.26 %define V_archive_cpio0.07 %define V_expect 1.21 @@ -72,7 +72,7 @@ Group:Perl License: GPL/Artistic Version: %{V_perl} -Release: 20090531 +Release: 20090614 # package options %option with_pam no @@ . __ OpenPKG http://openpkg.org CVS Repository Commit List openpkg-cvs@openpkg.org
[CVS] OpenPKG: openpkg-src/gengen/ gengen.spec
OpenPKG CVS Repository http://cvs.openpkg.org/ Server: cvs.openpkg.org Name: Ralf S. Engelschall Root: /v/openpkg/cvs Email: r...@openpkg.org Module: openpkg-src Date: 14-Jun-2009 19:42:17 Branch: HEAD Handle: 2009061418421700 Modified files: openpkg-src/gengen gengen.spec Log: upgrading package: gengen 1.2 -> 1.3 Summary: RevisionChanges Path 1.8 +2 -2 openpkg-src/gengen/gengen.spec patch -p0 <<'@@ .' Index: openpkg-src/gengen/gengen.spec $ cvs diff -u -r1.7 -r1.8 gengen.spec --- openpkg-src/gengen/gengen.spec18 Apr 2009 13:10:37 - 1.7 +++ openpkg-src/gengen/gengen.spec14 Jun 2009 17:42:17 - 1.8 @@ -31,8 +31,8 @@ Class:EVAL Group:CompilerCompiler License: GPL -Version: 1.2 -Release: 20080101 +Version: 1.3 +Release: 20090614 # list of sources Source0: ftp://ftp.gnu.org/gnu/gengen/gengen-%{version}.tar.gz @@ . __ OpenPKG http://openpkg.org CVS Repository Commit List openpkg-cvs@openpkg.org
[CVS] OpenPKG: openpkg-src/bazaar/ bazaar.spec
OpenPKG CVS Repository http://cvs.openpkg.org/ Server: cvs.openpkg.org Name: Ralf S. Engelschall Root: /v/openpkg/cvs Email: r...@openpkg.org Module: openpkg-src Date: 14-Jun-2009 19:42:01 Branch: HEAD Handle: 200906141842 Modified files: openpkg-src/bazaar bazaar.spec Log: modifying package: bazaar-1.15.1 20090610 -> 20090614 Summary: RevisionChanges Path 1.68+2 -2 openpkg-src/bazaar/bazaar.spec patch -p0 <<'@@ .' Index: openpkg-src/bazaar/bazaar.spec $ cvs diff -u -r1.67 -r1.68 bazaar.spec --- openpkg-src/bazaar/bazaar.spec10 Jun 2009 18:23:10 - 1.67 +++ openpkg-src/bazaar/bazaar.spec14 Jun 2009 17:42:00 - 1.68 @@ -24,7 +24,7 @@ # package version %define V_bzr_major 1.15 %define V_bzr_full 1.15.1 -%define V_bzrtools 1.15.0 +%define V_bzrtools 1.16.0 # package information Name: bazaar @@ -37,7 +37,7 @@ Group:SCM License: GPL Version: %{V_bzr_full} -Release: 20090610 +Release: 20090614 # list of sources Source0: http://launchpad.net/bzr/%{V_bzr_major}/%{V_bzr_full}/+download/bzr-%{V_bzr_full}.tar.gz @@ . __ OpenPKG http://openpkg.org CVS Repository Commit List openpkg-cvs@openpkg.org
[CVS] OpenPKG: openpkg-src/ncurses/ ncurses.spec
OpenPKG CVS Repository http://cvs.openpkg.org/ Server: cvs.openpkg.org Name: Ralf S. Engelschall Root: /v/openpkg/cvs Email: r...@openpkg.org Module: openpkg-src Date: 14-Jun-2009 19:37:49 Branch: HEAD Handle: 2009061418374900 Modified files: openpkg-src/ncurses ncurses.spec Log: upgrading package: ncurses 5.7.20090607 -> 5.7.20090613 Summary: RevisionChanges Path 1.426 +5 -3 openpkg-src/ncurses/ncurses.spec patch -p0 <<'@@ .' Index: openpkg-src/ncurses/ncurses.spec $ cvs diff -u -r1.425 -r1.426 ncurses.spec --- openpkg-src/ncurses/ncurses.spec 8 Jun 2009 07:26:39 - 1.425 +++ openpkg-src/ncurses/ncurses.spec 14 Jun 2009 17:37:49 - 1.426 @@ -55,9 +55,10 @@ %define V_patch30 20090530 %define V_patch31 20090606 %define V_patch32 20090607 +%define V_patch33 20090613 %define V_patchB %{V_patch1} -%define V_patchL %{V_patch32} -%define V_patches 32 +%define V_patchL %{V_patch33} +%define V_patches 33 # package information Name: ncurses @@ -70,7 +71,7 @@ Group:Terminal License: MIT-style Version: %{V_base}.%{V_patchL} -Release: 20090608 +Release: 20090614 # list of sources Source0: ftp://invisible-island.net/ncurses/ncurses-%{V_base}.tar.gz @@ -106,6 +107,7 @@ Patch30: ftp://invisible-island.net/ncurses/%{V_base}/ncurses-%{V_base}-%{V_patch30}.patch.gz Patch31: ftp://invisible-island.net/ncurses/%{V_base}/ncurses-%{V_base}-%{V_patch31}.patch.gz Patch32: ftp://invisible-island.net/ncurses/%{V_base}/ncurses-%{V_base}-%{V_patch32}.patch.gz +Patch33: ftp://invisible-island.net/ncurses/%{V_base}/ncurses-%{V_base}-%{V_patch33}.patch.gz Patch100: ncurses.patch # build information @@ . __ OpenPKG http://openpkg.org CVS Repository Commit List openpkg-cvs@openpkg.org
[CVS] OpenPKG: openpkg-src/mathomatic/ mathomatic.spec
OpenPKG CVS Repository http://cvs.openpkg.org/ Server: cvs.openpkg.org Name: Ralf S. Engelschall Root: /v/openpkg/cvs Email: r...@openpkg.org Module: openpkg-src Date: 14-Jun-2009 19:37:26 Branch: HEAD Handle: 2009061418372500 Modified files: openpkg-src/mathomatic mathomatic.spec Log: upgrading package: mathomatic 14.4.4 -> 14.4.5 Summary: RevisionChanges Path 1.160 +2 -2 openpkg-src/mathomatic/mathomatic.spec patch -p0 <<'@@ .' Index: openpkg-src/mathomatic/mathomatic.spec $ cvs diff -u -r1.159 -r1.160 mathomatic.spec --- openpkg-src/mathomatic/mathomatic.spec3 Jun 2009 20:28:38 - 1.159 +++ openpkg-src/mathomatic/mathomatic.spec14 Jun 2009 17:37:25 - 1.160 @@ -31,8 +31,8 @@ Class:BASE Group:Algorithm License: Open Source -Version: 14.4.4 -Release: 20090603 +Version: 14.4.5 +Release: 20090614 # list of sources Source0: http://www.panix.com/~gesslein/mathomatic-%{version}.tar.bz2 @@ . __ OpenPKG http://openpkg.org CVS Repository Commit List openpkg-cvs@openpkg.org
[CVS] OpenPKG: openpkg-src/mpg123/ mpg123.spec
OpenPKG CVS Repository http://cvs.openpkg.org/ Server: cvs.openpkg.org Name: Ralf S. Engelschall Root: /v/openpkg/cvs Email: r...@openpkg.org Module: openpkg-src Date: 14-Jun-2009 19:37:23 Branch: HEAD Handle: 2009061418372300 Modified files: openpkg-src/mpg123 mpg123.spec Log: upgrading package: mpg123 1.8.0 -> 1.8.1 Summary: RevisionChanges Path 1.85+2 -2 openpkg-src/mpg123/mpg123.spec patch -p0 <<'@@ .' Index: openpkg-src/mpg123/mpg123.spec $ cvs diff -u -r1.84 -r1.85 mpg123.spec --- openpkg-src/mpg123/mpg123.spec11 Jun 2009 08:32:28 - 1.84 +++ openpkg-src/mpg123/mpg123.spec14 Jun 2009 17:37:23 - 1.85 @@ -31,8 +31,8 @@ Class:PLUS Group:Audio License: GPL -Version: 1.8.0 -Release: 20090611 +Version: 1.8.1 +Release: 20090614 # list of sources Source0: http://www.mpg123.de/download/mpg123-%{version}.tar.bz2 @@ . __ OpenPKG http://openpkg.org CVS Repository Commit List openpkg-cvs@openpkg.org
[CVS] OpenPKG: openpkg-src/sslh/ fsl.sslh rc.sslh sslh.patch sslh.spec
23,10 @@ + all: sslh $(MAN) + + sslh: sslh.c Makefile +-$(CC) $(CFLAGS) -D'VERSION=$(VERSION)' -o sslh sslh.c $(LIBS) +-strip sslh ++$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -o sslh sslh.c $(LIBS) + + $(MAN): sslh.pod Makefile +-pod2man --section=8 --release=$(VERSION) --center=" " sslh.pod | gzip -9 - > $(MAN) ++pod2man --section=8 --release=$(VERSION) --center=" " sslh.pod >$(MAN) + + # generic install: install binary and man page + install: sslh $(MAN) @@ . patch -p0 <<'@@ .' Index: openpkg-src/sslh/sslh.spec $ cvs diff -u -r0 -r1.1 sslh.spec --- /dev/null 2009-06-14 09:57:28 +0200 +++ sslh.spec 2009-06-14 09:57:29 +0200 @@ -0,0 +1,107 @@ +## +## sslh.spec -- OpenPKG RPM Package Specification +## Copyright (c) 2000-2009 OpenPKG Foundation e.V. <http://openpkg.net/> +## +## Permission to use, copy, modify, and distribute this software for +## any purpose with or without fee is hereby granted, provided that +## the above copyright notice and this permission notice appear in all +## copies. +## +## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED +## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR +## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF +## USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT +## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +## SUCH DAMAGE. +## + +# package information +Name: sslh +Summary: SSL/SSH Server Multiplexer +URL: http://www.rutschle.net/tech/sslh.shtml +Vendor: Yves Rutschle +Packager: OpenPKG Foundation e.V. +Distribution: OpenPKG Community +Class:EVAL +Group:Networking +License: GPL +Version: 1.6i +Release: 20090614 + +# package options +%option with_fsl yes + +# list of sources +Source0: http://www.rutschle.net/tech/sslh-%{version}.tar.gz +Source1: rc.sslh +Source2: fsl.sslh +Patch0: sslh.patch + +# build information +Prefix: %{l_prefix} +BuildRoot:%{l_buildroot} +BuildPreReq: OpenPKG, openpkg >= 20060823, make, gcc, perl +PreReq: OpenPKG, openpkg >= 20060823 +%if "%{with_fsl}" == "yes" +BuildPreReq: fsl +PreReq: fsl +%endif +AutoReq: no +AutoReqProv: no + +%description +sslh(8) lets one accept both HTTPS and SSH connections on the same +port. It makes it possible to connect to an SSH server on port 443 +(usually from inside a corporate firewall which does not allow +outgoing SSH connections, but outgoing HTTPS connections) while +still serving HTTPS on that same port. + +%track +prog sslh = { +version = %{version} +url = http://www.rutschle.net/tech/sslh.shtml +regex = sslh-(__VER__)\.tar\.gz +} + +%prep +%setup -q +%patch -p0 + +%build +%{l_make} %{l_mflags} \ +CC="%{l_cc}" \ +CFLAGS="%{l_cflags -O}" \ +LDFLAGS="%{l_ldflags} %{l_fsl_ldflags}" \ +LIBS="%{l_fsl_libs}" + +%install +rm -rf $RPM_BUILD_ROOT +%{l_shtool} mkdir -f -p -m 755 \ +$RPM_BUILD_ROOT%{l_prefix}/etc/fsl \ +$RPM_BUILD_ROOT%{l_prefix}/etc/rc.d \ +$RPM_BUILD_ROOT%{l_prefix}/sbin \ +$RPM_BUILD_ROOT%{l_prefix}/man/man8 \ +$RPM_BUILD_ROOT%{l_prefix}/var/sslh +%{l_shtool} install -c -s -m 755 \ +sslh $RPM_BUILD_ROOT%{l_prefix}/sbin/ +%{l_shtool} install -c -m 644 \ +sslh.8 $RPM_BUILD_ROOT%{l_prefix}/man/man8/ +%{l_shtool} install -c -m 755 %{l_value -s -a} \ +%{SOURCE rc.sslh} $RPM_BUILD_ROOT%{l_prefix}/etc/rc.d/ +%{l_shtool} install -c -m 644 %{l_value -s -a} \ +%{SOURCE fsl.sslh} $RPM_BUILD_ROOT%{l_prefix}/etc/fsl/ +%{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT \ +%{l_files_std} \ +'%attr(-,%{l_nusr},%{l_ngrp}) %{l_prefix}/var/sslh' + +%files -f files + +%clean +rm -rf $RPM_BUILD_ROOT + @@ . __ OpenPKG http://openpkg.org CVS Repository Commit List openpkg-cvs@openpkg.org