[CVS] RPM: rpm/scripts/ perl.req

2008-10-26 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   26-Oct-2008 10:50:54
  Branch: HEAD Handle: 2008102609505300

  Modified files:
rpm/scripts perl.req

  Log:
Improved handling of here-docs and POD sections ([EMAIL PROTECTED]).

  Summary:
RevisionChanges Path
1.20+16 -23 rpm/scripts/perl.req
  

  patch -p0 <<'@@ .'
  Index: rpm/scripts/perl.req
  
  $ cvs diff -u -r1.19 -r1.20 perl.req
  --- rpm/scripts/perl.req  26 Oct 2008 09:32:59 -  1.19
  +++ rpm/scripts/perl.req  26 Oct 2008 09:50:53 -  1.20
  @@ -79,15 +79,22 @@
 open(FILE, "<$file") || return;
 
 while () {
  -
  -# skip the "= <<" block
   
  -if ( ( m/^\s*\$(.*)\s*=\s*<<\s*["'](.*)['"]/) ||
  - ( m/^\s*\$(.*)\s*=\s*<<\s*(.*);/) ) {
  -  $tag = $2;
  -  while () {
  -( $_ =~ /^$tag/) && last;
  -  }
  +# skip the documentation
  +if ( /^ = (?: head\d | pod | item | over | back | (?: begin|end|for ) 
\s+\S+ ) \b/x ) {
  +$_ =  until /^=cut/ or eof;
  +next;
  +}
  +
  +# naively strip some comments... will screw m/\#/, m##, q##, qw##, qr##, 
etc, but these don't really matter for us 
  +s/(? until m/^\Q$tag\E\s*$/ or eof;
  +next;
   }
   
   # skip q{} quoted sections - just hope we don't have curly brackets
  @@ -96,21 +103,7 @@
   if ( m/^.*\Wq[qxwr]?\s*([\{\(\[#|\/])[^})\]#|\/]*$/ && ! 
m/^\s*(require|use)\s/ ) {
 $tag = $1;
 $tag =~ tr/{([/})]/;
  -  $_ =  until m/\Q$tag\E/;
  -}
  -
  -# skip the documentation
  -
  -# we should not need to have item in this if statement (it
  -# properly belongs in the over/back section) but people do not
  -# read the perldoc.
  -
  -if ( (m/^=(head[1-4]|pod|item)/) .. (m/^=(cut)/) ) {
  -  next;
  -}
  -
  -if ( (m/^=(over)/) .. (m/^=(back)/) ) {
  -  next;
  +  $_ =  until m/\Q$tag\E/ or eof;
   }
   
   # skip the data section
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: rpm/scripts/ perl.req

2008-10-26 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   26-Oct-2008 10:33:00
  Branch: HEAD Handle: 2008102609325900

  Modified files:
rpm/scripts perl.req

  Log:
- fix 'Failed dependencies: perl(\s+) is needed by rpm-build' - bug
reported on mailing list

  Summary:
RevisionChanges Path
1.19+1  -2  rpm/scripts/perl.req
  

  patch -p0 <<'@@ .'
  Index: rpm/scripts/perl.req
  
  $ cvs diff -u -r1.18 -r1.19 perl.req
  --- rpm/scripts/perl.req  20 Sep 2008 12:08:24 -  1.18
  +++ rpm/scripts/perl.req  26 Oct 2008 09:32:59 -  1.19
  @@ -131,8 +131,7 @@
   
   # handle "use base qw/ foo::bar baz::blah /;" and variations
   if (
  -m/^ \s*
  -   use \s+ base
  +m/^ \s* use \s+ base
   (?:  \s+ q[wq]? \s* ( [EMAIL PROTECTED]&*'"\/+=`~,.?-] ) \s* ( 
[\w:]+? (?: \s+[\w:]+? )*? ) \s* \1
  |
\s* ( ["'] ) ( [\w:]+? ) \3
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: rpm/scripts/ perl.req

2008-09-20 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   20-Sep-2008 14:08:24
  Branch: HEAD Handle: 2008092012082400

  Modified files:
rpm/scripts perl.req

  Log:
Fix:

use base qw($isa);

matching. ([EMAIL PROTECTED])

  Summary:
RevisionChanges Path
1.18+3  -3  rpm/scripts/perl.req
  

  patch -p0 <<'@@ .'
  Index: rpm/scripts/perl.req
  
  $ cvs diff -u -r1.17 -r1.18 perl.req
  --- rpm/scripts/perl.req  28 Aug 2008 11:51:55 -  1.17
  +++ rpm/scripts/perl.req  20 Sep 2008 12:08:24 -  1.18
  @@ -133,12 +133,12 @@
   if (
   m/^ \s*
  use \s+ base
  -   (?:  \s+ q[wq]? \s* ( [EMAIL PROTECTED]&*'"\/+=`~,.?-] ) \s* ( 
\S+? (?: \s+\S+? )*? ) \s* \1
  +(?:  \s+ q[wq]? \s* ( [EMAIL PROTECTED]&*'"\/+=`~,.?-] ) \s* ( 
[\w:]+? (?: \s+[\w:]+? )*? ) \s* \1
  |
  -\s* ( ["'] ) ( \S+? ) \3
  + \s* ( ["'] ) ( [\w:]+? ) \3
  |
   # qw[], qw(), qw<>, qw{} are handled here; lax, but who gives
  -\s+ q[wq]? \s* [\[({<] \s* ( \S+? (?: \s+\S+? )*? ) \s* 
[\])}>]
  + \s+ q[wq]? \s* [\[({<] \s* ( [\w:]+? (?: \s+[\w:]+? )*? ) \s* 
[\])}>]
  )
  \s* ;
  /x
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: rpm/scripts/ perl.req

2008-08-28 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   28-Aug-2008 13:51:55
  Branch: HEAD Handle: 2008082811515500

  Modified files:
rpm/scripts perl.req

  Log:
Skip multiline qw() sections a bit better ([EMAIL PROTECTED]).

  Summary:
RevisionChanges Path
1.17+2  -4  rpm/scripts/perl.req
  

  patch -p0 <<'@@ .'
  Index: rpm/scripts/perl.req
  
  $ cvs diff -u -r1.16 -r1.17 perl.req
  --- rpm/scripts/perl.req  26 Aug 2008 18:44:53 -  1.16
  +++ rpm/scripts/perl.req  28 Aug 2008 11:51:55 -  1.17
  @@ -95,10 +95,8 @@
   # marker, such as occurs right here. Draw the line somewhere.
   if ( m/^.*\Wq[qxwr]?\s*([\{\(\[#|\/])[^})\]#|\/]*$/ && ! 
m/^\s*(require|use)\s/ ) {
 $tag = $1;
  -  $tag =~ tr/{\(\[\#|\//})]#|\//;
  -  while () {
  -( $_ =~ m/\}/ ) && last;
  -  }
  +  $tag =~ tr/{([/})]/;
  +  $_ =  until m/\Q$tag\E/;
   }
   
   # skip the documentation
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: rpm/scripts/ perl.req

2008-08-26 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   26-Aug-2008 20:44:53
  Branch: HEAD Handle: 2008082618445300

  Modified files:
rpm/scripts perl.req

  Log:
Bugfix for statements like:
use base qw(DBIx::SearchBuilder RT::Base);

  Summary:
RevisionChanges Path
1.16+1  -1  rpm/scripts/perl.req
  

  patch -p0 <<'@@ .'
  Index: rpm/scripts/perl.req
  
  $ cvs diff -u -r1.15 -r1.16 perl.req
  --- rpm/scripts/perl.req  20 Aug 2008 20:07:56 -  1.15
  +++ rpm/scripts/perl.req  26 Aug 2008 18:44:53 -  1.16
  @@ -146,7 +146,7 @@
  /x
 )
   {
  -my @deps = ( $1 ? split /\s+/, $2 : $3 ? split /\s+/, $4 : $5 );
  + my @deps = ( $1 ? split /\s+/, $2 : $3 ? $4 : split /\s+/, $5 );
   for my $mod ( grep !exists $require{$_}, @deps ) {
   $require{$mod} = '';
   $line{$mod}= $_;
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: rpm/scripts/ perl.req

2008-08-20 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   20-Aug-2008 22:07:56
  Branch: HEAD Handle: 2008082020075600

  Modified files:
rpm/scripts perl.req

  Log:
Handle statements like: use base qw( Class::Accessor::Chained::Fast );
Patch by Radoslaw Zielinski .

  Summary:
RevisionChanges Path
1.15+23 -1  rpm/scripts/perl.req
  

  patch -p0 <<'@@ .'
  Index: rpm/scripts/perl.req
  
  $ cvs diff -u -r1.14 -r1.15 perl.req
  --- rpm/scripts/perl.req  25 May 2007 17:36:39 -  1.14
  +++ rpm/scripts/perl.req  20 Aug 2008 20:07:56 -  1.15
  @@ -131,7 +131,29 @@
 }
   }
   
  -if ( 
  +# handle "use base qw/ foo::bar baz::blah /;" and variations
  +if (
  +m/^ \s*
  +   use \s+ base
  +   (?:  \s+ q[wq]? \s* ( [EMAIL PROTECTED]&*'"\/+=`~,.?-] ) \s* ( 
\S+? (?: \s+\S+? )*? ) \s* \1
  +   |
  +\s* ( ["'] ) ( \S+? ) \3
  +   |
  +# qw[], qw(), qw<>, qw{} are handled here; lax, but who gives
  +\s+ q[wq]? \s* [\[({<] \s* ( \S+? (?: \s+\S+? )*? ) \s* 
[\])}>]
  +   )
  +   \s* ;
  +   /x
  +  )
  +{
  +my @deps = ( $1 ? split /\s+/, $2 : $3 ? split /\s+/, $4 : $5 );
  +for my $mod ( grep !exists $require{$_}, @deps ) {
  +$require{$mod} = '';
  +$line{$mod}= $_;
  +}
  +}
  +
  +elsif ( 
   
   # ouch could be in a eval, perhaps we do not want these since we catch
   # an exception they must not be required
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: rpm/tests/ Makefile.am

2008-07-31 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   01-Aug-2008 00:36:07
  Branch: HEAD Handle: 2008073122360700

  Modified files:
rpm/tests   Makefile.am

  Log:
Include ref/.alldigests

  Summary:
RevisionChanges Path
1.28+1  -1  rpm/tests/Makefile.am
  

  patch -p0 <<'@@ .'
  Index: rpm/tests/Makefile.am
  
  $ cvs diff -u -r1.27 -r1.28 Makefile.am
  --- rpm/tests/Makefile.am 30 Jul 2008 12:14:11 -  1.27
  +++ rpm/tests/Makefile.am 31 Jul 2008 22:36:07 -  1.28
  @@ -2,7 +2,7 @@
   
   AUTOMAKE_OPTIONS = 1.4 foreign
   
  -EXTRA_DIST = ref/*
  +EXTRA_DIST = ref/* ref/.alldigests
   SUBDIRS =
   
   macros = $(abs_top_builddir)/macros:$(testdir)/macros
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: rpm/rpmdb/ Makefile.am

2008-07-31 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   01-Aug-2008 00:23:33
  Branch: HEAD Handle: 2008073122233300

  Modified files:
rpm/rpmdb   Makefile.am

  Log:
Get stable sorting for make check.

  Summary:
RevisionChanges Path
1.104   +1  -1  rpm/rpmdb/Makefile.am
  

  patch -p0 <<'@@ .'
  Index: rpm/rpmdb/Makefile.am
  
  $ cvs diff -u -r1.103 -r1.104 Makefile.am
  --- rpm/rpmdb/Makefile.am 31 Jul 2008 16:58:56 -  1.103
  +++ rpm/rpmdb/Makefile.am 31 Jul 2008 22:23:33 -  1.104
  @@ -93,7 +93,7 @@
@echo '' >> $@
@echo '/[EMAIL PROTECTED]@*/ /[EMAIL PROTECTED]@*/' >> $@
@echo 'static const struct headerTagTableEntry_s _rpmTagTable[] = {' >> 
$@
  - ${AWK} '/[ \t](RPMTAG_[A-Z0-9]*)[ \t]+([0-9]*)/ && !/internal/ {tt = 
"NULL"; ta = "ANY"; if ($$5 == "c") {tt = "UINT8"; ta = "SCALAR"} if ($$5 == 
"c[]") {tt = "UINT8"; ta = "ARRAY"} if ($$5 == "h") {tt = "UINT16"; ta = 
"SCALAR"} if ($$5 == "h[]") {tt = "UINT16"; ta = "ARRAY"} if ($$5 == "i") {tt = 
"UINT32"; ta = "SCALAR"} if ($$5 == "i[]") {tt = "UINT32"; ta = "ARRAY"} if 
($$5 == "l") {tt = "UINT64"; ta = "SCALAR"} if ($$5 == "l[]") {tt = "UINT64"; 
ta = "ARRAY"} if ($$5 == "s") {tt = "STRING"; ta = "SCALAR"} if ($$5 == "s[]") 
{tt = "STRING_ARRAY"; ta = "ARRAY"} if ($$5 == "s{}") {tt = "I18NSTRING"; ta = 
"SCALAR"} if ($$5 == "x") {tt = "BIN"; ta = "SCALAR"} if ($$2 == "=") { 
printf("\t{ \"%s\",  %s  RPM_%s_TYPE + RPM_%s_RETURN_TYPE },\n", $$1, $$3, 
tt, ta) } else { printf("\t{ \"%s\",  %s, RPM_%s_TYPE + RPM_%s_RETURN_TYPE  
},\n", $$2, $$3, tt, ta) } }' < ${top_srcdir}/rpmdb/rpmtag.h | sort >> $@
  + ${AWK} '/[ \t](RPMTAG_[A-Z0-9]*)[ \t]+([0-9]*)/ && !/internal/ {tt = 
"NULL"; ta = "ANY"; if ($$5 == "c") {tt = "UINT8"; ta = "SCALAR"} if ($$5 == 
"c[]") {tt = "UINT8"; ta = "ARRAY"} if ($$5 == "h") {tt = "UINT16"; ta = 
"SCALAR"} if ($$5 == "h[]") {tt = "UINT16"; ta = "ARRAY"} if ($$5 == "i") {tt = 
"UINT32"; ta = "SCALAR"} if ($$5 == "i[]") {tt = "UINT32"; ta = "ARRAY"} if 
($$5 == "l") {tt = "UINT64"; ta = "SCALAR"} if ($$5 == "l[]") {tt = "UINT64"; 
ta = "ARRAY"} if ($$5 == "s") {tt = "STRING"; ta = "SCALAR"} if ($$5 == "s[]") 
{tt = "STRING_ARRAY"; ta = "ARRAY"} if ($$5 == "s{}") {tt = "I18NSTRING"; ta = 
"SCALAR"} if ($$5 == "x") {tt = "BIN"; ta = "SCALAR"} if ($$2 == "=") { 
printf("\t{ \"%s\",  %s  RPM_%s_TYPE + RPM_%s_RETURN_TYPE },\n", $$1, $$3, 
tt, ta) } else { printf("\t{ \"%s\",  %s, RPM_%s_TYPE + RPM_%s_RETURN_TYPE  
},\n", $$2, $$3, tt, ta) } }' < ${top_srcdir}/rpmdb/rpmtag.h | LC_ALL=C sort >> 
$@
@echo ' { NULL, 0, 0 }' >> $@
@echo '};' >> $@
@echo '' >> $@
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: rpm/rpmio/ RunGrepTest

2008-07-31 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   01-Aug-2008 00:12:37
  Branch: HEAD Handle: 2008073122123600

  Modified files:
rpm/rpmio   RunGrepTest

  Log:
Run rpmgrep pcre test only if rpmgrep built with PCRE support.

  Summary:
RevisionChanges Path
1.10+189 -178   rpm/rpmio/RunGrepTest
  

  patch -p0 <<'@@ .'
  Index: rpm/rpmio/RunGrepTest
  
  $ cvs diff -u -r1.9 -r1.10 RunGrepTest
  --- rpm/rpmio/RunGrepTest 2 Jun 2008 21:00:47 -   1.9
  +++ rpm/rpmio/RunGrepTest 31 Jul 2008 22:12:36 -  1.10
  @@ -28,6 +28,11 @@
 utf8=0
   fi
   
  +grepwithpcre=1
  +if $pcregrep --version 2>&1 | grep -q "without PCRE"; then
  +  grepwithpcre=0
  +fi
  +
   #rpmrepo=`pwd`/rpmrepo
   #if [ -x $rpmrepo ]; then
   #  echo "Testing rpmrepo features"
  @@ -108,256 +113,262 @@
   #  echo "Skipping rpmdigest tests: $rpmdigest is not executable"
   #fi
   
  -echo " "
  -echo "Testing pcregrep"
  -$pcregrep -V
  +if [ "$grepwithpcre" -gt 0 ]; then
   
  -cf="diff -ub"
  -valgrind=
  + echo " "
  + echo "Testing pcregrep"
  + $pcregrep -V
   
  -while [ $# -gt 0 ] ; do
  -  case $1 in
  -valgrind) valgrind="valgrind -q --leak-check=no";;
  -*) echo "Unknown argument $1"; exit 1;;
  -  esac
  -  shift
  -done
  + cf="diff -ub"
  + valgrind=
   
  -echo " Test 1 --" 
>testtry
  -(cd $srcdir; $valgrind $pcregrep PATTERN ./testdata/grepinput) >>testtry
  + while [ $# -gt 0 ] ; do
  + case $1 in
  + valgrind) valgrind="valgrind -q --leak-check=no";;
  + *) echo "Unknown argument $1"; exit 1;;
  + esac
  + shift
  + done
   
  + echo " Test 1 
--" >testtry
  + (cd $srcdir; $valgrind $pcregrep PATTERN ./testdata/grepinput) >>testtry
   
  -echo " Test 1 --" 
>testtry
  -(cd $srcdir; $valgrind $pcregrep PATTERN ./testdata/grepinput) >>testtry
   
  -echo " Test 2 --" 
>>testtry
  -(cd $srcdir; $valgrind $pcregrep '^PATTERN' ./testdata/grepinput) >>testtry
  + echo " Test 1 
--" >testtry
  + (cd $srcdir; $valgrind $pcregrep PATTERN ./testdata/grepinput) >>testtry
   
  -echo " Test 3 --" 
>>testtry
  -(cd $srcdir; $valgrind $pcregrep -in PATTERN ./testdata/grepinput) >>testtry
  + echo " Test 2 
--" >>testtry
  + (cd $srcdir; $valgrind $pcregrep '^PATTERN' ./testdata/grepinput) 
>>testtry
   
  -echo " Test 4 --" 
>>testtry
  -(cd $srcdir; $valgrind $pcregrep -ic PATTERN ./testdata/grepinput) >>testtry
  + echo " Test 3 
--" >>testtry
  + (cd $srcdir; $valgrind $pcregrep -in PATTERN ./testdata/grepinput) 
>>testtry
   
  -echo " Test 5 --" 
>>testtry
  -(cd $srcdir; $valgrind $pcregrep -in PATTERN ./testdata/grepinput 
./testdata/grepinputx) >>testtry
  + echo " Test 4 
--" >>testtry
  + (cd $srcdir; $valgrind $pcregrep -ic PATTERN ./testdata/grepinput) 
>>testtry
   
  -echo " Test 6 --" 
>>testtry
  -(cd $srcdir; $valgrind $pcregrep -inh PATTERN ./testdata/grepinput 
./testdata/grepinputx) >>testtry
  + echo " Test 5 
--" >>testtry
  + (cd $srcdir; $valgrind $pcregrep -in PATTERN ./testdata/grepinput 
./testdata/grepinputx) >>testtry
   
  -echo " Test 7 --" 
>>testtry
  -(cd $srcdir; $valgrind $pcregrep -i

[CVS] RPM: rpm/scripts/ brp-nobuildrootpath

2008-07-29 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   29-Jul-2008 22:49:30
  Branch: HEAD Handle: 2008072920493000

  Modified files:
rpm/scripts brp-nobuildrootpath

  Log:
Don't mv if sed fails.

  Summary:
RevisionChanges Path
1.4 +2  -2  rpm/scripts/brp-nobuildrootpath
  

  patch -p0 <<'@@ .'
  Index: rpm/scripts/brp-nobuildrootpath
  
  $ cvs diff -u -r1.3 -r1.4 brp-nobuildrootpath
  --- rpm/scripts/brp-nobuildrootpath   18 Jul 2007 00:39:18 -  1.3
  +++ rpm/scripts/brp-nobuildrootpath   29 Jul 2008 20:49:30 -  1.4
  @@ -14,8 +14,8 @@
   #
   for f in `find $RPM_BUILD_ROOT -type f -name \*.pc -o -name \*.la` ; do
   # -c to count the occurances, only proceed if >= 1
  -if [ `grep -c "${RPM_BUILD_ROOT}\/" "$f"` -ge 1 ]; then
  -sed -e "s|${RPM_BUILD_ROOT}/|/|g" "$f" > "$f.out"
  +if [ "`grep -c "${RPM_BUILD_ROOT}\/" "$f"`" -ge 1 ]; then
  +sed -e "s|${RPM_BUILD_ROOT}/|/|g" "$f" > "$f.out" && \
   mv -f "$f.out" "$f"
   fi
   done
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: rpm-5_1: rpm/lib/ depends.c

2008-07-29 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   29-Jul-2008 22:10:25
  Branch: rpm-5_1  Handle: 2008072920102500

  Modified files:   (Branch: rpm-5_1)
rpm/lib depends.c

  Log:
Need _RPMDB_INTERNAL after rpmdb.h change.

  Summary:
RevisionChanges Path
1.394.2.6   +1  -3  rpm/lib/depends.c
  

  patch -p0 <<'@@ .'
  Index: rpm/lib/depends.c
  
  $ cvs diff -u -r1.394.2.5 -r1.394.2.6 depends.c
  --- rpm/lib/depends.c 14 Jun 2008 15:48:15 -  1.394.2.5
  +++ rpm/lib/depends.c 29 Jul 2008 20:10:25 -  1.394.2.6
  @@ -15,9 +15,7 @@
   
   /* XXX CACHE_DEPENDENCY_RESULT deprecated, functionality being reimplemented 
*/
   #undef   CACHE_DEPENDENCY_RESULT
  -#if defined(CACHE_DEPNDENCY_RESULT)
  -#define  _RPMDB_INTERNAL /* XXX response cache needs dbiOpen et 
al. */
  -#endif
  +#define  _RPMDB_INTERNAL /* XXX response cache needs dbiOpen et 
al. DBT used below */
   #include "rpmdb.h"
   
   #define  _RPMEVR_INTERNAL
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: rpm/rpmdb/ Makefile.am rpmdb.h

2008-07-29 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   29-Jul-2008 18:50:30
  Branch: HEAD Handle: 2008072916503000

  Modified files:
rpm/rpmdb   Makefile.am rpmdb.h

  Log:
Use approach from 5.1 branch.

  Summary:
RevisionChanges Path
1.101   +1  -4  rpm/rpmdb/Makefile.am
1.76+7  -1  rpm/rpmdb/rpmdb.h
  

  patch -p0 <<'@@ .'
  Index: rpm/rpmdb/Makefile.am
  
  $ cvs diff -u -r1.100 -r1.101 Makefile.am
  --- rpm/rpmdb/Makefile.am 29 Jul 2008 14:54:30 -  1.100
  +++ rpm/rpmdb/Makefile.am 29 Jul 2008 16:50:30 -  1.101
  @@ -105,10 +105,7 @@
   if WITH_DB_INTERNAL
   my_DB_HEADER = $(top_builddir)/$(WITH_DB_SUBDIR)/db.h
   else
  -my_DB_HEADER = $(srcdir)/db.h
  -
  -$(my_DB_HEADER): $(srcdir)/db_emu.h
  - $(pkgincHEADERS_INSTALL) $(srcdir)/db_emu.h $(srcdir)/db.h
  +my_DB_HEADER = $(srcdir)/db_emu.h
   endif
   
   install-data-local:
  @@ .
  patch -p0 <<'@@ .'
  Index: rpm/rpmdb/rpmdb.h
  
  $ cvs diff -u -r1.75 -r1.76 rpmdb.h
  --- rpm/rpmdb/rpmdb.h 29 Jul 2008 14:54:30 -  1.75
  +++ rpm/rpmdb/rpmdb.h 29 Jul 2008 16:50:30 -  1.76
  @@ -10,7 +10,13 @@
   #include 
   #include 
   #include 
  -#include 
  +#if defined(_RPMDB_INTERNAL)
  +#if defined(WITH_DB)
  +#include "db.h"
  +#else
  +#include "db_emu.h"
  +#endif
  +#endif
   
   /[EMAIL PROTECTED]@*/
   /[EMAIL PROTECTED]@*/
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: rpm-5_1: rpm/rpmdb/ rpmdb.h

2008-07-29 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   29-Jul-2008 18:08:18
  Branch: rpm-5_1  Handle: 2008072916081800

  Modified files:   (Branch: rpm-5_1)
rpm/rpmdb   rpmdb.h

  Log:
It seems to be needed only internally. Unbreak header for external
apps.

  Summary:
RevisionChanges Path
1.73.2.2+2  -0  rpm/rpmdb/rpmdb.h
  

  patch -p0 <<'@@ .'
  Index: rpm/rpmdb/rpmdb.h
  
  $ cvs diff -u -r1.73.2.1 -r1.73.2.2 rpmdb.h
  --- rpm/rpmdb/rpmdb.h 5 Jun 2008 14:26:40 -   1.73.2.1
  +++ rpm/rpmdb/rpmdb.h 29 Jul 2008 16:08:18 -  1.73.2.2
  @@ -10,11 +10,13 @@
   #include 
   #include 
   #include 
  +#if defined(_RPMDB_INTERNAL)
   #if defined(WITH_DB)
   #include "db.h"
   #else
   #include "db_emu.h"
   #endif
  +#endif
   
   /[EMAIL PROTECTED]@*/
   /[EMAIL PROTECTED]@*/
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: rpm-5_1: rpm/ configure.ac

2008-07-29 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   29-Jul-2008 18:00:41
  Branch: rpm-5_1  Handle: 2008072916004100

  Modified files:   (Branch: rpm-5_1)
rpm configure.ac

  Log:
Explictly use AC_PROG_CXX to get @CXX@ subsitution in macros.in.

  Summary:
RevisionChanges Path
2.289.2.6   +1  -0  rpm/configure.ac
  

  patch -p0 <<'@@ .'
  Index: rpm/configure.ac
  
  $ cvs diff -u -r2.289.2.5 -r2.289.2.6 configure.ac
  --- rpm/configure.ac  18 Jul 2008 09:29:14 -  2.289.2.5
  +++ rpm/configure.ac  29 Jul 2008 16:00:41 -  2.289.2.6
  @@ -107,6 +107,7 @@
   
   AC_PROG_CC
   AC_PROG_CPP
  +AC_PROG_CXX
   
   AC_USE_SYSTEM_EXTENSIONS
   
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: rpm/ configure.ac

2008-07-29 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   29-Jul-2008 18:00:16
  Branch: HEAD Handle: 2008072916001500

  Modified files:
rpm configure.ac

  Log:
Explictly use AC_PROG_CXX to get @CXX@ subsitution in macros.in.

  Summary:
RevisionChanges Path
2.306   +1  -0  rpm/configure.ac
  

  patch -p0 <<'@@ .'
  Index: rpm/configure.ac
  
  $ cvs diff -u -r2.305 -r2.306 configure.ac
  --- rpm/configure.ac  28 Jul 2008 14:35:25 -  2.305
  +++ rpm/configure.ac  29 Jul 2008 16:00:15 -  2.306
  @@ -107,6 +107,7 @@
   
   AC_PROG_CC
   AC_PROG_CPP
  +AC_PROG_CXX
   
   AC_USE_SYSTEM_EXTENSIONS
   
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: rpm/ macros.in

2008-07-29 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   29-Jul-2008 17:42:49
  Branch: HEAD Handle: 2008072915424900

  Modified files:
rpm macros.in

  Log:
Protect against weird values on env: LC_ALL, LINGUAS, LANGUAGE.

  Summary:
RevisionChanges Path
1.251   +6  -1  rpm/macros.in
  

  patch -p0 <<'@@ .'
  Index: rpm/macros.in
  
  $ cvs diff -u -r1.250 -r1.251 macros.in
  --- rpm/macros.in 20 Jul 2008 00:04:51 -  1.250
  +++ rpm/macros.in 29 Jul 2008 15:42:49 -  1.251
  @@ -1,7 +1,7 @@
   #/*! \page config_macros Default configuration: @USRLIBRPM@/macros
   # \verbatim
   #
  -# $Id: macros.in,v 1.250 2008/07/20 00:04:51 jbj Exp $
  +# $Id: macros.in,v 1.251 2008/07/29 15:42:49 arekm Exp $
   #
   # This is a global RPM configuration file. All changes made here will
   # be lost when the rpm package is upgraded. Any per-system configuration
  @@ -1115,9 +1115,14 @@
 %{?_javaclasspath:CLASSPATH=\"%{_javaclasspath}\"\
 export CLASSPATH}\
 unset PERL_MM_OPT || :\
  +  LC_ALL=C\
  +  export LC_ALL\
 LANG=C\
 export LANG\
 unset DISPLAY || :\
  +  unset LINGUAS || :\
  +  unset LANGUAGE || :\
  +  unset LC_MESSAGES || :\
 \
 %{verbose:set -x}%{!verbose:exec > /dev/null}\
 umask 022\
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: rpm/tools/ rpmspecdump.c

2008-07-29 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   29-Jul-2008 17:37:44
  Branch: HEAD Handle: 2008072915374400

  Modified files:
rpm/tools   rpmspecdump.c

  Log:
Drop compat.

  Summary:
RevisionChanges Path
2.2 +25 -59 rpm/tools/rpmspecdump.c
  

  patch -p0 <<'@@ .'
  Index: rpm/tools/rpmspecdump.c
  
  $ cvs diff -u -r2.1 -r2.2 rpmspecdump.c
  --- rpm/tools/rpmspecdump.c   29 Jul 2008 15:36:09 -  2.1
  +++ rpm/tools/rpmspecdump.c   29 Jul 2008 15:37:44 -  2.2
  @@ -1,5 +1,5 @@
   /*
  - * $Id: rpmspecdump.c,v 2.1 2008/07/29 15:36:09 arekm Exp $
  + * $Id: rpmspecdump.c,v 2.2 2008/07/29 15:37:44 arekm Exp $
*
* Prints out following information in same format as %dump for builder:
* $ rpmbuild --nodigest --nosignature --nobuild -bp --define 'prep 
%{echo:dummy: PACKAGE_NAME %{name} }%dump' qemu.spec 2>&1 | awk '$2 ~ 
/^SOURCEURL/ {print} $2 ~ /^PATCHURL/  {print} $2 ~ /^nosource/ {print} $2 ~ 
/^PACKAGE_/ {print}'
  @@ -64,10 +64,6 @@
   
   #define _GNU_SOURCE
   
  -// macros from kernel
  -#define RPM_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
  -#define  RPM_VERSION_CODE RPM_VERSION(RPM_FORMAT_VERSION, 
RPM_MAJOR_VERSION, RPM_MINOR_VERSION)
  -
   #ifdef HAVE_CONFIG_H
   #  include 
   #endif
  @@ -83,9 +79,6 @@
   
   #include 
   #include 
  -#if RPM_VERSION_CODE < RPM_VERSION(5,0,0)
  -#include 
  -#endif
   #include 
   
   #define ARG_WITH 1024
  @@ -97,11 +90,6 @@
   #define ARG_UID  1030
   #define ARG_GID  1031
   
  -// RPM 4.4.2
  -#if RPM_VERSION_CODE < RPM_VERSION(4,4,9)
  -#define RPMFILE_SOURCE RPMBUILD_ISSOURCE
  -#endif
  -
   static struct option const
   CMDLINE_OPTIONS[] = {
 { "help", no_argument,  0, 'h' },
  @@ -274,11 +262,7 @@
setMacros(args.macros.values, args.macros.cnt);
   
rpmts ts = rpmtsCreate();
  -#if RPM_VERSION_CODE >= RPM_VERSION(4,4,9)
if (parseSpec(ts, args.specfile, NULL, 0, NULL, NULL, 1, 1, 0) != 0) {
  -#else
  - if (parseSpec(ts, args.specfile, NULL, NULL, 1, NULL, NULL, 1, 1) != 0) 
{
  -#endif
return EXIT_FAILURE;
}
 
  @@ -287,56 +271,38 @@
// here starts the code for builder
const char *name = NULL, *version = NULL, *release = NULL;
   
  -#if RPM_VERSION_CODE >= RPM_VERSION(4,4,9)
initSourceHeader(s, NULL);
  -#else
  - initSourceHeader(s);
  -#endif
Header h = s->sourceHeader;
   
  -#if RPM_VERSION_CODE < RPM_VERSION(5,0,0)
  - if (
  - headerGetEntryMinMemory(h, RPMTAG_NAME, NULL, (void *)&name, 
NULL) == 0 ||
  - headerGetEntryMinMemory(h, RPMTAG_VERSION, NULL, (void 
*)&version, NULL) == 0 ||
  - headerGetEntryMinMemory(h, RPMTAG_RELEASE, NULL, (void 
*)&release, NULL) == 0
  - ) {
  - fprintf(stderr, "NVR query failed\n");
  + HE_t he;
  + int rc;
  +
  + he = (HE_s*)memset(alloca(sizeof(*he)), 0, sizeof(*he));
  + he->tag = (rpmTag) RPMTAG_NAME;
  + rc = headerGet(h, he, 0);
  + if (!rc) {
  + fprintf(stderr, "Name (NVR) query failed\n");
return EXIT_FAILURE;
}
  + name = (char *)he->p.ptr;
   
  -#else
  - {
  - HE_t he;
  - int rc;
  -
  - he = (HE_s*)memset(alloca(sizeof(*he)), 0, sizeof(*he));
  - he->tag = (rpmTag) RPMTAG_NAME;
  - rc = headerGet(h, he, 0);
  - if (!rc) {
  - fprintf(stderr, "Name (NVR) query failed\n");
  - return EXIT_FAILURE;
  - }
  - name = (char *)he->p.ptr;
  -
  - he = (HE_s*)memset(alloca(sizeof(*he)), 0, sizeof(*he));
  - he->tag = (rpmTag) RPMTAG_VERSION;
  - rc = headerGet(h, he, 0);
  - if (!rc) {
  - fprintf(stderr, "Version (NVR) query failed\n");
  - return EXIT_FAILURE;
  - }
  - version = (char *)he->p.ptr;
  + he = (HE_s*)memset(alloca(sizeof(*he)), 0, sizeof(*he));
  + he->tag = (rpmTag) RPMTAG_VERSION;
  + rc = headerGet(h, he, 0);
  + if (!rc) {
  + fprintf(stderr, "Version (NVR) query failed\n");
  + return EXIT_FAILUR

[CVS] RPM: rpm/tools/ Makefile.am rpmspecdump.c

2008-07-29 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   29-Jul-2008 17:36:09
  Branch: HEAD Handle: 2008072915360900

  Added files:
rpm/tools   rpmspecdump.c
  Modified files:
rpm/tools   Makefile.am

  Log:
Tool for dumping spec tags.

  Summary:
RevisionChanges Path
2.113   +4  -1  rpm/tools/Makefile.am
2.1 +359 -0 rpm/tools/rpmspecdump.c
  

  patch -p0 <<'@@ .'
  Index: rpm/tools/Makefile.am
  
  $ cvs diff -u -r2.112 -r2.113 Makefile.am
  --- rpm/tools/Makefile.am 16 Jun 2008 18:47:20 -  2.112
  +++ rpm/tools/Makefile.am 29 Jul 2008 15:36:09 -  2.113
  @@ -40,7 +40,7 @@
$(top_builddir)/build/librpmbuild.la \
$(RPM_LDADD_COMMON)
   
  -bin_PROGRAMS =   rpm2cpio rpmcache rpmdigest rpmmtree rpmrepo
  +bin_PROGRAMS =   rpm2cpio rpmcache rpmdigest rpmmtree rpmrepo 
rpmspecdump
   
   pkglibdir =  @USRLIBRPM@
   pkglib_PROGRAMS =rpmcmp rpmdeps @WITH_LIBELF_DEBUGEDIT@
  @@ -66,6 +66,9 @@
   rpmrepo_SOURCES =rpmrepo.c
   rpmrepo_LDADD =  $(RPM_LDADD_COMMON)
   
  +rpmspecdump_SOURCES =rpmspecdump.c
  +rpmspecdump_LDADD =  $(RPM_LDADD_COMMON)
  +
   ##
   ## Traditional rpm2cpio
   ##
  @@ .
  patch -p0 <<'@@ .'
  Index: rpm/tools/rpmspecdump.c
  
  $ cvs diff -u -r0 -r2.1 rpmspecdump.c
  --- /dev/null 2008-07-29 17:36:08 +0200
  +++ rpmspecdump.c 2008-07-29 17:36:09 +0200
  @@ -0,0 +1,359 @@
  +/*
  + * $Id: rpmspecdump.c,v 2.1 2008/07/29 15:36:09 arekm Exp $
  + *
  + * Prints out following information in same format as %dump for builder:
  + * $ rpmbuild --nodigest --nosignature --nobuild -bp --define 'prep 
%{echo:dummy: PACKAGE_NAME %{name} }%dump' qemu.spec 2>&1 | awk '$2 ~ 
/^SOURCEURL/ {print} $2 ~ /^PATCHURL/  {print} $2 ~ /^nosource/ {print} $2 ~ 
/^PACKAGE_/ {print}'
  + * dummy: PACKAGE_NAME qemu 
  + * -2: PACKAGE_RELEASE[EMAIL PROTECTED]
  + * -1: PACKAGE_VERSION1.3.0pre11
  + * -3: PATCHURL0  qemu-nostatic.patch
  + * -3: PATCHURL1  qemu-cc.patch
  + * -3: PATCHURL11 qemu-0.7.2-gcc4-opts.patch
  + * -3: PATCHURL13 qemu-dosguest.patch
  + * -3: PATCHURL3  qemu-dot.patch
  + * -3: PATCHURL4  qemu-gcc4_x86.patch
  + * -3: PATCHURL5  qemu-gcc4_ppc.patch
  + * -3: PATCHURL6  qemu-nosdlgui.patch
  + * -3: PATCHURL8  qemu-kde_virtual_workspaces_hack.patch
  + * -3: PATCHURL9  qemu-0.8.0-gcc4-hacks.patch
  + * -3: SOURCEURL0 http://fabrice.bellard.free.fr/qemu/qemu-0.9.0.tar.gz
  + * -3: SOURCEURL1 http://fabrice.bellard.free.fr/qemu/kqemu-1.3.0pre11.tar.gz
  + *
  + *  $ rpm-specdump qemu.spec
  + *  h PACKAGE_NAME qemu
  + *  h PACKAGE_VERSION 0.9.0
  + *  h PACKAGE_RELEASE 60k
  + *  s PATCHURL13 qemu-dosguest.patch
  + *  s PATCHURL11 qemu-0.7.2-gcc4-opts.patch
  + *  s PATCHURL9 qemu-0.8.0-gcc4-hacks.patch
  + *  s PATCHURL8 qemu-kde_virtual_workspaces_hack.patch
  + *  s PATCHURL6 qemu-nosdlgui.patch
  + *  s PATCHURL5 qemu-gcc4_ppc.patch
  + *  s PATCHURL4 qemu-gcc4_x86.patch
  + *  s PATCHURL3 qemu-dot.patch
  + *  s PATCHURL1 qemu-cc.patch
  + *  s PATCHURL0 qemu-nostatic.patch
  + *  s SOURCEURL1 http://fabrice.bellard.free.fr/qemu/kqemu-1.3.0pre11.tar.gz
  + *  s SOURCEURL0 http://fabrice.bellard.free.fr/qemu/qemu-0.9.0.tar.gz
  + *
  + * And with NoSource: 1, NoSource: 2
  + *
  + *  $ rpmbuild --nodigest --nosignature --nobuild -bp --define 'prep 
%{echo:dummy: PACKAGE_NAME %{name} }%dump' ZendDebugger.spec 2>&1 | awk '$2 ~ 
/^SOURCEURL/ {print} $2 ~ /^PATCHURL/  {print} $2 ~ /^nosource/ {print} $2 ~ 
/^PACKAGE_/ {print}'
  + *  dummy: PACKAGE_NAME ZendDebugger 
  + *   -2: PACKAGE_RELEASE0.4
  + *   -1: PACKAGE_VERSION5.2.10
  + *   -3: SOURCEURL0 
http://downloads.zend.com/pdt/server-debugger/ZendDebugger-5.2.10-linux-glibc21-i386.tar.gz
  + *   -3: SOURCEURL1 
http://downloads.zend.com/pdt/server-debugger/ZendDebugger-5.2.10-linux-glibc23-x86_64.tar.gz
  + *   -3: nosource   1
  + *
  + *  $ rpm-specdump ZendDebugger.spec
  + *  h PACKAGE_NAME ZendDebugger
  + *  h PACKAGE_VERSION 5.2.10
  + *  h PACKAGE_RELEASE 0.4
  + *  s SOURCEURL1 
http://downloads.zend.com/pdt/server-debugger/ZendDebugger-5.2.10-linux-glibc23-x86_64.tar.gz
  + *  s nosource 1
  + *  s SOURCEURL0 
http://downloads.zend.com/pdt/server-debugger/ZendDebugger-5.2.10-linu

[CVS] RPM: rpm/rpmio/ rpmurl.h

2008-07-29 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   29-Jul-2008 17:03:05
  Branch: HEAD Handle: 2008072915030500

  Modified files:
rpm/rpmio   rpmurl.h

  Log:
Include rpmio.h for FD_t type.

  Summary:
RevisionChanges Path
1.33+1  -0  rpm/rpmio/rpmurl.h
  

  patch -p0 <<'@@ .'
  Index: rpm/rpmio/rpmurl.h
  
  $ cvs diff -u -r1.32 -r1.33 rpmurl.h
  --- rpm/rpmio/rpmurl.h18 Jul 2008 01:31:56 -  1.32
  +++ rpm/rpmio/rpmurl.h29 Jul 2008 15:03:05 -  1.33
  @@ -6,6 +6,7 @@
*/
   
   #include 
  +#include 
   #include 
   
   /**
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: rpm-5_1: rpm/rpmio/ rpmurl.h

2008-07-29 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   29-Jul-2008 17:02:44
  Branch: rpm-5_1  Handle: 2008072915024400

  Modified files:   (Branch: rpm-5_1)
rpm/rpmio   rpmurl.h

  Log:
Include rpmio.h for FD_t type.

  Summary:
RevisionChanges Path
1.25.2.2+1  -0  rpm/rpmio/rpmurl.h
  

  patch -p0 <<'@@ .'
  Index: rpm/rpmio/rpmurl.h
  
  $ cvs diff -u -r1.25.2.1 -r1.25.2.2 rpmurl.h
  --- rpm/rpmio/rpmurl.h31 May 2008 16:59:03 -  1.25.2.1
  +++ rpm/rpmio/rpmurl.h29 Jul 2008 15:02:44 -  1.25.2.2
  @@ -6,6 +6,7 @@
*/
   
   #include 
  +#include 
   
   /**
* Supported URL types.
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: rpm-5_1: rpm/rpmio/ argv.h

2008-07-29 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   29-Jul-2008 17:01:57
  Branch: rpm-5_1  Handle: 2008072915015700

  Modified files:   (Branch: rpm-5_1)
rpm/rpmio   argv.h

  Log:
Include stdint.h for uintXX_t types.

  Summary:
RevisionChanges Path
1.8.2.2 +2  -0  rpm/rpmio/argv.h
  

  patch -p0 <<'@@ .'
  Index: rpm/rpmio/argv.h
  
  $ cvs diff -u -r1.8.2.1 -r1.8.2.2 argv.h
  --- rpm/rpmio/argv.h  31 May 2008 16:59:03 -  1.8.2.1
  +++ rpm/rpmio/argv.h  29 Jul 2008 15:01:57 -  1.8.2.2
  @@ -5,6 +5,8 @@
* \file rpmio/argv.h
*/
   
  +#include 
  +
   typedef  const char * ARGstr_t;
   typedef ARGstr_t * ARGV_t;
   
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: rpm/rpmio/ argv.h

2008-07-29 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   29-Jul-2008 17:00:20
  Branch: HEAD Handle: 2008072915002000

  Modified files:
rpm/rpmio   argv.h

  Log:
Include stdint.h for uintXX_t types.

  Summary:
RevisionChanges Path
1.10+2  -0  rpm/rpmio/argv.h
  

  patch -p0 <<'@@ .'
  Index: rpm/rpmio/argv.h
  
  $ cvs diff -u -r1.9 -r1.10 argv.h
  --- rpm/rpmio/argv.h  22 May 2008 14:44:09 -  1.9
  +++ rpm/rpmio/argv.h  29 Jul 2008 15:00:20 -  1.10
  @@ -5,6 +5,8 @@
* \file rpmio/argv.h
*/
   
  +#include 
  +
   typedef  const char * ARGstr_t;
   typedef ARGstr_t * ARGV_t;
   
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: rpm/rpmdb/ Makefile.am rpmdb.h

2008-07-29 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   29-Jul-2008 16:54:31
  Branch: HEAD Handle: 2008072914543000

  Modified files:
rpm/rpmdb   Makefile.am rpmdb.h

  Log:
Partial workaround for: #if defined(WITH_DB) #include  #else 
#include  #endif.
Doing this type of checks in public header is wrong because WITH_DB won't 
be defined in some custom
program (that uses this public header) build process. TODO: add make 
dependency so db.h will be generated
at build time instead of install time.

  Summary:
RevisionChanges Path
1.100   +4  -1  rpm/rpmdb/Makefile.am
1.75+1  -5  rpm/rpmdb/rpmdb.h
  

  patch -p0 <<'@@ .'
  Index: rpm/rpmdb/Makefile.am
  
  $ cvs diff -u -r1.99 -r1.100 Makefile.am
  --- rpm/rpmdb/Makefile.am 19 Jul 2008 13:52:23 -  1.99
  +++ rpm/rpmdb/Makefile.am 29 Jul 2008 14:54:30 -  1.100
  @@ -105,7 +105,10 @@
   if WITH_DB_INTERNAL
   my_DB_HEADER = $(top_builddir)/$(WITH_DB_SUBDIR)/db.h
   else
  -my_DB_HEADER = $(srcdir)/db_emu.h
  +my_DB_HEADER = $(srcdir)/db.h
  +
  +$(my_DB_HEADER): $(srcdir)/db_emu.h
  + $(pkgincHEADERS_INSTALL) $(srcdir)/db_emu.h $(srcdir)/db.h
   endif
   
   install-data-local:
  @@ .
  patch -p0 <<'@@ .'
  Index: rpm/rpmdb/rpmdb.h
  
  $ cvs diff -u -r1.74 -r1.75 rpmdb.h
  --- rpm/rpmdb/rpmdb.h 23 May 2008 16:26:19 -  1.74
  +++ rpm/rpmdb/rpmdb.h 29 Jul 2008 14:54:30 -  1.75
  @@ -10,11 +10,7 @@
   #include 
   #include 
   #include 
  -#if defined(WITH_DB)
  -#include "db.h"
  -#else
  -#include "db_emu.h"
  -#endif
  +#include 
   
   /[EMAIL PROTECTED]@*/
   /[EMAIL PROTECTED]@*/
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: rpm/lib/ rpmlib.h

2008-07-29 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   29-Jul-2008 16:51:36
  Branch: HEAD Handle: 2008072914513600

  Modified files:
rpm/lib rpmlib.h

  Log:
Include rpmio.h (needed due to rpmRC).

  Summary:
RevisionChanges Path
2.463   +1  -0  rpm/lib/rpmlib.h
  

  patch -p0 <<'@@ .'
  Index: rpm/lib/rpmlib.h
  
  $ cvs diff -u -r2.462 -r2.463 rpmlib.h
  --- rpm/lib/rpmlib.h  26 Mar 2008 20:59:14 -  2.462
  +++ rpm/lib/rpmlib.h  29 Jul 2008 14:51:36 -  2.463
  @@ -10,6 +10,7 @@
   
   #include 
   #include 
  +#include 
   
   #define RPM_FORMAT_VERSION 5
   #define RPM_MAJOR_VERSION 0
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: rpm-5_1: rpm/lib/ rpmlib.h

2008-07-29 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   29-Jul-2008 16:34:35
  Branch: rpm-5_1  Handle: 2008072914343500

  Modified files:   (Branch: rpm-5_1)
rpm/lib rpmlib.h

  Log:
Include rpmio.h (needed due to rpmRC).

  Summary:
RevisionChanges Path
2.462.2.1   +1  -0  rpm/lib/rpmlib.h
  

  patch -p0 <<'@@ .'
  Index: rpm/lib/rpmlib.h
  
  $ cvs diff -u -r2.462 -r2.462.2.1 rpmlib.h
  --- rpm/lib/rpmlib.h  26 Mar 2008 20:59:14 -  2.462
  +++ rpm/lib/rpmlib.h  29 Jul 2008 14:34:35 -  2.462.2.1
  @@ -10,6 +10,7 @@
   
   #include 
   #include 
  +#include 
   
   #define RPM_FORMAT_VERSION 5
   #define RPM_MAJOR_VERSION 0
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: rpm/build/ files.c

2007-11-06 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   06-Nov-2007 20:17:00
  Branch: HEAD Handle: 200711061917

  Modified files:
rpm/build   files.c

  Log:
Include appropriate regex implementation.

  Summary:
RevisionChanges Path
1.284   +4  -0  rpm/build/files.c
  

  patch -p0 <<'@@ .'
  Index: rpm/build/files.c
  
  $ cvs diff -u -r1.283 -r1.284 files.c
  --- rpm/build/files.c 6 Nov 2007 07:31:54 -   1.283
  +++ rpm/build/files.c 6 Nov 2007 19:17:00 -   1.284
  @@ -8,7 +8,11 @@
   
   #define  MYALLPERMS  0
   
  +#if defined(WITH_PCRE) && defined(WITH_PCRE_POSIX)
  +#include 
  +#else
   #include 
  +#endif
   
   #include 
   #include 
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: rpm/ configure.ac

2007-11-01 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   01-Nov-2007 14:56:19
  Branch: HEAD Handle: 2007110113561800

  Modified files:
rpm configure.ac

  Log:
Separate PCREREGEXP from PCRE usage.

  Summary:
RevisionChanges Path
2.243   +8  -1  rpm/configure.ac
  

  patch -p0 <<'@@ .'
  Index: rpm/configure.ac
  
  $ cvs diff -u -r2.242 -r2.243 configure.ac
  --- rpm/configure.ac  12 Oct 2007 17:58:07 -  2.242
  +++ rpm/configure.ac  1 Nov 2007 13:56:18 -   2.243
  @@ -973,12 +973,19 @@
   [PCRE], [pcre],
   [pcre], [pcre_compile], [pcre.h],
   [no,external:none], [],
  -[ AC_CHECK_HEADERS(pcreposix.h)
  +[
 if test ".$WITH_LUA" = .yes; then
 WITH_LUA_SUBDIR_DEF="$WITH_LUA_SUBDIR_DEF -DLUA_USE_PCRE"
 fi
   ], [])
   
  +RPM_CHECK_LIB(
  +[PCREPOSIX], [pcreposix],
  +[pcreposix], [regcomp], [pcreposix.h],
  +[no,external:none], [],
  +[], [])
  +
  +
   dnl # DMalloc
   RPM_CHECK_LIB(
   [DMalloc], [dmalloc],
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: rpm/ configure.ac rpm/po/ sr.po

2007-10-06 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   06-Oct-2007 18:00:08
  Branch: HEAD Handle: 2007100617000601

  Modified files:
rpm configure.ac
  Removed files:
rpm/po  sr.po

  Log:
sr is [EMAIL PROTECTED] really. Rename.

  Summary:
RevisionChanges Path
2.241   +1  -1  rpm/configure.ac
1.461   +0  -5803   rpm/po/sr.po
  

  patch -p0 <<'@@ .'
  Index: rpm/configure.ac
  
  $ cvs diff -u -r2.240 -r2.241 configure.ac
  --- rpm/configure.ac  1 Oct 2007 21:09:39 -   2.240
  +++ rpm/configure.ac  6 Oct 2007 16:00:06 -   2.241
  @@ -38,7 +38,7 @@
   AC_SUBST(LT_AGE,  0)
   
   dnl # set of available languages.
  -ALL_LINGUAS="cs da de fi fr gl id is ja ko nb pl pt pt_BR ro ru sk sl sr sv 
tr uk"
  +ALL_LINGUAS="cs da de fi fr gl id is ja ko nb pl pt pt_BR ro ru sk sl [EMAIL 
PROTECTED] sv tr uk"
   
   dnl ##
   dnl ##  TOOL-CHAIN CHECKS 
  @@ .
  rm -f rpm/po/sr.po <<'@@ .'
  Index: rpm/po/sr.po
  
  [NO CHANGE SUMMARY BECAUSE FILE AS A WHOLE IS JUST REMOVED]
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: rpm-4_5: rpm/po/ Makevars cs.po da.po de.po fi.po fr.po gl....

2007-09-28 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   28-Sep-2007 18:23:50
  Branch: rpm-4_5  Handle: 2007092817233804

  Modified files:   (Branch: rpm-4_5)
rpm/po  Makevars cs.po da.po de.po fi.po fr.po gl.po is.po
ja.po ko.po nb.po pl.po pt.po pt_BR.po ro.po
rpm.pot ru.po sk.po sl.po sr.po sv.po tr.po uk.po

  Log:
[EMAIL PROTECTED] as email address.

  Summary:
RevisionChanges Path
1.1.4.3 +1  -1  rpm/po/Makevars
1.449.2.9   +1  -1  rpm/po/cs.po
1.335.2.9   +1  -1  rpm/po/da.po
1.460.2.9   +1  -1  rpm/po/de.po
1.450.2.9   +1  -1  rpm/po/fi.po
1.453.2.9   +1  -1  rpm/po/fr.po
1.332.2.9   +1  -1  rpm/po/gl.po
1.338.2.9   +1  -1  rpm/po/is.po
1.408.2.9   +1  -1  rpm/po/ja.po
1.334.2.9   +1  -1  rpm/po/ko.po
1.1.2.2 +1  -1  rpm/po/nb.po
1.441.2.9   +1  -1  rpm/po/pl.po
1.318.2.9   +1  -1  rpm/po/pt.po
1.452.2.9   +1  -1  rpm/po/pt_BR.po
1.334.2.9   +1  -1  rpm/po/ro.po
1.838.2.9   +1  -1  rpm/po/rpm.pot
1.464.2.9   +1  -1  rpm/po/ru.po
1.442.2.9   +1  -1  rpm/po/sk.po
1.391.2.10  +2  -2  rpm/po/sl.po
1.452.2.9   +1  -1  rpm/po/sr.po
1.463.2.9   +1  -1  rpm/po/sv.po
1.452.2.9   +1  -1  rpm/po/tr.po
1.228.2.9   +1  -1  rpm/po/uk.po
  

  patch -p0 <<'@@ .'
  Index: rpm/po/Makevars
  
  $ cvs diff -u -r1.1.4.2 -r1.1.4.3 Makevars
  --- rpm/po/Makevars   25 May 2007 19:09:20 -  1.1.4.2
  +++ rpm/po/Makevars   28 Sep 2007 16:23:38 -  1.1.4.3
  @@ -34,7 +34,7 @@
   # It can be your email address, or a mailing list address where translators
   # can write to without being subscribed, or the URL of a web page through
   # which the translators can contact you.
  -MSGID_BUGS_ADDRESS = <[EMAIL PROTECTED]>
  +MSGID_BUGS_ADDRESS = <[EMAIL PROTECTED]>
   
   # This is the list of locale categories, beyond LC_MESSAGES, for which the
   # message catalogs shall be used.  It is usually empty.
  @@ .
  patch -p0 <<'@@ .'
  Index: rpm/po/cs.po
  
  $ cvs diff -u -r1.449.2.8 -r1.449.2.9 cs.po
  --- rpm/po/cs.po  8 Aug 2007 15:36:21 -   1.449.2.8
  +++ rpm/po/cs.po  28 Sep 2007 16:23:38 -  1.449.2.9
  @@ -1,7 +1,7 @@
   msgid ""
   msgstr ""
   "Project-Id-Version: rpm 4.0.3\n"
  -"Report-Msgid-Bugs-To: <[EMAIL PROTECTED]>\n"
  +"Report-Msgid-Bugs-To: <[EMAIL PROTECTED]>\n"
   "POT-Creation-Date: 2007-08-08 11:30-0400\n"
   "PO-Revision-Date: 2001-07-24 10:02+0100\n"
   "Last-Translator: Milan Kerslager <[EMAIL PROTECTED]>\n"
  @@ .
  patch -p0 <<'@@ .'
  Index: rpm/po/da.po
  
  $ cvs diff -u -r1.335.2.8 -r1.335.2.9 da.po
  --- rpm/po/da.po  8 Aug 2007 15:36:21 -   1.335.2.8
  +++ rpm/po/da.po  28 Sep 2007 16:23:38 -  1.335.2.9
  @@ -1,7 +1,7 @@
   msgid ""
   msgstr ""
   "Project-Id-Version: rpm 4.0.3\n"
  -"Report-Msgid-Bugs-To: <[EMAIL PROTECTED]>\n"
  +"Report-Msgid-Bugs-To: <[EMAIL PROTECTED]>\n"
   "POT-Creation-Date: 2007-08-08 11:30-0400\n"
   "PO-Revision-Date: 2001-04-05 23:03GMT\n"
   "Last-Translator: Claus Hindsgaul <[EMAIL PROTECTED]>\n"
  @@ .
  patch -p0 <<'@@ .'
  Index: rpm/po/de.po
  
  $ cvs diff -u -r1.460.2.8 -r1.460.2.9 de.po
  --- rpm/po/de.po  8 Aug 2007 15:36:21 -   1.460.2.8
  +++ rpm/po/de.po  28 Sep 2007 16:23:38 -  1.460.2.9
  @@ -6,7 +6,7 @@
   msgid ""
   msgstr ""
   "Project-Id-Version: rpm 4.4.9\n"
  -"Report-Msgid-Bugs-To: <[EMAIL PROTECTED]>\n"
  +"Report-Msgid-Bugs-To: <[EMAIL PROTECTED]>\n"
   "POT-Creation-Date: 2007-08-08 11:30-0400\n"
   "PO-Revision-Date: 2007-05-20 12:25+0200\n"
   "Last-Translator: Robert Scheck <[EMAIL PROTECTED]>\n"
  @@ .
  patch -p0 <<'@@ .'
  Index: rpm/po/fi.po
  ==

[CVS] RPM: rpm/po/ Makevars cs.po da.po de.po fi.po fr.po gl.po is.po ...

2007-09-28 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   28-Sep-2007 18:18:25
  Branch: HEAD Handle: 2007092817182201

  Modified files:
rpm/po  Makevars cs.po da.po de.po fi.po fr.po gl.po is.po
ja.po ko.po nb.po pl.po pt.po pt_BR.po ro.po
rpm.pot ru.po sk.po sl.po sr.po sv.po tr.po uk.po

  Log:
[EMAIL PROTECTED] as email address.

  Summary:
RevisionChanges Path
1.3 +1  -1  rpm/po/Makevars
1.456   +1  -1  rpm/po/cs.po
1.342   +1  -1  rpm/po/da.po
1.467   +1  -1  rpm/po/de.po
1.457   +1  -1  rpm/po/fi.po
1.460   +1  -1  rpm/po/fr.po
1.339   +1  -1  rpm/po/gl.po
1.345   +1  -1  rpm/po/is.po
1.415   +1  -1  rpm/po/ja.po
1.341   +1  -1  rpm/po/ko.po
1.3 +1  -1  rpm/po/nb.po
1.450   +1  -1  rpm/po/pl.po
1.325   +1  -1  rpm/po/pt.po
1.459   +1  -1  rpm/po/pt_BR.po
1.340   +1  -1  rpm/po/ro.po
1.845   +1  -1  rpm/po/rpm.pot
1.470   +1  -1  rpm/po/ru.po
1.448   +1  -1  rpm/po/sk.po
1.397   +2  -2  rpm/po/sl.po
1.458   +1  -1  rpm/po/sr.po
1.469   +1  -1  rpm/po/sv.po
1.458   +1  -1  rpm/po/tr.po
1.234   +1  -1  rpm/po/uk.po
  

  patch -p0 <<'@@ .'
  Index: rpm/po/Makevars
  
  $ cvs diff -u -r1.2 -r1.3 Makevars
  --- rpm/po/Makevars   30 May 2007 02:49:36 -  1.2
  +++ rpm/po/Makevars   28 Sep 2007 16:18:22 -  1.3
  @@ -34,7 +34,7 @@
   # It can be your email address, or a mailing list address where translators
   # can write to without being subscribed, or the URL of a web page through
   # which the translators can contact you.
  -MSGID_BUGS_ADDRESS = <[EMAIL PROTECTED]>
  +MSGID_BUGS_ADDRESS = <[EMAIL PROTECTED]>
   
   # This is the list of locale categories, beyond LC_MESSAGES, for which the
   # message catalogs shall be used.  It is usually empty.
  @@ .
  patch -p0 <<'@@ .'
  Index: rpm/po/cs.po
  
  $ cvs diff -u -r1.455 -r1.456 cs.po
  --- rpm/po/cs.po  8 Aug 2007 15:32:34 -   1.455
  +++ rpm/po/cs.po  28 Sep 2007 16:18:22 -  1.456
  @@ -1,7 +1,7 @@
   msgid ""
   msgstr ""
   "Project-Id-Version: rpm 4.0.3\n"
  -"Report-Msgid-Bugs-To: <[EMAIL PROTECTED]>\n"
  +"Report-Msgid-Bugs-To: <[EMAIL PROTECTED]>\n"
   "POT-Creation-Date: 2007-08-08 11:26-0400\n"
   "PO-Revision-Date: 2001-07-24 10:02+0100\n"
   "Last-Translator: Milan Kerslager <[EMAIL PROTECTED]>\n"
  @@ .
  patch -p0 <<'@@ .'
  Index: rpm/po/da.po
  
  $ cvs diff -u -r1.341 -r1.342 da.po
  --- rpm/po/da.po  8 Aug 2007 15:32:34 -   1.341
  +++ rpm/po/da.po  28 Sep 2007 16:18:22 -  1.342
  @@ -1,7 +1,7 @@
   msgid ""
   msgstr ""
   "Project-Id-Version: rpm 4.0.3\n"
  -"Report-Msgid-Bugs-To: <[EMAIL PROTECTED]>\n"
  +"Report-Msgid-Bugs-To: <[EMAIL PROTECTED]>\n"
   "POT-Creation-Date: 2007-08-08 11:26-0400\n"
   "PO-Revision-Date: 2001-04-05 23:03GMT\n"
   "Last-Translator: Claus Hindsgaul <[EMAIL PROTECTED]>\n"
  @@ .
  patch -p0 <<'@@ .'
  Index: rpm/po/de.po
  
  $ cvs diff -u -r1.466 -r1.467 de.po
  --- rpm/po/de.po  8 Aug 2007 15:32:34 -   1.466
  +++ rpm/po/de.po  28 Sep 2007 16:18:22 -  1.467
  @@ -6,7 +6,7 @@
   msgid ""
   msgstr ""
   "Project-Id-Version: rpm 4.4.9\n"
  -"Report-Msgid-Bugs-To: <[EMAIL PROTECTED]>\n"
  +"Report-Msgid-Bugs-To: <[EMAIL PROTECTED]>\n"
   "POT-Creation-Date: 2007-08-08 11:26-0400\n"
   "PO-Revision-Date: 2007-05-20 12:25+0200\n"
   "Last-Translator: Robert Scheck <[EMAIL PROTECTED]>\n"
  @@ .
  patch -p0 <<'@@ .'
  Index: rpm/po/fi.po
  
  $ cvs diff -u -r1.456 -r1.457 fi.po
  --- rpm/po/fi.po  8 Aug 2007 15:32:34 -0

[CVS] RPM: rpm/python/rpm/ Makefile.am

2007-09-27 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   27-Sep-2007 10:09:48
  Branch: HEAD Handle: 2007092709094800

  Modified files:
rpm/python/rpm  Makefile.am

  Log:
Use configure-found paths to python world.

  Summary:
RevisionChanges Path
1.3 +2  -2  rpm/python/rpm/Makefile.am
  

  patch -p0 <<'@@ .'
  Index: rpm/python/rpm/Makefile.am
  
  $ cvs diff -u -r1.2 -r1.3 Makefile.am
  --- rpm/python/rpm/Makefile.am26 Jul 2007 08:10:32 -  1.2
  +++ rpm/python/rpm/Makefile.am27 Sep 2007 08:09:48 -  1.3
  @@ -4,8 +4,8 @@
   
   PYVER = @WITH_PYTHON_VERSION@
   
  -pylibdir = ${prefix}/lib/[EMAIL PROTECTED]@
  -pyincdir = $(prefix)/include/[EMAIL PROTECTED]@
  +pylibdir = @WITH_PYTHON_LIBDIR@
  +pyincdir = @WITH_PYTHON_INCDIR@
   
   EXTRA_DIST = \
__init__.py
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: rpm/lib/ rpmds.c

2007-09-26 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   27-Sep-2007 08:42:00
  Branch: HEAD Handle: 2007092707415900

  Modified files:
rpm/lib rpmds.c

  Log:
Fix build when no bzip2 lib.

  Summary:
RevisionChanges Path
2.65+1  -1  rpm/lib/rpmds.c
  

  patch -p0 <<'@@ .'
  Index: rpm/lib/rpmds.c
  
  $ cvs diff -u -r2.64 -r2.65 rpmds.c
  --- rpm/lib/rpmds.c   20 Sep 2007 16:05:22 -  2.64
  +++ rpm/lib/rpmds.c   27 Sep 2007 06:41:59 -  2.65
  @@ -1414,8 +1414,8 @@
   #if defined(HAVE_BZLIB_H)
   { "rpmlib(PayloadIsBzip2)",  "3.0.5-1",
(RPMSENSE_RPMLIB|RPMSENSE_EQUAL),
  -#endif
   N_("package payload can be compressed using bzip2.") },
  +#endif
   { "rpmlib(PayloadFilesHavePrefix)",  "4.0-1",
(RPMSENSE_RPMLIB|RPMSENSE_EQUAL),
   N_("package payload file(s) have \"./\" prefix.") },
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: popt/ configure.ac popt/po/ nb.po no.po

2007-07-16 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: popt Date:   17-Jul-2007 08:34:59
  Branch: HEAD Handle: 2007071707345900

  Added files:
popt/po nb.po
  Modified files:
poptconfigure.ac
  Removed files:
popt/po no.po

  Log:
nb (Norwegian Bookmal) is proper lang code

  Summary:
RevisionChanges Path
1.24+1  -1  popt/configure.ac
1.1 +120 -0 popt/po/nb.po
1.54+0  -120popt/po/no.po
  

  patch -p0 <<'@@ .'
  Index: popt/configure.ac
  
  $ cvs diff -u -r1.23 -r1.24 configure.ac
  --- popt/configure.ac 17 Jul 2007 06:30:14 -  1.23
  +++ popt/configure.ac 17 Jul 2007 06:34:59 -  1.24
  @@ -14,7 +14,7 @@
   
   AM_INIT_AUTOMAKE([foreign])
   
  -ALL_LINGUAS="cs da de es fr gl hu is ja ko nl no pl pt ro ru sk sl sv tr uk 
vi wa"
  +ALL_LINGUAS="cs da de es fr gl hu is ja ko nl nb pl pt ro ru sk sl sv tr uk 
vi wa"
   
   AC_PROG_CC
   AC_PROG_INSTALL
  @@ .
  patch -p0 <<'@@ .'
  Index: popt/po/nb.po
  
  $ cvs diff -u -r0 -r1.1 nb.po
  --- /dev/null 2007-07-17 08:33:00 +0200
  +++ nb.po 2007-07-17 08:34:59 +0200
  @@ -0,0 +1,120 @@
  +msgid ""
  +msgstr ""
  +"Project-Id-Version: popt 1.11\n"
  +"Report-Msgid-Bugs-To: <[EMAIL PROTECTED]>\n"
  +"POT-Creation-Date: 2007-06-14 15:31+0200\n"
  +"PO-Revision-Date: 2001-06-27 11:05+0200\n"
  +"Last-Translator: Kjartan Maraas <[EMAIL PROTECTED]>\n"
  +"Language-Team: Norwegian <[EMAIL PROTECTED]>\n"
  +"MIME-Version: 1.0\n"
  +"Content-Type: text/plain; charset=iso-8859-1\n"
  +"Content-Transfer-Encoding: 8-bit\n"
  +
  +#: popt.c:35
  +msgid "unknown errno"
  +msgstr "ukjent errno"
  +
  +#: popt.c:1002
  +#, c-format
  +msgid "option type (%d) not implemented in popt\n"
  +msgstr "flaggtype (%d) ikke implementert i popt\n"
  +
  +#: popt.c:1215
  +msgid "missing argument"
  +msgstr "manglende argument"
  +
  +#: popt.c:1217
  +msgid "unknown option"
  +msgstr "ukjent flagg"
  +
  +#: popt.c:1219
  +msgid "mutually exclusive logical operations requested"
  +msgstr "gjensidig eksluderende logiske operasjoner forespurt"
  +
  +#: popt.c:1221
  +msgid "opt->arg should not be NULL"
  +msgstr "opt->arg må ikke være NULL"
  +
  +#: popt.c:1223
  +msgid "aliases nested too deeply"
  +msgstr "aliaser med for dype løkker"
  +
  +#: popt.c:1225
  +msgid "error in parameter quoting"
  +msgstr "feil i parametersitering"
  +
  +#: popt.c:1227
  +msgid "invalid numeric value"
  +msgstr "ugyldig numerisk verdi"
  +
  +#: popt.c:1229
  +msgid "number too large or too small"
  +msgstr "tallet er for stort eller lite"
  +
  +#: popt.c:1231
  +msgid "memory allocation failed"
  +msgstr "minneallokering feilet"
  +
  +#: popt.c:1235
  +msgid "unknown error"
  +msgstr "ukjent feil"
  +
  +#: popt.h:172
  +msgid "Options implemented via popt alias/exec:"
  +msgstr ""
  +
  +#: popt.h:188
  +msgid "Help options:"
  +msgstr ""
  +
  +#: popthelp.c:68 popthelp.c:79
  +msgid "Show this help message"
  +msgstr "Vis denne hjelpmeldingen"
  +
  +#: popthelp.c:69 popthelp.c:80
  +msgid "Display brief usage message"
  +msgstr "Vis kort bruksmelding"
  +
  +#: popthelp.c:83
  +msgid "Display option defaults in message"
  +msgstr "Vis forvalgte flagg i melding"
  +
  +#: popthelp.c:128
  +msgid "NONE"
  +msgstr "INGEN"
  +
  +#: popthelp.c:130
  +msgid "VAL"
  +msgstr "VERDI"
  +
  +#: popthelp.c:134
  +msgid "INT"
  +msgstr "HELTALL"
  +
  +#: popthelp.c:135
  +msgid "LONG"
  +msgstr "LONG"
  +
  +#: popthelp.c:136
  +msgid "STRING"
  +msgstr "STRENG"
  +
  +#: popthelp.c:137
  +msgid "FLOAT"
  +msgstr "FLYTTALL"
  +
  +#: popthelp.c:138
  +msgid "DOUBLE"
  +msgstr "DOUBLE"
  +
  +#: popthelp.c:139
  +msgid "ARG"
  +msgstr "ARG"
  +
  +#: popthelp.c:552
  +msgid "Usage:"
  +msgstr "Bruk:"
  +
  +#: popthelp.c:576
  +msgid "[OPTION...]"
  +msgstr "[FLAGG...]"
  @@ .
  rm -f popt/po/no.po <<'@@ .'
  Index: popt/po/no.po
  
  [NO CHANGE SUMMARY BECAUSE FILE AS A WHOLE IS JUST REMOVED]
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: popt/ configure.ac

2007-07-16 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: popt Date:   17-Jul-2007 08:30:14
  Branch: HEAD Handle: 2007071707301400

  Modified files:
poptconfigure.ac

  Log:
Drop eu_ES (was empty).

  Summary:
RevisionChanges Path
1.23+1  -1  popt/configure.ac
  

  patch -p0 <<'@@ .'
  Index: popt/configure.ac
  
  $ cvs diff -u -r1.22 -r1.23 configure.ac
  --- popt/configure.ac 17 Jul 2007 05:49:55 -  1.22
  +++ popt/configure.ac 17 Jul 2007 06:30:14 -  1.23
  @@ -14,7 +14,7 @@
   
   AM_INIT_AUTOMAKE([foreign])
   
  -ALL_LINGUAS="cs da de es eu_ES fr gl hu is ja ko nl no pl pt ro ru sk sl sv 
tr uk vi wa"
  +ALL_LINGUAS="cs da de es fr gl hu is ja ko nl no pl pt ro ru sk sl sv tr uk 
vi wa"
   
   AC_PROG_CC
   AC_PROG_INSTALL
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: popt/po/ eu_ES.po

2007-07-16 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: popt Date:   17-Jul-2007 08:28:33
  Branch: HEAD Handle: 2007071707283200

  Removed files:
popt/po eu_ES.po

  Log:
Drop - empty.

  Summary:
RevisionChanges Path
1.42+0  -125popt/po/eu_ES.po
  

  rm -f popt/po/eu_ES.po <<'@@ .'
  Index: popt/po/eu_ES.po
  
  [NO CHANGE SUMMARY BECAUSE FILE AS A WHOLE IS JUST REMOVED]
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: popt/po/ pl.po

2007-07-11 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: popt Date:   11-Jul-2007 10:00:12
  Branch: HEAD Handle: 2007071109001200

  Modified files:
popt/po pl.po

  Log:
Convert to UTF8, update copyright year, update qboosh email address,
fix Usage translation.

  Summary:
RevisionChanges Path
1.52+18 -18 popt/po/pl.po
  

  patch -p0 <<'@@ .'
  Index: popt/po/pl.po
  
  $ cvs diff -u -r1.51 -r1.52 pl.po
  --- popt/po/pl.po 14 Jun 2007 15:01:26 -  1.51
  +++ popt/po/pl.po 11 Jul 2007 08:00:12 -  1.52
  @@ -1,17 +1,17 @@
   # Polish translation for popt.
  -# Copyright (C) YEAR Free Software Foundation, Inc.
  -# Jakub Bogusz <[EMAIL PROTECTED]>, 2002.
  +# Copyright (C) 2002 Free Software Foundation, Inc.
  +# Jakub Bogusz <[EMAIL PROTECTED]>, 2002.
   #
   msgid ""
   msgstr ""
   "Project-Id-Version: popt 1.11\n"
  -"Report-Msgid-Bugs-To: <[EMAIL PROTECTED]>\n"
  +"Report-Msgid-Bugs-To: <[EMAIL PROTECTED]>\n"
   "POT-Creation-Date: 2007-06-14 15:31+0200\n"
   "PO-Revision-Date: 2003-06-08 20:32+0200\n"
  -"Last-Translator: Jakub Bogusz <[EMAIL PROTECTED]>\n"
  +"Last-Translator: Jakub Bogusz <[EMAIL PROTECTED]>\n"
   "Language-Team: Polish <[EMAIL PROTECTED]>\n"
   "MIME-Version: 1.0\n"
  -"Content-Type: text/plain; charset=iso-8859-2\n"
  +"Content-Type: text/plain; charset=UTF-8\n"
   "Content-Transfer-Encoding: 8bit\n"
   
   #: popt.c:35
  @@ -33,35 +33,35 @@
   
   #: popt.c:1219
   msgid "mutually exclusive logical operations requested"
  -msgstr "¿±danie wykluczaj±cych siê operacji"
  +msgstr "żądanie wykluczających się operacji"
   
   #: popt.c:1221
   msgid "opt->arg should not be NULL"
  -msgstr "opt->arg nie mo¿e byæ NULL"
  +msgstr "opt->arg nie może być NULL"
   
   #: popt.c:1223
   msgid "aliases nested too deeply"
  -msgstr "zbyt du¿e zag³êbienie aliasów"
  +msgstr "zbyt duże zagłębienie aliasów"
   
   #: popt.c:1225
   msgid "error in parameter quoting"
  -msgstr "b³±d w cytowaniu parametru"
  +msgstr "błąd w cytowaniu parametru"
   
   #: popt.c:1227
   msgid "invalid numeric value"
  -msgstr "b³êdna warto¶æ liczbowa"
  +msgstr "błędna wartość liczbowa"
   
   #: popt.c:1229
   msgid "number too large or too small"
  -msgstr "liczba zbyt du¿a lub zbyt ma³a"
  +msgstr "liczba zbyt duża lub zbyt mała"
   
   #: popt.c:1231
   msgid "memory allocation failed"
  -msgstr "b³±d alokacji pamiêci"
  +msgstr "błąd alokacji pamięci"
   
   #: popt.c:1235
   msgid "unknown error"
  -msgstr "nieznany b³±d"
  +msgstr "nieznany błąd"
   
   #: popt.h:172
   msgid "Options implemented via popt alias/exec:"
  @@ -73,15 +73,15 @@
   
   #: popthelp.c:68 popthelp.c:79
   msgid "Show this help message"
  -msgstr "Poka¿ tê pomoc"
  +msgstr "Pokaż tą pomoc"
   
   #: popthelp.c:69 popthelp.c:80
   msgid "Display brief usage message"
  -msgstr "Wy¶wietl skrócony sposób u¿ycia"
  +msgstr "Wyświetl skrócony sposób użycia"
   
   #: popthelp.c:83
   msgid "Display option defaults in message"
  -msgstr "Wy¶wietl domy¶lne opcje w opisie"
  +msgstr "Wyświetl domyślne opcje w opisie"
   
   #: popthelp.c:128
   msgid "NONE"
  @@ -101,7 +101,7 @@
   
   #: popthelp.c:136
   msgid "STRING"
  -msgstr "£AÑCUCH"
  +msgstr "ŁAŃCUCH"
   
   #: popthelp.c:137
   msgid "FLOAT"
  @@ -117,7 +117,7 @@
   
   #: popthelp.c:552
   msgid "Usage:"
  -msgstr "Sk³adnia:"
  +msgstr "Użycie:"
   
   #: popthelp.c:576
   msgid "[OPTION...]"
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: rpm/po/ pl.po

2007-07-11 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   11-Jul-2007 09:42:05
  Branch: HEAD Handle: 2007071108420500

  Modified files:
rpm/po  pl.po

  Log:
Updated translation.

  Summary:
RevisionChanges Path
1.447   +280 -328   rpm/po/pl.po
  

  patch -p0 <<'@@ .'
  Index: rpm/po/pl.po
  
  $ cvs diff -u -r1.446 -r1.447 pl.po
  --- rpm/po/pl.po  2 Jul 2007 12:28:04 -   1.446
  +++ rpm/po/pl.po  11 Jul 2007 07:42:05 -  1.447
  @@ -11,7 +11,7 @@
   msgstr ""
   "Project-Id-Version: rpm 4.4.8\n"
   "Report-Msgid-Bugs-To: <[EMAIL PROTECTED]>\n"
  -"POT-Creation-Date: 2007-07-02 11:05+0200\n"
  +"POT-Creation-Date: 2007-07-11 09:23+0200\n"
   "PO-Revision-Date: 2006-02-28 20:20+0100\n"
   "Last-Translator: Arkadiusz Miskiewicz <[EMAIL PROTECTED]>\n"
   "Language-Team: Polish <[EMAIL PROTECTED]>\n"
  @@ -63,7 +63,7 @@
   msgid "Building target platforms: %s\n"
   msgstr "Budowanie dla platform: %s\n"
   
  -#: build.c:335 build/spec.c:786
  +#: build.c:335 build/spec.c:785
   #, c-format
   msgid "target platform: %s\n"
   msgstr " platforma docelowa: %s\n"
  @@ -113,7 +113,7 @@
   msgid "%s: %s\n"
   msgstr "%s: %s\n"
   
  -#: rpmqv.c:149 lib/poptALL.c:152
  +#: rpmqv.c:149 lib/poptALL.c:149
   #, c-format
   msgid "RPM version %s\n"
   msgstr "RPM wersja %s\n"
  @@ -505,89 +505,89 @@
   #: build/files.c:1029
   #, c-format
   msgid "illegal _docdir_fmt: %s\n"
  -msgstr ""
  +msgstr "nieprawid³owy _docdir_fmt: %s\n"
   
  -#: build/files.c:1307
  +#: build/files.c:1309
   #, c-format
   msgid "File listed twice: %s\n"
   msgstr "Plik podany dwukrotnie: %s\n"
   
  -#: build/files.c:1481
  +#: build/files.c:1483
   #, c-format
   msgid "Symlink points to BuildRoot: %s -> %s\n"
   msgstr "Dowi±zanie symboliczne wskazuje na BuildRoot: %s -> %s\n"
   
  -#: build/files.c:1738
  +#: build/files.c:1740
   #, c-format
   msgid "File doesn't match prefix (%s): %s\n"
   msgstr "Plik nie zgadza siê z prefiksem (%s): %s\n"
   
  -#: build/files.c:1762
  +#: build/files.c:1764
   #, c-format
   msgid "File not found: %s\n"
   msgstr "Nie znaleziono pliku: %s\n"
   
  -#: build/files.c:1977
  +#: build/files.c:1979
   #, c-format
   msgid "%s: can't load unknown tag (%d).\n"
   msgstr "%s: nie mo¿na za³adowaæ nieznanego tagu (%d).\n"
   
  -#: build/files.c:1983
  +#: build/files.c:1985
   #, c-format
   msgid "%s: public key read failed.\n"
   msgstr "%s: odczyt klucza publicznego nie powiód³ siê.\n"
   
  -#: build/files.c:1987 lib/rpmchecksig.c:614
  +#: build/files.c:1989 lib/rpmchecksig.c:614
   #, c-format
   msgid "%s: not an armored public key.\n"
   msgstr "%s: nie jest opakowanym kluczem publicznym.\n"
   
  -#: build/files.c:1994
  +#: build/files.c:1996
   #, c-format
   msgid "%s: *.te policy read failed.\n"
   msgstr "%s: odczyt polityki *.te nie powiód³ siê.\n"
   
  -#: build/files.c:2047
  +#: build/files.c:2049
   #, c-format
   msgid "File needs leading \"/\": %s\n"
   msgstr "Plik musi siê zaczynaæ od \"/\": %s\n"
   
  -#: build/files.c:2071
  +#: build/files.c:2073
   #, c-format
   msgid "Glob not permitted: %s\n"
   msgstr "Glob niedozwolony: %s\n"
   
  -#: build/files.c:2088 lib/rpminstall.c:375
  +#: build/files.c:2090 lib/rpminstall.c:375
   #, c-format
   msgid "File not found by glob: %s\n"
   msgstr "Nie znaleziono pliku poprzez glob: %s\n"
   
  -#: build/files.c:2148
  +#: build/files.c:2150
   #, c-format
   msgid "Could not open %%files file %s: %s\n"
   msgstr "Nie mo¿na otworzyæ pliku %s dla %%files: %s\n"
   
  -#: build/files.c:2159 build/pack.c:155
  +#: build/files.c:2161 build/pack.c:155
   #, c-format
   msgid "line: %s\n"
   msgstr "linia: %s\n"
   
  -#: build/files.c:2544
  +#: build/files.c:2546
   #, c-format
   msgid "Bad file: %s: %s\n"
   msgstr "B³êdny plik: %s: %s\n"
   
  -#: build/files.c:2556 build/parsePrep.c:50
  +#: build/files.c:2558 build/parsePrep.c:50
   #, c-format
   msgid "Bad owner/group: %

[CVS] RPM: rpm/ configure.ac rpm/python/ Makefile.am

2007-07-10 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   10-Jul-2007 22:38:28
  Branch: HEAD Handle: 2007071021382800

  Modified files:
rpm configure.ac
rpm/python  Makefile.am

  Log:
Added --with-python-inc-dir and --with-python-lib-dir since python
prefix can be different from rpm installation prefix.

  Summary:
RevisionChanges Path
2.172   +7  -0  rpm/configure.ac
1.73+2  -2  rpm/python/Makefile.am
  

  patch -p0 <<'@@ .'
  Index: rpm/configure.ac
  
  $ cvs diff -u -r2.171 -r2.172 configure.ac
  --- rpm/configure.ac  10 Jul 2007 19:56:03 -  2.171
  +++ rpm/configure.ac  10 Jul 2007 20:38:28 -  2.172
  @@ -700,6 +700,13 @@
   AC_SUBST(WITH_PYTHON_SUBPACKAGE)
   AC_SUBST(WITH_PYTHON_VERSION)
   
  +AC_ARG_WITH(python-inc-dir, AS_HELP_STRING([--with-python-inc-dir=DIR], 
[directory with Python include files]),
  + [WITH_PYTHON_INCDIR="$withval"], 
[WITH_PYTHON_INCDIR="\$(prefix)/include/python${WITH_PYTHON_VERSION}"])
  +AC_ARG_WITH(python-lib-dir, AS_HELP_STRING([--with-python-lib-dir=DIR], 
[directory with Python library]),
  + [WITH_PYTHON_LIBDIR="$withval"], 
[WITH_PYTHON_LIBDIR="\${prefix}/lib${MARK64}/python${WITH_PYTHON_VERSION}"])
  +AC_SUBST(WITH_PYTHON_INCDIR)
  +AC_SUBST(WITH_PYTHON_LIBDIR)
  +
   dnl ##
   dnl ##  THIRD-PARTY LIBRARIES (2/2) 
   dnl ##
  @@ .
  patch -p0 <<'@@ .'
  Index: rpm/python/Makefile.am
  
  $ cvs diff -u -r1.72 -r1.73 Makefile.am
  --- rpm/python/Makefile.am2 Jul 2007 17:13:20 -   1.72
  +++ rpm/python/Makefile.am10 Jul 2007 20:38:28 -  1.73
  @@ -4,8 +4,8 @@
   
   LINT = splint
   
  -pylibdir = ${prefix}/[EMAIL PROTECTED]@/[EMAIL PROTECTED]@
  -pyincdir = $(prefix)/include/[EMAIL PROTECTED]@
  +pylibdir = @WITH_PYTHON_LIBDIR@
  +pyincdir = @WITH_PYTHON_INCDIR@
   
   SUBDIRS = rpm
   
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: rpm/ configure.ac

2007-07-10 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   10-Jul-2007 21:56:03
  Branch: HEAD Handle: 2007071020560300

  Modified files:
rpm configure.ac

  Log:
Allow URL for bug tracking systems in --with-bugreport.

  Summary:
RevisionChanges Path
2.171   +3  -3  rpm/configure.ac
  

  patch -p0 <<'@@ .'
  Index: rpm/configure.ac
  
  $ cvs diff -u -r2.170 -r2.171 configure.ac
  --- rpm/configure.ac  8 Jul 2007 16:33:15 -   2.170
  +++ rpm/configure.ac  10 Jul 2007 19:56:03 -  2.171
  @@ -17,10 +17,10 @@
   
   dnl # allow packagers to override the bugreport address
   AC_ARG_WITH(bugreport,
  -AS_HELP_STRING([--with-bugreport=ADDRESS], [set packager bugreport Email 
address (PACKAGE_BUGREPORT_DEFAULT)]), [dnl
  +AS_HELP_STRING([--with-bugreport=ADDRESS], [set packager bugreport 
Email/Web address (PACKAGE_BUGREPORT_DEFAULT)]), [dnl
   case "$withval" in
  -[EMAIL PROTECTED] ) PACKAGE_BUGREPORT="$withval" ;;
  -*   ) AC_MSG_ERROR([invalid bugreport Email address]) ;;
  +[EMAIL PROTECTED]|http*://* ) PACKAGE_BUGREPORT="$withval" ;;
  +*   ) AC_MSG_ERROR([invalid bugreport Email/Web address]) ;;
   esac
   ])
   
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: rpm/ autogen.sh

2007-06-21 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   21-Jun-2007 10:28:50
  Branch: HEAD Handle: 2007062109285000

  Modified files:
rpm autogen.sh

  Log:
Endless loop if no zlib directory fixed.

  Summary:
RevisionChanges Path
2.79+1  -1  rpm/autogen.sh
  

  patch -p0 <<'@@ .'
  Index: rpm/autogen.sh
  
  $ cvs diff -u -r2.78 -r2.79 autogen.sh
  --- rpm/autogen.sh21 Jun 2007 06:55:01 -  2.78
  +++ rpm/autogen.sh21 Jun 2007 08:28:50 -  2.79
  @@ -36,7 +36,7 @@
   [ "`gettextize --version | head -1 | sed -e 's;^.*/\\(gettextize\\);\\1;'`" 
!= "$GTT" ] && echo "$USAGE" # && exit 1
   
   echo "===> zlib"
  -( cd zlib; sh ./autogen.sh --noconfigure "$@" )
  +( cd zlib && sh ./autogen.sh --noconfigure "$@" )
   echo "<=== zlib"
   
   echo "===> rpm"
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: rpm/ INSTALL autogen.sh configure.ac

2007-06-20 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   21-Jun-2007 08:36:08
  Branch: HEAD Handle: 2007062107360700

  Modified files:
rpm INSTALL autogen.sh configure.ac

  Log:
Try different (documented in info file) gettext approach.

  Summary:
RevisionChanges Path
2.8 +1  -1  rpm/INSTALL
2.77+1  -1  rpm/autogen.sh
2.101   +1  -0  rpm/configure.ac
  

  patch -p0 <<'@@ .'
  Index: rpm/INSTALL
  
  $ cvs diff -u -r2.7 -r2.8 INSTALL
  --- rpm/INSTALL   20 Jun 2007 11:25:50 -  2.7
  +++ rpm/INSTALL   21 Jun 2007 06:36:07 -  2.8
  @@ -17,7 +17,7 @@
   GNU autoconf 2.572.61http://www.gnu.org/software/autoconf/
   GNU automake 1.8 1.10http://www.gnu.org/software/automake/
   GNU libtool  1.5 1.5.22  http://www.gnu.org/software/libtool/
  -GNU gettext  1.16.0  1.16.1  http://www.gnu.org/software/gettext/
  +GNU gettext  1.161.16.1  http://www.gnu.org/software/gettext/
    --- --- -
   
   To build RPM you will need several other packages:
  @@ .
  patch -p0 <<'@@ .'
  Index: rpm/autogen.sh
  
  $ cvs diff -u -r2.76 -r2.77 autogen.sh
  --- rpm/autogen.sh21 Jun 2007 06:23:23 -  2.76
  +++ rpm/autogen.sh21 Jun 2007 06:36:07 -  2.77
  @@ -102,7 +102,7 @@
   
   echo "--- rpm"
   $libtoolize --copy --force
  -gettextize --copy --force --no-changelog
  +autopoint
   aclocal -I m4
   autoheader
   automake -a -c
  @@ .
  patch -p0 <<'@@ .'
  Index: rpm/configure.ac
  
  $ cvs diff -u -r2.100 -r2.101 configure.ac
  --- rpm/configure.ac  21 Jun 2007 05:52:50 -  2.100
  +++ rpm/configure.ac  21 Jun 2007 06:36:07 -  2.101
  @@ -608,6 +608,7 @@
 esac
   
   AC_CHECK_HEADERS(locale.h)
  +AM_GNU_GETTEXT_VERSION(0.16)
   AM_GNU_GETTEXT([external])
   
   dnl Checks for header files we can live without.
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: rpm/ Makefile.am configure.ac

2007-06-20 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   20-Jun-2007 23:42:24
  Branch: HEAD Handle: 2007062022422400

  Modified files:
rpm Makefile.am configure.ac

  Log:
po/ and m4/ really shouldn't be here. gettextize adds these.

  Summary:
RevisionChanges Path
2.172   +1  -1  rpm/Makefile.am
2.99+1  -1  rpm/configure.ac
  

  patch -p0 <<'@@ .'
  Index: rpm/Makefile.am
  
  $ cvs diff -u -r2.171 -r2.172 Makefile.am
  --- rpm/Makefile.am   20 Jun 2007 21:10:19 -  2.171
  +++ rpm/Makefile.am   20 Jun 2007 21:42:24 -  2.172
  @@ -4,7 +4,7 @@
   
   LINT = splint
   
  -EXTRA_DIST = m4/ChangeLog  config.rpath m4/ChangeLog  CHANGES CREDITS 
Doxyheader GROUPS INSTALL \
  +EXTRA_DIST = CHANGES CREDITS Doxyheader GROUPS INSTALL \
autodeps/none autodeps/*.prov autodeps/*.req autogen.sh \
config.site db db3/configure installplatform platform* \
perl/Changes perl/MANIFEST perl/META.yml perl/Makefile.PL \
  @@ .
  patch -p0 <<'@@ .'
  Index: rpm/configure.ac
  
  $ cvs diff -u -r2.98 -r2.99 configure.ac
  --- rpm/configure.ac  20 Jun 2007 21:21:18 -  2.98
  +++ rpm/configure.ac  20 Jun 2007 21:42:24 -  2.99
  @@ -1295,7 +1295,7 @@
   
   AC_CONFIG_SUBDIRS()
   
  -AC_CONFIG_FILES([ Doxyfile Makefile rpmrc macros platform rpmpopt rpm.spec 
po/Makefile.in
  +AC_CONFIG_FILES([ Doxyfile Makefile rpmrc macros platform rpmpopt rpm.spec
rpmio/Makefile rpmdb/Makefile lib/Makefile build/Makefile
scripts/Makefile
scripts/macros.perl scripts/macros.php scripts/macros.python
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: rpm/po/ ChangeLog Makefile.in.in Rules-quot boldquot.sed en...

2007-06-20 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   20-Jun-2007 23:33:18
  Branch: HEAD Handle: 2007062022331700

  Removed files:
rpm/po  ChangeLog Makefile.in.in Rules-quot boldquot.sed
[EMAIL PROTECTED] [EMAIL PROTECTED]
insert-header.sin quot.sed remove-potcdate.sin

  Log:
Delete autogenerated files.

  Summary:
RevisionChanges Path
1.4 +0  -21 rpm/po/ChangeLog
1.23+0  -403rpm/po/Makefile.in.in
1.3 +0  -47 rpm/po/Rules-quot
1.3 +0  -10 rpm/po/boldquot.sed
1.3 +0  -25 rpm/po/[EMAIL PROTECTED]
1.3 +0  -22 rpm/po/[EMAIL PROTECTED]
1.3 +0  -23 rpm/po/insert-header.sin
1.3 +0  -6  rpm/po/quot.sed
1.3 +0  -19 rpm/po/remove-potcdate.sin
  

  rm -f rpm/po/ChangeLog <<'@@ .'
  Index: rpm/po/ChangeLog
  
  [NO CHANGE SUMMARY BECAUSE FILE AS A WHOLE IS JUST REMOVED]
  @@ .
  rm -f rpm/po/Makefile.in.in <<'@@ .'
  Index: rpm/po/Makefile.in.in
  
  [NO CHANGE SUMMARY BECAUSE FILE AS A WHOLE IS JUST REMOVED]
  @@ .
  rm -f rpm/po/Rules-quot <<'@@ .'
  Index: rpm/po/Rules-quot
  
  [NO CHANGE SUMMARY BECAUSE FILE AS A WHOLE IS JUST REMOVED]
  @@ .
  rm -f rpm/po/boldquot.sed <<'@@ .'
  Index: rpm/po/boldquot.sed
  
  [NO CHANGE SUMMARY BECAUSE FILE AS A WHOLE IS JUST REMOVED]
  @@ .
  rm -f rpm/po/[EMAIL PROTECTED] <<'@@ .'
  Index: rpm/po/[EMAIL PROTECTED]
  
  [NO CHANGE SUMMARY BECAUSE FILE AS A WHOLE IS JUST REMOVED]
  @@ .
  rm -f rpm/po/[EMAIL PROTECTED] <<'@@ .'
  Index: rpm/po/[EMAIL PROTECTED]
  
  [NO CHANGE SUMMARY BECAUSE FILE AS A WHOLE IS JUST REMOVED]
  @@ .
  rm -f rpm/po/insert-header.sin <<'@@ .'
  Index: rpm/po/insert-header.sin
  
  [NO CHANGE SUMMARY BECAUSE FILE AS A WHOLE IS JUST REMOVED]
  @@ .
  rm -f rpm/po/quot.sed <<'@@ .'
  Index: rpm/po/quot.sed
  
  [NO CHANGE SUMMARY BECAUSE FILE AS A WHOLE IS JUST REMOVED]
  @@ .
  rm -f rpm/po/remove-potcdate.sin <<'@@ .'
  Index: rpm/po/remove-potcdate.sin
  
  [NO CHANGE SUMMARY BECAUSE FILE AS A WHOLE IS JUST REMOVED]
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: rpm/intl/ .cvsignore Makefile.in

2007-06-20 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   20-Jun-2007 23:30:18
  Branch: HEAD Handle: 2007062022301800

  Modified files:
rpm/intl.cvsignore
  Removed files:
rpm/intlMakefile.in

  Log:
rm autogenerated files.

  Summary:
RevisionChanges Path
1.3 +1  -0  rpm/intl/.cvsignore
1.10+0  -562rpm/intl/Makefile.in
  

  patch -p0 <<'@@ .'
  Index: rpm/intl/.cvsignore
  
  $ cvs diff -u -r1.2 -r1.3 .cvsignore
  --- rpm/intl/.cvsignore   29 Jun 2001 22:38:13 -  1.2
  +++ rpm/intl/.cvsignore   20 Jun 2007 21:30:18 -  1.3
  @@ -1,4 +1,5 @@
   Makefile
  +Makefile.in
   po2tbl.sed
   charset.alias
   libintl.h
  @@ .
  rm -f rpm/intl/Makefile.in <<'@@ .'
  Index: rpm/intl/Makefile.in
  
  [NO CHANGE SUMMARY BECAUSE FILE AS A WHOLE IS JUST REMOVED]
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: rpm/ .cvsignore ABOUT-NLS autogen.sh

2007-06-20 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   20-Jun-2007 23:28:50
  Branch: HEAD Handle: 2007062022285000

  Modified files:
rpm .cvsignore autogen.sh
  Removed files:
rpm ABOUT-NLS

  Log:
And more Don't update gettext changelogs.

  Summary:
RevisionChanges Path
1.34+1  -0  rpm/.cvsignore
1.4 +0  -1101   rpm/ABOUT-NLS
2.72+1  -1  rpm/autogen.sh
  

  patch -p0 <<'@@ .'
  Index: rpm/.cvsignore
  
  $ cvs diff -u -r1.33 -r1.34 .cvsignore
  --- rpm/.cvsignore20 Jun 2007 21:26:12 -  1.33
  +++ rpm/.cvsignore20 Jun 2007 21:28:50 -  1.34
  @@ -2,6 +2,7 @@
   .depend
   .depend-done
   .libs
  +ABOUT-NLS
   Doxyfile
   Doxytags
   Makefile
  @@ .
  rm -f rpm/ABOUT-NLS <<'@@ .'
  Index: rpm/ABOUT-NLS
  
  [NO CHANGE SUMMARY BECAUSE FILE AS A WHOLE IS JUST REMOVED]
  @@ .
  patch -p0 <<'@@ .'
  Index: rpm/autogen.sh
  
  $ cvs diff -u -r2.71 -r2.72 autogen.sh
  --- rpm/autogen.sh11 Jun 2007 13:58:20 -  2.71
  +++ rpm/autogen.sh20 Jun 2007 21:28:50 -  2.72
  @@ -69,7 +69,7 @@
   fi
   
   echo "--- rpm"
  -[ -f po/Makefile.in.in ] || gettextize --copy --force --intl
  +[ -f po/Makefile.in.in ] || gettextize --copy --force --intl --no-changelog
   $libtoolize --copy --force
   aclocal
   autoheader
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: rpm/ .cvsignore config.rpath config.site mkinstalldirs

2007-06-20 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   20-Jun-2007 23:26:13
  Branch: HEAD Handle: 2007062022261200

  Modified files:
rpm .cvsignore
  Removed files:
rpm config.rpath config.site mkinstalldirs

  Log:
Drop another autogenerated files.

  Summary:
RevisionChanges Path
1.33+3  -0  rpm/.cvsignore
2.2 +0  -614rpm/config.rpath
1.3 +0  -133rpm/config.site
1.4 +0  -161rpm/mkinstalldirs
  

  patch -p0 <<'@@ .'
  Index: rpm/.cvsignore
  
  $ cvs diff -u -r1.32 -r1.33 .cvsignore
  --- rpm/.cvsignore19 Jun 2007 12:48:14 -  1.32
  +++ rpm/.cvsignore20 Jun 2007 21:26:12 -  1.33
  @@ -15,6 +15,8 @@
   config.h
   config.h.in
   config.log
  +config.rpath
  +config.site
   config.status
   config.sub
   configure
  @@ -32,6 +34,7 @@
   macros
   macros-*
   missing
  +mkinstalldirs
   platform
   rpm
   rpm.spec
  @@ .
  rm -f rpm/config.rpath <<'@@ .'
  Index: rpm/config.rpath
  
  [NO CHANGE SUMMARY BECAUSE FILE AS A WHOLE IS JUST REMOVED]
  @@ .
  rm -f rpm/config.site <<'@@ .'
  Index: rpm/config.site
  
  [NO CHANGE SUMMARY BECAUSE FILE AS A WHOLE IS JUST REMOVED]
  @@ .
  rm -f rpm/mkinstalldirs <<'@@ .'
  Index: rpm/mkinstalldirs
  
  [NO CHANGE SUMMARY BECAUSE FILE AS A WHOLE IS JUST REMOVED]
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: popt/ poptint.c

2007-06-15 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: popt Date:   15-Jun-2007 14:47:37
  Branch: HEAD Handle: 2007061513473700

  Modified files:
poptpoptint.c

  Log:
va_end on copy.

  Summary:
RevisionChanges Path
1.6 +2  -0  popt/poptint.c
  

  patch -p0 <<'@@ .'
  Index: popt/poptint.c
  
  $ cvs diff -u -r1.5 -r1.6 poptint.c
  --- popt/poptint.c15 Jun 2007 12:41:14 -  1.5
  +++ popt/poptint.c15 Jun 2007 12:47:37 -  1.6
  @@ -104,6 +104,8 @@
 buffer = calloc (sizeof (char), vsnprintf (&c, 1, format, ap) + 1);
 vsprintf (buffer, format, apc);
   
  +  va_end(apc);
  +
 return buffer;
   }
   
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: popt/ configure.ac popt/po/ fi.po id.po it.po pt_BR.po sr.p...

2007-06-14 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: popt Date:   14-Jun-2007 23:14:47
  Branch: HEAD Handle: 2007061422144500

  Modified files:
poptconfigure.ac
  Removed files:
popt/po fi.po id.po it.po pt_BR.po sr.po zh.po zh_CN.po
zh_TW.po

  Log:
Drop empty/broken translations.

  Summary:
RevisionChanges Path
1.17+1  -1  popt/configure.ac
1.51+0  -125popt/po/fi.po
1.51+0  -125popt/po/id.po
1.51+0  -125popt/po/it.po
1.51+0  -125popt/po/pt_BR.po
1.51+0  -125popt/po/sr.po
1.50+0  -125popt/po/zh.po
1.7 +0  -126popt/po/zh_CN.po
1.7 +0  -124popt/po/zh_TW.po
  

  patch -p0 <<'@@ .'
  Index: popt/configure.ac
  
  $ cvs diff -u -r1.16 -r1.17 configure.ac
  --- popt/configure.ac 14 Jun 2007 13:31:10 -  1.16
  +++ popt/configure.ac 14 Jun 2007 21:14:45 -  1.17
  @@ -14,7 +14,7 @@
   
   AM_INIT_AUTOMAKE([foreign])
   
  -ALL_LINGUAS="cs da de es eu_ES fi fr gl hu id is it ja ko no pl pt pt_BR ro 
ru sk sl sr sv tr uk wa zh zh_CN zh_TW"
  +ALL_LINGUAS="cs da de es eu_ES fr gl hu is ja ko no pl pt ro ru sk sl sv tr 
uk wa"
   
   AC_PROG_CC
   AC_PROG_INSTALL
  @@ .
  rm -f popt/po/fi.po <<'@@ .'
  Index: popt/po/fi.po
  
  [NO CHANGE SUMMARY BECAUSE FILE AS A WHOLE IS JUST REMOVED]
  @@ .
  rm -f popt/po/id.po <<'@@ .'
  Index: popt/po/id.po
  
  [NO CHANGE SUMMARY BECAUSE FILE AS A WHOLE IS JUST REMOVED]
  @@ .
  rm -f popt/po/it.po <<'@@ .'
  Index: popt/po/it.po
  
  [NO CHANGE SUMMARY BECAUSE FILE AS A WHOLE IS JUST REMOVED]
  @@ .
  rm -f popt/po/pt_BR.po <<'@@ .'
  Index: popt/po/pt_BR.po
  
  [NO CHANGE SUMMARY BECAUSE FILE AS A WHOLE IS JUST REMOVED]
  @@ .
  rm -f popt/po/sr.po <<'@@ .'
  Index: popt/po/sr.po
  
  [NO CHANGE SUMMARY BECAUSE FILE AS A WHOLE IS JUST REMOVED]
  @@ .
  rm -f popt/po/zh.po <<'@@ .'
  Index: popt/po/zh.po
  
  [NO CHANGE SUMMARY BECAUSE FILE AS A WHOLE IS JUST REMOVED]
  @@ .
  rm -f popt/po/zh_CN.po <<'@@ .'
  Index: popt/po/zh_CN.po
  
  [NO CHANGE SUMMARY BECAUSE FILE AS A WHOLE IS JUST REMOVED]
  @@ .
  rm -f popt/po/zh_TW.po <<'@@ .'
  Index: popt/po/zh_TW.po
  
  [NO CHANGE SUMMARY BECAUSE FILE AS A WHOLE IS JUST REMOVED]
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: rpm-4_5: rpm/scripts/ rpm2cpio

2007-06-10 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   10-Jun-2007 13:43:39
  Branch: rpm-4_5  Handle: 2007061012433900

  Modified files:   (Branch: rpm-4_5)
rpm/scripts rpm2cpio

  Log:
Use correct tool for decompression depending on payload magic.
Unfortunately old lzma has no magic number so we assume that unknown
== lzma.

  Summary:
RevisionChanges Path
1.2.2.1 +11 -1  rpm/scripts/rpm2cpio
  

  patch -p0 <<'@@ .'
  Index: rpm/scripts/rpm2cpio
  
  $ cvs diff -u -r1.2 -r1.2.2.1 rpm2cpio
  --- rpm/scripts/rpm2cpio  25 May 2007 18:34:16 -  1.2
  +++ rpm/scripts/rpm2cpio  10 Jun 2007 11:43:39 -  1.2.2.1
  @@ -23,4 +23,14 @@
   hdrsize=`expr 8 + 16 \* $il + $dl`
   o=`expr $o + $hdrsize`
   
  -dd if=$pkg ibs=$o skip=1 2>/dev/null | gunzip
  +comp=$(dd if="$pkg" ibs=$o skip=1 count=1 2>/dev/null \
  +  | dd bs=3 count=1 2> /dev/null)
  +
  +gz="$(echo -en '\037\0213')"
  +case "$comp" in
  +BZh)  dd if="$pkg" ibs=$o skip=1 2>/dev/null | bunzip2 ;;
  +"$gz"*)   dd if="$pkg" ibs=$o skip=1 2>/dev/null | gunzip ;;
  +# no magic in old lzma format, if unknown we assume that's lzma for now
  +*)dd if="$pkg" ibs=$o skip=1 2>/dev/null | lzma d -si -so ;;
  +#*)echo "Unrecognized rpm file: $pkg"; return 1 ;;
  +esac
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: rpm-4_5: rpm/popt/ autogen.sh configure.ac

2007-06-05 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   05-Jun-2007 23:08:31
  Branch: rpm-4_5  Handle: 2007060522083000

  Modified files:   (Branch: rpm-4_5)
rpm/poptautogen.sh configure.ac

  Log:
gettext as external so no need for intl directory.

  Summary:
RevisionChanges Path
1.10.4.3+1  -1  rpm/popt/autogen.sh
1.10.2.5+1  -1  rpm/popt/configure.ac
  

  patch -p0 <<'@@ .'
  Index: rpm/popt/autogen.sh
  
  $ cvs diff -u -r1.10.4.2 -r1.10.4.3 autogen.sh
  --- rpm/popt/autogen.sh   5 Jun 2007 20:29:40 -   1.10.4.2
  +++ rpm/popt/autogen.sh   5 Jun 2007 21:08:30 -   1.10.4.3
  @@ -16,8 +16,8 @@
   esac
   
   cd "$srcdir"
  -gettextize --copy --force --intl
   $libtoolize --copy --force
  +gettextize --copy --force
   aclocal -I m4
   autoheader
   automake -a -c
  @@ .
  patch -p0 <<'@@ .'
  Index: rpm/popt/configure.ac
  
  $ cvs diff -u -r1.10.2.4 -r1.10.2.5 configure.ac
  --- rpm/popt/configure.ac 5 Jun 2007 21:06:00 -   1.10.2.4
  +++ rpm/popt/configure.ac 5 Jun 2007 21:08:30 -   1.10.2.5
  @@ -110,4 +110,4 @@
[Full path to popt top_srcdir.])
   AC_SUBST(POPT_SOURCE_PATH)
   
  -AC_OUTPUT([Doxyfile Makefile intl/Makefile po/Makefile.in])
  +AC_OUTPUT([Doxyfile Makefile])
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: rpm-4_5: rpm/popt/ configure.ac

2007-06-05 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   05-Jun-2007 23:06:01
  Branch: rpm-4_5  Handle: 200706052206

  Modified files:   (Branch: rpm-4_5)
rpm/poptconfigure.ac

  Log:
gettext as external so no need for intl directory.

  Summary:
RevisionChanges Path
1.10.2.4+1  -1  rpm/popt/configure.ac
  

  patch -p0 <<'@@ .'
  Index: rpm/popt/configure.ac
  
  $ cvs diff -u -r1.10.2.3 -r1.10.2.4 configure.ac
  --- rpm/popt/configure.ac 5 Jun 2007 20:12:41 -   1.10.2.3
  +++ rpm/popt/configure.ac 5 Jun 2007 21:06:00 -   1.10.2.4
  @@ -110,4 +110,4 @@
[Full path to popt top_srcdir.])
   AC_SUBST(POPT_SOURCE_PATH)
   
  -AC_OUTPUT([Doxyfile Makefile])
  +AC_OUTPUT([Doxyfile Makefile intl/Makefile po/Makefile.in])
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: rpm/popt/ autogen.sh

2007-06-05 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   05-Jun-2007 22:31:17
  Branch: HEAD Handle: 2007060521311700

  Modified files:
rpm/poptautogen.sh

  Log:
Include m4 macros from m4/.

  Summary:
RevisionChanges Path
1.12+1  -1  rpm/popt/autogen.sh
  

  patch -p0 <<'@@ .'
  Index: rpm/popt/autogen.sh
  
  $ cvs diff -u -r1.11 -r1.12 autogen.sh
  --- rpm/popt/autogen.sh   5 Jun 2007 19:44:28 -   1.11
  +++ rpm/popt/autogen.sh   5 Jun 2007 20:31:17 -   1.12
  @@ -18,7 +18,7 @@
   cd "$srcdir"
   gettextize --copy --force --intl
   $libtoolize --copy --force
  -aclocal
  +aclocal -I m4
   autoheader
   automake -a -c
   autoconf
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: rpm-4_5: rpm/popt/ autogen.sh

2007-06-05 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   05-Jun-2007 22:29:40
  Branch: rpm-4_5  Handle: 2007060521294000

  Modified files:   (Branch: rpm-4_5)
rpm/poptautogen.sh

  Log:
Include m4 macros from m4/.

  Summary:
RevisionChanges Path
1.10.4.2+1  -1  rpm/popt/autogen.sh
  

  patch -p0 <<'@@ .'
  Index: rpm/popt/autogen.sh
  
  $ cvs diff -u -r1.10.4.1 -r1.10.4.2 autogen.sh
  --- rpm/popt/autogen.sh   5 Jun 2007 19:58:48 -   1.10.4.1
  +++ rpm/popt/autogen.sh   5 Jun 2007 20:29:40 -   1.10.4.2
  @@ -18,7 +18,7 @@
   cd "$srcdir"
   gettextize --copy --force --intl
   $libtoolize --copy --force
  -aclocal
  +aclocal -I m4
   autoheader
   automake -a -c
   autoconf
  @@ .
__
RPM Package Managerhttp://rpm5.org
CVS Sources Repositoryrpm-cvs@rpm5.org


[CVS] RPM: rpm-4_5: rpm/popt/ configure.ac rpm/popt/po/ es.po eu_ES.po...

2007-06-05 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   05-Jun-2007 22:12:43
  Branch: rpm-4_5  Handle: 20070525183625959776

  Modified files:   (Branch: rpm-4_5)
rpm/poptconfigure.ac
rpm/popt/po es.po
  Removed files:(Branch: rpm-4_5)
rpm/popt/po eu_ES.po fi.po id.po it.po ja.po pt_BR.po sk.po
sr.po zh.po zh_CN.po zh_TW.po

  Log:
Drop untranslated po files. Fix es.po.

  Summary:
RevisionChanges Path
1.10.2.3+1  -1  rpm/popt/configure.ac
1.47.2.1+3  -3  rpm/popt/po/es.po
1.37+0  -125rpm/popt/po/eu_ES.po
1.47+0  -125rpm/popt/po/fi.po
1.47+0  -125rpm/popt/po/id.po
1.47+0  -125rpm/popt/po/it.po
1.47+0  -124rpm/popt/po/ja.po
1.47+0  -125rpm/popt/po/pt_BR.po
1.57+0  -125rpm/popt/po/sk.po
1.47+0  -125rpm/popt/po/sr.po
1.46+0  -125rpm/popt/po/zh.po
1.3 +0  -126rpm/popt/po/zh_CN.po
1.3 +0  -124rpm/popt/po/zh_TW.po
  

  patch -p0 <<'@@ .'
  Index: rpm/popt/configure.ac
  
  $ cvs diff -u -r1.10.2.2 -r1.10.2.3 configure.ac
  --- rpm/popt/configure.ac 5 Jun 2007 19:58:48 -   1.10.2.2
  +++ rpm/popt/configure.ac 5 Jun 2007 20:12:41 -   1.10.2.3
  @@ -12,7 +12,7 @@
   AC_SUBST(LT_REVISION, 0)
   AC_SUBST(LT_AGE, 8)
   
  -ALL_LINGUAS="cs da de es eu_ES fi fr gl hu id is it ja ko no pl pt pt_BR ro 
ru sk sl sr sv tr uk wa zh zh_CN zh_TW"
  +ALL_LINGUAS="cs da de es fr gl hu is ko no pl pt ro ru sl sv tr uk wa"
   
   AC_ISC_POSIX
   
  @@ .
  patch -p0 <<'@@ .'
  Index: rpm/popt/po/es.po
  
  $ cvs diff -u -r1.47 -r1.47.2.1 es.po
  --- rpm/popt/po/es.po 25 May 2007 17:36:25 -  1.47
  +++ rpm/popt/po/es.po 5 Jun 2007 20:12:41 -   1.47.2.1
  @@ -8,12 +8,12 @@
   "Project-Id-Version: popt 1.6.3\n"
   "Report-Msgid-Bugs-To: <[EMAIL PROTECTED]>\n"
   "POT-Creation-Date: 2007-01-21 14:25-0500\n"
  -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  +"PO-Revision-Date: 2007-01-21 14:25-0500\n"
   "Last-Translator: Leandro Lucarella <[EMAIL PROTECTED]>\n"
  -"Language-Team: LANGUAGE <[EMAIL PROTECTED]>\n"
  +"Language-Team: Spanish <[EMAIL PROTECTED]>\n"
   "MIME-Version: 1.0\n"
   "Content-Type: text/plain; charset=UTF-8\n"
  -"Content-Transfer-Encoding: ENCODING\n"
  +"Content-Transfer-Encoding: 8-bit\n"
   
   #: popt.c:35
   msgid "unknown errno"
  @@ .
  rm -f rpm/popt/po/eu_ES.po <<'@@ .'
  Index: rpm/popt/po/eu_ES.po
  
  [NO CHANGE SUMMARY BECAUSE FILE AS A WHOLE IS JUST REMOVED]
  @@ .
  rm -f rpm/popt/po/fi.po <<'@@ .'
  Index: rpm/popt/po/fi.po
  
  [NO CHANGE SUMMARY BECAUSE FILE AS A WHOLE IS JUST REMOVED]
  @@ .
  rm -f rpm/popt/po/id.po <<'@@ .'
  Index: rpm/popt/po/id.po
  
  [NO CHANGE SUMMARY BECAUSE FILE AS A WHOLE IS JUST REMOVED]
  @@ .
  rm -f rpm/popt/po/it.po <<'@@ .'
  Index: rpm/popt/po/it.po
  
  [NO CHANGE SUMMARY BECAUSE FILE AS A WHOLE IS JUST REMOVED]
  @@ .
  rm -f rpm/popt/po/ja.po <<'@@ .'
  Index: rpm/popt/po/ja.po
  
  [NO CHANGE SUMMARY BECAUSE FILE AS A WHOLE IS JUST REMOVED]
  @@ .
  rm -f rpm/popt/po/pt_BR.po <<'@@ .'
  Index: rpm/popt/po/pt_BR.po
  
  [NO CHANGE SUMMARY BECAUSE FILE AS A WHOLE IS JUST REMOVED]
  @@ .
  rm -f rpm/popt/po/sk.po <<'@@ .'
  Index: rpm/popt/po/sk.po
  
  [NO CHANGE SUMMARY BECAUSE FILE AS A WHOLE IS JUST REMOVED]
  @@ .
  rm -f rpm/popt/po/sr.po <<'@@ .'
  Index: rpm/popt/po/sr.po
  ==

[CVS] RPM: rpm-4_5: rpm/popt/ autogen.sh config.rpath configure.ac rpm...

2007-06-05 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   05-Jun-2007 21:58:53
  Branch: rpm-4_5  Handle: 2006120818032415472528

  Modified files:   (Branch: rpm-4_5)
rpm/poptautogen.sh configure.ac
rpm/popt/po .cvsignore
  Removed files:(Branch: rpm-4_5)
rpm/poptconfig.rpath mkinstalldirs
rpm/popt/intl   Makefile.in
rpm/popt/m4 ChangeLog codeset.m4 gettext.m4 glibc2.m4
glibc21.m4 iconv.m4 intdiv0.m4 intl.m4 intldir.m4
intmax.m4 inttypes-pri.m4 inttypes_h.m4
lcmessage.m4 lib-ld.m4 lib-link.m4 lib-prefix.m4
lock.m4 longdouble.m4 longlong.m4 nls.m4 po.m4
printf-posix.m4 progtest.m4 size_max.m4
stdint_h.m4 uintmax_t.m4 ulonglong.m4
visibility.m4 wchar_t.m4 wint_t.m4 xsize.m4
rpm/popt/po ChangeLog Makefile.in.in Rules-quot boldquot.sed
[EMAIL PROTECTED] [EMAIL PROTECTED]
insert-header.sin quot.sed remove-potcdate.sin

  Log:
Drop autogenerated or autocopied files. Run gettextize which copies
needed files.

  Summary:
RevisionChanges Path
1.10.4.1+1  -0  rpm/popt/autogen.sh
1.3 +0  -614rpm/popt/config.rpath
1.10.2.2+1  -1  rpm/popt/configure.ac
1.6 +0  -562rpm/popt/intl/Makefile.in
1.1 +0  -36 rpm/popt/m4/ChangeLog
1.1 +0  -21 rpm/popt/m4/codeset.m4
1.1 +0  -417rpm/popt/m4/gettext.m4
1.1 +0  -30 rpm/popt/m4/glibc2.m4
1.1 +0  -30 rpm/popt/m4/glibc21.m4
1.1 +0  -101rpm/popt/m4/iconv.m4
1.1 +0  -70 rpm/popt/m4/intdiv0.m4
1.1 +0  -259rpm/popt/m4/intl.m4
1.1 +0  -19 rpm/popt/m4/intldir.m4
1.1 +0  -33 rpm/popt/m4/intmax.m4
1.1 +0  -36 rpm/popt/m4/inttypes-pri.m4
1.1 +0  -26 rpm/popt/m4/inttypes_h.m4
1.1 +0  -30 rpm/popt/m4/lcmessage.m4
1.1 +0  -110rpm/popt/m4/lib-ld.m4
1.1 +0  -644rpm/popt/m4/lib-link.m4
1.1 +0  -185rpm/popt/m4/lib-prefix.m4
1.1 +0  -311rpm/popt/m4/lock.m4
1.1 +0  -31 rpm/popt/m4/longdouble.m4
1.1 +0  -48 rpm/popt/m4/longlong.m4
1.1 +0  -31 rpm/popt/m4/nls.m4
1.1 +0  -428rpm/popt/m4/po.m4
1.1 +0  -44 rpm/popt/m4/printf-posix.m4
1.1 +0  -92 rpm/popt/m4/progtest.m4
1.1 +0  -62 rpm/popt/m4/size_max.m4
1.1 +0  -26 rpm/popt/m4/stdint_h.m4
1.1 +0  -30 rpm/popt/m4/uintmax_t.m4
1.1 +0  -48 rpm/popt/m4/ulonglong.m4
1.1 +0  -52 rpm/popt/m4/visibility.m4
1.1 +0  -20 rpm/popt/m4/wchar_t.m4
1.1 +0  -20 rpm/popt/m4/wint_t.m4
1.1 +0  -13 rpm/popt/m4/xsize.m4
1.3 +0  -40 rpm/popt/mkinstalldirs
1.4.14.2+5  -0  rpm/popt/po/.cvsignore
1.3 +0  -12 rpm/popt/po/ChangeLog
1.17+0  -403rpm/popt/po/Makefile.in.in
1.3 +0  -47 rpm/popt/po/Rules-quot
1.3 +0  -10 rpm/popt/po/boldquot.sed
1.3 +0  -25 rpm/popt/po/[EMAIL PROTECTED]
1.3 +0  -22 rpm/popt/po/[EMAIL PROTECTED]
1.3 +0  -23 rpm/popt/po/insert-header.sin
1.3 +0  -6  rpm/popt/po/quot.sed
1.3 +0  -19 rpm/popt/po/remove-potcdate.sin
  

  patch -p0 <<'@@ .'
  Index: rpm/popt/autogen.sh
  
  $ cvs diff -u -r1.10 -r1.10.4.1 autogen.sh
  --- rpm/popt/autogen.sh   17 Jan 2005 22:12:08 -  1.10
  +++ rpm/popt/autogen.sh   5 Jun 2007 19:58:48 -   1.10.4.1
  @@ -16,6 +16,7 @@
   esac
   
   cd "$srcdir"
  +gettextize --copy --force --intl
   $libtoolize --copy --force
   aclocal
   autoheader
  @@ .
  rm -f rpm/popt/config.rpath <<'@@ .'
  Index: rpm/popt/config.rpath
  
  [NO CHANGE SUMMARY BECAUSE FILE AS A WHOLE IS JUST REMOVED]
  @@ .
  patch -p0 <<'@@ .'
  Index: rpm/popt/configure.ac
  
  $ cvs diff -u -r1.

[CVS] RPM: rpm/popt/ autogen.sh config.rpath configure.ac rpm/popt/int...

2007-06-05 Thread Arkadiusz Miskiewicz
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  

  Server: rpm5.org Name:   Arkadiusz Miskiewicz
  Root:   /v/rpm/cvs   Email:  [EMAIL PROTECTED]
  Module: rpm  Date:   05-Jun-2007 21:44:30
  Branch: HEAD Handle: 2007060520442801

  Modified files:
rpm/poptautogen.sh configure.ac
rpm/popt/po .cvsignore
  Removed files:
rpm/poptconfig.rpath mkinstalldirs
rpm/popt/intl   Makefile.in
rpm/popt/po ChangeLog Makefile.in.in Rules-quot boldquot.sed
[EMAIL PROTECTED] [EMAIL PROTECTED]
insert-header.sin quot.sed remove-potcdate.sed
remove-potcdate.sin

  Log:
Drop autogenerated or autocopied files. Run gettextize which copies
needed files.

  Summary:
RevisionChanges Path
1.11+1  -0  rpm/popt/autogen.sh
1.3 +0  -614rpm/popt/config.rpath
1.11+1  -1  rpm/popt/configure.ac
1.6 +0  -562rpm/popt/intl/Makefile.in
1.3 +0  -40 rpm/popt/mkinstalldirs
1.6 +5  -0  rpm/popt/po/.cvsignore
1.3 +0  -12 rpm/popt/po/ChangeLog
1.17+0  -403rpm/popt/po/Makefile.in.in
1.3 +0  -47 rpm/popt/po/Rules-quot
1.3 +0  -10 rpm/popt/po/boldquot.sed
1.3 +0  -25 rpm/popt/po/[EMAIL PROTECTED]
1.3 +0  -22 rpm/popt/po/[EMAIL PROTECTED]
1.3 +0  -23 rpm/popt/po/insert-header.sin
1.3 +0  -6  rpm/popt/po/quot.sed
1.2 +0  -11 rpm/popt/po/remove-potcdate.sed
1.3 +0  -19 rpm/popt/po/remove-potcdate.sin
  

  patch -p0 <<'@@ .'
  Index: rpm/popt/autogen.sh
  
  $ cvs diff -u -r1.10 -r1.11 autogen.sh
  --- rpm/popt/autogen.sh   17 Jan 2005 22:12:08 -  1.10
  +++ rpm/popt/autogen.sh   5 Jun 2007 19:44:28 -   1.11
  @@ -16,6 +16,7 @@
   esac
   
   cd "$srcdir"
  +gettextize --copy --force --intl
   $libtoolize --copy --force
   aclocal
   autoheader
  @@ .
  rm -f rpm/popt/config.rpath <<'@@ .'
  Index: rpm/popt/config.rpath
  
  [NO CHANGE SUMMARY BECAUSE FILE AS A WHOLE IS JUST REMOVED]
  @@ .
  patch -p0 <<'@@ .'
  Index: rpm/popt/configure.ac
  
  $ cvs diff -u -r1.10 -r1.11 configure.ac
  --- rpm/popt/configure.ac 25 May 2007 17:36:23 -  1.10
  +++ rpm/popt/configure.ac 5 Jun 2007 19:44:28 -   1.11
  @@ -110,4 +110,4 @@
[Full path to popt top_srcdir.])
   AC_SUBST(POPT_SOURCE_PATH)
   
  -AC_OUTPUT([Doxyfile Makefile po/Makefile.in intl/Makefile])
  +AC_OUTPUT([Doxyfile Makefile])
  @@ .
  rm -f rpm/popt/intl/Makefile.in <<'@@ .'
  Index: rpm/popt/intl/Makefile.in
  
  [NO CHANGE SUMMARY BECAUSE FILE AS A WHOLE IS JUST REMOVED]
  @@ .
  rm -f rpm/popt/mkinstalldirs <<'@@ .'
  Index: rpm/popt/mkinstalldirs
  
  [NO CHANGE SUMMARY BECAUSE FILE AS A WHOLE IS JUST REMOVED]
  @@ .
  patch -p0 <<'@@ .'
  Index: rpm/popt/po/.cvsignore
  
  $ cvs diff -u -r1.5 -r1.6 .cvsignore
  --- rpm/popt/po/.cvsignore30 May 2007 02:45:47 -  1.5
  +++ rpm/popt/po/.cvsignore5 Jun 2007 19:44:28 -   1.6
  @@ -1,8 +1,13 @@
   Makefile
   Makefile.in
  +Makefile.in.in
  +Makevars.template
   POTFILES
   stamp-cat-id
   stamp-po
   cat-id-tbl.c
  +*.header
   *.mo
   *.gmo
  +*.sed
  +*.sin
  @@ .
  rm -f rpm/popt/po/ChangeLog <<'@@ .'
  Index: rpm/popt/po/ChangeLog
  
  [NO CHANGE SUMMARY BECAUSE FILE AS A WHOLE IS JUST REMOVED]
  @@ .
  rm -f rpm/popt/po/Makefile.in.in <<'@@ .'
  Index: rpm/popt/po/Makefile.in.in
  
  [NO CHANGE SUMMARY BECAUSE FILE AS A WHOLE IS JUST REMOVED]
  @@ .
  rm -f rpm/popt/po/Rules-quot <<'@@ .'
  Index: rpm/popt/po/Rules-quot
  
  [NO CHANGE SUMMARY BECAUSE FILE AS A WHOLE IS JUST REMOVED]
  @@ .
  rm -f rpm/popt/po/boldquot.sed <<'@@ .&#