pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/devel/fossil Initial import of fossil-200909211920:
details: https://anonhg.NetBSD.org/pkgsrc/rev/f9d2010f0654
branches: trunk
changeset: 400073:f9d2010f0654
user: wiz <wiz%pkgsrc.org@localhost>
date: Sun Oct 11 09:32:30 2009 +0000
description:
Initial import of fossil-200909211920:
There are plenty of open-source version control systems available
on the internet these days. What makes Fossil worthy of attention?
1. Bug Tracking And Wiki - In addition to doing distributed
version control like Git and Mercurial, Fossil also supports
distributed bug tracking and distributed wiki all in a single
integrated package.
2. Web Interface - Fossil has a built-in and easy-to-use web
interface that simplifies project tracking and promotes situational
awareness. Simply type "fossil ui" from within any check-out
and Fossil automatically opens your web browser in a page that
gives detailed history and status information on that project.
3. Autosync - Fossil supports "autosync" mode which helps to
keep projects moving forward by reducing the amount of needless
forking and merging often associated distributed projects.
4. Self-Contained - Fossil is a single stand-alone executable
that contains everything needed to do configuration management.
Installation is trivial: simply download a precompiled binary
for Linux, Mac, or Windows and put it on your $PATH. Easy-to-compile
source code is available for users on other platforms. Fossil
sources are also mostly self-contained, requiring only the "zlib"
library and the standard C library to build.
5. Simple Networking - Fossil uses plain old HTTP (with proxy
support) for all network communications, meaning that it works
fine from behind restrictive firewalls. The protocol is bandwidth
efficient to the point that Fossil can be used comfortably over
a dial-up internet connection.
6. CGI Enabled - No server is required to use fossil. But a
server does make collaboration easier. Fossil supports three
different yet simple server configurations. The most popular is
a 2-line CGI script. This is the approach used by the self-hosting
fossil repositories.
7. Robust & Reliable - Fossil stores content in an SQLite database
so that transactions are atomic even if interrupted by a power
loss or system crash. Furthermore, automatic self-checks verify
that all aspects of the repository are consistent prior to each
commit. In over two years of operation, no work has ever been
lost after having been committed to a Fossil repository.
diffstat:
devel/fossil/DESCR | 44 ++++++++++++++++++++++++++++++++++++++++++++
devel/fossil/Makefile | 22 ++++++++++++++++++++++
devel/fossil/PLIST | 2 ++
devel/fossil/distinfo | 5 +++++
4 files changed, 73 insertions(+), 0 deletions(-)
diffs (89 lines):
diff -r 350f551a4bc2 -r f9d2010f0654 devel/fossil/DESCR
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/fossil/DESCR Sun Oct 11 09:32:30 2009 +0000
@@ -0,0 +1,44 @@
+There are plenty of open-source version control systems available
+on the internet these days. What makes Fossil worthy of attention?
+
+ 1. Bug Tracking And Wiki - In addition to doing distributed
+ version control like Git and Mercurial, Fossil also supports
+ distributed bug tracking and distributed wiki all in a single
+ integrated package.
+
+ 2. Web Interface - Fossil has a built-in and easy-to-use web
+ interface that simplifies project tracking and promotes situational
+ awareness. Simply type "fossil ui" from within any check-out
+ and Fossil automatically opens your web browser in a page that
+ gives detailed history and status information on that project.
+
+ 3. Autosync - Fossil supports "autosync" mode which helps to
+ keep projects moving forward by reducing the amount of needless
+ forking and merging often associated distributed projects.
+
+ 4. Self-Contained - Fossil is a single stand-alone executable
+ that contains everything needed to do configuration management.
+ Installation is trivial: simply download a precompiled binary
+ for Linux, Mac, or Windows and put it on your $PATH. Easy-to-compile
+ source code is available for users on other platforms. Fossil
+ sources are also mostly self-contained, requiring only the "zlib"
+ library and the standard C library to build.
+
+ 5. Simple Networking - Fossil uses plain old HTTP (with proxy
+ support) for all network communications, meaning that it works
+ fine from behind restrictive firewalls. The protocol is bandwidth
+ efficient to the point that Fossil can be used comfortably over
+ a dial-up internet connection.
+
+ 6. CGI Enabled - No server is required to use fossil. But a
+ server does make collaboration easier. Fossil supports three
+ different yet simple server configurations. The most popular is
+ a 2-line CGI script. This is the approach used by the self-hosting
+ fossil repositories.
+
+ 7. Robust & Reliable - Fossil stores content in an SQLite database
+ so that transactions are atomic even if interrupted by a power
+ loss or system crash. Furthermore, automatic self-checks verify
+ that all aspects of the repository are consistent prior to each
+ commit. In over two years of operation, no work has ever been
+ lost after having been committed to a Fossil repository.
diff -r 350f551a4bc2 -r f9d2010f0654 devel/fossil/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/fossil/Makefile Sun Oct 11 09:32:30 2009 +0000
@@ -0,0 +1,22 @@
+# $NetBSD: Makefile,v 1.1.1.1 2009/10/11 09:32:30 wiz Exp $
+#
+
+DISTNAME= fossil-src-20090921191920
+PKGNAME= ${DISTNAME:S/-src//}
+CATEGORIES= devel scm
+MASTER_SITES= http://www.fossil-scm.org/download/
+
+MAINTAINER= pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE= http://www.fossil-scm.org/index.html/doc/tip/www/index.wiki
+COMMENT= Simple, high-reliability, distributed software configuration management
+LICENSE= gnu-gpl-v2
+
+PKG_DESTDIR_SUPPORT= user-destdir
+
+INSTALLATION_DIRS+= bin
+
+do-install:
+ ${INSTALL_PROGRAM} ${WRKSRC}/fossil ${DESTDIR}${PREFIX}/bin
+
+.include "../../devel/zlib/buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r 350f551a4bc2 -r f9d2010f0654 devel/fossil/PLIST
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/fossil/PLIST Sun Oct 11 09:32:30 2009 +0000
@@ -0,0 +1,2 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2009/10/11 09:32:30 wiz Exp $
+bin/fossil
diff -r 350f551a4bc2 -r f9d2010f0654 devel/fossil/distinfo
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/fossil/distinfo Sun Oct 11 09:32:30 2009 +0000
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1.1.1 2009/10/11 09:32:30 wiz Exp $
+
+SHA1 (fossil-src-20090921191920.tar.gz) = 331bb42290c17051683da07878326e63e1c8b275
+RMD160 (fossil-src-20090921191920.tar.gz) = f5c24e359ee9731d1f661b33e1bea6f42ddb7645
+Size (fossil-src-20090921191920.tar.gz) = 1793015 bytes
Home |
Main Index |
Thread Index |
Old Index