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: devel/py-fusefs/Makefile
SVNWeb

Number of commits found: 27

Thu, 24 Dec 2020
[ 13:46 kai search for other commits by this committer ] Original commit   Revision:559094 (Only the first 10 of 166 ports in this commit are shown above. View all ports for this commit)
Relax hardcoded paths to fix build with Python 3.8.7

Since r558913 Python 3.8 incorporates BPO-42604 [1] which changed the
shared libs naming scheme.  This means "EXT_SUFFIX" is now derived from
SOABI and yields with Python 3.8 to ".cpython-38.so" instead of ".so".

The affected ports strip the libaries in the "post-install" target via
hardcoded path(s) and the build fails at the end because the new extension
is not expected at this place.

Remedy the issue by adding wildcards to these paths.  This should also
prepare the ports for future Python releases, which will use the new shared
libs naming scheme.

[1] https://bugs.python.org/issue42604

PR:		252057
Reported by:	John Kennedy
Reviewed by:	fluffy, koobs
Approved by:	koobs (python)
Wed, 11 Nov 2020
[ 12:14 antoine search for other commits by this committer ] Original commit   Revision:554889 (Only the first 10 of 23 ports in this commit are shown above. View all ports for this commit)
Deprecate a few python 2.7 ports
Thu, 30 Nov 2017
[ 15:50 mat search for other commits by this committer ] Original commit   Revision:455210 (Only the first 10 of 2423 ports in this commit are shown above. View all ports for this commit)
Convert Python ports to FLAVORS.

  Ports using USE_PYTHON=distutils are now flavored.  They will
  automatically get flavors (py27, py34, py35, py36) depending on what
  versions they support.

  There is also a USE_PYTHON=flavors for ports that do not use distutils
  but need FLAVORS to be set.  A USE_PYTHON=noflavors can be set if
  using distutils but flavors are not wanted.

  A new USE_PYTHON=optsuffix that will add PYTHON_PKGNAMESUFFIX has been
  added to cope with Python ports that did not have the Python
  PKGNAMEPREFIX but are flavored.

  USES=python now also exports a PY_FLAVOR variable that contains the
(Only the first 15 lines of the commit message are shown above View all of this commit message)
Thu, 27 Oct 2016
[ 21:18 jbeich search for other commits by this committer ] Original commit   Revision:424793
devel/py-fusepy: add new port

Based on:	ports-mgmt/py-pytoport output

fusepy is a Python module that provides a simple interface to FUSE and
MacFUSE. It's just one file and is implemented using ctypes.

https://pypi.python.org/pypi/fusepy
Sun, 3 Jan 2016
[ 12:53 miwi search for other commits by this committer ] Original commit   Revision:405137
- Convert to options helper
Thu, 12 Mar 2015
[ 02:11 amdmi3 search for other commits by this committer ] Original commit   Revision:381056
- Add LICENSE
- Strip library
Mon, 20 Oct 2014
[ 16:04 mva search for other commits by this committer ] Original commit   Revision:371280 (Only the first 10 of 564 ports in this commit are shown above. View all ports for this commit)
- Convert ports of devel/ to USES=python

Approved by:	portmgr (implicit)
Fri, 27 Dec 2013
[ 10:09 wg search for other commits by this committer ] Original commit   Revision:337682
devel/py-fusefs: support staging and minor fixes

- Support staging
- Switch from easy_install
- Use auto plist
- Unmute install commands
Fri, 20 Sep 2013
[ 17:13 bapt search for other commits by this committer ] Original commit   Revision:327724 (Only the first 10 of 2998 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:
devel part 3)
Wed, 4 Sep 2013
[ 18:06 madpilot search for other commits by this committer ] Original commit   Revision:326307 (Only the first 10 of 129 ports in this commit are shown above. View all ports for this commit)
- Make ports use the libc provided iconv implementation on 10-CURRENT
  after r254273
- Fix a bunch of ports to properly work after this
- Mark converters/libiconv as IGNORE for systems with iconv in libc

Reviewed by:	bapt
Approved by:	portmgr (bapt)
Discussed with:	bapt, bsam (who both contributed ideas and code)
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
Tue, 23 Apr 2013
[ 10:13 bapt search for other commits by this committer ] Original commit   Revision:316333 (Only the first 10 of 97 ports in this commit are shown above. View all ports for this commit)
Convert devel to USES=pkgconfig
Wed, 6 Mar 2013
[ 16:52 bapt search for other commits by this committer ] Original commit   Revision:313527 (Only the first 10 of 50 ports in this commit are shown above. View all ports for this commit)
Convert USE_FUSE macros into USES feature.

While here trim headers
Convert some USE_GNOME= gnomehack -> USES= pathfix
Fri, 14 Dec 2012
[ 15:47 flo search for other commits by this committer ] Original commit   Revision:308910 (Only the first 10 of 48 ports in this commit are shown above. View all ports for this commit)
- introduce a USE_FUSE macro
- convert all fuse ports to use the new macro

The macro makes sure sysutils/fusefs-libs gets installed and depending on
fuse being in base or not it installs sysutils/fusefs-kmod.

Approved by:	portmgr (bapt)
Thu, 26 Jul 2012
[ 05:40 bapt search for other commits by this committer ] Original commit  (Only the first 10 of 158 ports in this commit are shown above. View all ports for this commit)
new devel/pkgconf added to replace devel/pkg-config. new version of pkg-config
are no more self hosting so we are stuck with 0.25 version while pkgconf provide
the same set of features as 0.27 and a compatible frontend. A symlink to
pkg-config has been added for convenience and compatibility

This also introduces a new macro to use pkgconf in your ports:
USE_PKGCONFIG

it can take the following arguments:
 - yes (meaning build only dep)
 - build (meaning build only dep)
 - run (meaning run only dep)
 - both (meaning run and build dep)

From now USE_GNOME= pkgconfig is deprecated in favour of USE_PKGCONFIG
The old gnome macro has been modified to use pkgconf but still the sameway: run
and build dep to avoid large breakage.

While here fix some ports relying on pkg-config but not specifying it, fix some
ports broken because testing wrong .pc files, and fix ports using pkg-config
--version to determine pkg-config version instead of
pkg-config --modversion pkg-config like recommanded by pkg-config

With Hat:	portmgr
Exp-runs by:	bapt (pointhat-west), beat (pointyhat)
Sun, 22 Jul 2012
[ 23:24 dougb search for other commits by this committer ] Original commit  (Only the first 10 of 29 ports in this commit are shown above. View all ports for this commit)
For the ports that are maintained by ports@ that have pkgconfig as their
only USE_GNOME feature, convert to a BUILD_DEPENDS. This avoids both the
bug of the bogus run depend introduced by bsd.gnome.mk, and also avoids
needlessly pulling that file in.
Sun, 20 Feb 2011
[ 08:25 clsung search for other commits by this committer ] Original commit 
- Update to 0.2.1
Sat, 22 Aug 2009
[ 00:18 amdmi3 search for other commits by this committer ] Original commit  (Only the first 10 of 417 ports in this commit are shown above. View all ports for this commit)
- Switch SourceForge ports to the new File Release System: categories starting
with D
Sun, 28 Dec 2008
[ 10:54 pgollucci search for other commits by this committer ] Original commit  (Only the first 10 of 42 ports in this commit are shown above. View all ports for this commit)
CATEGORIES+=    python   for py- ports missing it

PR:             ports/124921
Approved by:    portmgr (pav)
Sun, 7 Sep 2008
[ 00:19 linimon search for other commits by this committer ] Original commit  (Only the first 10 of 279 ports in this commit are shown above. View all ports for this commit)
Reset infofarmer due to maintainer-timeouts and no response to email.

Hat:    portmgr
Tue, 14 Aug 2007
[ 06:30 sat search for other commits by this committer ] Original commit 
- Fix build and install by forcing the use of setuptools

Reported by:    pointyhat via kris
Sat, 11 Aug 2007
[ 17:49 sat search for other commits by this committer ] Original commit 
- Depend on iconv to fix the build
- As an atonement, here's a hacky script you can run in port's directory
  after make install to check for forgotten lib_depends:
  http://people.FreeBSD.org/~sat/bin/chklibdep

Reported by:    pointyhat via kris
Fri, 10 Aug 2007
[ 14:23 sat search for other commits by this committer ] Original commit 
- Update to 0.2
Mon, 30 Jul 2007
[ 09:42 alexbl search for other commits by this committer ] Original commit  (Only the first 10 of 445 ports in this commit are shown above. View all ports for this commit)
 - Make Python 2.5.1 the default Python version
 - Add significantly better support in bsd.python.mk for working with
   Python Eggs and the easy_install system

Tested by:      pointyhat runs
Approved by:    pav (portmgr)
Most work by:   perky
Thanks to:      pav
Wed, 18 Apr 2007
[ 08:01 sat search for other commits by this committer ] Original commit  (Only the first 10 of 46 ports in this commit are shown above. View all ports for this commit)
- De-4.x-ify most of my ports to save gnats from excessive abuse
- s/CSME/CENKES/ in my ports
Sun, 30 Jul 2006
[ 22:46 sat search for other commits by this committer ] Original commit  (Only the first 10 of 58 ports in this commit are shown above. View all ports for this commit)
- Provide additional mirrors where needed
- Convert to "magic" master sites
- Various minor portlint-prodded fixes
Sat, 22 Jul 2006
[ 19:45 sat search for other commits by this committer ] Original commit 
Add port devel/py-fusefs:

FUSE Python bindings

WWW: http://fuse.sourceforge.net/wiki/index.php/FusePython

Number of commits found: 27