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: sysutils/iocage-devel/Makefile

Number of commits found: 48

Tuesday, 27 Jun 2023
19:34 Rene Ladan (rene) search for other commits by this committer
all: remove explicit versions in USES=python for "3.x+"

The logic in USES=python will automatically convert this to 3.8+ by
itself.

Adjust two ports that only had Python 3.7 mentioned but build fine
on Python 3.8 too.

finance/quickfix: mark BROKEN with PYTHON

libtool: compile:  c++ -DHAVE_CONFIG_H -I. -I../.. -I -I. -I.. -I../.. -I../C++
-DLIBICONV_PLUG -DPYTHON_MAJOR_VERSION=3 -Wno-unused-variable
-Wno-maybe-uninitialized -O2 -pipe -DLIBICONV_PLUG -fstack-protector-strong
-fno-strict-aliasing -DLIBICONV_PLUG -Wall -ansi
-Wno-unused-command-line-argument -Wpointer-arith -Wwrite-strings
-Wno-overloaded-virtual -Wno-deprecated-declarations -Wno-deprecated -std=c++0x
-MT _quickfix_la-QuickfixPython.lo -MD -MP -MF
.deps/_quickfix_la-QuickfixPython.Tpo -c QuickfixPython.cpp  -fPIC -DPIC -o
.libs/_quickfix_la-QuickfixPython.o
warning: unknown warning option '-Wno-maybe-uninitialized'; did you mean
'-Wno-uninitialized'? [-Wunknown-warning-option]
QuickfixPython.cpp:175:11: fatal error: 'Python.h' file not found
          ^~~~~~~~~~
1 warning and 1 error generated.

Reviewed by:	portmgr, vishwin, yuri
Differential Revision:	<https://reviews.freebsd.org/D40568>
commit hash: 3d9a815d9c5acbb71f4bb07738bdeab4879feacb commit hash: 3d9a815d9c5acbb71f4bb07738bdeab4879feacb commit hash: 3d9a815d9c5acbb71f4bb07738bdeab4879feacb commit hash: 3d9a815d9c5acbb71f4bb07738bdeab4879feacb 3d9a815
Wednesday, 7 Sep 2022
21:10 Stefan Eßer (se) search for other commits by this committer
Add WWW entries to port Makefiles

It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.

Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.

There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.

This commit implements such a proposal and moves one of the WWW: entries
of each pkg-descr file into the respective port's Makefile. A heuristic
attempts to identify the most relevant URL in case there is more than
one WWW: entry in some pkg-descr file. URLs that are not moved into the
Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr
files in order to preserve them.

There are 1256 ports that had no WWW: entries in pkg-descr files. These
ports will not be touched in this commit.

The portlint port has been adjusted to expect a WWW entry in each port
Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as
deprecated.

Approved by:		portmgr (tcberner)
commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 b7f0544
Monday, 10 Jan 2022
15:15 Stefan Eßer (se) search for other commits by this committer
Fix CONFLICTS entries of multiple ports

There have been lots of missing CONFLICTS_INSTALL entries, either
because conflicting ports were added without updating existing ports,
due to name changes of generated packages, due to mis-understanding
the format and semantics of the conflicts entries, or just due to
typoes in package names.

This patch is the result of a comparison of all files contained in
the official packages with each other. This comparison was based on
packages built with default options and may therefore have missed
further conflicts with optionally installed files.

Where possible, version numbers in conflicts entries have been
generalized, some times taking advantage of the fact that a port
cannot conflict with itself (due to logic in bsd.port.mk that
supresses the pattern match result in that case).

A few ports that set the conflicts variables depending on complex
conditions (e.g. port options), have been left unmodified, despite
probably containing outdated package names.

These changes should only affect the installation of locally built
ports, not the package building with poudriere. They should give an
early indication of the install conflict in cases where currently
the pkg command aborts an installation when it detects that an
existing file would be overwritten,

Approved by:	portmgr (implicit)
commit hash: bcaf25a8c8046b094f6b5ab5bc258333bc326ee1 commit hash: bcaf25a8c8046b094f6b5ab5bc258333bc326ee1 commit hash: bcaf25a8c8046b094f6b5ab5bc258333bc326ee1 commit hash: bcaf25a8c8046b094f6b5ab5bc258333bc326ee1 bcaf25a
Friday, 29 Oct 2021
09:50 Stefan Eßer (se) search for other commits by this committer
*/*: Remove redundant '-[0-9]*' from CONFLICTS

The conflict checks compare the patterns first against the package
names without version (as reported by "pkg query "%n"), then - if
there was no match - agsinst the full package names including the
version (as reported by "pkg query "%n-%v").

Many CONFLICTS definitions used patterns like "bash-[0-9]*" to filter
for the bash package in any version. But that pattern is functionally
identical with just "bash".

Approved by:	portmgr (blanket)
commit hash: 819f25b36d45b8ac5593ec8e6f470d9ad454b08a commit hash: 819f25b36d45b8ac5593ec8e6f470d9ad454b08a commit hash: 819f25b36d45b8ac5593ec8e6f470d9ad454b08a commit hash: 819f25b36d45b8ac5593ec8e6f470d9ad454b08a 819f25b
Friday, 15 Oct 2021
16:10 Neel Chauhan (nc) search for other commits by this committer
sysutils/iocage-devel: Update to 1.2.20211001
commit hash: 427dc3bdb0f7d7f2e6ce1076c9cd7750784322eb commit hash: 427dc3bdb0f7d7f2e6ce1076c9cd7750784322eb commit hash: 427dc3bdb0f7d7f2e6ce1076c9cd7750784322eb commit hash: 427dc3bdb0f7d7f2e6ce1076c9cd7750784322eb 427dc3b
Saturday, 14 Aug 2021
19:48 Neel Chauhan (nc) search for other commits by this committer
sysutils/iocage-devel: Update to 1.2.20210811
commit hash: 28996dd13b0e4aceefdfd35d91eba68d40ef60a8 commit hash: 28996dd13b0e4aceefdfd35d91eba68d40ef60a8 commit hash: 28996dd13b0e4aceefdfd35d91eba68d40ef60a8 commit hash: 28996dd13b0e4aceefdfd35d91eba68d40ef60a8 28996dd
Monday, 12 Jul 2021
16:42 Neel Chauhan (nc) search for other commits by this committer
sysutils/iocage-devel: Adopt port and update to 1.0.0.20210712
commit hash: 3287192e7660006fb0a06a21527532fb4d6390fb commit hash: 3287192e7660006fb0a06a21527532fb4d6390fb commit hash: 3287192e7660006fb0a06a21527532fb4d6390fb commit hash: 3287192e7660006fb0a06a21527532fb4d6390fb 3287192
Sunday, 11 Jul 2021
23:37 Dan Langille (dvl) search for other commits by this committer
sysutils/iocage-devel: add missing dependenency - devel/py-jsonschema

While here, give up maintainership. I no longer use iocage.
commit hash: 9e62378e27a9b2be1fbadcb403e1de13f0f02b07 commit hash: 9e62378e27a9b2be1fbadcb403e1de13f0f02b07 commit hash: 9e62378e27a9b2be1fbadcb403e1de13f0f02b07 commit hash: 9e62378e27a9b2be1fbadcb403e1de13f0f02b07 9e62378
Thursday, 29 Apr 2021
13:40 Dan Langille (dvl) search for other commits by this committer
Update to most recent commit, a long overdue update. My apologies.
commit hash: 5b32443d65472d85775542c362d4fd679a431dc6 commit hash: 5b32443d65472d85775542c362d4fd679a431dc6 commit hash: 5b32443d65472d85775542c362d4fd679a431dc6 commit hash: 5b32443d65472d85775542c362d4fd679a431dc6 5b32443
Wednesday, 7 Apr 2021
08:09 Mathieu Arnold (mat) search for other commits by this committer
One more small cleanup, forgotten yesterday.
Reported by:	lwhsu
commit hash: cf118ccf875508b9a1c570044c93cfcc82bd455c commit hash: cf118ccf875508b9a1c570044c93cfcc82bd455c commit hash: cf118ccf875508b9a1c570044c93cfcc82bd455c commit hash: cf118ccf875508b9a1c570044c93cfcc82bd455c cf118cc
Tuesday, 6 Apr 2021
14:31 Mathieu Arnold (mat) search for other commits by this committer
Remove # $FreeBSD$ from Makefiles.
commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb 305f148
Tuesday, 13 Oct 2020
11:30 garga search for other commits by this committer
Change dependencies of git-lite to git@lite

PR:		250281
Submitted by:	Yasuhiro KIMURA <yasu@utahime.org>
Original commitRevision:552231 
Monday, 21 Oct 2019
09:13 araujo search for other commits by this committer
- Set OPTIONS_DEFAULT to devel/git instead of devel/git-lite.

Requested by:	mat and grembo
Original commitRevision:515091 
07:13 araujo search for other commits by this committer
- Fix git/git-lite dependencies.
- Fix "poudriere testport".
- Pet portlint.
- Bump PORTREVISION.

PR:		240959 (based on)
Submitted by:	burnerbox <burnerbox_protonmail.com>
		Sascha Holzleiter <sascha_root-login.org>
Approved by:	dvl (maintainer)
Original commitRevision:515086 
Sunday, 25 Aug 2019
14:14 dvl search for other commits by this committer
Add devel/git-lite as missing RUN_DEPENDS
Original commitRevision:509797 
Saturday, 10 Aug 2019
19:34 dvl search for other commits by this committer
Upgrade to 20190810

* remove unused files/iocage.in

Take maintainership, thank you.

PR:		239759
Approved by:	wg (maintainer)
Original commitRevision:508504 
Friday, 8 Mar 2019
19:52 wg search for other commits by this committer
sysutils/iocage-devel: update to 1.0.0.20190308
Original commitRevision:495065 
Tuesday, 22 Jan 2019
20:47 wg search for other commits by this committer
sysutils/iocage-devel: add back PORTEPOCH removed by accident
Original commitRevision:490977 
19:38 wg search for other commits by this committer
sysutils/iocage-devel: update to 1.0.0.20190122
Original commitRevision:490976 
Wednesday, 19 Dec 2018
19:31 wg search for other commits by this committer
sysutils/iocage-devel: update to 1.0.0.20181219
Original commitRevision:487811 
Wednesday, 12 Dec 2018
19:46 wg search for other commits by this committer
sysutils/iocage-devel: update to 1.0.0.20181212

This fixes usage in 12.0-RELEASE.
Original commitRevision:487320 
Friday, 7 Dec 2018
18:13 wg search for other commits by this committer
sysutils/iocage-devel: update to 20181207

- Fix migration from stable version
Original commitRevision:486878 
Monday, 3 Dec 2018
19:20 wg search for other commits by this committer
sysutils/iocage-devel: update to 20181203
Original commitRevision:486530 
Tuesday, 27 Nov 2018
16:19 wg search for other commits by this committer
sysutils/iocage-devel: update to 1.0.0.20181026

iocage project has changed directions and will no longer change underlying
library.
PORTEPOCH was bumped for this reason as it wont move to 2.x anytime soon.

Approved by:    maintainer
Original commitRevision:486019 
Tuesday, 6 Nov 2018
19:57 wg search for other commits by this committer
sysutils/iocage-devel: development version replacing library

iocage is a jail/container manager amalgamating some of the best features and
technologies the FreeBSD operating system has to offer. It is geared for ease
of use with a simple and easy to understand command syntax. This development
version aims to replace the library with a more solid code base while keeping
the same CLI.

WWW: https://github.com/iocage/iocage
Original commitRevision:484319 
Tuesday, 17 Jan 2017
21:35 kmoore search for other commits by this committer
Mark iocage-devel as DEPRECATED, replaced by sysutils/py-iocage

PR: 216193
Original commitRevision:431775 
Wednesday, 24 Aug 2016
14:46 kmoore search for other commits by this committer
- Update to 20160819

PR: 212110
Original commitRevision:420794 
Thursday, 23 Jun 2016
09:48 tz search for other commits by this committer
Change all occurrences of xmj@chaot.net to johannes@perceivon.net as the owner
requested.

This only affects "Created by" lines with one exception: devel/uclcmd. There the
maintainer is changed. This was overlooked in r416918.

Approved by: junovitch (mentor)
Original commitRevision:417356 
Friday, 3 Jun 2016
14:34 kmoore search for other commits by this committer
- Add missing depend on uclcmd

PR: 209884
Original commitRevision:416317 
Tuesday, 5 Apr 2016
18:43 kmoore search for other commits by this committer
- Update to 20160405

PR: 208333
Original commitRevision:412583 
Monday, 22 Feb 2016
16:44 kmoore search for other commits by this committer
- Update to 20160222
Original commitRevision:409358 
Saturday, 6 Feb 2016
13:51 kmoore search for other commits by this committer
- Update to 20160206
Original commitRevision:408298 
Monday, 25 Jan 2016
21:45 kmoore search for other commits by this committer
- Update to 20160125

PR: 206621
Original commitRevision:407243 
Friday, 22 Jan 2016
13:19 kmoore search for other commits by this committer
- Update to 20160122
Original commitRevision:406929 
Monday, 7 Dec 2015
22:30 kmoore search for other commits by this committer
- Update to 20151207
Original commitRevision:403240 
Thursday, 22 Oct 2015
13:14 kmoore search for other commits by this committer
- Update to 20151022
Original commitRevision:399972 
Saturday, 10 Oct 2015
23:13 sunpoet search for other commits by this committer
- Use @FreeBSD.org

Approved by:	portmgr (blanket)
Original commitRevision:399054 
Tuesday, 22 Sep 2015
14:40 kmoore search for other commits by this committer
- Update to 20150921 snapshot
Original commitRevision:397541 
Friday, 18 Sep 2015
17:45 kmoore search for other commits by this committer
- Update to 20150918
- Fix WWW address
Original commitRevision:397271 
14:46 amdmi3 search for other commits by this committer
- Drop 8.x support
- Add NO_ARCH

Approved by:	portmgr blanket
Original commitRevision:397245 
Thursday, 27 Aug 2015
14:10 kmoore search for other commits by this committer
- Update to 20150826
Original commitRevision:395429 
Thursday, 13 Aug 2015
13:53 kmoore search for other commits by this committer
- Since upstream isn't sure what version number to assign to -devel
  let's just make it a timestamp.
- Update to 20150811
Original commitRevision:394063 
Friday, 7 Aug 2015
13:54 kmoore search for other commits by this committer
- Switch to pulling from the main iocage GH account
Original commitRevision:393693 
Thursday, 6 Aug 2015
13:34 kmoore search for other commits by this committer
- Update iocage-devel to 1.7.2
Original commitRevision:393655 
Monday, 20 Jul 2015
20:54 kmoore search for other commits by this committer
- Update to later tag from GH
- Bump PORTREV
Original commitRevision:392601 
Wednesday, 15 Jul 2015
13:39 kmoore search for other commits by this committer
- Switch to using PKGNAMESUFFIX instead of merly renaming PORTNAME=

Submitted by: bapt
Original commitRevision:392138 
13:20 kmoore search for other commits by this committer
- Set PORTNAME to iocage-devel
- Set GH_PROJECT=iocage
Original commitRevision:392135 
Tuesday, 14 Jul 2015
15:12 kmoore search for other commits by this committer
- Add sysutils/iocage-devel
- Grab maintainership (Approved by xmj@)

PR: 201472
Submitted by: Johannes Jost Meixner <xmj@FreeBSD.org>
Original commitRevision:392018 

Number of commits found: 48