Commit graph

350079 commits

Author SHA1 Message Date
Marcus von Appen
d76c6bb64e - Convert to USES=python
- Remove deprecated INSTALLS_EGGINFO with a plist entry

Approved by:	portmgr (implicit)
2014-09-28 19:55:31 +00:00
Olli Hauer
8efbf35f90 - allow build without root 2014-09-28 19:26:18 +00:00
Steve Wills
2f29c44dd3 net/syncthing: fix filename of lz4 source, no package change 2014-09-28 19:24:15 +00:00
Olli Hauer
a4d0af628e - adopt new pkg-plist style 2014-09-28 19:01:08 +00:00
Olli Hauer
963a62e890 - remove useless PORT_OPTIONS:MDOCS check
- /PLIST_DIRSTRY/PLIST_DIRS/
2014-09-28 18:53:40 +00:00
Marcus von Appen
da133473c3 - Convert to USES=python
Approved by:	portmgr (implicit)
2014-09-28 18:47:31 +00:00
Marcus von Appen
ed71829f2e - Convert to USES=python
Approved by:	portmgr (implicit)
2014-09-28 18:44:12 +00:00
Olli Hauer
d8b553dcfc - use new python:2.7 notation
- use shebangfix
- bump PORTREVISION
2014-09-28 18:43:55 +00:00
Marcus von Appen
75a79b79be - Convert to USES=python
Approved by:	portmgr (implicit)
2014-09-28 18:40:48 +00:00
Olli Hauer
f98542f11d - remove unused CPE vars
- use new python:2.7 notation
- change apache sample to match apache24
- use own shebangfix, to many files (w.o file suffix)
- use new pkg-plist (remove @dirrm..)
- bump PORTREVISION
2014-09-28 18:38:02 +00:00
Raphael Kubo da Costa
f8f2eb0309 Update to 2.1.2 2014-09-28 18:37:05 +00:00
Ruslan Makhmatkhanov
0fef2dde91 Pass this guys to python@ because it's a general testing libraries, that is
used in many of our regression-test targets in python ports Makefiles.

Discussed with:	koobs
2014-09-28 18:28:03 +00:00
Ruslan Makhmatkhanov
6abd114880 net/py-smb: update to 1.1.12; convert to USES 2014-09-28 18:22:53 +00:00
Olli Hauer
66930d93a7 - use new python notation
- use shebangfix
- remove own extract function, it is no longer needed
- bump PORTREVISION
2014-09-28 18:21:25 +00:00
Ruslan Makhmatkhanov
b4eb1b6fbc www/py-w3lib: update to 1.7.1; convert to USES 2014-09-28 18:21:24 +00:00
Marcus von Appen
3fabeede9b - Convert to USES=python
Approved by:	portmgr (implicit)
2014-09-28 18:20:17 +00:00
Ruslan Makhmatkhanov
281642ddeb devel/py-serpent: update to 1.7; convert to USES 2014-09-28 18:19:12 +00:00
Ruslan Makhmatkhanov
da613cec77 devel/py-manuel: update to 1.8.0
- update to 1.8.0
- convert to USES
- update license info
2014-09-28 18:18:24 +00:00
Ruslan Makhmatkhanov
5614b65e23 audio/py-eyed3: update to 0.7.5; convert to USES 2014-09-28 18:17:19 +00:00
Marcus von Appen
627f3a893a - Convert to USES=python
Approved by:	portmgr (implicit)
2014-09-28 18:17:08 +00:00
Marcus von Appen
a031ee4003 - Convert to USES=python
Approved by:	portmgr (implicit)
2014-09-28 18:11:10 +00:00
Marcus von Appen
67df934a50 - Convert to USES=python
Approved by:	portmgr (implicit)
2014-09-28 18:07:08 +00:00
Marcus von Appen
f5c7cb20a5 - Convert to USES=python
Approved by:	portmgr (implicit)
2014-09-28 17:57:12 +00:00
Marcus von Appen
cc69669cb2 - Convert to USES=python
Approved by:	portmgr (implicit)
2014-09-28 17:47:50 +00:00
Marcus von Appen
2666f5c903 - Convert to USES=python
Approved by:	portmgr (implicit)
2014-09-28 17:42:15 +00:00
Marcus von Appen
cbbbd4b36c Convert to USES=python
Approved by:	portmgr (implicit)
2014-09-28 17:29:06 +00:00
Marcus von Appen
2a595442b1 - Convert to USES=python
Approved by:	portmgr (implicit)
2014-09-28 17:26:53 +00:00
Marcus von Appen
aa1c8ac90c - Convert to USES=python
- Remove deprecated INSTALLS_EGGINFO
- Unbreak plist for Python versions that are not version 3.3

Approved by:	portmgr (implicit)
2014-09-28 17:25:12 +00:00
Bryan Drewery
62f9f87a4d - Update to patchlevel 27 which changes how functions are exported.
This should eliminate the recent vulnerabilities, but keep the
  requirement for --import-functions/IMPORTFUNCTIONS option for now.
- Loosen the --import-functions requirement so it is not needed when running
  an interactive shell. It is already disallowed for privileged/setuid mode.
- Show an error on stderr when an imported function is ignored.
2014-09-28 16:47:00 +00:00
Marcus von Appen
9dd0c2d37c - Convert to USES=python
With hat:	python@
2014-09-28 16:37:33 +00:00
Tijl Coosemans
fe837ee6c6 Change the way USES is handled:
- Loop over USES twice, once to define all *_ARGS variables and once to
  include Uses/*.mk.  This allows all Uses/*.mk to examine arguments given
  to other USES entries.
- Always define *_ARGS (possibly empty) and replace commas with spaces.

Similar for _USES_POST.

Adjust all Uses/*.mk:
- defined(u_ARGS) becomes !empty(u_ARGS)
- Eliminate helper variables like _*_ARGS=${*_ARGS:C/,/ /g}
- Some Uses/*.mk used ":" as argument separator instead of ",", but no port
  used this form
- Uses/cran.mk: remove unused variable VALID_ARGS and USES+=fortran which
  has no effect
- Uses/twisted.mk: simplify handling of the case where neither "build" nor
  "run" arguments have been specified

PR:		193931
Exp-run by:	antoine
Approved by:	portmgr (antoine)
2014-09-28 16:36:31 +00:00
Koop Mast
fe60cb457c Update to 0.10.18.
Switch from USES=libtool:keepla to USES=libtool
2014-09-28 16:25:05 +00:00
Koop Mast
74d23330c8 Update to 1.14.30. 2014-09-28 16:00:13 +00:00
Wen Heping
4ccff2a039 - Update to 1.19.19 2014-09-28 15:14:11 +00:00
Wen Heping
6514e9b822 - Reset maintainer to ports@
PR:		193990
Submitted by:	dikshie@gmail.com(previous maintainer)
2014-09-28 15:03:23 +00:00
Wen Heping
05e15b966d - Update to 1.22.11 2014-09-28 14:57:21 +00:00
Max Brazhnikov
fcaa5123a9 Add new port misc/kde-thumbnailer-fb2:
KDE thumbnail generator for the FictionBook (fb2) file format.

WWW: http://kde-apps.org/content/show.php?content=160180
2014-09-28 14:55:21 +00:00
Max Brazhnikov
4cd7baea5f Add new port misc/kde-thumbnailer-epub:
KDE thumbnail generator for the ePub file format.

WWW: http://kde-apps.org/content/show.php?content=151210
2014-09-28 14:54:03 +00:00
Marc Fonvieille
8e831bc554 Update to r45683 of the FreeBSD docset (a.k.a. 10.1-R version)
Approved by:	doceng (implicit)
2014-09-28 14:49:05 +00:00
Wen Heping
9a607866de - Reset maintainer to ports@
PR:		193991
Submitted by:	dikshie@gmail.com(previous maintainer)
2014-09-28 14:22:13 +00:00
Antoine Brodin
669a30042c Allow staging as a regular user 2014-09-28 14:15:04 +00:00
Antoine Brodin
97f8facea9 Allow staging as a regular user 2014-09-28 14:08:59 +00:00
Antoine Brodin
e8a54851cf Allow staging as a regular user 2014-09-28 13:15:49 +00:00
Antoine Brodin
91fea57317 Allow staging as a regular user 2014-09-28 12:58:27 +00:00
Antoine Brodin
d83d2bcc9b Allow staging as a regular user 2014-09-28 12:57:48 +00:00
Gerald Pfeifer
fa700dd5c4 Update to the 20140924 snapshot of GCC 4.9.2.
Remove all instances of @dirrm from pkg-plist.
2014-09-28 12:37:59 +00:00
TAKATSU Tomonari
d489bd09b2 - Update to 0.3.1 2014-09-28 11:57:52 +00:00
Gerald Pfeifer
a3d58e17c9 Update to the 20140921 snapshot of GCC 5.0.
Remove four instances of @dirrm from pkg-plist.
2014-09-28 10:49:15 +00:00
Dmitry Sivachenko
cbd6f0a16a Fix
ImportError: /lib/libgcc_s.so.1: version GCC_4.6.0 required by /usr/local/lib/gcc48/libgfortran.so.3 not found
error when importing numpy module.

PR:		188114
Patch by Thierry Thomas <thierry@FreeBSD.org>
2014-09-28 10:40:54 +00:00
Koop Mast
52453626a1 Update to 6.8.9-8. 2014-09-28 10:38:02 +00:00