.gear-rules | 3 + .../f1138e3fb993d69bb8db36cea515ced93fb210b4 | 6 ++ .gear-tags/list | 1 + qgit.spec | 88 ++++++++++++++++++++ src/dataloader.h | 2 +- 5 files changed, 99 insertions(+), 1 deletions(-) diff --git a/.gear-rules b/.gear-rules new file mode 100644 index 0000000..de84aae --- /dev/null +++ b/.gear-rules @@ -0,0 +1,3 @@ +spec: qgit.spec +tar: @name@-@version@:. +diff: @name@-@version@:. . diff --git a/.gear-tags/f1138e3fb993d69bb8db36cea515ced93fb210b4 b/.gear-tags/f1138e3fb993d69bb8db36cea515ced93fb210b4 new file mode 100644 index 0000000..49d38be --- /dev/null +++ b/.gear-tags/f1138e3fb993d69bb8db36cea515ced93fb210b4 @@ -0,0 +1,6 @@ +object 73f2e8966922622d6d934d1456f5262c5590a960 +type commit +tag qgit-1.5.8 +tagger Afanasov Dmitry 1229884253 +0300 + +1.5.8 source tree diff --git a/.gear-tags/list b/.gear-tags/list new file mode 100644 index 0000000..6cd6f98 --- /dev/null +++ b/.gear-tags/list @@ -0,0 +1 @@ +f1138e3fb993d69bb8db36cea515ced93fb210b4 qgit-1.5.8 diff --git a/qgit.spec b/qgit.spec new file mode 100644 index 0000000..352ac16 --- /dev/null +++ b/qgit.spec @@ -0,0 +1,88 @@ +# vim: set ft=spec: -*- rpm-spec -*- + +Name: qgit +Version: 1.5.8 +Release: alt1 + +Summary: Git GUI viewer built on Qt/C++ +Group: Development/Other +License: GPL +Url: http://digilander.libero.it/mcostalba/ + +Packager: Afanasov Dmitry + +# git://git.altlinux.org/people/wrar/packages/qgit.git +Source: %name-%version.tar +Patch: %name-%version-%release.patch + +# Automatically added by buildreq on Fri May 12 2006 +BuildRequires: gcc-c++ libqt3-devel libXft-devel libXt-devel + +%description +With qgit you will be able to browse revisions history, view +patch content and changed files, graphically following different +development branches. + +Features: + +* View revisions, diffs, files history, files annotation, + archive tree. + +* Commit changes visually cherry picking modified files. + +* Apply or format patch series from selected commits, drag and + drop commits between two instances of qgit. + +* qgit implements a GUI for the most common StGIT commands like + push/pop and apply/format patches. You can also create new + patches or refresh current top one using the same semantics of + git commit, i.e. cherry picking single modified files. + +%prep +%setup +%patch -p1 + +%build +%autoreconf +%configure +%make_build + +%install +%make_install DESTDIR=%buildroot install + +%files +%doc README ChangeLog +%_bindir/%name + +%changelog +* Sun Dec 21 2008 Afanasov Dmitry 1.5.8-alt1 +- 1.5.8 + +* Fri Nov 30 2007 Andrey Rahmatullin 1.5.7-alt2 +- Use QProcess instead of temporary files, again (raorn@) + +* Thu Nov 29 2007 Andrey Rahmatullin 1.5.7-alt1 +- 1.5.7 + +* Sun Sep 02 2007 Sir Raorn 1.5.6-alt2 +- Updated to 1.5.6-5a135439 +- Use QProcess instead of temporary files (CVE-2007-4631 workaround) + +* Tue Aug 07 2007 Sir Raorn 1.5.6-alt1 +- [1.5.6] + +* Fri Feb 02 2007 Sir Raorn 1.5.4-alt1 +- [1.5.4] + +* Mon Nov 20 2006 Sir Raorn 1.5.3-alt1 +- [1.5.3] + +* Wed Nov 08 2006 Sir Raorn 1.5.2-alt1 +- [1.5.2] + +* Sun Sep 03 2006 Sir Raorn 1.4-alt1 +- [1.4] + +* Fri May 12 2006 Sir Raorn 1.2-alt1 +- Built for Sisyphus + diff --git a/src/dataloader.h b/src/dataloader.h index fdcc3a0..0c4bbd1 100644 --- a/src/dataloader.h +++ b/src/dataloader.h @@ -20,7 +20,7 @@ class MyProcess; // data exchange facility with git-rev-list could be based on QProcess or on // a temporary file (default). Uncomment following line to use QProcess -// #define USE_QPROCESS +#define USE_QPROCESS class DataLoader : public QObject { Q_OBJECT