OpenPKG CVS Repository
http://cvs.openpkg.org/
____________________________________________________________________________
Server: cvs.openpkg.org Name: Ralf S. Engelschall
Root: /e/openpkg/cvs Email: [EMAIL PROTECTED]
Module: openpkg-src Date: 01-Jul-2004 17:53:54
Branch: HEAD Handle: -NONE-
Modified files:
openpkg-src/openpkg HISTORY man.sh openpkg.sh openpkg.spec
Log:
add support for openpkg-audit package
Summary:
Revision Changes Path
1.193 +1 -0 openpkg-src/openpkg/HISTORY
1.5 +3 -0 openpkg-src/openpkg/man.sh
1.9 +4 -0 openpkg-src/openpkg/openpkg.sh
1.342 +1 -1 openpkg-src/openpkg/openpkg.spec
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: openpkg-src/openpkg/HISTORY
============================================================================
$ cvs diff -u -r1.192 -r1.193 HISTORY
--- openpkg-src/openpkg/HISTORY 9 Jun 2004 11:48:21 -0000 1.192
+++ openpkg-src/openpkg/HISTORY 1 Jul 2004 15:53:53 -0000 1.193
@@ -2,6 +2,7 @@
2004
====
+20040701 add support for openpkg-audit package
20040609 add support for recognizing package class in old 1.3 Distribution headers
during building
20040609 start rc.openpkg jobs in background and as soon as possible (priority 0)
20040607 workaround NetBSD gcc 2.95 optimization problems by not using -O2 there
@@ .
patch -p0 <<'@@ .'
Index: openpkg-src/openpkg/man.sh
============================================================================
$ cvs diff -u -r1.4 -r1.5 man.sh
--- openpkg-src/openpkg/man.sh 28 Apr 2004 19:29:14 -0000 1.4
+++ openpkg-src/openpkg/man.sh 1 Jul 2004 15:53:53 -0000 1.5
@@ -59,6 +59,9 @@
if [ -d "${prefix}/libexec/openpkg-tools" ]; then
cmdpath="${prefix}/libexec/openpkg-tools:${cmdpath}"
fi
+if [ -d "${prefix}/libexec/openpkg-audit" ]; then
+ cmdpath="${prefix}/libexec/openpkg-audit:${cmdpath}"
+fi
if [ ".${openpkg_tools_cmdpath}" != . ]; then
cmdpath=`echo "${openpkg_tools_cmdpath}" | sed -e "s;@;${cmdpath};"`
fi
@@ .
patch -p0 <<'@@ .'
Index: openpkg-src/openpkg/openpkg.sh
============================================================================
$ cvs diff -u -r1.8 -r1.9 openpkg.sh
--- openpkg-src/openpkg/openpkg.sh 9 Apr 2004 10:24:06 -0000 1.8
+++ openpkg-src/openpkg/openpkg.sh 1 Jul 2004 15:53:53 -0000 1.9
@@ -99,6 +99,10 @@
# openpkg-tools package overrides
cmdpath="${openpkg_prefix}/libexec/openpkg-tools:${cmdpath}"
fi
+if [ -d "${openpkg_prefix}/libexec/openpkg-audit" ]; then
+ # openpkg-audit package overrides
+ cmdpath="${openpkg_prefix}/libexec/openpkg-audit:${cmdpath}"
+fi
if [ ".${openpkg_tools_cmdpath}" != . ]; then
# user supplied path overrides
cmdpath=`echo "${openpkg_tools_cmdpath}" | sed -e "s;@;${cmdpath};"`
@@ .
patch -p0 <<'@@ .'
Index: openpkg-src/openpkg/openpkg.spec
============================================================================
$ cvs diff -u -r1.341 -r1.342 openpkg.spec
--- openpkg-src/openpkg/openpkg.spec 9 Jun 2004 11:48:21 -0000 1.341
+++ openpkg-src/openpkg/openpkg.spec 1 Jul 2004 15:53:53 -0000 1.342
@@ -39,7 +39,7 @@
# o any cc(1)
# the package version/release
-%define V_openpkg 20040609
+%define V_openpkg 20040701
# the used software versions
%define V_rpm 4.2.1
@@ .
______________________________________________________________________
The OpenPKG Project www.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]