Re: category customports

2016-02-18 Thread Melvyn Sopacua

Hi,

the short answer: echo 'VALID_CATEGORIES=local' >> /etc/make.conf

On Thu, 18 Feb 2016, Walter Schwarzenfeld wrote:


If I make an own port, I had it add to the category/Makefile. But this
could be overwritten with the next update.
If I make an own category I had it add to /usr/ports/Mk/bsd.port.mk
under VALID_CATEGORIES.


There is a Mk/bsd.local.mk for a reason.
While it technically is under version control to provide a template
(hopefully that changes at some point), it should not be comitted to
unless strictly necessary.

Two reasons to use the bsd.local.mk:
1) You use various make.conf files to build for different machines or
testing options (use: `env __MAKE_CONF=/etc/test.conf make ...`) and
putting it in bsd.local.mk centralizes it. One could also make a
/etc/make.shared.conf in this case. Either / or.

2) You wish to set VALID_CATEGORIES based on some other (early
available) variable. This is the better case for using this file as it
is intended for extra logic, not extra configuration.

Hope this helps,
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Can someone take a look at these PRs?

2016-02-18 Thread Kurt Jaeger
Hi!

> https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=206488 (java/jd-gui,
> new port)

Done.

-- 
p...@opsec.eu+49 171 3101372 4 years to go !
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: unexpected package dependency

2016-02-18 Thread Perry Hutchison
Andriy Gapon  wrote:
> On 17/02/2016 11:28, Perry Hutchison wrote:
> > I had not expected to find gcc listed (in packagesite.yaml) as a
> > dependency of the sysutils/cpuburn package.  I can understand a
> > _port_ needing gcc (at build time), but does the cpuburn _package_
> > actually require gcc at _runtime_?
>
> I don't believe so.  AFAIR, it builds static binaries.

So would the inclusion of gcc in the "deps" for sysutils/cpuburn (in
packagesite.yaml) be caused by a problem with the way the dependencies
are specified in the port, or with the way they are handled by the
package-generation mechanism?  (I'm trying to figure out which to file
a PR against -- and I'm not all that familiar with pkgng details.)
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: category customports

2016-02-18 Thread Walter Schwarzenfeld
typos ... How should that work?
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: category customports

2016-02-18 Thread Walter Schwarzenfeld
> You know you can all run your own portsnap server to allow you to
include local changes?

No, hoq ahouls rhat work?

___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: category customports

2016-02-18 Thread Michelle Sullivan
Alphons van Werven wrote:
> Walter Schwarzenfeld wrote:
>
>   
>> But this could be overwritten with the next update.
>> 
> [snip]
>   
>> But this could also [sic] overwritten.
>> 
>
> You're using portsnap for your updates, I presume? Subversion will not
> override local changes (at least not without asking first). I have a tree
> here that contains local ports and locally modified ports. That's exactly
> why I use SVN instead of portsnap.
>
> You might get similar results if you use Git to update your tree, I don't
> know about that.
>
> HTH,
>
> AvW
>
>   
You know you can all run your own portsnap server to allow you to
include local changes?

-- 
Michelle Sullivan
http://www.mhix.org/

___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: category customports

2016-02-18 Thread Walter Schwarzenfeld
That's right, I use portsnap. I don't like svn.
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: category customports

2016-02-18 Thread Bob Eager
On Thu, 18 Feb 2016 23:21:11 +0100
Walter Schwarzenfeld  wrote:

> If I make an own port, I had it add to the category/Makefile. But this
> could be overwritten with the next update.

I make my own category - 'local'.

> If I make an own category I had it add to /usr/ports/Mk/bsd.port.mk
> under VALID_CATEGORIES. But this could also overwritten.

I add
 VALID_CATEGORIES+= local
to the Makefiles.

___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: category customports

2016-02-18 Thread Alphons van Werven
Walter Schwarzenfeld wrote:

> But this could be overwritten with the next update.
[snip]
> But this could also [sic] overwritten.

You're using portsnap for your updates, I presume? Subversion will not
override local changes (at least not without asking first). I have a tree
here that contains local ports and locally modified ports. That's exactly
why I use SVN instead of portsnap.

You might get similar results if you use Git to update your tree, I don't
know about that.

HTH,

AvW

-- 
A.J. "Fonz" van Werven
mailsig: Ob technicas difficultates, lux in fine cuniculum non operatur.


signature.asc
Description: PGP signature


category customports

2016-02-18 Thread Walter Schwarzenfeld
If I make an own port, I had it add to the category/Makefile. But this
could be overwritten with the next update.
If I make an own category I had it add to /usr/ports/Mk/bsd.port.mk
under VALID_CATEGORIES. But this could also overwritten. (If I don't
edit the Makefiles there are error messages from portmaster||,||synth, etc.)
Is it considerable to make general a category customports or overlooked
I something?

It will be more simply, and good for the order in the ports tree. Better
as the own port are spread over the whole ports-tree.

(It only needs to make the category and add it to VALID_CATEGORIES.
Without a category/Makefile, cause a empty Makefile on the server
ports-tree would overwrite the users Makerfile.
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: java/eclipse

2016-02-18 Thread Michael Zhilin
I've reproduced error. WA: turn off network. :)

Thx!

On Thu, Feb 18, 2016 at 8:53 PM, Aleksey A Nikitin 
wrote:

> # make
> ===>  License EPL accepted by the user
> ===>  Found saved configuration for eclipse-4.5.1
> ===>   eclipse-4.5.1 depends on file: /usr/local/sbin/pkg - found
> ===> Fetching all distfiles required by eclipse-4.5.1 for building
> ===>  Extracting for eclipse-4.5.1
> => SHA256 Checksum OK for
> eclipse/eclipse.platform.releng.aggregator-4.5.1.xz.
> => SHA256 Checksum OK for eclipse/eclipse-maven-repo-4.5.1.xz.
> ===>  Patching for eclipse-4.5.1
> ===>  Applying FreeBSD patches for eclipse-4.5.1
> No such line 88 in input file, ignoring
> Updating ECLIPSE_ARCH in file eclipse-platform-parent/pom.xml
> Updating ECLIPSE_ARCH in file
> eclipse.platform.releng.tychoeclipsebuilder/eclipse-junit-tests/pom.xml
> Updating ECLIPSE_ARCH in file
> eclipse.platform.releng.tychoeclipsebuilder/equinox.starterkit.product/pom.xml
> Updating ECLIPSE_ARCH in file
> eclipse.platform.releng.tychoeclipsebuilder/platform/platform.p2.inf
> Updating ECLIPSE_ARCH in file
> eclipse.platform.releng.tychoeclipsebuilder/platform/pom.xml
> Updating ECLIPSE_ARCH in file
> eclipse.platform.releng.tychoeclipsebuilder/platform.sdk/pom.xml
> Updating ECLIPSE_ARCH in file
> eclipse.platform.releng.tychoeclipsebuilder/rcp.config/build.properties
> Updating ECLIPSE_ARCH in file
> eclipse.platform.releng.tychoeclipsebuilder/sdk/pom.xml
> Updating ECLIPSE_ARCH in file
> eclipse.platform.releng.tychoeclipsebuilder/sdk/sdk.p2.inf
> Updating ECLIPSE_ARCH in file
> eclipse.platform.releng/features/org.eclipse.platform-feature/pom.xml
> Updating ECLIPSE_ARCH in file eclipse.platform.resources/pom.xml
> Updating ECLIPSE_ARCH in file
> eclipse.platform.swt/local-build/org.eclipse.swt.fragments.localbuild/META-INF/p2.inf
> Updating ECLIPSE_ARCH in file
> eclipse.platform.swt/bundles/org.eclipse.swt/META-INF/p2.inf
> Updating ECLIPSE_ARCH in file eclipse.platform.swt.binaries/pom.xml
> Updating ECLIPSE_ARCH in file eclipse.platform.team/pom.xml
> Updating ECLIPSE_ARCH in file
> eclipse.platform.ui/features/org.eclipse.e4.rcp/feature.xml
> Updating ECLIPSE_ARCH in file
> eclipse.platform.ui/features/org.eclipse.e4.rcp/pom.xml
> Updating ECLIPSE_ARCH in file
> rt.equinox.framework/bundles/org.eclipse.equinox.launcher/pom.xml
> Updating ECLIPSE_ARCH in file
> rt.equinox.framework/features/org.eclipse.equinox.executable.feature/feature.xml
> Updating ECLIPSE_ARCH in file
> rt.equinox.framework/features/org.eclipse.equinox.executable.feature/pom.xml
> Updating ECLIPSE_ARCH in file rt.equinox.framework/pom.xml
> Updating ECLIPSE_ARCH in file
> rt.equinox.p2/bundles/org.eclipse.equinox.p2.tests.reconciler.product/reconciler.product
> Updating ECLIPSE_ARCH in file
> eclipse.platform.releng/features/org.eclipse.platform-feature/feature.xml
> ===>   eclipse-4.5.1 depends on file:
> /usr/local/share/java/maven33/bin/mvn - found
> ===>   eclipse-4.5.1 depends on file: /usr/local/openjdk8/bin/java - found
> ===>   eclipse-4.5.1 depends on executable: gmake - found
> ===>   eclipse-4.5.1 depends on executable: pkgconf - found
> ===>   eclipse-4.5.1 depends on file:
> /usr/local/libdata/pkgconfig/gnome-mime-data-2.0.pc - found
> ===>   eclipse-4.5.1 depends on file:
> /usr/local/libdata/pkgconfig/glproto.pc - found
> ===>   eclipse-4.5.1 depends on file:
> /usr/local/libdata/pkgconfig/dri2proto.pc - found
> ===>   eclipse-4.5.1 depends on shared library: libcairo.so - found
> (/usr/local/lib/libcairo.so)
> ===>   eclipse-4.5.1 depends on shared library: libwebkitgtk-1.0.so -
> found (/usr/local/lib/libwebkitgtk-1.0.so)
> ===>   eclipse-4.5.1 depends on shared library: libwebkitgtk-3.0.so -
> found (/usr/local/lib/libwebkitgtk-3.0.so)
> ===>   eclipse-4.5.1 depends on shared library: libatk-1.0.so - found
> (/usr/local/lib/libatk-1.0.so)
> ===>   eclipse-4.5.1 depends on shared library: libesd.so - found
> (/usr/local/lib/libesd.so)
> ===>   eclipse-4.5.1 depends on shared library: libgconf-2.so - found
> (/usr/local/lib/libgconf-2.so)
> ===>   eclipse-4.5.1 depends on shared library: libglib-2.0.so - found
> (/usr/local/lib/libglib-2.0.so)
> ===>   eclipse-4.5.1 depends on shared library: libgnomevfs-2.so - found
> (/usr/local/lib/libgnomevfs-2.so)
> ===>   eclipse-4.5.1 depends on shared library: libgtk-x11-2.0.so - found
> (/usr/local/lib/libgtk-x11-2.0.so)
> ===>   eclipse-4.5.1 depends on shared library: libgtk-3.so - found
> (/usr/local/lib/libgtk-3.so)
> ===>   eclipse-4.5.1 depends on shared library: libart_lgpl_2.so - found
> (/usr/local/lib/libart_lgpl_2.so)
> ===>   eclipse-4.5.1 depends on shared library: libbonobo-2.so - found
> (/usr/local/lib/libbonobo-2.so)
> ===>   eclipse-4.5.1 depends on shared library: libbonoboui-2.so - found
> (/usr/local/lib/libbonoboui-2.so)
> ===>   eclipse-4.5.1 depends on shared library: libglade-2.0.so - found
> (/usr/local/lib/libglade-2.0.so)
> ===>   eclipse-4.5.1 depends on 

Re: Installing multi-version ports with portmaster

2016-02-18 Thread Walter Schwarzenfeld
)> py27-psycopg2-2.6.1_1 databases/py-psycopg2 py35-psycopg2-2.6.1_1
databases/py-psycopg2

Looks like you have copied the py27 port to py35

Have you add it to the database/Makefile? (and that is problematic,
cause it could be overwritten by next update).
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


java/eclipse

2016-02-18 Thread Aleksey A Nikitin
# make
===>  License EPL accepted by the user
===>  Found saved configuration for eclipse-4.5.1
===>   eclipse-4.5.1 depends on file: /usr/local/sbin/pkg - found
===> Fetching all distfiles required by eclipse-4.5.1 for building
===>  Extracting for eclipse-4.5.1
=> SHA256 Checksum OK for eclipse/eclipse.platform.releng.aggregator-4.5.1.xz.
=> SHA256 Checksum OK for eclipse/eclipse-maven-repo-4.5.1.xz.
===>  Patching for eclipse-4.5.1
===>  Applying FreeBSD patches for eclipse-4.5.1
No such line 88 in input file, ignoring
Updating ECLIPSE_ARCH in file eclipse-platform-parent/pom.xml
Updating ECLIPSE_ARCH in file 
eclipse.platform.releng.tychoeclipsebuilder/eclipse-junit-tests/pom.xml
Updating ECLIPSE_ARCH in file 
eclipse.platform.releng.tychoeclipsebuilder/equinox.starterkit.product/pom.xml
Updating ECLIPSE_ARCH in file 
eclipse.platform.releng.tychoeclipsebuilder/platform/platform.p2.inf
Updating ECLIPSE_ARCH in file 
eclipse.platform.releng.tychoeclipsebuilder/platform/pom.xml
Updating ECLIPSE_ARCH in file 
eclipse.platform.releng.tychoeclipsebuilder/platform.sdk/pom.xml
Updating ECLIPSE_ARCH in file 
eclipse.platform.releng.tychoeclipsebuilder/rcp.config/build.properties
Updating ECLIPSE_ARCH in file 
eclipse.platform.releng.tychoeclipsebuilder/sdk/pom.xml
Updating ECLIPSE_ARCH in file 
eclipse.platform.releng.tychoeclipsebuilder/sdk/sdk.p2.inf
Updating ECLIPSE_ARCH in file 
eclipse.platform.releng/features/org.eclipse.platform-feature/pom.xml
Updating ECLIPSE_ARCH in file eclipse.platform.resources/pom.xml
Updating ECLIPSE_ARCH in file 
eclipse.platform.swt/local-build/org.eclipse.swt.fragments.localbuild/META-INF/p2.inf
Updating ECLIPSE_ARCH in file 
eclipse.platform.swt/bundles/org.eclipse.swt/META-INF/p2.inf
Updating ECLIPSE_ARCH in file eclipse.platform.swt.binaries/pom.xml
Updating ECLIPSE_ARCH in file eclipse.platform.team/pom.xml
Updating ECLIPSE_ARCH in file 
eclipse.platform.ui/features/org.eclipse.e4.rcp/feature.xml
Updating ECLIPSE_ARCH in file 
eclipse.platform.ui/features/org.eclipse.e4.rcp/pom.xml
Updating ECLIPSE_ARCH in file 
rt.equinox.framework/bundles/org.eclipse.equinox.launcher/pom.xml
Updating ECLIPSE_ARCH in file 
rt.equinox.framework/features/org.eclipse.equinox.executable.feature/feature.xml
Updating ECLIPSE_ARCH in file 
rt.equinox.framework/features/org.eclipse.equinox.executable.feature/pom.xml
Updating ECLIPSE_ARCH in file rt.equinox.framework/pom.xml
Updating ECLIPSE_ARCH in file 
rt.equinox.p2/bundles/org.eclipse.equinox.p2.tests.reconciler.product/reconciler.product
Updating ECLIPSE_ARCH in file 
eclipse.platform.releng/features/org.eclipse.platform-feature/feature.xml
===>   eclipse-4.5.1 depends on file: /usr/local/share/java/maven33/bin/mvn - 
found
===>   eclipse-4.5.1 depends on file: /usr/local/openjdk8/bin/java - found
===>   eclipse-4.5.1 depends on executable: gmake - found
===>   eclipse-4.5.1 depends on executable: pkgconf - found
===>   eclipse-4.5.1 depends on file: 
/usr/local/libdata/pkgconfig/gnome-mime-data-2.0.pc - found
===>   eclipse-4.5.1 depends on file: /usr/local/libdata/pkgconfig/glproto.pc - 
found
===>   eclipse-4.5.1 depends on file: /usr/local/libdata/pkgconfig/dri2proto.pc 
- found
===>   eclipse-4.5.1 depends on shared library: libcairo.so - found 
(/usr/local/lib/libcairo.so)
===>   eclipse-4.5.1 depends on shared library: libwebkitgtk-1.0.so - found 
(/usr/local/lib/libwebkitgtk-1.0.so)
===>   eclipse-4.5.1 depends on shared library: libwebkitgtk-3.0.so - found 
(/usr/local/lib/libwebkitgtk-3.0.so)
===>   eclipse-4.5.1 depends on shared library: libatk-1.0.so - found 
(/usr/local/lib/libatk-1.0.so)
===>   eclipse-4.5.1 depends on shared library: libesd.so - found 
(/usr/local/lib/libesd.so)
===>   eclipse-4.5.1 depends on shared library: libgconf-2.so - found 
(/usr/local/lib/libgconf-2.so)
===>   eclipse-4.5.1 depends on shared library: libglib-2.0.so - found 
(/usr/local/lib/libglib-2.0.so)
===>   eclipse-4.5.1 depends on shared library: libgnomevfs-2.so - found 
(/usr/local/lib/libgnomevfs-2.so)
===>   eclipse-4.5.1 depends on shared library: libgtk-x11-2.0.so - found 
(/usr/local/lib/libgtk-x11-2.0.so)
===>   eclipse-4.5.1 depends on shared library: libgtk-3.so - found 
(/usr/local/lib/libgtk-3.so)
===>   eclipse-4.5.1 depends on shared library: libart_lgpl_2.so - found 
(/usr/local/lib/libart_lgpl_2.so)
===>   eclipse-4.5.1 depends on shared library: libbonobo-2.so - found 
(/usr/local/lib/libbonobo-2.so)
===>   eclipse-4.5.1 depends on shared library: libbonoboui-2.so - found 
(/usr/local/lib/libbonoboui-2.so)
===>   eclipse-4.5.1 depends on shared library: libglade-2.0.so - found 
(/usr/local/lib/libglade-2.0.so)
===>   eclipse-4.5.1 depends on shared library: libgnome-2.so - found 
(/usr/local/lib/libgnome-2.so)
===>   eclipse-4.5.1 depends on shared library: libgnomecanvas-2.so - found 
(/usr/local/lib/libgnomecanvas-2.so)
===>   eclipse-4.5.1 depends on shared library: libgnomeui-2.so - found 
(/usr/local/lib/libgnomeui-2.so)

Re: java/eclipse

2016-02-18 Thread Michael Zhilin
Hi,

Looks strange... Can you share full output of make?

Thanks!

On Thu, Feb 18, 2016 at 1:36 PM, Aleksey A Nikitin 
wrote:

> ===>  Building for eclipse-4.5.1
> [INFO] Scanning for projects...
> [INFO] Computing target platform for MavenProject:
> org.eclipse.jdt:org.eclipse.jdt:3.11.1-SNAPSHOT @
>
> /usr/ports/java/eclipse/work/eclipse.platform.releng.aggregator-4.5.1/eclipse.jdt/org.eclipse.jdt/pom.xml
> [INFO] Adding repository
>
> http://download.eclipse.org/tools/orbit/downloads/drops/R20150821153341/repository
> [INFO] Adding repository
>
> http://download.eclipse.org/modeling/emf/emf/updates/2.11.x/base/S201508050538
> [INFO] Adding repository
>
> http://download.eclipse.org/jetty/updates/jetty-bundles-9.x/9.2.13.v20150730
> [INFO] Adding repository http://download.eclipse.org/rt/ecf/3.10.1/site.p2
> [INFO] Adding repository
> http://download.eclipse.org/cbi/updates/license/1.0.1.v20140414-1359
> [INFO] Fetching p2.index from
> http://download.eclipse.org/tools/ajdt/45/dev/update/ (0B at 0B/s)
> [INFO] Adding repository
> http://download.eclipse.org/tools/ajdt/45/dev/update
> [INFO] Fetching compositeContent.xml from
> http://download.eclipse.org/tools/ajdt/45/dev/update/ (0B at 0B/s)
> [INFO] Fetching content.jar from
>
> http://download.eclipse.org/tools/ajdt/45/dev/update/ajdt-e45-2.2.4.201602042048/
> (0B of 14,01kB at 0B/s)
> [ERROR] Failed to resolve target definition
>
> /usr/ports/java/eclipse/work/eclipse.platform.releng.aggregator-4.5.1/eclipse.platform.releng.prereqs.sdk/eclipse-sdk-prereqs.target:
> Could not find "org.aspectj.runtime/1.8.5.20150128171000" in the
> repositories of the current location -> [Help 1]
> [ERROR]
> [ERROR] To see the full stack trace of the errors, re-run Maven with the
> -e switch.
> [ERROR] Re-run Maven using the -X switch to enable full debug logging.
> [ERROR]
> [ERROR] For more information about the errors and possible solutions,
> please read the following articles:
> [ERROR] [Help 1]
> http://cwiki.apache.org/confluence/display/MAVEN/MavenExecutionException
> *** Error code 1
>
> Stop.
> make[1]: stopped in /usr/ports/java/eclipse
> *** Error code 1
>
> Stop.
> make: stopped in /usr/ports/java/eclipse
>
> ___
> freebsd-ports@freebsd.org mailing list
> https://lists.freebsd.org/mailman/listinfo/freebsd-ports
> To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
>
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Installing multi-version ports with portmaster

2016-02-18 Thread Walter Schwarzenfeld
Sorry, but I find no py35-psycopg2 on my system only py-psycopg and
py-psycopg2.
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Future of pecl ports

2016-02-18 Thread Martin Wilke
Hi all,

I've spent a lot of time on FreeBSD PHP and pecl ports this past
week, and have also been thinking about the future of these ports.

We now have 3 PHP versions in the tree (5.5, 5.6 and 7.0) and 7.0 is
not backwards compatible. This means a separate set of PHP 7.0 specific
versions of our PECL ports need to exist.

We can also expect additional PHP 7.x versions in the future, which
we currently expect will be backward compatible within all 7.x major
version releases.

a) Existing ports copied to create new ones named
   php70-pecl-name, or pecl-name-php70.

   pecl-name ports stay the same (only PHP 5.x)

b) Existing ports copied to create new ones named php5-pecl-name or
   pecl-name-php5.

   Existing pecl-name ports then updated to support the latest
   (php70) version only.

c) Existing ports copied to create new ones named php5-pecl-name or
   pecl-name-php5.

   Existing ports copied to create new ones named
   php70-pecl-name, or pecl-name-php70. pecl-name ports stay the same.

   We are left with pecl-name-php5 and pecl-name-php7.

   pecl-name ports go away.

Regarding (a) and (b) above, even though today PHP 7 is far from being
the 'default' version, at some point PHP 5.x will go away, and this will
mean having to go through the the pecl-* ports tree and rename all the
ports anyway.

Given the above, I am leaning towards option (X), but I'd like to open
a discussion and welcome your thoughts and feedback.

-- 
+-oOO--(_)--OOo-+
With best Regards,
Martin Wilke (miwi_(at)_FreeBSD.org)

Mess with the Best, Die like the Rest
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


java/eclipse

2016-02-18 Thread Aleksey A Nikitin
===>  Building for eclipse-4.5.1
[INFO] Scanning for projects...
[INFO] Computing target platform for MavenProject:
org.eclipse.jdt:org.eclipse.jdt:3.11.1-SNAPSHOT @
/usr/ports/java/eclipse/work/eclipse.platform.releng.aggregator-4.5.1/eclipse.jdt/org.eclipse.jdt/pom.xml
[INFO] Adding repository
http://download.eclipse.org/tools/orbit/downloads/drops/R20150821153341/repository
[INFO] Adding repository
http://download.eclipse.org/modeling/emf/emf/updates/2.11.x/base/S201508050538
[INFO] Adding repository
http://download.eclipse.org/jetty/updates/jetty-bundles-9.x/9.2.13.v20150730
[INFO] Adding repository http://download.eclipse.org/rt/ecf/3.10.1/site.p2
[INFO] Adding repository
http://download.eclipse.org/cbi/updates/license/1.0.1.v20140414-1359
[INFO] Fetching p2.index from
http://download.eclipse.org/tools/ajdt/45/dev/update/ (0B at 0B/s)
[INFO] Adding repository
http://download.eclipse.org/tools/ajdt/45/dev/update
[INFO] Fetching compositeContent.xml from
http://download.eclipse.org/tools/ajdt/45/dev/update/ (0B at 0B/s)
[INFO] Fetching content.jar from
http://download.eclipse.org/tools/ajdt/45/dev/update/ajdt-e45-2.2.4.201602042048/
(0B of 14,01kB at 0B/s)
[ERROR] Failed to resolve target definition
/usr/ports/java/eclipse/work/eclipse.platform.releng.aggregator-4.5.1/eclipse.platform.releng.prereqs.sdk/eclipse-sdk-prereqs.target:
Could not find "org.aspectj.runtime/1.8.5.20150128171000" in the
repositories of the current location -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the
-e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions,
please read the following articles:
[ERROR] [Help 1]
http://cwiki.apache.org/confluence/display/MAVEN/MavenExecutionException
*** Error code 1

Stop.
make[1]: stopped in /usr/ports/java/eclipse
*** Error code 1

Stop.
make: stopped in /usr/ports/java/eclipse

___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Installing multi-version ports with portmaster

2016-02-18 Thread Christian Ullrich

* Walter Schwarzenfeld wrote:

> DEFAULT_VERSIONS=python=2.7 python2=2.7 python3=3.5

Not really, no.

[root@i9b ~]# portmaster -vd databases/py-psycopg2

===>>> Currently installed version: py35-psycopg2-2.6.1_1
===>>> Port directory: /usr/ports/databases/py-psycopg2

[...]

===> Cleaning for py35-psycopg2-2.6.1_1
===>>> Waiting on fetch & checksum for databases/py-psycopg2 <<<===
/!\ WARNING /!\
Your requested default python version 2.7 is different from the
installed default python interpreter version 3.5

... and then it proceeds to reinstall for 3.5. If I give it 
PYTHON_VERSION=python2.7 explicitly, it still _replaces_ the 3.5 port 
with the 2.7 one.


[root@i9b ~]# pkg info -og py\*-psycopg2
py27-psycopg2-2.6.1_1 databases/py-psycopg2
py35-psycopg2-2.6.1_1 databases/py-psycopg2

Can't portmaster deal with shared-origin ports?

--
Christian




___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: resurrect deprecated port print/pnm2ppa

2016-02-18 Thread Miroslav Lachman

Greg Lewis wrote on 02/22/2015 23:58:

On Sun, Feb 15, 2015 at 08:08:57PM +0100, Miroslav Lachman wrote:

Can somebody resurrect deprecated port print/pnm2ppa?

It was deleted from the tree as "Unmaintained since 2001" but it is
(was) still working fine and I am still using my good old printer HP
DeskJet 710C through USB to LPT convertor (usb:/dev/ulpt0) with CUPS.


Why don't you submit a PR with the resurrected port in it and yourself as
the maintainer?  I'll take a look at it if you do.  It seems like all it
really needs is someone to commit to maintaining it.


Hi Greg,
after more than a year I resurerected pnm2ppa port for my home use 
yesterday. It was lot of work for me - I did some port many years ago 
and converting this old port to staging was not easy for me. I tried to 
build it with "poudrier testport" and it succeeded.


> Compressing man pages (compress-man)
===
> Running Q/A tests (stage-qa)
> Checking for pkg-plist issues (check-plist)
===> Parsing plist
===> Checking for items in STAGEDIR missing from pkg-plist
===> Checking for items in pkg-plist which are not in STAGEDIR
===> No pkg-plist issues found (check-plist)
>> Status for build print/pnm2ppa: package
>> Checking for staging violations... done
===
===>  Building package for pnm2ppa-1.13_2
===
>> Status for build print/pnm2ppa: install-mtree
===
===
>> Status for build print/pnm2ppa: install
>> Recording filesystem state for preinst... done
===
===>  Installing for pnm2ppa-1.13_2
===>   pnm2ppa-1.13_2 depends on executable: enscript - found
===>  Checking if pnm2ppa already installed
===>   Registering installation for pnm2ppa-1.13_2
[10_2_amd64-default] Installing pnm2ppa-1.13_2...
To configure your printcap to print either ascii"
or Postscript files, add the following lines to your"
/etc/printcap file"

lp|ascii|unix:\\"
:lp=/dev/lpt0:\\"
:sd=/var/spool/lpd:\\"
:if=/usr/local/bin/asciippafilter:\\"
:mx#0:\\"
:sh:"

ps:\\"
:lp=/dev/lpt0:\\"
:sd=/var/spool/ps:\\"
:if=/usr/local/bin/ppafilter:\\"
:mx#0:\\"
:sh:"

===
>> Status for build print/pnm2ppa: deinstall
>> Checking shared library dependencies
 0x0001 (NEEDED) Shared library: [libc.so.7]
 0x0001 (NEEDED) Shared library: [libm.so.5]
===
===>  Deinstalling for pnm2ppa
===>   Deinstalling pnm2ppa-1.13_2
Updating database digests format: .. done
Checking integrity... done (0 conflicting)
Deinstallation has been requested for the following 1 packages (of 0 
packages in the universe):


Installed packages to be REMOVED:
pnm2ppa-1.13_2

The operation will free 653 KiB.
[10_2_amd64-default] [1/1] Deinstalling pnm2ppa-1.13_2...
[10_2_amd64-default] [1/1] Deleting files for pnm2ppa-1.13_2: .. done
===
>> Checking for extra files and directories
[00:00:09] >> Installing from package
[10_2_amd64-default] Installing pnm2ppa-1.13_2...
[10_2_amd64-default] Extracting pnm2ppa-1.13_2: .. done
Message from pnm2ppa-1.13_2:
To configure your printcap to print either ascii"
or Postscript files, add the following lines to your"
/etc/printcap file"

lp|ascii|unix:\\"
:lp=/dev/lpt0:\\"
:sd=/var/spool/lpd:\\"
:if=/usr/local/bin/asciippafilter:\\"
:mx#0:\\"
:sh:"

ps:\\"
:lp=/dev/lpt0:\\"
:sd=/var/spool/ps:\\"
:if=/usr/local/bin/ppafilter:\\"
:mx#0:\\"
:sh:"
[00:00:09] >> Cleaning up
===>  Cleaning for pnm2ppa-1.13_2
[00:00:09] >> Deinstalling package
Updating database digests format: . done
Checking integrity... done (0 conflicting)
Deinstallation has been requested for the following 1 packages (of 0 
packages in the universe):


Installed packages to be REMOVED:
pnm2ppa-1.13_2

The operation will free 653 KiB.
[10_2_amd64-default] [1/1] Deinstalling pnm2ppa-1.13_2...
[10_2_amd64-default] [1/1] Deleting files for pnm2ppa-1.13_2: .. done
build of print/pnm2ppa ended at Wed Feb 17 23:44:50 CET 2016
build time: 00:00:08
[00:00:09] >> Cleaning up
10_2_amd64-default: removed
10_2_amd64-default-n: removed
[00:00:09] >> Umounting file systems

Usr: 7.140s  Krnl: 3.021s  Totl: 

Re: Can someone take a look at these PRs?

2016-02-18 Thread Lars Engels
On Wed, Feb 17, 2016 at 10:49:50PM +0100, Tobias Kortkamp wrote:
> https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=206515 (www/dillo2,
> maintainer timeout)

Committed this one.

-- 
Lars


pgpBduc2SsSkT.pgp
Description: PGP signature