From owner-cvs-all@FreeBSD.ORG Sun Apr 26 14:04:48 2009 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 20966106566C; Sun, 26 Apr 2009 14:04:48 +0000 (UTC) (envelope-from makc@freebsd.org) Received: from mail.issp.ac.ru (mail.issp.ac.ru [77.236.34.3]) by mx1.freebsd.org (Postfix) with ESMTP id 905F88FC17; Sun, 26 Apr 2009 14:04:47 +0000 (UTC) (envelope-from makc@freebsd.org) Received: from [62.63.90.181] [62.63.90.181:6122] (HELO/EHLO luna.dio.ru, authenticated with PLAIN) by mail.issp.ac.ru with ESMTP/inet id n3QE63NK007394 (using TLSv1/SSLv3, with cipher DHE-RSA-AES256-SHA (256 bits), verified NO) Sun, 26 Apr 2009 18:06:03 +0400 (MSD) From: Max Brazhnikov To: "Ion-Mihai Tetcu" Date: Sun, 26 Apr 2009 18:04:45 +0400 User-Agent: KMail/1.11.2 (FreeBSD/7.2-PRERELEASE; KDE/4.2.2; i386; ; ) References: <200904252210.n3PMA2gZ029369@repoman.freebsd.org> In-Reply-To: <200904252210.n3PMA2gZ029369@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: Text/Plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200904261804.45778.makc@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-3.0 (mail.issp.ac.ru [77.236.34.3]); Sun, 26 Apr 2009 18:06:03 +0400 (MSD) X-Virus-Scanned: ClamAV 0.94.1/9291/Sun Apr 26 10:44:09 2009 on mail.issp.ac.ru X-Virus-Status: Clean Cc: cvs-ports@freebsd.org, cvs-all@freebsd.org, ports-committers@freebsd.org Subject: Re: cvs commit: ports/devel Makefile ports/devel/qgit Makefile distinfo pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 26 Apr 2009 14:04:48 -0000 On Sat, 25 Apr 2009 22:10:01 +0000 (UTC), Ion-Mihai Tetcu wrote: > itetcu 2009-04-25 22:10:01 UTC > > FreeBSD ports repository > > Modified files: > devel Makefile > Added files: > devel/qgit Makefile distinfo pkg-descr > Log: > QGit is a git GUI viewer built on Qt/C++. > 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. > - Associate commands sequences, scripts and anything else executable to a > custom action. Actions can be run from menu and corresponding output is > grabbed by a terminal window. 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. > > WWW: https://sourceforge.net/projects/qgit > > Revision Changes Path > 1.3470 +1 -0 ports/devel/Makefile > 1.1 +34 -0 ports/devel/qgit/Makefile (new) > 1.1 +3 -0 ports/devel/qgit/distinfo (new) > 1.1 +17 -0 ports/devel/qgit/pkg-descr (new) To avoid run dependency on qt build tools (qmake, moc, uic, rcc) you can use '_build' suffix, e.g. qmake_build. Max