notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
All times are UTC
Ukraine
non port: emulators/tpm-emulator/Makefile
SVNWeb

Number of commits found: 28

Wed, 7 Sep 2022
[ 21:10 Stefan Eßer (se) search for other commits by this committer ]    commit hash:b7f05445c00f2625aa19b4154ebcbce5ed2daa52  commit hash:b7f05445c00f2625aa19b4154ebcbce5ed2daa52  commit hash:b7f05445c00f2625aa19b4154ebcbce5ed2daa52  b7f0544  (Only the first 10 of 27931 ports in this commit are shown above. View all ports for this commit)
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.
(Only the first 15 lines of the commit message are shown above View all of this commit message)
Wed, 20 Jul 2022
[ 14:21 Tobias C. Berner (tcberner) search for other commits by this committer ]    commit hash:27eb52ac6a0bb5c93c0ae4ebe4fef9bafb727cfd  commit hash:27eb52ac6a0bb5c93c0ae4ebe4fef9bafb727cfd  commit hash:27eb52ac6a0bb5c93c0ae4ebe4fef9bafb727cfd  27eb52a  (Only the first 10 of 118 ports in this commit are shown above. View all ports for this commit)
emulators: remove 'Created by' lines

A big Thank You to the original contributors of these ports:

  *  Akinori MUSHA aka knu <knu@idaemons.org>
  *  Alejandro Pulver <alejandro@varnet.biz>
  *  Alexander Best <arundel@gmx.net>
  *  Alexander Nedotsukov <bland@FreeBSD.org>
  *  Alexey Dokuchaev <danfe@FreeBSD.org>
  *  Alexey V. Antipovsky <kemm@in-line.ru>
  *  Alonso Cardenas Marquez <acm@FreeBSD.org>
  *  Brian Gaeke <brg@dgate.org>
  *  Danilo Egea Gondolfo <danilo@FreeBSD.org>
  *  David Naylor <naylor.b.david@gmail.com>
  *  David O'Brien (obrien@cs.ucdavis.edu)
(Only the first 15 lines of the commit message are shown above View all of this commit message)
Tue, 6 Apr 2021
[ 14:31 Mathieu Arnold (mat) search for other commits by this committer ]    commit hash:305f148f482daf30dcf728039d03d019f88344eb  commit hash:305f148f482daf30dcf728039d03d019f88344eb  commit hash:305f148f482daf30dcf728039d03d019f88344eb  305f148  (Only the first 10 of 29333 ports in this commit are shown above. View all ports for this commit)
Remove # $FreeBSD$ from Makefiles.
Tue, 25 Dec 2018
[ 20:25 tcberner search for other commits by this committer ] Original commit   Revision:488341 (Only the first 10 of 1277 ports in this commit are shown above. View all ports for this commit)
Change cmake default behaviour to outsource.

Ports that build out of source now simply can use "USES=cmake"
instead of "USES=cmake:outsource". Ports that fail to build
out of source now need to specify "USES=cmake:insource".

I tried to only set insource where explictely needed.

PR:		232038
Exp-run by:	antoine
Sat, 3 Jun 2017
[ 21:56 ler search for other commits by this committer ] Original commit   Revision:442522
emulators/tpm-emulator: fail to run in arm64 due to improper getopt(3) use

Add patch to fix it.

PR:		219352
Submitted by:	Phillip R. Jaenke <prj@rootwyrm.com>
Approved by:	maintainer timeout.
Wed, 18 May 2016
[ 13:53 hrs search for other commits by this committer ] Original commit   Revision:415449 (Only the first 10 of 43 ports in this commit are shown above. View all ports for this commit)
security/trousers:

- Update to 0.3.13.
- Remove CONFLICTS with emulators/tpm-emulator.

  Two separate binaries, sbin/tcsd (for actual TPM device) and
  sbin/tcsd_emu (for TPM emulator) are now installed.  rc.d/tcsd chooses
  one of them depending on $tcsd_mode.  When tcsd_mode="native" (default)
  it runs sbin/tcsd, and when tcsd_mode="emulator" it runs sbin/tcsd_emu.
  Note that sbin/tcsd_emu depends on tpmd in emulators/tpm-emulator.

- Simplify @sample.

emulators/tpm-emulator:

- Remove CONFLICTS with security/trousers.
- Simplify rc.d/tpmd.
Fri, 1 Apr 2016
[ 14:00 mat search for other commits by this committer ] Original commit   Revision:412346 (Only the first 10 of 5103 ports in this commit are shown above. View all ports for this commit)
Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.

With hat:	portmgr
Sponsored by:	Absolight
Sun, 20 Sep 2015
[ 14:35 danfe search for other commits by this committer ] Original commit   Revision:397374 (Only the first 10 of 19 ports in this commit are shown above. View all ports for this commit)
Remove BROKEN on Tier-2 systems statements which no longer true at least
on PowerPC (verified for all of them) and some also on SPARC (whenever I
was able to test those on flame.freebsd.org) and even IA64 (which should
be OK to remove anyways, because it was never really supported system in
ports land and was officially killed in -CURRENT a while ago.
Tue, 18 Aug 2015
[ 10:51 rakuco search for other commits by this committer ] Original commit   Revision:394572 (Only the first 10 of 18 ports in this commit are shown above. View all ports for this commit)
Uses/cmake.mk: Replace CMAKE_ENV with CONFIGURE_ENV.

Instead of defining a variable that is almost always based on CONFIGURE_ENV,
just use CONFIGURE_ENV directly.

This also matches the behavior of other ports that do not use autotools (so
most ports can just worry about CONFIGURE_ENV). Additionally, the fact that
we do not use ?= means we do not have problems if another file in Uses/
needs to set CONFIGURE_ENV (with CMAKE_ENV, the order of the arguments to
USES would matter).

Ports which set CMAKE_ENV have been adjusted accordingly. In most cases,
CMAKE_ENV was just replaced with CONFIGURE_ENV, the exceptions being:
* databases/sqliteman: CMAKE_ENV line removed; setting QMAKESPEC there has
                       no effect on the build system.
* devel/freeocl: CMAKE_ENV line removed; FREEOCL_CXX_COMPILER is already
                 retrieved from the CMAKE_CXX_COMPILER variable in the build
                 system.
* graphics/openimageio: CMAKE_ENV line removed; setting Qt variables there
                        has no effect on the build system.

Reviewed by:		makc
Differential Revision:	https://reviews.freebsd.org/D3403
Thu, 13 Nov 2014
[ 14:32 antoine search for other commits by this committer ] Original commit   Revision:372523 (Only the first 10 of 16 ports in this commit are shown above. View all ports for this commit)
Cleanup plist
Sun, 27 Jul 2014
[ 13:28 marino search for other commits by this committer ] Original commit   Revision:363061
stage emulators/tpm-emulator

While here, simplify powerpc breakage, remove reference to BERLIOS

PR:		191727
Submitted by:	Dan Lukes
Sun, 13 Jul 2014
[ 23:23 bapt search for other commits by this committer ] Original commit   Revision:361727 (Only the first 10 of 54 ports in this commit are shown above. View all ports for this commit)
Modernize LIB_DEPENDS

With hat:	portmgr
Wed, 2 Jul 2014
[ 20:22 antoine search for other commits by this committer ] Original commit   Revision:360256 (Only the first 10 of 28 ports in this commit are shown above. View all ports for this commit)
Resetting maintainership on ports that have not been staged and without any
pending PR

With hat:	portmgr
Fri, 20 Sep 2013
[ 16:43 bapt search for other commits by this committer ] Original commit   Revision:327721 (Only the first 10 of 190 ports in this commit are shown above. View all ports for this commit)
Add NO_STAGE all over the place in preparation for the staging support (cat:
emulators)
Wed, 14 Aug 2013
[ 22:35 ak search for other commits by this committer ] Original commit   Revision:324744 (Only the first 10 of 1725 ports in this commit are shown above. View all ports for this commit)
- Remove MAKE_JOBS_SAFE variable

Approved by:	portmgr (bdrewery)
Sat, 27 Jul 2013
[ 04:27 hrs search for other commits by this committer ] Original commit   Revision:323772
- Fix CONFLICTS.
- Style cleanups.
- Take maintainership.
Fri, 22 Mar 2013
[ 20:06 makc search for other commits by this committer ] Original commit   Revision:314960 (Only the first 10 of 464 ports in this commit are shown above. View all ports for this commit)
- convert USE_CMAKE to USES
- while here clean up some ports from CMAKE_VERBOSE, which is intended
  for users

Approved by:	portmgr (miwi)
Thu, 7 Feb 2013
[ 14:30 miwi search for other commits by this committer ] Original commit   Revision:311846 (Only the first 10 of 13 ports in this commit are shown above. View all ports for this commit)
- Update to version 0.7.4
- Trim header

PR:		172716
Submitted by:	Ports Fury
Wed, 15 Aug 2012
[ 19:26 tabthorpe search for other commits by this committer ] Original commit  (Only the first 10 of 57 ports in this commit are shown above. View all ports for this commit)
- Reassign nork@ ports to the heap
- Thank you for your years of service, we hope to see you back

Approved by:	portmgr
Fri, 11 Nov 2011
[ 02:29 linimon search for other commits by this committer ] Original commit 
Mark as broken on powerpc: does not compile.

Hat:            portmgr
Feature safe:   yes
Fri, 23 Sep 2011
[ 22:26 amdmi3 search for other commits by this committer ] Original commit  (Only the first 10 of 2369 ports in this commit are shown above. View all ports for this commit)
- Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)
- Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead

PR:             157936
Submitted by:   myself
Exp-runs by:    pav
Approved by:    pav
Sat, 25 Dec 2010
[ 16:55 sunpoet search for other commits by this committer ] Original commit  (Only the first 10 of 180 ports in this commit are shown above. View all ports for this commit)
- Use canonical format for FreeBSD.org MAINTAINER addresses
- Remove obsolete MD5 checksum while I'm here

PR:             ports/152844
Submitted by:   sunpoet (myself)
Approved by:    miwi (with portmgr hat)
Tue, 14 Dec 2010
[ 22:49 nork search for other commits by this committer ] Original commit 
All cleanup done (PREFIX clean, permission clean), and bump PORTREVISION.
[ 22:31 nork search for other commits by this committer ] Original commit 
Cleanup(portlint happy).

[NOTE]
In this time, I don't bump PORTREVISION.  Because I'll
re-setup working directory under $PREFIX
(/var/lib/tpm -> $PREFIX/var/lib/tpm).  So I'll finish
these working, and bump PORTREVISION.
[ 16:26 nork search for other commits by this committer ] Original commit 
Fix rc script with _tss USER/GROUP.

[NOTE]
In this time, I don't bump PORTREVISION.  Because I'll
re-setup working directory under $PREFIX
(/var/lib/tpm -> $PREFIX/var/lib/tpm).  So I'll finish
these working, and bump PORTREVISION.
Mon, 13 Dec 2010
[ 18:38 nork search for other commits by this committer ] Original commit 
Add support rc script. (buggy by not install USER/GROUP)

[NOTE]
In this time, I don't bump PORTREVISION.  Because I must install
_tss user and group account(bug), and I'll re-setup working
directory under $PREFIX.  So I'll finish these working, and
bump PORTREVISION.
Sun, 7 Nov 2010
[ 12:22 nork search for other commits by this committer ] Original commit 
o Add security to CATEGORIES. [1]
o Add missing file. [2]

Pointy hat to:  myself [1][2]
Reported by:    QAT [2]
[ 12:08 nork search for other commits by this committer ] Original commit  (Only the first 10 of 15 ports in this commit are shown above. View all ports for this commit)
Add tpm-emulator 0.7.1, is a Trusted Platform Module (TPM) emulator.

Obtained from:  http://bsssd.sourceforge.net/

Number of commits found: 28