commit cvsps for openSUSE:Factory

2013-05-13 Thread h_root
Hello community,

here is the log from the commit of package cvsps for openSUSE:Factory checked 
in at 2013-05-13 22:48:03

Comparing /work/SRC/openSUSE:Factory/cvsps (Old)
 and  /work/SRC/openSUSE:Factory/.cvsps.new (New)


Package is cvsps

Changes:

--- /work/SRC/openSUSE:Factory/cvsps/cvsps.changes  2013-05-02 
11:06:11.0 +0200
+++ /work/SRC/openSUSE:Factory/.cvsps.new/cvsps.changes 2013-05-13 
22:48:04.0 +0200
@@ -1,0 +2,5 @@
+Tue May  7 08:32:52 UTC 2013 - pgaj...@suse.com
+
+- downgrade to 2.1 [bnc#809800]
+
+---

Old:

  cvsps-3.10.tar.gz

New:

  CMakeLists.txt
  bk-cvs.mail
  commitid.diff
  cvsps-2.1.tar.bz2
  cvsps-bk-cvs.mail
  fixes.tar.bz2



Other differences:
--
++ cvsps.spec ++
--- /var/tmp/diff_new_pack.zmfODh/_old  2013-05-13 22:48:05.0 +0200
+++ /var/tmp/diff_new_pack.zmfODh/_new  2013-05-13 22:48:05.0 +0200
@@ -17,20 +17,26 @@
 
 
 Name:   cvsps
+BuildRequires:  cmake
+BuildRequires:  zlib-devel
 Summary:A Program for Generating Patch Set Information from a CVS 
Repository
 License:GPL-2.0+
 Group:  Development/Tools/Version Control
-Version:3.10
+# DO NOT UPGRADE to 3.x before you make sure it works with git-cvsps 
[bnc#809800]
+Version:2.1
 Release:0
-Source0:http://www.catb.org/~esr/cvsps/%{name}-%{version}.tar.gz
-Url:http://www.catb.org/~esr/cvsps/
+%define real_version 2.1
+Source: cvsps-%{real_version}.tar.bz2
+Source1:bk-cvs.mail
+Source2:cvsps-bk-cvs.mail
+Source3:fixes.tar.bz2
+Source4:CMakeLists.txt
+Obsoletes:  cvsps2 = %{version}
+Provides:   cvsps2 = %{version}
+Patch:  commitid.diff
+Url:http://www.cobite.com/cvsps/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
-BuildRequires:  asciidoc
-BuildRequires:  libxslt-tools
-BuildRequires:  pkgconfig(zlib)
-Conflicts:  cvsps2
-
 %description
 CVSps is a program for generating 'patchset' information from a CVS
 repository. In this case, a patchset is defined as a set of changes
@@ -40,19 +46,32 @@
 revision information, it is often difficult to see what changes were
 'atomically' committed to the repository.
 
+
+
 %prep
-%setup -q
+%setup -q -n cvsps-%{real_version}
+tar xvfj %{SOURCE3}
+for patch in $(cat fixes/series); do
+patch -p1  fixes/$patch
+done
+cp %{SOURCE1} %{SOURCE2} %{SOURCE4} .
+%patch -p1
 
 %build
 export CFLAGS=%{optflags}
+cmake -DCMAKE_INSTALL_PREFIX=%{_prefix} -DCMAKE_VERBOSE_MAKEFILE=TRUE .
 %{__make} %{?jobs:-j%jobs}
 
 %install
-%{__make} prefix=%{buildroot}/%{_prefix} install 
+%makeinstall 
+
+%clean
+rm -rf $RPM_BUILD_ROOT
 
 %files
 %defattr(-,root,root)
-%doc COPYING NEWS README TODO
+%doc README CHANGELOG COPYING
+%doc bk-cvs.mail cvsps-bk-cvs.mail
 %{_bindir}/cvsps
 %{_mandir}/man*/*
 

++ CMakeLists.txt ++
#cmake support for cvsps 
# author: Cristian Rodriguez crrodrig...@suse.de

PROJECT(cvsps C)
SET(CVSPS_VERSION_MAJOR 2)
SET(CVSPS_VERSION_MINOR 1)
SET(CMAKE_C_FLAGS ${CMAKE_C_FLAGS} -g -Wall 
-DVERSION=\\\${CVSPS_VERSION_MAJOR}.${CVSPS_VERSION_MINOR}\\\)
FIND_PACKAGE(ZLIB REQUIRED)
INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR})
INCLUDE_DIRECTORIES(${ZLIB_INCLUDE_DIR})

SET(CVSPS_SRCS 
cache.c cap.c
cvs_direct.c  cvsps.c
list_sort.c  stats.c  
util.c cbtcommon/debug.c cbtcommon/hash.c
cbtcommon/text_util.c cbtcommon/sio.c cbtcommon/tcpsocket.c
)

ADD_EXECUTABLE(cvsps ${CVSPS_SRCS})

TARGET_LINK_LIBRARIES(cvsps ${ZLIB_LIBRARY})

INSTALL(PROGRAMS cvsps DESTINATION bin)
INSTALL(FILES cvsps.1 DESTINATION share/man/man1)
++ bk-cvs.mail ++
Date: Mon, 17 Mar 2003 07:52:20 -0800
From: Larry McVoy l...@bitmover.com
To: linux-ker...@vger.kernel.org
Subject: BK-CVS is live

I think those repositories are stable enough you can start to count on
them.  Sam and others have looked over their changes and think that 
the CVS tree has accurate data.

The CVS repository is at

cvs -d:pserver:anonym...@kernel.bkbits.net:/home/cvs

and it has two top level directories, linux-2.4 and linux-2.5.
++ commitid.diff ++
diff --git a/cache.c b/cache.c
index 5f67a7c..762cfb7 100644
--- a/cache.c
+++ b/cache.c
@@ -89,6 +89,7 @@ enum
 CACHE_NEED_PS_TAG_FLAGS,
 CACHE_NEED_PS_BRANCH,
 CACHE_NEED_PS_BRANCH_ADD,
+CACHE_NEED_PS_COMMITID_OR_DESCR,
 CACHE_NEED_PS_DESCR,
 CACHE_NEED_PS_EOD,
 CACHE_NEED_PS_MEMBERS,
@@ -108,6 +109,7 @@ time_t read_cache()
 int tag_flags = 0;
 char branchbuff[LOG_STR_MAX] = ;
 int branch_add = 0;
+char cidbuff[CID_STR_MAX] = ;
 int logbufflen = LOG_STR_MAX + 1;
 

commit cvsps for openSUSE:Factory

2013-05-02 Thread h_root
Hello community,

here is the log from the commit of package cvsps for openSUSE:Factory checked 
in at 2013-05-02 11:06:09

Comparing /work/SRC/openSUSE:Factory/cvsps (Old)
 and  /work/SRC/openSUSE:Factory/.cvsps.new (New)


Package is cvsps

Changes:

--- /work/SRC/openSUSE:Factory/cvsps/cvsps.changes  2013-03-08 
09:09:25.0 +0100
+++ /work/SRC/openSUSE:Factory/.cvsps.new/cvsps.changes 2013-05-02 
11:06:11.0 +0200
@@ -1,0 +2,5 @@
+Wed Apr 24 10:02:36 UTC 2013 - pgaj...@suse.com
+
+- conflicts with cvsps2 [bnc#809800]
+
+---



Other differences:
--
++ cvsps.spec ++
--- /var/tmp/diff_new_pack.JUNQGx/_old  2013-05-02 11:06:12.0 +0200
+++ /var/tmp/diff_new_pack.JUNQGx/_new  2013-05-02 11:06:12.0 +0200
@@ -29,6 +29,7 @@
 BuildRequires:  asciidoc
 BuildRequires:  libxslt-tools
 BuildRequires:  pkgconfig(zlib)
+Conflicts:  cvsps2
 
 %description
 CVSps is a program for generating 'patchset' information from a CVS
@@ -49,9 +50,6 @@
 %install
 %{__make} prefix=%{buildroot}/%{_prefix} install 
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
 %files
 %defattr(-,root,root)
 %doc COPYING NEWS README TODO

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit cvsps for openSUSE:Factory

2013-03-08 Thread h_root
Hello community,

here is the log from the commit of package cvsps for openSUSE:Factory checked 
in at 2013-03-08 09:08:39

Comparing /work/SRC/openSUSE:Factory/cvsps (Old)
 and  /work/SRC/openSUSE:Factory/.cvsps.new (New)


Package is cvsps, Maintainer is pgaj...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/cvsps/cvsps.changes  2013-01-17 
09:37:49.0 +0100
+++ /work/SRC/openSUSE:Factory/.cvsps.new/cvsps.changes 2013-03-08 
09:09:25.0 +0100
@@ -1,0 +2,12 @@
+Tue Jan 29 08:12:23 UTC 2013 - pgaj...@suse.com
+
+- update to 3.10
+  * Make the behavior of a second -d option match the documentation.
+
+---
+Mon Jan 21 11:40:20 UTC 2013 - pgaj...@suse.com
+
+- update to 3.9
+   * Added -i option for generating incremental fast exports.
+
+---

Old:

  cvsps-3.8.tar.gz

New:

  cvsps-3.10.tar.gz



Other differences:
--
++ cvsps.spec ++
--- /var/tmp/diff_new_pack.Y7oJ9z/_old  2013-03-08 09:09:26.0 +0100
+++ /var/tmp/diff_new_pack.Y7oJ9z/_new  2013-03-08 09:09:26.0 +0100
@@ -20,7 +20,7 @@
 Summary:A Program for Generating Patch Set Information from a CVS 
Repository
 License:GPL-2.0+
 Group:  Development/Tools/Version Control
-Version:3.8
+Version:3.10
 Release:0
 Source0:http://www.catb.org/~esr/cvsps/%{name}-%{version}.tar.gz
 Url:http://www.catb.org/~esr/cvsps/

++ cvsps-3.8.tar.gz - cvsps-3.10.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cvsps-3.8/Makefile new/cvsps-3.10/Makefile
--- old/cvsps-3.8/Makefile  2013-01-14 12:07:17.0 +0100
+++ new/cvsps-3.10/Makefile 2013-01-21 14:20:15.0 +0100
@@ -1,4 +1,4 @@
-VERSION=3.8
+VERSION=3.10
 
 CC?=gcc
 CFLAGS?=-g -O2 -Wall 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cvsps-3.8/NEWS new/cvsps-3.10/NEWS
--- old/cvsps-3.8/NEWS  2013-01-14 12:07:04.0 +0100
+++ new/cvsps-3.10/NEWS 2013-01-21 14:20:02.0 +0100
@@ -1,5 +1,11 @@
CVSps project news
 
+3.10 @ 2013-01-20
+  Make the behavior of a second -d option match the documentation.
+
+3.9 @ 2013-01-20
+  Added -i option for generating incremental fast exports.
+
 3.8 @ 2013-01-13
   Fix buggy generation of the revision-map file (thanks to Chris Rorvick).
   Don't convert .cvsignores by default, we have field reports of collisions.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cvsps-3.8/cvsclient.c new/cvsps-3.10/cvsclient.c
--- old/cvsps-3.8/cvsclient.c   2013-01-09 16:48:13.0 +0100
+++ new/cvsps-3.10/cvsclient.c  2013-01-14 19:55:10.0 +0100
@@ -799,12 +799,15 @@
 
 void cvs_update(CvsServerCtx * ctx, const char * rep, const char * file, const 
char * rev, bool kk, FILE *fp)
 {
-if (kk)
-   send_string(ctx, Argument -kk\n);
-send_string(ctx, Argument -r\n);
-send_string(ctx, Argument %s\n, rev);
-send_string(ctx, Argument %s/%s\n, rep, file);
-send_string(ctx, co\n);
+send_string(ctx,
+   %s
+   Argument -r\n
+   Argument %s\n
+   Argument %s/%s\n
+   co\n,
+   kk ? Argument -kk\n : ,
+   rev,
+   rep, file);
 
 ctx_to_fp(ctx, fp);
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cvsps-3.8/cvsps.asc new/cvsps-3.10/cvsps.asc
--- old/cvsps-3.8/cvsps.asc 2013-01-14 12:04:41.0 +0100
+++ new/cvsps-3.10/cvsps.asc2013-01-20 23:40:02.0 +0100
@@ -12,7 +12,7 @@
 [-v] [-t] [--summary-first] [--diff-opts 'option string']
 [--debuglvl 'bitmask'] [-Z 'compression'] [--root 'cvsroot']
 [-q] [--fast-export] [--convert-ignores] [--reposurgeon] 
-[-k] [-T] [-V] ['module-path']
+[-i] [-k] [-T] [-V] ['module-path']
 
 == DESCRIPTION ==
 cvsps tries to group the per-file commits and tags in a CVS project
@@ -130,6 +130,12 @@
 --root 'cvsroot'::
 Override the setting of CVSROOT (overrides working directory and
 environment).
+-i::
+Incremental export.  Each commit with no ancestor gets a from pointer
+with the value of refs/heads/${BRANCH}^0 where $BRANCH is its branch
+name.  When importing to an existing repository, this will attach each 
+such commit as a child of the last commit on $BRANCH in the existing
+repository.
 -k::
 Kill keywords: will extract files with '-kk' from the CVS archive
 to avoid noisy changesets.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 

commit cvsps for openSUSE:Factory

2013-01-17 Thread h_root
Hello community,

here is the log from the commit of package cvsps for openSUSE:Factory checked 
in at 2013-01-17 09:37:46

Comparing /work/SRC/openSUSE:Factory/cvsps (Old)
 and  /work/SRC/openSUSE:Factory/.cvsps.new (New)


Package is cvsps, Maintainer is mvysko...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/cvsps/cvsps.changes  2013-01-11 
15:54:21.0 +0100
+++ /work/SRC/openSUSE:Factory/.cvsps.new/cvsps.changes 2013-01-17 
09:37:49.0 +0100
@@ -1,0 +2,7 @@
+Tue Jan 15 10:16:49 UTC 2013 - mvysko...@suse.com
+
+- update to 3.8
+  * fix buggy generation of the revision-map file (thanks to Chris Rorvick).
+  * don't convert .cvsignores by default, we have field reports of collisions.
+
+---

Old:

  cvsps-3.7.tar.gz

New:

  cvsps-3.8.tar.gz



Other differences:
--
++ cvsps.spec ++
--- /var/tmp/diff_new_pack.HOPwjF/_old  2013-01-17 09:37:50.0 +0100
+++ /var/tmp/diff_new_pack.HOPwjF/_new  2013-01-17 09:37:50.0 +0100
@@ -20,7 +20,7 @@
 Summary:A Program for Generating Patch Set Information from a CVS 
Repository
 License:GPL-2.0+
 Group:  Development/Tools/Version Control
-Version:3.7
+Version:3.8
 Release:0
 Source0:http://www.catb.org/~esr/cvsps/%{name}-%{version}.tar.gz
 Url:http://www.catb.org/~esr/cvsps/

++ cvsps-3.7.tar.gz - cvsps-3.8.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cvsps-3.7/Makefile new/cvsps-3.8/Makefile
--- old/cvsps-3.7/Makefile  2013-01-09 16:57:03.0 +0100
+++ new/cvsps-3.8/Makefile  2013-01-14 12:07:17.0 +0100
@@ -1,9 +1,10 @@
-VERSION=3.7
+VERSION=3.8
 
 CC?=gcc
 CFLAGS?=-g -O2 -Wall 
 CPPFLAGS+=-I. -DVERSION=\$(VERSION)\
 LDLIBS+=-lz # += to allow solaris and friends add their libs like -lsocket
+INSTALL = install
 prefix?=/usr/local
 target=$(DESTDIR)$(prefix)
 
@@ -48,11 +49,11 @@
 .txt.html:
a2x --doctype manpage --format xhtml $*.txt
 
-install: cvsps.1
-   [ -d $(target)/bin ] || mkdir -p $(target)/bin
-   [ -d $(target)/share/man/man1 ] || mkdir -p $(target)/share/man/man1
-   install cvsps $(target)/bin
-   install -m 644 cvsps.1 $(target)/share/man/man1
+install: cvsps.1 all
+   $(INSTALL) -d $(target)/bin
+   $(INSTALL) -d $(target)/share/man/man1
+   $(INSTALL) cvsps $(target)/bin
+   $(INSTALL) -m 644 cvsps.1 $(target)/share/man/man1
 
 tags: *.c *.h
ctags *.c *.h
@@ -70,7 +71,8 @@
 dist: cvsps-$(VERSION).tar.gz
 
 release: cvsps-$(VERSION).tar.gz cvsps.html
-   shipper -u -m -t; make clean; rm SHIPPER.FREECODE
+   rm -f docbook-xsl.css git-cvsimport.html
+   shipper -u -m -t; make clean; rm -f SHIPPER.FREECODE
 
 .PHONY: install clean version dist check
 # DO NOT DELETE
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cvsps-3.7/NEWS new/cvsps-3.8/NEWS
--- old/cvsps-3.7/NEWS  2013-01-09 16:56:14.0 +0100
+++ new/cvsps-3.8/NEWS  2013-01-14 12:07:04.0 +0100
@@ -1,5 +1,9 @@
CVSps project news
 
+3.8 @ 2013-01-13
+  Fix buggy generation of the revision-map file (thanks to Chris Rorvick).
+  Don't convert .cvsignores by default, we have field reports of collisions.
+
 3.7 @ 2013-01-08
   Bug fix in timezone handling (thanks to Chris Rorvick).
   Major performance gain in the CVS client code (thanks to Sergei Trofimovich).
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cvsps-3.7/cvsps.asc new/cvsps-3.8/cvsps.asc
--- old/cvsps-3.7/cvsps.asc 2013-01-07 13:45:04.0 +0100
+++ new/cvsps-3.8/cvsps.asc 2013-01-14 12:04:41.0 +0100
@@ -11,7 +11,8 @@
 [-r 'tag' [-r 'tag']] [-p 'directory'] [-A 'authormap'] [-R 'revmap']
 [-v] [-t] [--summary-first] [--diff-opts 'option string']
 [--debuglvl 'bitmask'] [-Z 'compression'] [--root 'cvsroot']
-[-q] [--fast-export] [--reposurgeon] [-k] [-T] [-V] ['module-path']
+[-q] [--fast-export] [--convert-ignores] [--reposurgeon] 
+[-k] [-T] [-V] ['module-path']
 
 == DESCRIPTION ==
 cvsps tries to group the per-file commits and tags in a CVS project
@@ -51,7 +52,8 @@
 
 * The HEAD branch is renamed to 'master'.
 
-* Other tag and branch names are sanitized to be legal for git.
+* Other tag and branch names are sanitized to be legal for git;
+  the characters ~^\*? are removed.
 
 * Since .cvsignore files have a syntax upward-compatible with that
   of .gitignore files, they're renamed.
@@ -102,7 +104,7 @@
 (after  and whitespace) is optional and (if present) is used to set
 the timezone offset to be 

commit cvsps for openSUSE:Factory

2013-01-11 Thread h_root
Hello community,

here is the log from the commit of package cvsps for openSUSE:Factory checked 
in at 2013-01-11 15:54:19

Comparing /work/SRC/openSUSE:Factory/cvsps (Old)
 and  /work/SRC/openSUSE:Factory/.cvsps.new (New)


Package is cvsps, Maintainer is mvysko...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/cvsps/cvsps.changes  2013-01-03 
13:54:37.0 +0100
+++ /work/SRC/openSUSE:Factory/.cvsps.new/cvsps.changes 2013-01-11 
15:54:21.0 +0100
@@ -1,0 +2,13 @@
+Fri Jan 11 11:17:22 UTC 2013 - mvysko...@suse.com
+
+- update to 3.7
+  * bug fix in timezone handling (thanks to Chris Rorvick).
+  * major performance gain in the CVS client code (thanks to
+Sergei Trofimovich).
+  * third field in an author entry is now interpreted as if it
+were TZ.
+  * remove the --test-log option now that cvsps has its own test suite.
+  * new --reposurgeon option for passing reference-lifting hints
+to reposurgeon.
+
+---

Old:

  cvsps-3.4.tar.gz

New:

  cvsps-3.7.tar.gz



Other differences:
--
++ cvsps.spec ++
--- /var/tmp/diff_new_pack.7I12GS/_old  2013-01-11 15:54:22.0 +0100
+++ /var/tmp/diff_new_pack.7I12GS/_new  2013-01-11 15:54:22.0 +0100
@@ -20,7 +20,7 @@
 Summary:A Program for Generating Patch Set Information from a CVS 
Repository
 License:GPL-2.0+
 Group:  Development/Tools/Version Control
-Version:3.4
+Version:3.7
 Release:0
 Source0:http://www.catb.org/~esr/cvsps/%{name}-%{version}.tar.gz
 Url:http://www.catb.org/~esr/cvsps/

++ cvsps-3.4.tar.gz - cvsps-3.7.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cvsps-3.4/Makefile new/cvsps-3.7/Makefile
--- old/cvsps-3.4/Makefile  2013-01-01 18:40:56.0 +0100
+++ new/cvsps-3.7/Makefile  2013-01-09 16:57:03.0 +0100
@@ -1,9 +1,12 @@
-VERSION=3.4
+VERSION=3.7
 
 CC?=gcc
 CFLAGS?=-g -O2 -Wall 
 CPPFLAGS+=-I. -DVERSION=\$(VERSION)\
+LDLIBS+=-lz # += to allow solaris and friends add their libs like -lsocket
 prefix?=/usr/local
+target=$(DESTDIR)$(prefix)
+
 OBJS= debug.o \
hash.o \
sio.o \
@@ -20,7 +23,7 @@
makedepend -Y -I. *.c
 
 cvsps: $(OBJS)
-   $(CC) -o cvsps $(OBJS) -lz
+   $(CC) -o cvsps $(OBJS) $(LDFLAGS) $(LDLIBS)
 
 check:
@(cd test /dev/null; make --quiet)
@@ -46,16 +49,17 @@
a2x --doctype manpage --format xhtml $*.txt
 
 install: cvsps.1
-   [ -d $(prefix)/bin ] || mkdir -p $(prefix)/bin
-   [ -d $(prefix)/share/man/man1 ] || mkdir -p $(prefix)/share/man/man1
-   install cvsps $(prefix)/bin
-   install -m 644 cvsps.1 $(prefix)/share/man/man1
+   [ -d $(target)/bin ] || mkdir -p $(target)/bin
+   [ -d $(target)/share/man/man1 ] || mkdir -p $(target)/share/man/man1
+   install cvsps $(target)/bin
+   install -m 644 cvsps.1 $(target)/share/man/man1
 
 tags: *.c *.h
ctags *.c *.h
 
 clean:
rm -f cvsps *.o core tags cvsps.1 cvsps.html docbook-xsl.css
+   rm -f SHIPPER.FREECODE
 
 SOURCES = Makefile *.[ch] merge_utils.sh
 DOCS = README COPYING NEWS cvsps.asc TODO
@@ -66,7 +70,7 @@
 dist: cvsps-$(VERSION).tar.gz
 
 release: cvsps-$(VERSION).tar.gz cvsps.html
-   shipper -u -m -t; make clean
+   shipper -u -m -t; make clean; rm SHIPPER.FREECODE
 
 .PHONY: install clean version dist check
 # DO NOT DELETE
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cvsps-3.4/NEWS new/cvsps-3.7/NEWS
--- old/cvsps-3.4/NEWS  2013-01-01 18:40:47.0 +0100
+++ new/cvsps-3.7/NEWS  2013-01-09 16:56:14.0 +0100
@@ -1,5 +1,16 @@
CVSps project news
 
+3.7 @ 2013-01-08
+  Bug fix in timezone handling (thanks to Chris Rorvick).
+  Major performance gain in the CVS client code (thanks to Sergei Trofimovich).
+
+3.6 @ 2013-01-06
+  The third field in an author entry is now interpreted as if it were TZ.
+
+3.5 @ 2013-01-02
+  Remove the --test-log option now that cvsps has its own test suite.
+  New --reposurgeon option for passing reference-lifting hints to reposurgeon.
+
 3.4 @ 2013-01-01
   Incorporate Heiko Voight's patch solving some time-skew cases.
   The git-tree tests for cvsps are now completely merged into the test suite. 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cvsps-3.4/README new/cvsps-3.7/README
--- old/cvsps-3.4/README2013-01-01 18:37:36.0 +0100
+++ new/cvsps-3.7/README2013-01-07 13:21:56.0 +0100
@@ -17,19 +17,27 @@
 
 If you have not used an older version of CVSps, you can skip this 

commit cvsps for openSUSE:Factory

2013-01-03 Thread h_root
Hello community,

here is the log from the commit of package cvsps for openSUSE:Factory checked 
in at 2013-01-03 13:44:52

Comparing /work/SRC/openSUSE:Factory/cvsps (Old)
 and  /work/SRC/openSUSE:Factory/.cvsps.new (New)


Package is cvsps, Maintainer is mvysko...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/cvsps/cvsps.changes  2011-09-23 
01:54:47.0 +0200
+++ /work/SRC/openSUSE:Factory/.cvsps.new/cvsps.changes 2013-01-03 
13:44:55.0 +0100
@@ -1,0 +2,25 @@
+Wed Jan  2 14:39:34 UTC 2013 - mvysko...@suse.com
+
+- update to 3.4 with fast-export dumping
+  * maintained by Eric S. Raymond
+  * more focused on --fast-export mode only
+  * now always runs in what used to be csv_direct mode
+  * it's not required to run csvps in CVS checkout directory
+  * local cvs commands are no longer used
+  * the old-style non-fast-export reporting mode is deprecated and
+may be dropped in the future
+  * removed the --bkcvs and -x options
+  * new --fast-export option allows dumping the history as a git
+import stream
+  * the -A now works in the expected way
+  * add -R option that writes out a revision map
+  * incorporates Heiko Voight's patch for solving some time-skew cases
+  * check README and NEWS for details
+- obsoleted files and patches
+  * bk-cvs.mail - who is interested in BitKeeper/CSV kernel trees?
+  * cvsps-bk-cvs.mail - or the ability to import BitKeeper logs?
+  * fixes.tar.bz2 - they are upstream
+  * CMakeLists.txt - plain make is recommended
+  * commitid.diff - already upstream
+
+---

Old:

  CMakeLists.txt
  bk-cvs.mail
  commitid.diff
  cvsps-2.1.tar.bz2
  cvsps-bk-cvs.mail
  fixes.tar.bz2

New:

  cvsps-3.4.tar.gz



Other differences:
--
++ cvsps.spec ++
--- /var/tmp/diff_new_pack.mDU2WY/_old  2013-01-03 13:44:56.0 +0100
+++ /var/tmp/diff_new_pack.mDU2WY/_new  2013-01-03 13:44:56.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package cvsps (Version 2.1)
+# spec file for package cvsps
 #
-# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,25 +16,20 @@
 #
 
 
-
 Name:   cvsps
-BuildRequires:  cmake zlib-devel
-Group:  Development/Tools/Version Control
-AutoReqProv:on
 Summary:A Program for Generating Patch Set Information from a CVS 
Repository
-Version:2.1
-Release:163
-%define real_version 2.1
-Source: %{name}-%{real_version}.tar.bz2
-Source1:bk-cvs.mail
-Source2:cvsps-bk-cvs.mail
-Source3:fixes.tar.bz2
-Source4:CMakeLists.txt
-Patch:  commitid.diff
-Url:http://www.cobite.com/cvsps/
 License:GPL-2.0+
+Group:  Development/Tools/Version Control
+Version:3.4
+Release:0
+Source0:http://www.catb.org/~esr/cvsps/%{name}-%{version}.tar.gz
+Url:http://www.catb.org/~esr/cvsps/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
+BuildRequires:  asciidoc
+BuildRequires:  libxslt-tools
+BuildRequires:  pkgconfig(zlib)
+
 %description
 CVSps is a program for generating 'patchset' information from a CVS
 repository. In this case, a patchset is defined as a set of changes
@@ -44,32 +39,22 @@
 revision information, it is often difficult to see what changes were
 'atomically' committed to the repository.
 
-
-
 %prep
-%setup -q -n %{name}-%{real_version}
-tar xvfj %{SOURCE3}
-for patch in $(cat fixes/series); do
-patch -p1  fixes/$patch
-done
-cp %{SOURCE1} %{SOURCE2} %{SOURCE4} .
-%patch -p1
+%setup -q
 
 %build
 export CFLAGS=%{optflags}
-cmake -DCMAKE_INSTALL_PREFIX=%{_prefix} -DCMAKE_VERBOSE_MAKEFILE=TRUE .
 %{__make} %{?jobs:-j%jobs}
 
 %install
-%makeinstall 
+%{__make} prefix=%{buildroot}/%{_prefix} install 
 
 %clean
 rm -rf $RPM_BUILD_ROOT
 
 %files
 %defattr(-,root,root)
-%doc README CHANGELOG COPYING
-%doc bk-cvs.mail cvsps-bk-cvs.mail
+%doc COPYING NEWS README TODO
 %{_bindir}/cvsps
 %{_mandir}/man*/*
 

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit cvsps for openSUSE:Factory

2011-12-06 Thread h_root
Hello community,

here is the log from the commit of package cvsps for openSUSE:Factory checked 
in at 2011-12-06 18:05:07

Comparing /work/SRC/openSUSE:Factory/cvsps (Old)
 and  /work/SRC/openSUSE:Factory/.cvsps.new (New)


Package is cvsps, Maintainer is mvysko...@suse.com

Changes:




Other differences:
--
++ cvsps.spec ++
--- /var/tmp/diff_new_pack.seMlyr/_old  2011-12-06 18:08:09.0 +0100
+++ /var/tmp/diff_new_pack.seMlyr/_new  2011-12-06 18:08:09.0 +0100
@@ -32,7 +32,7 @@
 Source4:CMakeLists.txt
 Patch:  commitid.diff
 Url:http://www.cobite.com/cvsps/
-License:GPL v2 or later
+License:GPL-2.0+
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org