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: archivers/rpm4/Makefile
SVNWeb

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

1 | 2  »  

Mon, 23 Jan 2023
[ 16:04 Mark Johnston (markj) search for other commits by this committer ]    commit hash:e5c98e35692008f9633e768e2875d93b9dc93a25  commit hash:e5c98e35692008f9633e768e2875d93b9dc93a25  commit hash:e5c98e35692008f9633e768e2875d93b9dc93a25  e5c98e3 
archivers/rpm4: re-enable the build of the bundled elfdeps utility

Commit 5ff99a4c9df9 disabled libelf detection to work around the build
failure, but rpmbuild expects to be able to find the elfdeps utility and
misbehaves when it's not present.  Since the build failure is easy to
address (different names for an ELF machine type constant for the rather
obsolescent DEC Alpha), let's just do that.

As a part of this, elfutils must be listed as a runtime dependency.
Note that we cannot list it in LIB_DEPENDS since the ports framework
ends up finding the base system libelf.so and decides that the
dependency is satisifed without installing elfutils.  But the base
system libelf is missing a symbol (gelf_getvernaux) required by elfdeps.
Work around this by listing elfutils as both build and runtime
dependencies.

Approved by:	rodrigo
Reviewed by:	rodrigo
Sponsored by:	Klara, Inc.
Differential Revision:	https://reviews.freebsd.org/D38092
Thu, 1 Dec 2022
[ 14:03 Rodrigo Osorio (rodrigo) search for other commits by this committer ]    commit hash:22f3de494a13dd291e45c2e11b19adc37d70bb15  commit hash:22f3de494a13dd291e45c2e11b19adc37d70bb15  commit hash:22f3de494a13dd291e45c2e11b19adc37d70bb15  22f3de4 
archivers/rpm4: update to version 4.18.0

Major changes:
    * Add a new Sequoia-based OpenPGP backend
    * Documentation updates
    * Fix intermediate symlinks not verified (CVE-2021-35939)
    * Fix subkey binding signatures not checked on PGP public keys
(CVE-2021-3521)
    * Refactor file and directory operations to use fd-based APIs throughout
(CVE-2021-35938)
    * Unbreak lua 2 for extensions

Full release note: https://rpm.org/wiki/Releases/4.18.0.html

Also remove version requirement for Lua dependency in port, we just use lua.

PR:			267291
Reported by:	Brian Zou <zoujiaqing@gmail.com>
Security:	CVE-2021-35939
Security:	CVE-2021-3521
Security:	CVE-2021-35938
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:20 Tobias C. Berner (tcberner) search for other commits by this committer ]    commit hash:1ced9d288a7e33f5b7e7922ea8c5f965bbc55768  commit hash:1ced9d288a7e33f5b7e7922ea8c5f965bbc55768  commit hash:1ced9d288a7e33f5b7e7922ea8c5f965bbc55768  1ced9d2  (Only the first 10 of 199 ports in this commit are shown above. View all ports for this commit)
archivers: remove 'Created by' lines

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

  *  Aaron Dalton <aaron@FreeBSD.org>
  *  Akinori MUSHA aka knu <knu@idaemons.org>
  *  Albert Vernon <f3cun3c02@sneakemail.com>
  *  Alex Dupre <ale@FreeBSD.org>
  *  Alex Samorukov <samm@freebsd.org>
  *  Alexander Kuehn <freebsd@nagilum.org>
  *  Alexander Logvinov <ports@logvinov.com>
  *  Alexander Zhuravlev <zaa@zaa.pp.ru>
  *  Alexey Dokuchaev <danfe@FreeBSD.org>
  *  Alexey Dokuchaev <danfe@regency.nsu.ru>
  *  Anders Nordby <anders@FreeBSD.org>
(Only the first 15 lines of the commit message are shown above View all of this commit message)
Mon, 28 Feb 2022
[ 13:18 Dmitry Marakasov (amdmi3) search for other commits by this committer ]    commit hash:371aef9619e152a131b77b25b1bbb5859d474932  commit hash:371aef9619e152a131b77b25b1bbb5859d474932  commit hash:371aef9619e152a131b77b25b1bbb5859d474932  371aef9 
archivers/rpm4: fix python bindings

Fix regression introduced in 468b96c:
- Reenable python bindings which are still available in this package
- Remove dependency on py-python-rpm-packaging as it's not related to
  the bindings and is not required for this port operation

PR:		262173
Approved by:	portmgr blanket (regression)
Wed, 23 Feb 2022
[ 10:13 Dima Panov (fluffy) search for other commits by this committer ]    commit hash:3eb5190da9480f160171c7063890265f3b5b8572  commit hash:3eb5190da9480f160171c7063890265f3b5b8572  commit hash:3eb5190da9480f160171c7063890265f3b5b8572  3eb5190d 
archivers/rpm4: fix packaging for plugins (+)

RPM installs plugins to separated subdir, and all of them was missed from plist.
Moreover, with disabled PLUGINS option, listed manpages are missing.

Fix it by wrap with sub macro.
Bump PORTREVISION due to plist changes.

Reporded by:	poudriere build
Pointy hat to:	rodrigo (for not use poudriere to catch leftovers)
Approved by:	portmgr blanket (fix packaging)
Sponsored by:	Netzkommune GmbH
[ 07:48 Rodrigo Osorio (rodrigo) search for other commits by this committer ]    commit hash:468b96cf50e2b1ee6d555a0e6582e8a1d7f41eef  commit hash:468b96cf50e2b1ee6d555a0e6582e8a1d7f41eef  commit hash:468b96cf50e2b1ee6d555a0e6582e8a1d7f41eef  468b96c 
archivers/rpm4: Update to 4.17.0

Python helpers and scripts used for python packaging was removed
from RPM, comunity-driven files should be used instead.

Release note: https://rpm.org/wiki/Releases/4.17.0
Thu, 13 Jan 2022
[ 21:01 Stefan Eßer (se) search for other commits by this committer ]    commit hash:98f7d7db7e9bd14301b6a481ac477729c0ed6a24  commit hash:98f7d7db7e9bd14301b6a481ac477729c0ed6a24  commit hash:98f7d7db7e9bd14301b6a481ac477729c0ed6a24  98f7d7d  (Only the first 10 of 45 ports in this commit are shown above. View all ports for this commit)
Fix CONFLICTS entries in archivers, astro, audio

Fix conflicts entries based on a script that searches for duplicate
files installed by several ports.

Some patters seem to make ports conflict with themselves, but this is
actually not the case due to the check-*-conflicts logic implemented
in bsd.port.mk, which excludes self-conflicts.

PHP based ports have been ignored in this commit as requested by the
committers currently working on the php-8.1 import.

Approved by:	portmgr (implicit)
Sun, 3 Oct 2021
[ 17:47 Fernando Apesteguía (fernape) search for other commits by this committer ]    commit hash:07fb2d5e9d001934f1670d01aec1f536f14ebde2  commit hash:07fb2d5e9d001934f1670d01aec1f536f14ebde2  commit hash:07fb2d5e9d001934f1670d01aec1f536f14ebde2  07fb2d5  (Only the first 10 of 14 ports in this commit are shown above. View all ports for this commit)
*/*: Remove compiler:openmp from Mk/Uses/compiler.mk

The option implied a dependency on gcc but clang got openmp support long ago.

Remove compiler:openmp from Mk/Uses/compiler.mk

For ports using USE=compiler:openmp, just remove it and make them build with
clang.
Fix conditionals when necessary
Bump PORTREVISION where appropriate

If problem arises, they can be addressed by using USE_GCC=yes

An update to the Porter's Handbook will follow.

Approved by: portmgr (bapt)
Differential Revision: https://reviews.freebsd.org/D31971
Sun, 29 Aug 2021
[ 19:17 Bernhard Froehlich (decke) search for other commits by this committer ]    commit hash:96f1ca41be89daf266f00ec90fc55406a97ff9ae  commit hash:96f1ca41be89daf266f00ec90fc55406a97ff9ae  commit hash:96f1ca41be89daf266f00ec90fc55406a97ff9ae  96f1ca4 
archivers/rpm4: Add CPE information

Approved by:	portmgr (blanket)
Sat, 24 Apr 2021
[ 19:24 Rodrigo Osorio (rodrigo) search for other commits by this committer ]    commit hash:1cabbfe3cacd488ded9bad1b5217232fdcc02ab8  commit hash:1cabbfe3cacd488ded9bad1b5217232fdcc02ab8  commit hash:1cabbfe3cacd488ded9bad1b5217232fdcc02ab8  1cabbfe 
archivers/rpm4: Upgrade to 9.1.3

Major changes:
    Fix for CVE-2021-3421, CVE-2021-20271 and CVE-2021-20266
    additional fixes for important bugs

Full changelog: https://rpm.org/wiki/Releases/4.16.1.3

Security:	CVE-2021-3421
Security:	CVE-2021-20271
Security:	CVE-2021-20266
MFH:		2021Q2
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.
Fri, 1 Jan 2021
[ 11:06 rodrigo search for other commits by this committer ] Original commit   Revision:559824
archivers/rpm4: update to 4.16.1.2

This is a brown paperbag release to fix a single regression in 4.16.1
which causes rpmbuild to crash if hostname is not resolvable, and an
accidental soname bump introduced in now withdrawn 4.16.1.1.

Full release note: https://rpm.org/wiki/Releases/4.16.1.2
Mon, 26 Oct 2020
[ 21:50 rodrigo search for other commits by this committer ] Original commit   Revision:553390
Fix plist when PYTHON option is disabled

Bump portrevision

PR:		250573
Reported by:	VVD <vvd@unislabs.com>
[ 10:30 rodrigo search for other commits by this committer ] Original commit   Revision:553333
archivers/rpm4: Upgrade to 4.16.0

 * Upgrade to 4.16.0
 * add sqlite support
 * remove deprecate config options

Major changes:
 * Database backends:
   * NDB backend promoted to stable
   * New sqlite-based backend
   * New experimental read-only BDB backend
   * BDB database backend deprecated
 * Powerful macro and %if expressions
 * Optional MIME type based file classification
 * Dependency generation by parametric macros
 * A new version parsing and comparison API in C and Python
 * Parallelise test-suite execution
 * Clarify RPM license

PR:		250573
Submitted by:	Brian Zou <zoujiaqing@gmail.com>
Mon, 8 Jun 2020
[ 04:41 kevans search for other commits by this committer ] Original commit   Revision:538197 (Only the first 10 of 29 ports in this commit are shown above. View all ports for this commit)
Multiple ports: improve regex compliance

These changes largely fall into just two categories:

1. Need textproc/gsed for GNU extensions
2. Extraneous escapes that can go away

For #1, there's a further subdivision into those that require autoconf magic
and those that can get away with BINARY_ALIAS=sed=${LOCALBASE}/bin/gsed.
-CURRENT will soon gain GNU extensions, but these will take longer to get to
all supported releases; we must switch them to gsed to ensure we're actually
properly building them as intended.

For #2, I've fixed these as I can and we should upstream these fixes.
(Only the first 15 lines of the commit message are shown above View all of this commit message)
Sun, 22 Mar 2020
[ 16:05 rodrigo search for other commits by this committer ] Original commit   Revision:528924
archivers/rpm4: Replace calls to xargs by gxargs

Latest version of archivers/rpm4 uses GNU specific option
when calls xargs. This causes the proccess to fail.

This commit adds misc/findutils as a run dependency and
replaces xargs calls by its GNU variant gxargs.

Also Bump portrevision.

PR:		244606
Reported by:	Brian Zou <zoujiaqing@gmail.com>
Sun, 12 Jan 2020
[ 19:45 rodrigo search for other commits by this committer ] Original commit   Revision:522832
archivers/rpm4: Update to 4.15.1

Changelog: https://rpm.org/wiki/Releases/4.15.1

Highlights include:
 * Fixes to several important bugs and regressions
 * New gcrypt crypto backend
Thu, 3 Oct 2019
[ 16:55 rodrigo search for other commits by this committer ] Original commit   Revision:513675
Upgrade archivers/rpm4 from 4.14.2.1 to 4.15.0

Relnotes: https://rpm.org/wiki/Releases/4.15.0

PR:		240922
Submitted by:	pi
Wed, 10 Apr 2019
[ 06:18 antoine search for other commits by this committer ] Original commit   Revision:498530 (Only the first 10 of 399 ports in this commit are shown above. View all ports for this commit)
Bump a few PORTREVISIONs after r498529

With hat:	portmgr
Wed, 26 Dec 2018
[ 15:59 rodrigo search for other commits by this committer ] Original commit   Revision:488401
Upgrade archivers/rpm4 from 4.14.2 to 4.14.2.1

Changelog:
 * Fix regression (RhBug:1640470) in 4.14.2
 * Fix package verification memory leak introduced in 4.14.2
 * Fix long-standing Python GIL locking bug
 * Fix long-standing broken library path of embedded Lua

Changes : http://rpm.org/wiki/Releases/4.14.2.1

MFH:		2018Q4
Sun, 9 Sep 2018
[ 22:16 rodrigo search for other commits by this committer ] Original commit   Revision:479338
Reintroduce %%OPSYS%% keywords in the rpm4 plist

Reintroduce %%OPSYS%% keywords removed by mistake by r478959
and who breaks DragonFly support.

Reported by:	John Marino <dragonflybsd@marino.st>
Tue, 4 Sep 2018
[ 13:35 rodrigo search for other commits by this committer ] Original commit   Revision:478959
Fix remaining issues after update :

- Fixes plist for mentioned cases, cleans it up, sorts and removes placeholders
garbage
- Fixes new shebang problems
- Adds missing depends for new scripts
- Bump PORTREVISION

PR:		231152
Submitted by:	amdmi3
Mon, 3 Sep 2018
[ 23:09 rodrigo search for other commits by this committer ] Original commit   Revision:478918
Fix some issues afetr upgrade the port

- Reintroduce USE_LDCONFIG use by plugins option
- Prefix wit %%NLS%% a new language file
- Remove lib/rpm-plugins/ima.so from plist (not build anymore by default)

PR:		231118
Submitted by:	Maciej Pasternacki <maciej@pasternacki.net>
Reported by:	Walter Schwarzenfeld <w.schwarzenfeld@utanet.at>
<starikarp@yandex.com>
Sun, 2 Sep 2018
[ 16:29 rodrigo search for other commits by this committer ] Original commit   Revision:478806
Upgrade archivers/rpm4 from v4.13.1 to v4.14.2

Main changes:
  - Support for enforcing signature policy and payload verification
  - Numerous bugfixes and minor enhancements across the board
See detailed release note here : http://rpm.org/wiki/Releases/4.14.2

Since I'm here :
 - redo the patches using makepatch
 - remove unnecesary USE_LDCONFIG (repored by portlint)

PR:		229750
Reported by:	Brian Zou  <zoujiaqing@gmail.com>
Thu, 5 Jul 2018
[ 20:11 amdmi3 search for other commits by this committer ] Original commit   Revision:473982
- Fix build in presence of elfutils

Approved by:	portmgr blanket
Fri, 15 Jun 2018
[ 17:30 amdmi3 search for other commits by this committer ] Original commit   Revision:472466
- Fix python 3 support

While rpm does support python3, the port does not configure with
python 3 because it tries to detect incorrect python library
(-lpython3.6, while it should be -lpython3.6m, where m is some kind
of python abi flags). Shove python version with ABI flag added
through, which fixes build.

I've looked at rpm4 git master and it seems that they have changed
the python detection there, so newer versions of rpm4 may no longer
need this hack.

- Update WWW

Approved by:	portmgr blanket
Mon, 9 Apr 2018
[ 22:45 rodrigo search for other commits by this committer ] Original commit   Revision:466909
Upgrade rpm4 from 4.13.0.2 to 4.13.1

Major changes:
 - Fix CVE-2017-7501
 - Fix file lists getting fed to file triggers multiple times
 - Fix not all %transfiletriggerpostun file triggers executing (RhBug:1514085)
 - Fix file triggers executing before file fingerprinting
 - Fix file triggers firing on non-installed files
 - Fix file signatures failing on hardlinked files (#333)

Full release note : http://rpm.org/wiki/Releases/4.13.1

Security:	CVE-2017-7501
MFH:	2018Q2
Wed, 8 Nov 2017
[ 22:44 rodrigo search for other commits by this committer ] Original commit   Revision:453770
Update port to 4.13.0.2 and remove plugins from default options.

PR:		223540
Submitted by:	Anton Yuzhaninov <citrin+pr@citrin.ru>
Approved by:	rodrigo (maintainer)
Wed, 29 Mar 2017
[ 21:49 rodrigo search for other commits by this committer ] Original commit   Revision:437244
Upgrade to 4.13.0.1 and take maintainership
Remove unncecesary patches and fix plist
Sat, 17 Dec 2016
[ 21:10 marino search for other commits by this committer ] Original commit   Revision:428803
archivers/rpm4: Defined plist var OPSYS (fixes DF)
Fri, 16 Dec 2016
[ 10:10 amdmi3 search for other commits by this committer ] Original commit   Revision:428668
- Make plugins optional
- Switch to options helpers
- Cosmetic fixes
- Remove obsolete conflicts
- Fix COMMENT
Wed, 14 Dec 2016
[ 21:48 johans search for other commits by this committer ] Original commit   Revision:428596 (Only the first 10 of 38 ports in this commit are shown above. View all ports for this commit)
Stepping down as maintainer for some ports.
Sun, 9 Oct 2016
[ 12:10 jbeich search for other commits by this committer ] Original commit   Revision:423591 (Only the first 10 of 53 ports in this commit are shown above. View all ports for this commit)
devel/nspr, security/nss: drop version from SONAME

No other downstream appends synthetic library version, and doing so
causes underlinking due to fragile build system (see below). Not to
mention being unable to swap out bundled libs from upstream builds.

  $ cc -lplds4 -L/usr/local/lib
  /usr/lib/crt1.o: In function `_start1':
  crt1_c.c:(.text+0xa6): undefined reference to `main'
  /usr/local/lib/libplds4.so: undefined reference to `pthread_set_name_np'
  /usr/local/lib/libplds4.so: undefined reference to `pthread_create'
  /usr/local/lib/libplds4.so: undefined reference to `pthread_condattr_init'
  /usr/local/lib/libplds4.so: undefined reference to `pthread_setschedparam'
  /usr/local/lib/libplds4.so: undefined reference to `pthread_getschedparam'

PR:		213144
Exp-run by:	antoine
Mon, 8 Aug 2016
[ 13:46 mat search for other commits by this committer ] Original commit   Revision:419843 (Only the first 10 of 80 ports in this commit are shown above. View all ports for this commit)
USE_BDB cleanup.

- USE_BDB=4x+ -> USES=bdb.
- USE_BDB=yes -> USES=bdb.
- USE_BDB=xx  -> USES=bdb:xx.

Other modernisations when I see them.

PR:		209183
Sponsored by:	Absolight
Mon, 23 May 2016
[ 20:35 amdmi3 search for other commits by this committer ] Original commit   Revision:415742 (Only the first 10 of 217 ports in this commit are shown above. View all ports for this commit)
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
Fri, 1 Apr 2016
[ 13:29 mat search for other commits by this committer ] Original commit   Revision:412344 (Only the first 10 of 1009 ports in this commit are shown above. View all ports for this commit)
Remove ${PORTSDIR}/ from dependencies, Mk and categories a, b, and c.

With hat:	portmgr
Sponsored by:	Absolight
Sat, 12 Dec 2015
[ 19:37 bapt search for other commits by this committer ] Original commit   Revision:403631
mirrorservice.org no longer mirrors this ftp
Sun, 19 Jul 2015
[ 14:37 bapt search for other commits by this committer ] Original commit   Revision:392508
Enforce libarchive from ports
Sun, 22 Mar 2015
[ 18:40 johans search for other commits by this committer ] Original commit   Revision:381946
Add security fix for CVE-2014-8118

PR:		198796
Submitted by:	Sevan Janiyan <venture37@geeklan.co.uk>
Obtained from:	https://bugzilla.redhat.com/show_bug.cgi?id=1168715
MFH:		2015Q1
Mon, 20 Oct 2014
[ 08:12 marino search for other commits by this committer ] Original commit   Revision:371241 (Only the first 10 of 13 ports in this commit are shown above. View all ports for this commit)
Add USES=alias to several ports

Alias is a new USES tool that allows DragonFly to masquerade as FreeBSD
by setting CFLAGS+= -D__FreeBSD__.  For some ports, this fixes the build
without the need for additional patches.

Approved by:	portmgr (bapt, blanket)
Fri, 19 Sep 2014
[ 19:38 antoine search for other commits by this committer ] Original commit   Revision:368592
Really unbreak on freebsd 8/9
[ 14:20 johans search for other commits by this committer ] Original commit   Revision:368565
Remove dbus option, which has no effect

Submitted by:	tijl
[ 14:08 johans search for other commits by this committer ] Original commit   Revision:368564
- Use archivers/libarchive for FreeBSD < 10
- Bump portrevision

Submitted by:	John Hein <john.hein@microsemi.com>
[ 12:57 johans search for other commits by this committer ] Original commit   Revision:368558
- Update to rpm 4.12.0.1
- Add missing dependency
Thu, 18 Sep 2014
[ 10:26 johans search for other commits by this committer ] Original commit   Revision:368440
Update to rpm 4.12.0
Sun, 14 Sep 2014
[ 11:16 marino search for other commits by this committer ] Original commit   Revision:368168
archivers/rpm4: Fix build (was missing pkg-plist changes due to update)

The upgrade from version 4.11.2 => 4.11.3 required several lines in the
pkg-plist to be changed, but the file wasn't modified.  "Just fix it" now.
BTW, the pkg-plist needs badly to be alphabetized, but I didn't do this.
Thu, 11 Sep 2014
[ 20:10 johans search for other commits by this committer ] Original commit   Revision:367973
Update to rpm 4.11.3
Wed, 27 Aug 2014
[ 20:42 amdmi3 search for other commits by this committer ] Original commit   Revision:366349
- Fix build by providing LIBS
- Fix plist

Approved by:	portmgr blanket
Thu, 21 Aug 2014
[ 22:50 mandree search for other commits by this committer ] Original commit   Revision:365599 (Only the first 10 of 119 ports in this commit are shown above. View all ports for this commit)
Berkeley DB cleanup, remove versions 4.0 ... 4.7.
- Mk/bsd.database.mk rewrite, new default to db5.
- db6 is eligible by default only if installed on the system.
- Bump PORTREVISION of all ports that directly depend on BerkeleyDB or
  where USE_BDB is found in the port's directory
- Patch a few ports such that they will pick up or work with newer
  versions.
- Add UPDATING entry
- Drive-by format fix for pks
- Drop BerkeleyDB option from mail/popular for now, requires more work.
- Exp-run logs linked from the PR below.
- Ports that do not build (IGNORE, BROKEN, etc.) have pro-forma changes
  for new Berkeley DB, but are untested.

NOTE: please read UPDATING and the Wiki page before proceeding!

Announcement:	http://lists.freebsd.org/pipermail/freebsd-ports-announce/2014-August/000090.html
Wiki reference:	https://wiki.freebsd.org/Ports/BerkeleyDBCleanup
PR:		192690
Approved by:	portmgr (implicit, PORTREVISION bump on unstaged ports)
Wed, 23 Jul 2014
[ 12:11 johans search for other commits by this committer ] Original commit   Revision:362665
rpm4 does not build if default python is 3.x - force use of python 2.7

PR:		192061
Submitted by:	pi
[ 10:28 tijl search for other commits by this committer ] Original commit   Revision:362656 (Only the first 10 of 29 ports in this commit are shown above. View all ports for this commit)
Remove two libtool fixes from Mk/Uses/libtool.mk.  They don't always work
when an older version of a package is installed.  This is the case when an
executable links with installed libraries and with uninstalled libraries
that link with other uninstalled libraries.  For each of the directly
linked libraries the executable will have an rpath (/usr/local/lib for the
installed libraries and a path under WRKDIR for each of the uninstalled
libraries), but not for the indirect libraries.  Both ld(1) and rtld(1)
search the rpath of the executable first before any rpath of libraries, so
the indirectly linked libraries will be found in /usr/local/lib if they are
installed instead of in WRKDIR.

With this commit executables will overlink with uninstalled indirect
libraries again so their location is added to the rpath of the executable.

This partially reverts r358784.

PR:		191611
Approved by:	portmgr (bapt)
Thu, 3 Jul 2014
[ 19:06 adamw search for other commits by this committer ] Original commit   Revision:360446 (Only the first 10 of 27 ports in this commit are shown above. View all ports for this commit)
Reduce unnecessary bsd.port.options.mk inclusions by using OPTIONS helpers.

For liborange, reverse the logic, as I'm pretty sure the OPTIONS were being
used to disable the selected options.

Approved by:	portmgr (blanket)
Sun, 22 Jun 2014
[ 10:44 tijl search for other commits by this committer ] Original commit   Revision:358784 (Only the first 10 of 37 ports in this commit are shown above. View all ports for this commit)
Add 4 new sed commands to USES=libtool.  The first two apply some of the
changes that Debian made to their libtool.  The first command applies to
libtool versions 1.4 and up.  The second command is somewhat more elaborate
but essentially it uses the sed hold space to move an "elif...fi" block
down.  It applies to 2.x.  Together these reduce overlinking to unpatched
.la files (from ports that don't have USES=libtool yet but also .la files
in the work directory).

The third and fourth command fix relinking.  During staging libtool may
relink libA when it links to another library in the work directory libB.
The reason is that libA created during build phase has its runpath set to
the location of libB in the work directory.  This allows running an
executable that links to libA from within the work directory.  The relink
removes this extra runpath.
(Only the first 15 lines of the commit message are shown above View all of this commit message)
Mon, 26 May 2014
[ 15:28 bapt search for other commits by this committer ] Original commit   Revision:355360 (Only the first 10 of 84 ports in this commit are shown above. View all ports for this commit)
Replace lang/lua with the new lang/lua51

lang/lua51 is working the same way lang/lua52, chase ports using lua 5.1
Make the default lua lua52
Make all lua ports using USES=lua

Approved by:	portmgr (implicit)
Thu, 13 Feb 2014
[ 18:12 johans search for other commits by this committer ] Original commit   Revision:344135
- Update to rpm 4.11.2
- Minor port clean-ups
Mon, 13 Jan 2014
[ 21:00 rene search for other commits by this committer ] Original commit   Revision:339634 (Only the first 10 of 702 ports in this commit are shown above. View all ports for this commit)
Python cleanup:
- USE_PYTHON* = 2.X -> USE_PYTHON* = 2
- USE_PYTHON* = 2.X+ -> USE_PYTHON* = yes
Reviewed by:	python (mva, rm)
Approved by:	portmgr-lurkers (mat)
Sat, 4 Jan 2014
[ 00:54 bapt search for other commits by this committer ] Original commit   Revision:338613
Fix pkgname conflicts
Thu, 24 Oct 2013
[ 13:11 johans search for other commits by this committer ] Original commit   Revision:331485
- Use PKGNAMESUFFIX instead of LATEST_LINK to avoid conflicts
- Enable staging support
- Shebang-fix in installed scripts
- Explicit PORTDOCS file list
- Remove additional patch for old FreeBSD releases

The first part of these changes were committed in r331479
[ 11:45 johans search for other commits by this committer ] Original commit   Revision:331479
update
Fri, 20 Sep 2013
[ 13:11 bapt search for other commits by this committer ] Original commit   Revision:327699 (Only the first 10 of 221 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:
archivers)
Fri, 30 Aug 2013
[ 01:02 bapt search for other commits by this committer ] Original commit   Revision:325646 (Only the first 10 of 28 ports in this commit are shown above. View all ports for this commit)
Convert archivers from USE_GMAKE to USES=gmake
While here:
- Trim headers
- Convert some port to the new perl world
- Convert some port from USE_GNOME=pkgconfig to USES=pkgconfig
Sun, 14 Jul 2013
[ 16:10 johans search for other commits by this committer ] Original commit   Revision:322989
Update RPM to 4.11.1
Sat, 27 Apr 2013
[ 08:50 mva search for other commits by this committer ] Original commit   Revision:316654 (Only the first 10 of 196 ports in this commit are shown above. View all ports for this commit)
- Convert USE_ICONV=yes to USES=iconv
- Change USE_GNOME=pkgconfig|gnomehack to USES=pathfix|pkgconfig while here

Reviewed by:	bapt, kwm
Wed, 24 Apr 2013
[ 18:10 ak search for other commits by this committer ] Original commit   Revision:316464 (Only the first 10 of 1028 ports in this commit are shown above. View all ports for this commit)
- Convert USE_GETTEXT to USES (part 3)

Approved by:	portmgr (bapt)
Wed, 6 Feb 2013
[ 17:47 johans search for other commits by this committer ] Original commit   Revision:311784
- Update rpm to 4.11.0.1
  Release notes: http://rpm.org/wiki/Releases/4.11.0
Sun, 9 Dec 2012
[ 17:09 johans search for other commits by this committer ] Original commit   Revision:308544
- Update rpm 4.10.2
- Trim makefile header
- Update local patch to fix compilation issue
Fri, 5 Oct 2012
[ 15:56 johans search for other commits by this committer ] Original commit   Revision:305305
Update rpm to 4.10.1
Release notes http://rpm.org/wiki/Releases/4.10.1
Fri, 15 Jun 2012
[ 16:22 johans search for other commits by this committer ] Original commit 
- Update rpm to 4.10
  http://rpm.org/wiki/Releases/4.10.0
- Remove unneeded library version numbers
- Remove patch file that's no longer relevant
- Register conflict with rpm 5.x
- Convert to new options framework
- Note: shared library version got bumped
Fri, 6 Apr 2012
[ 12:58 johans search for other commits by this committer ] Original commit 
Update rpm4 to 4.9.1.3

Feature safe:   yes
Sun, 4 Dec 2011
[ 16:34 johans search for other commits by this committer ] Original commit 
- Fix plist when python is not selected [1]
- Aggregate variable settings

Reported by:    Peter <pmc@citylink.dinoex.sub.org> [1]
Feature safe:   yes
Mon, 14 Nov 2011
[ 21:47 johans search for other commits by this committer ] Original commit 
Fix conflicting glob_t definitions, which triggered a crash
when importing the rpm4 module in Python.

PR:             ports/162483
Submitted by:   Sean Mitchell <smitchell@hcn-inc.com>
Feature safe:   yes
Sun, 6 Nov 2011
[ 16:22 miwi search for other commits by this committer ] Original commit 
- Get rid FreeBSD 6.X support
Fri, 7 Oct 2011
[ 14:33 johans search for other commits by this committer ] Original commit 
Update to rpm 4.9.1.2 (bugfix release)
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
Thu, 15 Sep 2011
[ 16:51 johans search for other commits by this committer ] Original commit 
- Fix segmentation faults caused by missing libc function prototypes
  Returned pointers could be truncated to (potentially smaller) integers

Reported by:    will (with detailed analysis)
Thu, 4 Aug 2011
[ 21:40 johans search for other commits by this committer ] Original commit 
Update to rpm 4.9.1.1 (bugfix release)
Sat, 16 Jul 2011
[ 15:39 johans search for other commits by this committer ] Original commit 
Update to rpm 4.9.1
Sat, 11 Jun 2011
[ 10:59 johans search for other commits by this committer ] Original commit 
Update rpm4 to 4.9.0
Mon, 23 May 2011
[ 17:12 mandree search for other commits by this committer ] Original commit 
Bump USE_BDB due to impending db45 removal.
Mark db51 invalid (breaks build).
Thu, 16 Dec 2010
[ 10:35 erwin search for other commits by this committer ] Original commit 
Fix shared lib version of lzma.

Pointy hat:     johans

Submitted by:   pointyhat
Tue, 14 Dec 2010
[ 07:12 johans search for other commits by this committer ] Original commit 
- Install Python bindings by default [1]
- Make hidden dependency on liblzma explicit [2]

PR:             ports/153139 [2]
Submitted by:   Anders F Björklund <afb@rpm5.org [1]
                fluffy [2]
Sat, 4 Dec 2010
[ 07:34 ade search for other commits by this committer ] Original commit  (Only the first 10 of 1730 ports in this commit are shown above. View all ports for this commit)
Sync to new bsd.autotools.mk
Tue, 9 Nov 2010
[ 18:58 naddy search for other commits by this committer ] Original commit 
Increment PORTREVISION after liblzma major version change in archivers/xz.
Mon, 23 Aug 2010
[ 17:46 johans search for other commits by this committer ] Original commit 
Fix compilation of the python module for rpm; and fix plist [1]
Add an OPTION to install this module

PR:             ports/149886 [1]
Submitted by:   Anders.F.Björklund
Sat, 14 Aug 2010
[ 15:03 johans search for other commits by this committer ] Original commit 
Now set localstatedir correctly (/var)

RPM 4.8.1 uses a strange default for the %{_var} rpm macro...
The bug was fixed in RPM 5.0.0, variables need to be expanded.

PR:             ports/149498
Submitted by:   Anders F Björklund <afb@rpm5.org
Tue, 6 Jul 2010
[ 16:47 johans search for other commits by this committer ] Original commit 
- Add extra patch that should fix the rpm build on FreeBSD 6.x

Reported by:    pointyhat via erwin
Feature safe:   yes
Fri, 2 Jul 2010
[ 11:47 johans search for other commits by this committer ] Original commit  (Only the first 10 of 21 ports in this commit are shown above. View all ports for this commit)
- Update to rpm-4.8.1 (previous version was nearly 10yrs old)
- Grab maintainership

Feature safe:   yes
Mon, 31 May 2010
[ 02:01 ade search for other commits by this committer ] Original commit  (Only the first 10 of 1416 ports in this commit are shown above. View all ports for this commit)
Bounce PORTREVISION for gettext-related ports.  Have fun, ya'll.
Sun, 28 Mar 2010
[ 06:47 dinoex search for other commits by this committer ] Original commit  (Only the first 10 of 4470 ports in this commit are shown above. View all ports for this commit)
- update to 1.4.1
Reviewed by:    exp8 run on pointyhat
Supported by:   miwi
Sun, 2 Aug 2009
[ 19:36 mezz search for other commits by this committer ] Original commit  (Only the first 10 of 1514 ports in this commit are shown above. View all ports for this commit)
-Repocopy devel/libtool15 -> libtool22 and libltdl15 -> libltdl22.
-Update libtool and libltdl to 2.2.6a.
-Remove devel/libtool15 and devel/libltdl15.
-Fix ports build with libtool22/libltdl22.
-Bump ports that depend on libltdl22 due to shared library version change.
-Explain what to do update in the UPDATING.

It has been tested with GNOME2, XFCE4, KDE3, KDE4 and other many wm/desktop
and applications in the runtime.

With help:      marcus and kwm
Pointyhat-exp:  a few times by pav
Tested by:      pgollucci, "Romain Tartière" <romain@blogreen.org>, and
                a few MarcusCom CVS users. Also, I might have missed a few.
Repocopy by:    marcus
Approved by:    portmgr
Wed, 20 May 2009
[ 04:15 jpaetzel search for other commits by this committer ] Original commit 
Update pkg-plist to reflect directories left behind after deinstall

PR:     ports/134619
Approved by:    linimon (mentor)
Tue, 30 Dec 2008
[ 13:03 garga search for other commits by this committer ] Original commit 
- Fix MASTER_SITES

PR:             ports/129871
Submitted by:   Steven Kreuzer <skreuzer@exit2shell.com>
Fri, 6 Jun 2008
[ 13:02 edwin search for other commits by this committer ] Original commit  (Only the first 10 of 22 ports in this commit are shown above. View all ports for this commit)
Bump portrevision due to upgrade of devel/gettext.

The affected ports are the ones with gettext as a run-dependency
according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT
in Makefile (29 of them).

PR:             ports/124340
Submitted by:   edwin@
Approved by:    portmgr (pav)
Sat, 19 May 2007
[ 20:32 flz search for other commits by this committer ] Original commit  (Only the first 10 of 7868 ports in this commit are shown above. View all ports for this commit)
- Welcome X.org 7.2 \o/.
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}.
- Bump PORTREVISION for ports intalling files in ${X11BASE}.
Fri, 23 Mar 2007
[ 15:14 glewis search for other commits by this committer ] Original commit 
. Drop maintainership.
[ 10:24 pav search for other commits by this committer ] Original commit 
- Fix after objformat removal

PR:             ports/109468 (based on)
Submitted by:   Tsurutani Naoki <turutani@scphys.kyoto-u.ac.jp>
Approved by:    maintainer timeout (glewis; 3 weeks)
Wed, 3 May 2006
[ 05:14 edwin search for other commits by this committer ] Original commit  (Only the first 10 of 196 ports in this commit are shown above. View all ports for this commit)
Remove USE_REINPLACE from ports in categories starting with A.
Thu, 23 Feb 2006
[ 10:40 ade search for other commits by this committer ] Original commit  (Only the first 10 of 2514 ports in this commit are shown above. View all ports for this commit)
Conversion to a single libtool environment.

Approved by:    portmgr (kris)
Tue, 15 Nov 2005
[ 06:52 ade search for other commits by this committer ] Original commit  (Only the first 10 of 1438 ports in this commit are shown above. View all ports for this commit)
Mass-conversion to the USE_AUTOTOOLS New World Order.  The code present
in bsd.autotools.mk essentially makes this a no-op given that all the
old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in
exactly the same way as USE_AUTOTOOLS itself.

Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME
team -- all GNOME 2.12.x ports use it.

Preliminary documentation can be found at:
        http://people.FreeBSD.org/~ade/autotools.txt

which is in the process of being SGMLized before introduction into the
Porters Handbook.

Light blue touch-paper.  Run.

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

1 | 2  »