notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

Finally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combination for a given watch list. This is what FreshPorts will look for.

non port: devel/git/Makefile

Number of commits found: 373 (showing only 100 on this page)

«  1 | 2 | 3 | 4  »  

Thursday, 10 Aug 2017
20:43 garga search for other commits by this committer
Update devel/git to 2.14.1

This version fixes a security issue:

A "ssh://..." URL can result in a "ssh" command line with a
hostname that begins with a dash "-", which would cause the "ssh"
command to instead (mis)treat it as an option.  This is now
prevented by forbidding such a hostname (which will not be
necessary in the real world).

MFH:		2017Q3
Sponsored by:	Rubicon Communications, LLC (Netgate)
Original commitRevision:447721 
Thursday, 3 Aug 2017
12:15 garga search for other commits by this committer
Update devel/git to 2.13.4
Original commitRevision:447205 
Monday, 17 Jul 2017
17:33 garga search for other commits by this committer
- Add diff-highlight back to package when CONTRIB option is set
- While here, remove unnecessary lines from pkg-plist
- Bump PORTREVISION

PR:		220804
Submitted by:	martin@sugioarto.com
Sponsored by:	Rubicon Communications, LLC (Netgate)
Original commitRevision:446083 
Wednesday, 12 Jul 2017
23:38 garga search for other commits by this committer
Update devel/git to 2.13.3

Sponsored by:	Rubicon Communications, LLC (Netgate)
Original commitRevision:445615 
Tuesday, 27 Jun 2017
13:39 garga search for other commits by this committer
Update devel/git to 2.13.2

Sponsored by:	Rubicon Communications (Netgate)
Original commitRevision:444462 
Monday, 19 Jun 2017
18:04 garga search for other commits by this committer
- Replace git-send-email.perl patch by a different fix committed upstream. With
  previous version, when user tries to send multiple e-mails using an
  authenticated SMTP server, it asks for password on first one and rejects
  all other with "authentication failed" error
- Bump PORTREVISION

Reported by:	novel
Tested by:	novel
Obtained from:	Git repository, commits:
		0ead000c3aca13a10ae51a3c74c866981e0d33b8
		bfbfc9a953d8e26b029110c05581b22f9f0d77e9
MFH:		2017Q2
Sponsored by:	Rubicon Communications, LLC (Netgate)
Original commitRevision:443903 
Friday, 9 Jun 2017
16:38 adamw search for other commits by this committer
Fix SHA1 checksum generation on little-endian machines.

git 2.13.0 broke SHA1 checksumming on big-endian machines. They fixed
it in 2.13.1 by breaking it on little-endian machines. This patch,
obtained from upstream, fixes SHA1 checksumming on little-endian
machines again; I don't have any BE machines but hopefully it still
works on those too.

Submitted by:	Dan McGregor
Obtained
from:	https://github.com/git/git/commit/76339527ccf7946751174663f9faa686f3f55335
Approved by:	just-fix-it
Original commitRevision:443018 
15:04 garga search for other commits by this committer
Update devel/git to 2.13.1

Sponsored by:	Rubicon Communications (Netgate)
Original commitRevision:443003 
Wednesday, 10 May 2017
12:53 garga search for other commits by this committer
devel/git: Update to 2.13.0

MFH:		2017Q2
Security:	CVE-2017-8386
Sponsored by:	Rubicon Communications (Netgate)
Original commitRevision:440558 
Saturday, 22 Apr 2017
08:46 miwi search for other commits by this committer
- Fix shebangs
Original commitRevision:439139 
Tuesday, 21 Mar 2017
12:28 garga search for other commits by this committer
- Update devel/git to 2.12.1
- Replace git-send-email patch by a version that works [1]

PR:		214335 [1]
Submitted by:	OlivierW <olivierw1+bugzilla-freebsd@hotmail.com> [1]
MFH:		2017Q1
Sponsored by:	Rubicon Communications (Netgate)
Original commitRevision:436592 
Thursday, 9 Feb 2017
16:03 garga search for other commits by this committer
Update devel/git to 2.11.1

Sponsored by:	Rubicon Communications (Netgate)
Original commitRevision:433740 
Wednesday, 18 Jan 2017
12:40 garga search for other commits by this committer
Remove dependency of DEPRECATED mail/p5-Net-SMTP-SSL from devel/git

PR:		214335
Obtained from:	git development mailing list
Sponsored by:	Rubicon Communications (Netgate)
Original commitRevision:431794 
Monday, 5 Dec 2016
12:28 koobs search for other commits by this committer
devel/git: Fix build with PERL option disabled

configure.ac defines a macro (GIT_ARG_SET_PATH), which takes an optional
'allow-without' parameter, which if not specified (in configure.ac),
causes --without-foo/--with-foo=no not to be checked/allowed.

allow-without is set for python, but not for perl in configure.ac:

 # Define PYTHON_PATH to provide path to Python.
 # GIT_ARG_SET_PATH(python, allow-without)

 # GIT_ARG_SET_PATH(perl)

The non-presence of the optional second macro argument results in the
following error when --without-perl is specified by
PERL_CONFIGURE_WITH=perl=${PERL}

  configure:4065: error: You cannot use git without perl

This error is a regression after r427505 [1], which switched from
PERL_MAKE_ENV to PERL_CONFIGURE_WITH (and its associated --without-*).

This change adds:

 * allow-without to configure.ac allowing --without-perl to work.
 * USES=autoreconf to regenerate configure from configure.ac.

[1] https://svnweb.freebsd.org/changeset/ports/427505

PR:			215038
Approved by:		portmgr (blanket)
Differential Revision:	D8709
Original commitRevision:427879 
Friday, 2 Dec 2016
10:35 garga search for other commits by this committer
When CONTRIB option is ON a good number of extra dependencies is added
(asciidoc, docbook-xml) but they are only used to build git-subtree
manpage and html doc.

Created a new option SUBTREE to make it possible to install all CONTRIB
code except git-subtree and remove extra dependencies from CONTRIB option

PR:		203606
Submitted by:	phk@
Original commitRevision:427549 
Thursday, 1 Dec 2016
19:23 garga search for other commits by this committer
Revert part of r427504

Helpers used to access http(s) and ftp(s) were not being built due to an error
on libcurl, then they ended up showing as PLIST errors.

PR:		213971
Original commitRevision:427513 
15:24 garga search for other commits by this committer
- Fix build with PERL and non-default LOCALBASE [1]
- Fix build with DEVELOPER=yes [2]
- Do not install ZSH completion [3]
	- ZSH installs a better version itself
- Fix PLIST
- Bump PORTREVISION

PR:		213494 [1]
		214009 [2]
		214870 [3] (based on)
Submitted by:	John Hein <z7dr6ut7gs@snkmail.com> [1] [3]
		Michael Zuo <muh.muhten@gmail.com>
Sponsored by:	Rubicon Communications (Netgate)
Original commitRevision:427505 
Wednesday, 30 Nov 2016
19:38 adamw search for other commits by this committer
Update to 2.11.0.

Changes:
https://raw.githubusercontent.com/git/git/master/Documentation/RelNotes/2.11.0.txt

PR:		214954
Approved by:	maintainer (garga)
Original commitRevision:427457 
Friday, 25 Nov 2016
17:30 adamw search for other commits by this committer
Update to 2.10.2.

PR:		214790
Approved by:	maintainer (garga)
Original commitRevision:427121 
Tuesday, 15 Nov 2016
08:43 mat search for other commits by this committer
Split targets so that they use options helpers when possible.
Always install the completions to some useful place. [1]
  if CONTRIB is on, symlink them in the right place.
  if CONTRIB is off, copy the anyway.

PR:		212303
Submitted by:	mat
Reported by:	Aleksander Alekseev [1]
Approved by:	maintainer timeout
Sponsored by:	Absolight
Original commitRevision:426150 
Wednesday, 26 Oct 2016
21:32 jrm search for other commits by this committer
devel/git: Do not install elisp files for XEmacs

- XEmacs is no longer in the ports tree, so no need to install these files.
- Remove empty post-stage target.
- Bump PORTREVISION.

Approved by:	garga (maintainer) swills (mentor)
Differential Revision:	https://reviews.freebsd.org/D8247
Original commitRevision:424738 
Friday, 21 Oct 2016
12:51 mat search for other commits by this committer
${RM} already has -f.

PR:		213570
Submitted by:	mat
Exp-run by:	antoine
Sponsored by:	Absolight
Original commitRevision:424411 
Thursday, 13 Oct 2016
14:28 mat search for other commits by this committer
Update to 2.10.1.

Hook up to the test framework.

Sort the plist the same way make makeplist does, so that next updates
are easier to work on.

PR:		213417
Submitted by:	mat
Approved by:	maintainer
Sponsored by:	Absolight
Original commitRevision:423921 
Friday, 26 Aug 2016
16:27 pi search for other commits by this committer
devel/git: bump PORTREVISION as OPTIONS_DEFAULT changed

PR:		211573
Reported by:	ohauer
Original commitRevision:420932 
13:49 pi search for other commits by this committer
devel/git: Enable GITWEB by default

- also change USE_OPENSSL to USES=ssl

PR:		211573
Submitted by:	Tobias Kortkamp <t@tobik.me>
Approved by:	garga (maintainer timeout)
Original commitRevision:420920 
Wednesday, 3 Aug 2016
13:01 mat search for other commits by this committer
Add a PCRE option to allow git grep to be build with pcre support.

tl:dr; git grep -P now works.

Most package managers enable it by default, so enable it by default too.

PR:		211228
Submitted by:	mat, knu
Approved by:	maintainer (or timeout, see PR)
Sponsored by:	Absolight
Original commitRevision:419517 
Monday, 18 Jul 2016
13:54 garga search for other commits by this committer
Update devel/git to 2.9.2

Sponsored by:	Rubicon Communications (Netgate)
Original commitRevision:418704 
Tuesday, 14 Jun 2016
14:52 garga search for other commits by this committer
Update devel/git to 2.9.0

Sponsored by:	Rubicon Communications (Netgate)
Original commitRevision:416890 
Saturday, 11 Jun 2016
20:22 garga search for other commits by this committer
Respect BSD's STRIP instead of checking only WITH_DEBUG

PR:		153541
Submitted by:	swell.k@gmail.com
Sponsored by:	Rubicon Communications (Netgate)
Original commitRevision:416750 
15:25 garga search for other commits by this committer
Update devel/git to 2.8.4

Sponsored by:	Rubicon Communications (Netgate)
Original commitRevision:416718 
Monday, 23 May 2016
20:35 amdmi3 search for other commits by this committer
Remove NLS, DOCS, EXAMPLES and IPV6 from OPTIONS_DEFAULT, they are enabled by
default anyway and don't need to be listed

Approved by:	portmgr blanket
Original commitRevision:415742 
Monday, 11 Apr 2016
13:08 garga search for other commits by this committer
- Update devel/git to 2.8.1
- Remove ETCSHELLS option and use @shell in pkg-plist [1]

Submitted by:	bapt [1]
Sponsored by:	Rubicon Communications (Netgate)
Differential Revision:	https://reviews.freebsd.org/D5899 [1]
Original commitRevision:413029 
Friday, 1 Apr 2016
14:00 mat search for other commits by this committer
Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.

With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:412346 
Monday, 21 Mar 2016
10:50 garga search for other commits by this committer
Import a patch from git mailing list to fix build with gcc 4.2.1 and
remove dependency of newer gcc to build it on 9.x

Obtained from:	http://thread.gmane.org/gmane.comp.version-control.git/289397
MFH:		2016Q1
Original commitRevision:411551 
Sunday, 20 Mar 2016
15:40 garga search for other commits by this committer
Fix devel/git build on 9.x

MFH:		2016Q1
Original commitRevision:411454 
Friday, 18 Mar 2016
11:29 garga search for other commits by this committer
Update devel/git to 2.7.4

MFH:		2016Q1
Security:	CVE-2016-2324
Sponsored by:	Rubicon Communications (Netgate)
Original commitRevision:411339 
Tuesday, 23 Feb 2016
15:55 rakuco search for other commits by this committer
Fix plist with NLS on after r409422.
Original commitRevision:409430 
11:19 garga search for other commits by this committer
Update devel/git to 2.7.2
Original commitRevision:409422 
Thursday, 4 Feb 2016
17:33 adamw search for other commits by this committer
Lighten up the Perl dependencies.

git uses Perl for two things: Perl hooks into git, and the
git-send-email(1) script.

The Perl hooks only use p5-Error. The other modules dependencies,
p5-Authen-SASL and p5-Net-SMTP-SSL (which bring in a number of other
perl module dependencies) are only required for git-send-email(1).

This commit adds a SEND_EMAIL option, defaulted to on, that auto-enables
the PERL option and installs the git-send-email(1) script with the
extra perl modules.

With the PERL option on and SEND_EMAIL off, only the p5-Error module
is required.

No PORTREVISION bump as the default dependencies and plist haven't changed.

PR:		206901
Approved by:	garga (maintainer)
Differential Revision:	https://reviews.freebsd.org/D5179
Original commitRevision:408063 
Wednesday, 6 Jan 2016
11:56 garga search for other commits by this committer
Update devel/git to 2.7.0
Original commitRevision:405346 
Wednesday, 30 Dec 2015
15:22 ohauer search for other commits by this committer
- prepare for devel/subversion17 removal
Original commitRevision:404863 
Wednesday, 9 Dec 2015
09:55 garga search for other commits by this committer
Update devel/git to 2.6.4
Original commitRevision:403371 
Monday, 9 Nov 2015
17:51 garga search for other commits by this committer
Update devel/git to 2.6.3
Original commitRevision:401118 
Tuesday, 20 Oct 2015
08:52 garga search for other commits by this committer
Update devel/git to 2.6.2

PR:		203878
Submitted by:	Wendell Borges <wendell@bsd.com.br>
Original commitRevision:399807 
Monday, 5 Oct 2015
21:44 garga search for other commits by this committer
Update devel/git to 2.6.1

MFH:		2015Q4
Original commitRevision:398669 
Wednesday, 30 Sep 2015
18:58 garga search for other commits by this committer
- Update devel/git to 2.6.0
- Use DISTVERSION instead of PORTVERSION to make it easy to test new version
  RCs when they are available
Original commitRevision:398232 
Monday, 28 Sep 2015
18:33 garga search for other commits by this committer
- Add devel/git-gui, a devel/git slave port with GUI option enabled
- Register conflicts with master and other slave ports
- Bump PORTREVISION

PR:		202948
Original commitRevision:398132 
Friday, 18 Sep 2015
12:44 garga search for other commits by this committer
Update devel/git to 2.5.3
Original commitRevision:397233 
Friday, 11 Sep 2015
14:29 garga search for other commits by this committer
Update to 2.5.2
Original commitRevision:396669 
Thursday, 3 Sep 2015
22:00 garga search for other commits by this committer
- Update to 2.5.1
- Fix build with NO_PERL set backporting a commit from git repo (82aec45)
- Add git-submodile, git-am and git-request-pull to the list of commands
  that doesn't work without perl
Original commitRevision:396048 
Friday, 17 Jul 2015
13:02 garga search for other commits by this committer
- Update git to 2.4.6
- Regenerate patches with make makepatch to silence portlint
- Change CONFLICTS to CONFLICTS_INSTALL
Original commitRevision:392375 
Friday, 26 Jun 2015
23:14 amdmi3 search for other commits by this committer
- Add missing shebang fix

Approved by:	portmgr blanket
Original commitRevision:390674 
11:11 garga search for other commits by this committer
Update to 2.4.5
Original commitRevision:390627 
Wednesday, 27 May 2015
11:23 garga search for other commits by this committer
Update to 2.4.2
Original commitRevision:387577 
Thursday, 14 May 2015
16:03 garga search for other commits by this committer
Update to 2.4.1
Original commitRevision:386342 
Monday, 11 May 2015
18:34 mat search for other commits by this committer
Cleanup DIST* variables.

When appropriate:
- Try to use DISTVERSION{SUF,PRE}FIX
- Replace PORTNAME-PORTVERSION by DISTNAME
- Convert MASTER_SITES to use macros
- Other light cleanup

With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:386097 
Monday, 4 May 2015
18:28 garga search for other commits by this committer
Update to 2.4.0

PR:		199881 (based on)
Submitted by:	pi@
Original commitRevision:385424 
Tuesday, 28 Apr 2015
10:06 garga search for other commits by this committer
Update to 2.3.7
Original commitRevision:384892 
Wednesday, 22 Apr 2015
00:43 garga search for other commits by this committer
Update to 2.3.6
Original commitRevision:384474 
Wednesday, 1 Apr 2015
11:14 garga search for other commits by this committer
Update to 2.3.5
Original commitRevision:382904 
Tuesday, 24 Mar 2015
10:32 garga search for other commits by this committer
Update to 2.3.4
Original commitRevision:382079 
Sunday, 15 Mar 2015
12:43 garga search for other commits by this committer
Update to 2.3.3
Original commitRevision:381325 
Saturday, 7 Mar 2015
00:03 garga search for other commits by this committer
Update to 2.3.2
Original commitRevision:380657 
Wednesday, 25 Feb 2015
11:19 garga search for other commits by this committer
- Update to 2.3.1
- Add upcoming git-lite to the list of CONFLICTS
- Modernize Makefile
Original commitRevision:379896 
Friday, 6 Feb 2015
15:37 garga search for other commits by this committer
Update to 2.3.0
Original commitRevision:378546 
Sunday, 25 Jan 2015
12:53 jbeich search for other commits by this committer
Unbreak build with devel/utf8cpp installed

Let preprocessor know ${LOCALBASE}/include is a system include path,
so #include "..." shouldn't try to pick headers from there. lang/gcc*
and lang/clang* already do the right thing.

PR:		196220
Differential Revision:	https://reviews.freebsd.org/D1664
Approved by:	garga (maintainer)
Approved by:	bapt (mentor)
Original commitRevision:377892 
Friday, 23 Jan 2015
22:50 antoine search for other commits by this committer
Switch ports depending on docbook* through a directory name to a package name,
as a directory name can't be attributed to a package
Original commitRevision:377770 
Tuesday, 13 Jan 2015
13:56 garga search for other commits by this committer
- Remove converters/p5-MIME-Base64 from RUN_DEPENDS since it's already in all
  supported Perl releases
- Bump PORTREVISION

Requested by:	sunpoet
Original commitRevision:376932 
11:53 garga search for other commits by this committer
Update to 2.2.2
Original commitRevision:376917 
Wednesday, 7 Jan 2015
17:20 garga search for other commits by this committer
Fix PLIST and bump PORTREVISION

PR:		196330
Submitted by:	mp39590@gmail.com
Original commitRevision:376472 
16:11 garga search for other commits by this committer
- Add a pkg-message warning user about git diff color being broken with
  default PAGER [1]
- Add LICENSE
- Bump PORTREVISION

PR:		195680 [1]
Submitted by:	Vlad "Blackflow" K. [1]
Original commitRevision:376467 
Monday, 29 Dec 2014
03:39 wxs search for other commits by this committer
Over to garga@.

I don't have the cycles to handle these higher profile ports anymore.
Original commitRevision:375769 
Thursday, 18 Dec 2014
22:40 des search for other commits by this committer
Upgrade to 2.2.1.
Original commitRevision:374926 
Wednesday, 26 Nov 2014
13:08 mat search for other commits by this committer
Change the way Perl modules are installed, update the default Perl to 5.18.

Before, we had:

  site_perl :           lib/perl5/site_perl/5.18
  site_perl/perl_arch : lib/perl5/site_perl/5.18/mach
  perl_man3 :           lib/perl5/5.18/man/man3

Now we have:

  site_perl : lib/perl5/site_perl
  site_arch : lib/perl5/site_perl/mach/5.18
  perl_man3 : lib/perl5/site_perl/man/man3

Modules without any .so will be installed at the same place regardless of the
Perl version, minimizing the upgrade when the major Perl version is changed.
It uses a version dependent directory for modules with compiled bits.

As PERL_ARCH is no longer needed in plists, it has been removed from
PLIST_SUB.

The USE_PERL5=fixpacklist keyword is removed, the .packlist file is now
always removed, as is perllocal.pod.

The old site_perl and site_perl/arch directories have been kept in the
default Perl @INC for all Perl ports, and will be phased out as these old
Perl versions expire.

PR:		194969
Differential Revision:	https://reviews.freebsd.org/D1019
Exp-run by:	antoine
Reviewed by:	perl@
Approved by:	portmgr
Original commitRevision:373448 
Monday, 20 Oct 2014
16:04 mva search for other commits by this committer
- Convert ports of devel/ to USES=python

Approved by:	portmgr (implicit)
Original commitRevision:371280 
Thursday, 16 Oct 2014
14:33 wxs search for other commits by this committer
Update to 2.1.2.

Cleanup plist to remove @dirrm.
Original commitRevision:371009 
Tuesday, 26 Aug 2014
01:23 wxs search for other commits by this committer
Update to 2.1.0.
Original commitRevision:366167 
Thursday, 7 Aug 2014
09:24 marino search for other commits by this committer
devel/git: Supply SHEBANG_FILES for shebangfix

The git port had USES=shebangfix defined but it was not told to fix
anything.  This patch will fix the shebang on a couple dozen perl scripts.

PR:		192386
Submitted by:	marino
Approved by:	General Blanket (wxs@ in copy)
Original commitRevision:364254 
Monday, 21 Jul 2014
20:06 wxs search for other commits by this committer
Update to 2.0.2.
Original commitRevision:362476 
Monday, 14 Jul 2014
16:01 wxs search for other commits by this committer
Update to 2.0.1.
Original commitRevision:361793 
Tuesday, 10 Jun 2014
20:05 wxs search for other commits by this committer
Update to 2.0.0
Original commitRevision:357372 
Thursday, 29 May 2014
14:12 wxs search for other commits by this committer
Add dependencies for send-email.

Noticed by:	sbruno@
Original commitRevision:355699 
Monday, 19 May 2014
12:38 wxs search for other commits by this committer
Update to 1.9.3.
Original commitRevision:354532 
Monday, 28 Apr 2014
01:55 wxs search for other commits by this committer
Update to 1.9.2.
Now back to grabbing distfiles from kernel.org mirrors as google code is
no longer updated.
Fix an issue with packlist when using PERL. [1]

PR:		[1]: ports/188677
Submitted by:	Bartek Rutkowski <ports@robakdesign.com>
		Horia Racoviceanu (private mail)
Original commitRevision:352468 
Monday, 24 Mar 2014
11:48 tijl search for other commits by this committer
The previous commit made git use nl_langinfo instead of locale_charset
but did not bump PORTREVISION.  Bump it now that libiconv no longer exports
locale_charset.

PR:		ports/187894
Original commitRevision:348942 
Tuesday, 11 Mar 2014
17:58 tijl search for other commits by this committer
Prevent detection of libcharset.h from converters/libiconv.

This forces git to use nl_langinfo() from libc instead of locale_charset()
from libiconv.  (The latter is practically an alias for the first.)

PR:		ports/187326
Approved by:	wxs (maintainer)
Original commitRevision:347897 
Thursday, 6 Mar 2014
18:20 wxs search for other commits by this committer
Update to 1.9.0. [1]
Support staging and general cleanup.

PR:		[2]: ports/186696
Submitted by:	[1]: Dan McGregor (private mail)
		[2]: tijl@
Original commitRevision:347294 
Thursday, 27 Feb 2014
14:43 gahr search for other commits by this committer
- Remove useless include of bsd.tcl.mk
Original commitRevision:346353 
Wednesday, 19 Feb 2014
14:45 mat search for other commits by this committer
Consolidate the docbook ports into -sgml and -xml variants.

Submitted by:	hrs (based on)
Sponsored by:	Absolight
Original commitRevision:345097 
Tuesday, 18 Feb 2014
14:50 mat search for other commits by this committer
Chase docbook cleanup dependencies.

Sponsored by:	Absolight
Original commitRevision:344900 
Monday, 17 Feb 2014
14:38 gahr search for other commits by this committer
- Convert to USES=gmake tk
- Convert to new LIB_DEPENDS format
Original commitRevision:344758 
Wednesday, 12 Feb 2014
13:50 wxs search for other commits by this committer
Update to 1.8.5.4.
Original commitRevision:343922 
Sunday, 29 Dec 2013
05:21 wxs search for other commits by this committer
Update to 1.8.5.2.
Original commitRevision:337936 
Monday, 18 Nov 2013
18:22 wxs search for other commits by this committer
Update to 1.8.4.3.
Original commitRevision:334236 
Saturday, 2 Nov 2013
02:33 wxs search for other commits by this committer
Update to 1.8.4.2.
Original commitRevision:332440 
Thursday, 17 Oct 2013
18:06 wxs search for other commits by this committer
Update to 1.8.4.1.

Among other things, this fixes git rebase.

https://raw.github.com/git/git/master/Documentation/RelNotes/1.8.4.1.txt

PR:		ports/183027
Submitted by:	olgeni@
Original commitRevision:330661 
Friday, 20 Sep 2013
17:04 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
devel part 2)
Original commitRevision:327723 
Monday, 16 Sep 2013
10:28 az search for other commits by this committer
- convert to the new perl5 framework
- convert USE_GMAKE to Uses

Approved by:	portmgr (bapt@, blanket)
Original commitRevision:327376 
Saturday, 7 Sep 2013
19:49 bsam search for other commits by this committer
Introduce variable ICONV_PREFIX at Mk/Uses/iconv.mk. The default for
pre 100043 is ${LOCALBASE} and /usr otherwise. Convert all ports to
new variable usage.

Approved by:	portmgr (bapt, implicit)
Original commitRevision:326683 
Tuesday, 27 Aug 2013
17:25 wxs search for other commits by this committer
Update to 1.8.4

Changes: https://raw.github.com/git/git/master/Documentation/RelNotes/1.8.4.txt
Original commitRevision:325473 

Number of commits found: 373 (showing only 100 on this page)

«  1 | 2 | 3 | 4  »