non port: security/zenmap/Makefile |
Number of commits found: 42 |
Tuesday, 28 Jan 2020
|
21:57 antoine
Deprecate some pygtk2 ports
With hat: portmgr
|
Friday, 8 Nov 2019
|
13:17 tobik
security: Add missing USES={gnome,php}
|
Wednesday, 20 Jun 2018
|
17:05 mat
Use PY_FLAVOR for dependencies.
FLAVOR is the current port's flavor, it should not be used outside of
this scope.
Sponsored by: Absolight
|
Thursday, 30 Nov 2017
|
15:50 mat
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
current python flavor. It can be used in dependency lines when the
port itself is not python flavored. For example, deskutils/calibre.
By default, all the flavors are generated. To only generate flavors
for the versions in PYTHON2_DEFAULT and PYTHON3_DEFAULT, define
BUILD_DEFAULT_PYTHON_FLAVORS in your make.conf.
In all the ports with Python dependencies, the *_DEPENDS entries MUST
end with the flavor so that the framework knows which to build/use.
This is done by appending '@${PY_FLAVOR}' after the origin (or
@${FLAVOR} if in a Python module with Python flavors, as the content
will be the same). For example:
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR}
PR: 223071
Reviewed by: portmgr, python
Sponsored by: Absolight
Differential Revision: https://reviews.freebsd.org/D12464
|
Saturday, 17 Sep 2016
|
00:13 woodsb02
security/zenmap: Update to 7.25 BETA2 and use security/nmap as MASTERDIR
security/nmap:
- Ensure MAINTAINER and COMMENT do not clobber those of slave port
- Add .if !defined(MASTERDIR) to prevent inclusion in slave port
- Do not include bsd.port.options.mk, as none of the features are used
security/zenmap:
- Convert to slave of security/nmap to ensure they are updated in lockstep
- Inherently update to 7.25 BETA2 (current version of security/nmap)
- Take maintainership
- Remove redundant port header variables included from MASTERDIR
- PKGNAME of zenmap achieved using PKGNAMEPREFIX=ze and PORTNAME=nmap
- Inherit LICENSE_FILE, as zenmap/COPYING states it is the same as nmap
- Set directory variables so they are not inhereted from MASTERDIR
- Convert post-extract to post-patch, as it is modifying WRKSRC files
- Fix REINPLACE command, as it was leaving the line with nothing but a
single ',' and causing the build to fail
- Do not download external zenmap icon, as one is included in distfile
Approved by: ohauer (security/nmap maintainer), mat (mentor)
Differential Revision: https://reviews.freebsd.org/D7880
|
Tuesday, 13 Sep 2016
|
17:43 nemysis
- This port are no longer used or cared for.
|
Friday, 1 Apr 2016
|
14:25 mat
Remove ${PORTSDIR}/ from dependencies, categories r, s, t, and u.
With hat: portmgr
Sponsored by: Absolight
|
Tuesday, 5 Jan 2016
|
15:46 amdmi3
- Fix broken zenmap-root script
- While here, add LICENSE_FILE, switch to WRKSRC_SUBDIR, add NO_ARCH and switch
to options helpers
PR: 204713
Submitted by: admin@vladiom.com.ua
Approved by: maintainer timeout (nemysis, 6 weeks)
|
Saturday, 24 Jan 2015
|
20:30 antoine
Fix a typo in DEPENDS
|
Friday, 5 Sep 2014
|
09:52 nemysis
- Update to 6.47, announce message:
Avoid crashing when users have the antiquated PyXML package
installed. Python tries to be nice and loads it when we import xml, but it
isn't compatible. Instead, we force Python to use the standard library xml
module. [Daniel Miller]
Fix a bug in DiffViewer causing this crash:
TypeError: GtkTextBuffer.set_text() argument 1 must be string or read-only
buffer, not NmapParserSAX
Crash happened when trying to compare two scans within Zenmap. [Daniel Miller]
- USES python instead of USE_PYTHON=yes
- Use USE_PYTHON=distutils instead of USE_PYDISTUTILS=yes
- Use USE_PYTHON=autoplist instead of PYDISTUTILS_AUTOPLIST=yes
|
Tuesday, 29 Apr 2014
|
08:45 nemysis
- Update to 6.46, Announce message:
Fixed a bug which caused this crash message:
IOError: [Errno socket error] [Errno 10060] A connection attempt failed
because the connected party did not properly respond after a period of
time, or established connection failed because connected host has
failed to respond
The bug was caused by us adding a DOCTYPE definition to Nmap's XML
output which caused Python's XML parser to try and fetch the DTD
every time it parses an XML file. We now override that DTD-fetching
behavior. [Daniel Miller]
|
Sunday, 13 Apr 2014
|
20:30 nemysis
- Update to 6.45
- Change dependency for security/nmap
- Use pkg-plist instead of PLIST_FILES
- Fix the usage of 'python' to get rid of the implicit lang/python dependency
- Delete bad ndiff.pyc and compile new (not usuall .)
|
Monday, 24 Mar 2014
|
13:35 nemysis
- Remove USES desktop-file-utils and add dos2unix
- Use tar:bzip2 instead of USE_BZIP2=yes
- Break lines around 80 characters
- Use && instead of ;
|
Friday, 17 Jan 2014
|
16:59 nemysis
- Bump PORTREVISION
- Change master sites and icon
- Use PYDISTUTILS_AUTOPLIST=yes and PLIST_FILES instead of pkg-plist
- Support STAGEDIR
- Change Desktop entry file zenmap-root.desktop, add SUB_FILES=zenmap-root
for proper Desktop usage
Reviewed by: horia
|
Sunday, 15 Dec 2013
|
16:22 wg
Use setuptools for all Python ports.
Setuptools is the preferred method to manage Python distributions after
many changes to the packaging ecosystem over the past couple of years.
Only ports using USE_PYDISTUTILS= yes are affected by this commit, ports using
USE_PYDISTUTILS= easy_install remains the same however this usage is now
deprecated and should be converted to USE_PYDISTUTILS= yes.
Some Python distributions do not work with setuptools out of the box because
they extend the install command from distutils and not setuptools, and
so they need to be patched accordingly.
pip (which leverages setuptools) works around the issue by using eggs, however
we want to get rid of those as well, as support for "flat" installation is
unavailable or has other issues associated with it.
This work allows us to unify how python packages are built, ensure that Python
distributions are installed consistently, reduces complexity for Python port
maintainers and paves the way for simplifying the Python ports framework in
the future.
With hat on: python
Reviewed by: koobs, antoine
Exp-run: bdrewery
Approved by: bdrewery (portmgr)
|
Friday, 20 Sep 2013
|
22:55 bapt
Add NO_STAGE all over the place in preparation for the staging support (cat:
security)
|
Saturday, 14 Sep 2013
|
12:35 nemysis
- Update to 6.40
- Change maintainer email gmx.ch --> FreeBSD.org
- Add desktop dependency
- Trim dependency for python
- Add OPTIONS_SUB
- Trim NLS
- Trim files/pc-su to newest from PC-BSD
Approved by: wg/pawel (mentors)
|
Wednesday, 24 Apr 2013
|
18:10 ak
- Convert USE_GETTEXT to USES (part 3)
Approved by: portmgr (bapt)
|
Friday, 11 Jan 2013
|
20:22 rm
- drop PKGNAMEPREFIX (it's an app, not library)
- replace su-to-zenmap.sh (su detection script) with more clean solution
from PC-BSD, that does not require modification to work properlt with kde4
- bump PORTREVISION
PR: 175120
Submitted by: nemysis <nemysis@gmx.ch> (maintainer)
|
Friday, 4 Jan 2013
|
20:01 rm
- update to 6.25
while here:
- limit python version to 2.x only (pygtk2)
- correct dependency
PR: 174607
Submitted by: nemysis <nemysis@gmx.ch> (maintainer)
|
Wednesday, 19 Dec 2012
|
20:33 pawel
- xnmap.1 manpage is not installled
- Add NLS option
- Give maintainership to submitter
PR: ports/174327
Submitted by: nemysis <nemysis@gmx.ch>
|
Monday, 10 Dec 2012
|
01:20 eadler
Revert Chris Petrik's ports to the pool. Thank you for all your work so far,
and should you desire to return just let us know.
PR: ports/174309
Submitted by: Chris Petrik
|
Saturday, 1 Dec 2012
|
00:00 sperber
- Update to version 6.01
- Add MASTER_SITES
- Add LICENSE
PR: ports/170169
Submitted by: KATO Tsuguru <tkato432 _at_ yahoo.com>
Chris Petrik <c.petrik.sosa _at_ gmail.com> (maintainer)
Approved by: beat (mentor)
Feature safe: yes
|
Sunday, 9 Sep 2012
|
02:30 eadler
Welcome back Chris Petrik <c.petrik.sosa@gmail.com>
PR: ports/171481
|
Friday, 1 Jun 2012
|
05:26 dinoex
- update png to 1.5.10
|
Friday, 18 Nov 2011
|
23:30 ehaupt
Remove trailing whitespaces.
Feature safe: yes
|
Wednesday, 7 Sep 2011
|
19:50 eadler
- emulators/wahcade: eliminate py-elementtree dependency [0]
- security/zenmap: eliminate py-pysqlite2x dependency [1]
- deskutils/griffith: eliminate py-pysqlite2x dependency [2]
PR: ports/160049 [0], ports/160071 [1], ports/160161 [2]
Submitted by: Ruslan Mahmatkhanov <cvs-src@yandex.ru> [0,1,2]
Approved by: bapt (mentor)
|
Monday, 9 Aug 2010
|
13:28 arved
Drop Maintainership
PR: 149436
Submitted by: old maintainer
|
Monday, 31 May 2010
|
02:01 ade
Bounce PORTREVISION for gettext-related ports. Have fun, ya'll.
|
Sunday, 28 Mar 2010
|
06:47 dinoex
- update to 1.4.1
Reviewed by: exp8 run on pointyhat
Supported by: miwi
|
Friday, 5 Feb 2010
|
11:46 dinoex
- update to jpeg-8
|
Sunday, 31 Jan 2010
|
00:51 miwi
- Update to 5.21
PR: 143332
Submitted by: Daniel Roethlisberger <daniel@roe.ch> (maintainer)
|
Thursday, 16 Jul 2009
|
22:17 miwi
- Update to 5.00
Submitted by: Daniel Roethlisberger <daniel@roe.ch> (maintainer)
|
Sunday, 5 Jul 2009
|
22:24 miwi
- Update to 4.90RC1
PR: 136293
Submitted by: Daniel Roethlisberger <daniel@roe.ch> (maintainer)
|
Monday, 13 Apr 2009
|
09:54 dhn
- Update to 4.85.b7
PR: ports/133549
Submitted by: Daniel Roethlisberger <daniel@roe.ch> (maintainer)
Approved by: miwi (mentor)
|
Wednesday, 24 Sep 2008
|
14:47 miwi
- Update to 4.76
PR: 127380
Submitted by: Daniel Roethlisberger <daniel@roe.ch> (maintainer)
|
Sunday, 3 Aug 2008
|
16:11 miwi
- Update to 4.68
PR: 126212
Submitted by: Daniel Roethlisberger <daniel@roe.ch> (maintainer)
|
Friday, 6 Jun 2008
|
14:01 edwin
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)
|
Tuesday, 6 May 2008
|
13:25 miwi
- Update to 4.62
PR: 123402
Submitted by: Daniel Roethlisberger <daniel@roe.ch> (maintainer)
|
Monday, 14 Apr 2008
|
03:56 clsung
- Update zenmap to 4.60 and fix moved MASTER_SITES.
- Zenmap now has a manual page, zenmap(1).
PR: ports/122729
Submitted by: maintainer (Daniel Roethlisberge)
|
Friday, 14 Mar 2008
|
21:30 miwi
- Update to 4.52
PR: 119673
Submitted by: Daniel Roethlisberger <daniel@roe.ch>
|
21:08 miwi
- Force commit to notes that's a repocopy from security/nmapfe to
security/zenmap.
Repocopy by: marcus
|
Number of commits found: 42 |