non port: news/cnews/Makefile |
Number of commits found: 61 |
Friday, 25 Oct 2024
|
12:18 Dirk Meyer (dinoex)
news/cnews: add FTP mirrors
f135cb4 |
Monday, 14 Oct 2024
|
20:37 Daniel Engberg (diizzy)
news/cnews: Refresh MASTER_SITES
Refresh URLs for MASTER_SITES and remove dead mirrors
Approved by: portmgr (blanket)
7603c35 |
Thursday, 11 Jan 2024
|
16:41 Dirk Meyer (dinoex)
news/cnews: use ${PREFIX}/share/man
e97d2f7 |
16:38 Dirk Meyer (dinoex)
news/cnews: use ${PREFIX}/share/man
e60e7d6 |
Thursday, 13 Jul 2023
|
15:17 Dirk Meyer (dinoex)
news/cnews: fix warnings on 32bit
cba30c3 |
Saturday, 11 Mar 2023
|
17:50 Dirk Meyer (dinoex)
news/cnews: fix build on FreeBSD-14
4e7d5a5 |
Wednesday, 7 Sep 2022
|
21:10 Stefan Eßer (se)
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)
b7f0544 |
Wednesday, 20 Jul 2022
|
14:22 Tobias C. Berner (tcberner)
news: remove 'Created by' lines
A big Thank You to the original contributors of these ports:
* Adam David <adam@FreeBSD.org>
* Ade Lovett <ade@FreeBSD.org>
* Andreas Klemm <andreas@klemm.gtn.com>
* Andrey Slusar <anray@FreeBSD.org>
* Brian Somers <brian@FreeBSD.org>
* Carey Jones <mcj@acquiesce.org>
* David O'Brien (obrien@cs.ucdavis.edu)
* Denis Shaposhnikov <dsh@vlink.ru>
* Don Croyle <croyle@gelemna.org>
* Donald Burr <dburr@FreeBSD.org>
* Frederic Cambus
* George Sorsby <george@crackpipe.net>
* James FitzGibbon <jfitz@FreeBSD.org>
* Jin-Shan Tseng <tjs@cdpa.nsysu.edu.tw>
* Joe Marcus Clarke <marcus@FreeBSD.org>
* John Holland <john@zoner.org>
* Jun-ichiro itojun Itoh <itojun@itojun.org>
* Kirill Ponomarew <ponomarew@oberon.net>
* Lasse L. Johnsen (lasse@freebsdcluster.org)
* Lewis Thompson <purple@lewiz.net>
* Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
* Max Khon
* Michael L. Hostbaek <mich@freebsdcluster.org>
* Mikolaj Rydzewski <miki@ceti.pl>
* Noritaka Ishizumi <graphite@taurus.bekkoame.or.jp>
* Oliver Braun <obraun@informatik.unibw-muenchen.de>
* Pete Fritchman <petef@databits.net>
* Ralf van der Enden <tremere@cainites.net>
* Sergey Skvortsov <skv@protey.ru>
* Thierry Thomas <tthomas@mail.dotcom.fr>
* Tim Welch <ports@thepentagon.org>
* Yen-Ming Lee <leeym@FreeBSD.org>
* Yen-Ming Lee <leeym@cae.ce.ntu.edu.tw>
* adam
* asaddi@philosophysw.com
* bkhl@elektrubadur.se
* gary@hayers.org
* ijliao
* kbowling
* obrien@cs.ucdavis.edu
* proff@suburbia.net
* smace
* torstenb
With hat: portmgr
4f7ba00 |
Monday, 10 Jan 2022
|
15:15 Stefan Eßer (se)
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)
bcaf25a |
Tuesday, 6 Apr 2021
|
14:31 Mathieu Arnold (mat)
Remove # $FreeBSD$ from Makefiles.
305f148 |
Sunday, 17 Sep 2017
|
14:41 dinoex
- update to pgpverify-1.29
- new option GPGPV
|
Wednesday, 2 Aug 2017
|
09:56 dinoex
- remove obsolte option PGP2
|
Wednesday, 18 Jan 2017
|
13:20 tijl
The output of tools like awk, date, sort, tr,... depends on the current
locale set by the user. Add LANG=C and LC_ALL=C at the beginning of
bsd.port.mk and export them so all commands are executed with the C locale.
LC_ALL=C overrides all other LC_* variables. LANG is used by setlocale(3)
as default value for LC_* variables, so normally it isn't used when LC_ALL
is set, but there's code out there that looks at LANG directly so it's safer
to set it as well. The only commands not captured by this are !=
assignments before any inclusion of bsd.port.*mk.
Introduce USE_LOCALE=<locale> that adds LANG=<locale> and LC_ALL=<locale> to
CONFIGURE_ENV and MAKE_ENV so upstream build systems can be executed with a
different locale (e.g. USE_LOCALE=en_US.UTF-8).
PR: 215882
Exp-run by: antoine
Approved by: portmgr (antoine)
|
Tuesday, 8 Nov 2016
|
07:10 dinoex
- fix include and prototype problems with ansi patches
|
Thursday, 11 Aug 2016
|
19:28 dinoex
- fix regressions on FreeBSD 10.3
|
Sunday, 31 Jul 2016
|
15:19 bapt
Fix build with clang and getline(3)
The getline(3) failure was hidden by the fact the port was said to build with
gcc from ports which occulted the getline(3) change because it bundles the
system headers from when it was built (WTF???)
Adding -Wno-return-type to cflags allows to build with clang
|
Tuesday, 1 Dec 2015
|
13:08 amdmi3
- Modernize plist
PR: 204047
Submitted by: amdmi3
Approved by: maintainer timeout (dinoex, 1 month)
|
Monday, 28 Sep 2015
|
21:16 dinoex
- cleanup
|
Saturday, 1 Aug 2015
|
05:32 dinoex
- support disk with more than 4G blocks free
|
Monday, 4 Aug 2014
|
04:56 dinoex
- fix build for pkg-1.3.4
|
Sunday, 3 Aug 2014
|
14:54 dinoex
- rename patch files
- rename MACROS
|
Tuesday, 15 Jul 2014
|
17:52 adamw
Add EXAMPLES to OPTIONS_DEFINE to ports that check for PORT_OPTIONS:MEXAMPLES.
|
Thursday, 10 Jul 2014
|
12:13 olgeni
Remove indefinite articles and trailing periods from COMMENT, plus minor
COMMENT typos and surrounding whitespace fixes. A few Makefiles where not
included as they contain Latin-1 characters that break the Phabricator
workflow. Category N.
CR: D307
Approved by: portmgr (bapt)
|
Wednesday, 19 Mar 2014
|
14:09 dinoex
- revert r346880
Approved by: bapt
- update LICENSE
- fix build with new clang
|
Monday, 3 Mar 2014
|
10:55 bapt
Fix build with clang
|
Sunday, 29 Dec 2013
|
08:00 dinoex
- new options PGP2 PGPIN PGPGPG
- do not default to security/pgp, which is broken on amd64
|
Saturday, 28 Dec 2013
|
06:39 dinoex
- apply gawk patch in any case
|
Wednesday, 18 Dec 2013
|
16:27 dinoex
- use STAGEDIR
- use OPTIONS_DEFINE
- honor option EXAMPLES
- use pkg-message
- change default path for over.view, note in UPDATING
|
Saturday, 21 Sep 2013
|
11:06 dinoex
- fix misplaced NO_STAGE in slaveports and ifdefs
|
Friday, 20 Sep 2013
|
22:31 bapt
Add NO_STAGE all over the place in preparation for the staging support (cat:
news)
|
Sunday, 27 Jan 2013
|
13:17 dinoex
- cleanup header
|
Tuesday, 9 Oct 2012
|
22:12 linimon
Force numerous ports that fail to build with clang over to instead always
rely on gcc. The patch uses the new USE_GCC=any code in Mk/bsd.gcc.mk to
accomplish this.
The ports chosen were ports that blocked 2 or more ports from building with
clang. (There are several hundred other ports that still fail to build with
clang, even with this patch. This is merely one step along the way.)
Those interested in fixing these ports with clang, and have clang as their
default compiler, can simply set FORCE_BASE_CC_FOR_TESTING=yes.
For those who have gcc as their default compiler, this change is believed
to cause no change.
Hat: portmgr
Tested with: multiple runs on amd64-8-exp-bcm and 9-exp-clang, with various
combinations of patch/no-patch and flag settings.
|
Thursday, 10 Jun 2010
|
05:37 dinoex
- add LICENSE_FILE
|
Friday, 4 Jun 2010
|
14:08 dinoex
LICENSE BSD
|
Friday, 27 Mar 2009
|
19:41 dinoex
- MAKE_JOBS_UNSAFE
|
Sunday, 7 Sep 2008
|
13:51 dinoex
- not chown all dirs
|
Wednesday, 3 Oct 2007
|
23:53 edwin
Remove support for OSVERSION < 5
|
Sunday, 8 Oct 2006
|
11:28 dinoex
- new option WITH_SEDMAIL / WITH_CNEWS_SENDMAIL
Submitted by: Scott Hazen Mueller
|
Sunday, 2 Jul 2006
|
06:24 dinoex
- disable regression test on pointyhat
the test sends 2 mails, pointyhat consider this fatal:
Fatal error: filesystem was touched prior to 'make install' phase
http://pointyhat.freebsd.org/errorlogs/i386-5-latest/cnews-cr.g_9.log
|
Saturday, 24 Jun 2006
|
08:23 dinoex
- drop support for FreeBSD 2.x
Submitted by: linimon
- perfomace gain by dropping gawk workaround
- activate regression-test
|
Wednesday, 9 Mar 2005
|
05:35 dinoex
- fix left over tempfiles in sendbatches
Submitted by: Peter Much
|
Sunday, 7 Mar 2004
|
06:50 dinoex
- preserve configuration even when extracting the package
- set shell and home for news when running intactive
|
Wednesday, 24 Sep 2003
|
17:28 dinoex
- change ECHO -> ECHO_MSG
|
Wednesday, 2 Jul 2003
|
19:11 dinoex
- clean up PATCH_SITES
- add patch for regression on CURRENT
Fixes incorrect memset, causes .overview gets not cleaned of nonexisted entries.
|
Thursday, 12 Jun 2003
|
19:25 dinoex
- make plist more flexible in path
|
Thursday, 20 Feb 2003
|
18:26 dinoex
- add COMMENT
|
Sunday, 1 Sep 2002
|
11:15 dinoex
Bump PORTREVISION
|
11:06 dinoex
change binary installation path for cnews
|
Sunday, 16 Jun 2002
|
15:03 dinoex
- Get rid of PERL and use SED
|
Sunday, 9 Jun 2002
|
11:22 dinoex
Try grouping of MASTER_SITES
|
Saturday, 5 Jan 2002
|
23:43 dinoex
- make portlint happier - use DOCSDIR or EXAMPLESDIR - get rid of some
INTERACTIVE scrips in news/ifmail
|
Saturday, 10 Nov 2001
|
04:22 dinoex
Include new patches: c-news-patch-namelen c-news-patch-inews-path
|
Sunday, 24 Jun 2001
|
05:28 dinoex
change MAINTAINER to FreeBSD.org address
|
Friday, 1 Jun 2001
|
07:05 obrien
Use proper POSIX syntax for `chown'.
|
Saturday, 26 May 2001
|
17:50 dinoex
- Redesign in pkg-plist, all directorys are now created removed with respect
of the configuration paths. - Bumped PORTREVISION
|
Sunday, 20 May 2001
|
05:22 dinoex
- Add matchting @unexec lines for serveral "@exec" So when package is
removed, disr will clean. Problem only found in depended ports: c-nocem,
nntpd, ... - Bumped PORTREVISION
|
Wednesday, 16 May 2001
|
19:45 dinoex
- Removed inactive MASTER_SITE
|
Wednesday, 24 Jan 2001
|
06:23 dinoex
Removed write permissions on %PREFIX%/news/cnewsbin/input/newsspool global
SUID bit is needed by uux group permission will not be enought. Thanks to
jedgar@fxp.org (Chris Faulhaber) for security advice.
|
Tuesday, 10 Oct 2000
|
05:15 kevlo
- Change in MASTER_SITES - Owner for binaries now from shake/mk/* - Owner
for initial configuration must be news - Small message extended.
|
Thursday, 10 Aug 2000
|
17:12 kevlo
Substitute the extra spaces
|
Monday, 7 Aug 2000
|
08:50 kevlo
- Update MASTER_SITES - PLIST is configurable and added URL's
|
Number of commits found: 61 |