Re: Merging GitHub Pull Requests into Subversion using git-svn
[[ reply private ]] On 4/25/15 12:30 AM, David Chisnall wrote: On 23 Apr 2015, at 00:12, Craig Rodrigues wrote: While not as smooth as clicking a merge button in GitHub, this is a valid way to accept patches submitted via GitHub pull requests, and integrate them in our FreeBSD Subversion repo. The merge button on GitHub does the wrong thing anyway (merges without fast-forward, so you end up with a tangled history), so (after the initial setup) the steps that I use for merging pull requests from GitHub projects are very similar (locally pull the branch with fast-fordward, test, push). Not to bikeshed this, but you really almost never want a fast-forward commit. The reason is that it becomes challenging to git-bisect things to sort out where a bad commit was. In addition then the merge is actually one "atomic" commit. Getting over viewing "merge commits" as "messy" was the final hurdle I faced going towards git-nirvana. -Alfred ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
INDEX now builds successfully on 8.x
___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
portmaster doesn't fetch qt sources while simple "make install" does
Hi, while rebuilding krdc from ports I run into a problem that portmaster hangs when it tries to download the sourcefile: => qt-everywhere-opensource-src-4.8.6.tar.gz doesn't seem to exist in /usr/ports/distfiles//KDE. => Attempting to fetch http://download.qt-project.org/official_releases/qt/4.8/4.8.6//qt-everywhere-opensource-src-4.8.6.tar.gz qt-everywhere-opensource-src-4.8.6.tar.gz Fetching the package with a web browser or even just by doing a "make reinstall" does the download of the same source file. Was someone facing a similar behavior? Regards, Dominik ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
INDEX build failed for 8.x
INDEX build failed with errors: Generating INDEX-8 - please wait..--- describe.accessibility --- --- describe.arabic --- --- describe.archivers --- --- describe.astro --- --- describe.audio --- --- describe.benchmarks --- --- describe.biology --- --- describe.cad --- --- describe.chinese --- --- describe.comms --- --- describe.converters --- --- describe.databases --- --- describe.deskutils --- --- describe.devel --- --- describe.dns --- --- describe.editors --- --- describe.emulators --- --- describe.finance --- --- describe.french --- --- describe.ftp --- [...] --- describe.print --- --- describe.russian --- --- describe.science --- --- describe.security --- --- describe.shells --- --- describe.sysutils --- --- describe.textproc --- --- describe.ukrainian --- --- describe.vietnamese --- --- describe.www --- --- describe.x11 --- --- describe.x11-clocks --- --- describe.x11-drivers --- --- describe.x11-fm --- --- describe.x11-fonts --- --- describe.x11-servers --- --- describe.x11-themes --- --- describe.x11-toolkits --- --- describe.x11-wm --- Done. make_index: /home/indexbuild/tindex/ports/net-im/qTox: no entry for /home/indexbuild/tindex/ports/audio/libfilteraudio Committers on the hook: amdmi3 bapt bofh brooks delphij johans lme novel thierry vg Most recent SVN update was: Updating '.': Usysutils/xen-tools/pkg-plist Usysutils/xen-tools/Makefile Uemulators/xen-kernel/Makefile Uemulators/xen-kernel/files/xen.4th Uemulators/xen/Makefile Unet-im/tox/Makefile Unet-im/tox/distinfo Unet-im/qTox/Makefile Unet-im/qTox/distinfo Unet-im/qTox/files/patch-qtox.pro Unet-im/uTox/distinfo Unet-im/uTox/files/patch-Makefile Unet-im/uTox/Makefile Ddevel/libxo/files Udevel/libxo/pkg-plist Udevel/libxo/Makefile Udevel/libxo/distinfo Udevel/py-enum34/distinfo Udevel/py-enum34/Makefile Ugraphics/yed/distinfo Ugraphics/yed/Makefile Daudio/filter_audio Aaudio/libfilteraudio Aaudio/libfilteraudio/pkg-plist Aaudio/libfilteraudio/Makefile Aaudio/libfilteraudio/distinfo Aaudio/libfilteraudio/pkg-descr Usecurity/Makefile Asecurity/passivedns Asecurity/passivedns/Makefile Asecurity/passivedns/distinfo Asecurity/passivedns/pkg-descr Asecurity/passivedns/files Asecurity/passivedns/files/pkg-message.in Asecurity/passivedns/files/passivedns.in Asecurity/passivedns/pkg-plist Usecurity/signing-party/Makefile Asecurity/signing-party/files Asecurity/signing-party/files/patch-caff_caff Unet/openldap24-server/Makefile Anet/openldap24-server/files/patch-build__top.mk UMOVED Dmail/msmtp/files Umail/msmtp/Makefile Umail/msmtp/distinfo Ugames/lgeneral/Makefile Ugames/lgeneral/distinfo Ugames/lgeneral/pkg-plist Ugames/agame/Makefile Updated to revision 384875. ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
Re: all those c++ ABI variations in ports
On 27 Apr, Diane Bruce wrote: > A problem I have not seen noted here are ports that load run time modules. > > gnuradio is a case in point. The dependancies are all built (by default) > with stock clang++ & system libs but some of the runtime code it loads > for operation has modules compiled with gfortran. That should be a valid combination. Fortran is part of ports gcc, but code compiled with it doesn't link to libstdc++, so there should not be a conflict with code compiled with clang++ and linked to libc++. I haven't run into any issues with octave built with openblas, which is the combo that you describe. % ldd /usr/local/bin/octave /usr/local/bin/octave: libX11.so.6 => /usr/local/lib/libX11.so.6 (0x800823000) libutil.so.9 => /lib/libutil.so.9 (0x800b5c000) libm.so.5 => /lib/libm.so.5 (0x800d6e000) libc++.so.1 => /usr/lib/libc++.so.1 (0x800f96000) libcxxrt.so.1 => /lib/libcxxrt.so.1 (0x801255000) libgcc_s.so.1 => /usr/local/lib/gcc48/libgcc_s.so.1 (0x801471000) libthr.so.3 => /lib/libthr.so.3 (0x801687000) libc.so.7 => /lib/libc.so.7 (0x8018ab000) libxcb.so.1 => /usr/local/lib/libxcb.so.1 (0x801c57000) librpcsvc.so.5 => /usr/lib/librpcsvc.so.5 (0x801e76000) libXau.so.6 => /usr/local/lib/libXau.so.6 (0x80207f000) libpthread-stubs.so.0 => /usr/local/lib/libpthread-stubs.so.0 (0x802281000) libXdmcp.so.6 => /usr/local/lib/libXdmcp.so.6 (0x802482000) % ldd /usr/local/lib/octave/3.8.2/liboctave.so /usr/local/lib/octave/3.8.2/liboctave.so: libcurl.so.4 => /usr/local/lib/libcurl.so.4 (0x802341000) libumfpack.so.1 => /usr/local/lib/libumfpack.so.1 (0x8025aa000) libsuitesparseconfig.so.1 => /usr/local/lib/libsuitesparseconfig.so.1 (0x802858000) libcholmod.so.1 => /usr/local/lib/libcholmod.so.1 (0x802a59000) libamd.so.1 => /usr/local/lib/libamd.so.1 (0x802d43000) libcamd.so.1 => /usr/local/lib/libcamd.so.1 (0x802f4a000) libcolamd.so.1 => /usr/local/lib/libcolamd.so.1 (0x803152000) libccolamd.so.1 => /usr/local/lib/libccolamd.so.1 (0x803359000) libcxsparse.so.1 => /usr/local/lib/libcxsparse.so.1 (0x803564000) libarpack.so.1 => /usr/local/lib/libarpack.so.1 (0x80378f000) libqrupdate.so.1 => /usr/local/lib/libqrupdate.so.1 (0x803a27000) libfftw3_threads.so.3 => /usr/local/lib/libfftw3_threads.so.3 (0x803c3d000) libfftw3.so.3 => /usr/local/lib/libfftw3.so.3 (0x803e43000) libfftw3f_threads.so.3 => /usr/local/lib/libfftw3f_threads.so.3 (0x8041a8000) libfftw3f.so.3 => /usr/local/lib/libfftw3f.so.3 (0x8043ae000) libopenblasp.so => /usr/local/lib/libopenblasp.so (0x80480) libreadline.so.8 => /lib/libreadline.so.8 (0x806576000) libncurses.so.8 => /lib/libncurses.so.8 (0x8067b9000) libpcre.so.1 => /usr/local/lib/libpcre.so.1 (0x806a06000) libgfortran.so.3 => /usr/local/lib/gcc48/libgfortran.so.3 (0x806c79000) libquadmath.so.0 => /usr/local/lib/gcc48/libquadmath.so.0 (0x806f9) libutil.so.9 => /lib/libutil.so.9 (0x8071cb000) libc++.so.1 => /usr/lib/libc++.so.1 (0x8073dd000) libcxxrt.so.1 => /lib/libcxxrt.so.1 (0x80769c000) libm.so.5 => /lib/libm.so.5 (0x8078b8000) libthr.so.3 => /lib/libthr.so.3 (0x807ae) libc.so.7 => /lib/libc.so.7 (0x800821000) libgcc_s.so.1 => /usr/local/lib/gcc48/libgcc_s.so.1 (0x807d04000) libssl.so.7 => /usr/lib/libssl.so.7 (0x807f1a000) libheimntlm.so.11 => /usr/lib/libheimntlm.so.11 (0x808186000) libhx509.so.11 => /usr/lib/libhx509.so.11 (0x80838c000) libcom_err.so.5 => /usr/lib/libcom_err.so.5 (0x8085d6000) libcrypto.so.7 => /lib/libcrypto.so.7 (0x8087d8000) libasn1.so.11 => /usr/lib/libasn1.so.11 (0x808bce000) libwind.so.11 => /usr/lib/libwind.so.11 (0x808e6b000) libheimbase.so.11 => /usr/lib/libheimbase.so.11 (0x809093000) libroken.so.11 => /usr/lib/libroken.so.11 (0x809297000) libcrypt.so.5 => /lib/libcrypt.so.5 (0x8094a9000) libz.so.6 => /lib/libz.so.6 (0x8096c9000) libkrb5.so.11 => /usr/lib/libkrb5.so.11 (0x8098df000) libgssapi.so.10 => /usr/lib/libgssapi.so.10 (0x809b57000) libgssapi_krb5.so.10 => /usr/lib/libgssapi_krb5.so.10 (0x809d6) libheimipcc.so.11 => /usr/lib/private/libheimipcc.so.11 (0x809f7e000) ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
TECSHOW 2015 – Divulgue seus produtos com custo zero!
exposec-tecshow Um produto Fiera Milano, a feira reúne os melhores profissionais do setor. Venha conhecer o que o mercado tem de melhor para oferecer. [ versão online [http://trk.envio.cafec.com.br/index.dma/DmaPreview?21805.66.1556988.9fdf60fcdfe39f49384c43d3a6f8aa85.1] ] [ descadastrar [http://trk.envio.cafec.com.br/index.dma/DmaOptOut?21805,66,1556988,9fdf60fcdfe39f49384c43d3a6f8aa85,1] ] [http://trk.envio.cafec.com.br/index.dma/DmaClick?21805,66,1556988,953,9fdf60fcdfe39f49384c43d3a6f8aa85,[DMA6_ENCODE_URL]http://www.exposec.tmp.br/?utm_source=Virtual_Target&utm_medium=Email&utm_content=&utm_campaign=exposec-tecshow";> 12 a 14 de Maio de 2015 São Paulo Expo Exhibition " width="319" /> Atendimento: +55 11 5585 4355 | i...@fieramilano.com.br [mailto:i...@fieramilano.com.br] Ir para o site[http://trk.envio.cafec.com.br/index.dma/DmaClick?21805,66,1556988,953,9fdf60fcdfe39f49384c43d3a6f8aa85,[DMA6_ENCODE_URL]http://www.exposec.tmp.br/?utm_source=Virtual_Target&utm_medium=Email&utm_content=&utm_campaign=exposec-tecshow"; width="13" /> Sobre a feira[http://trk.envio.cafec.com.br/index.dma/DmaClick?21805,66,1556988,954,9fdf60fcdfe39f49384c43d3a6f8aa85,[DMA6_ENCODE_URL]http://www.exposec.tmp.br/sobre-a-feira/?utm_source=Virtual_Target&utm_medium=Email&utm_content=&utm_campaign=exposec-tecshow"; width="13" /> Perfil do visitante[http://trk.envio.cafec.com.br/index.dma/DmaClick?21805,66,1556988,955,9fdf60fcdfe39f49384c43d3a6f8aa85,[DMA6_ENCODE_URL]http://www.exposec.tmp.br/perfil-do-visitante/?utm_source=Virtual_Target&utm_medium=Email&utm_content=&utm_campaign=exposec-tecshow"; width="13" /> Quero expor[http://trk.envio.cafec.com.br/index.dma/DmaClick?21805,66,1556988,956,9fdf60fcdfe39f49384c43d3a6f8aa85,[DMA6_ENCODE_URL]http://www.exposec.tmp.br/quero-expor/?utm_source=Virtual_Target&utm_medium=Email&utm_content=&utm_campaign=exposec-tecshow"; width="13" /> Credenciamento[http://trk.envio.cafec.com.br/index.dma/DmaClick?21805,66,1556988,957,9fdf60fcdfe39f49384c43d3a6f8aa85,[DMA6_ENCODE_URL]http://www.mbxeventos.com/AOLExposec/content/Bienvenida.aspx?utm_source=Virtual_Target&utm_medium=Email&utm_content=&utm_campaign=exposec-tecshow"; width="13" /> [http://trk.envio.cafec.com.br/index.dma/DmaClick?21805,66,1556988,962,9fdf60fcdfe39f49384c43d3a6f8aa85,[DMA6_ENCODE_URL]https://www.facebook.com/ExposecBrasil?utm_source=Virtual_Target&utm_medium=Email&utm_content=&utm_campaign=exposec-tecshow font-size:20px; color:#334d81; text-decoration:none;"> [mailto:da...@abese.org.br] MÍDIAS SOCIAIS [http://trk.envio.cafec.com.br/index.dma/DmaClick?21805,66,1556988,962,9fdf60fcdfe39f49384c43d3a6f8aa85,[DMA6_ENCODE_URL]https://www.facebook.com/ExposecBrasil?utm_source=Virtual_Target&utm_medium=Email&utm_content=&utm_campaign=exposec-tecshow"; width="20" />[http://trk.envio.cafec.com.br/index.dma/DmaClick?21805,66,1556988,963,9fdf60fcdfe39f49384c43d3a6f8aa85,[DMA6_ENCODE_URL]https://www.youtube.com/playlist?list=PLyM3_ohTBBzlAMaFJXT_weAcxv0WHfU_F&utm_source=Virtual_Target&utm_medium=Email&utm_content=&utm_campaign=exposec-tecshow"; width="20" />[mailto:i...@fieramilano.com.br] RECEBA NOSSA NEWSLETTER[mailto:i...@fieramilano.com.br] MAIS INFORMAÇÕES +55 11 5585 4355 i...@fieramilano.com.br [mailto:i...@fieramilano.com.br] www.fieramilano.com.br [http://trk.envio.cafec.com.br/index.dma/DmaClick?21805,66,1556988,958,9fdf60fcdfe39f49384c43d3a6f8aa85,[DMA6_ENCODE_URL]http://www.fieramilano.com.br?utm_source=Virtual_Target&utm_medium=Email&utm_content=&utm_campaign=exposec-tecshow"; valign="middle"> REALIZAÇÃO [http://trk.envio.cafec.com.br/index.dma/DmaClick?21805,66,1556988,959,9fdf60fcdfe39f49384c43d3a6f8aa85,[DMA6_ENCODE_URL]http://www.abese.org.br/?utm_source=Virtual_Target&utm_medium=Email&utm_content=&utm_campaign=exposec-tecshow"; valign="middle"> PROMOÇÃO E ORGANIZAÇÃO [http://trk.envio.cafec.com.br/index.dma/DmaClick?21805,66,1556988,958,9fdf60fcdfe39f49384c43d3a6f8aa85,[DMA6_ENCODE_URL]http://www.fieramilano.com.br?utm_source=Virtual_Target&utm_medium=Email&utm_content=&utm_campaign=exposec-tecshow font-size:10px; color:#77;">Uma feira fíliada a Ubrafe [http://trk.envio.cafec.com.br/index.dma/DmaClick?21805,66,1556988,960,9fdf60fcdfe39f49384c43d3a6f8aa85,aHR0cDovL3d3dy51YnJhZmUub3JnLmJyLz91dG1fc291cmNlPVZpcnR1YWxfVGFyZ2V0JnV0bV9tZWRpdW09RW1haWwmdXRtX2NvbnRlbnQ9JnV0bV9jYW1wYWlnbj1leHBvc2VjLXRlY3Nob3cmdXRtX3Rlcm09,1,ZnJlZWJzZC5vcmc=] e UFI [http://trk.envio.cafec.com.br/index.dma/DmaClick?21805,66,1556988,961,9fdf60fcdfe39f49384c43d3a6f8aa85,aHR0cDovL3d3dy51Zmkub3JnLz91dG1fc291cmNlPVZpcnR1YWxfVGFyZ2V0JnV0bV9tZWRpdW09RW1haWwmdXRtX2NvbnRlbnQ9JnV0bV9jYW1wYWlnbj1leHBvc2VjLXRlY3Nob3cmdXRtX3Rlcm09,1,ZnJlZWJzZC5vcmc=]. ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
Re: pkg 1.5.1 wants to remove locked packages
On 2015-04-27 09:59, Baptiste Daroussin wrote: On Mon, Apr 27, 2015 at 09:21:40AM -0400, Michael Jung wrote: Maybe I'm missing something obvious, but pkg 1.5.1 wants to remove locked packages. The packages are indeed really removed. Thanks. --mikej "pkg lock is used to lock packages against reinstallation, modification or deletion." FreeBSD charon.corp.pai.local 10.1-RC1-p2 FreeBSD I do not have /usr/local/etc/pkg.conf file root@charon /var/log]# pkg lock -l Currently locked packages: chromium-40.0.2214.115 <- firefox-esr-31.6.0,1 libreoffice-4.3.6 <- [root@charon /var/log]# pkg upgrade Updating 0local repository catalogue... 0local repository is up-to-date. All repositories are up-to-date. Checking for upgrades (634 candidates): 100% Processing candidates (634 candidates): 0% chromium-40.0.2214.115 is locked and may not be modified Processing candidates (634 candidates): 100% The following 75 package(s) will be affected (of 0 checked): Installed packages to be REMOVED: libvisio01-0.1.1 libmspub01-0.1.2 libe-book-0.1.2 libcdr01-0.1.1 qt5-webkit-5.3.2_1 libreoffice-4.3.6<-- qt5-declarative-5.3.2 stellarium-0.13.1 chromium-40.0.2214.115 < qt5-designer-5.3.2 qt5-assistant-5.3.2 Can you run pkg -o DEBUG_LEVEL=4 upgrade and send me the output (be careful this will be verbose) This is probably due to icu update somehow, as libreoffice and chrome will not work without being themselves upgraded but you locked them. Probably the answer of removing them is bad and we should just stop the processing saying we cannot go further without you unlocking the said packages. Best regards, Bapt Unfortunately we went ahead with the upgrade. I will send the output if I can reproduce it on another machine. Thank you. --mikej ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
Re: pkg 1.5.1 wants to remove locked packages
On Mon, Apr 27, 2015 at 09:21:40AM -0400, Michael Jung wrote: > Maybe I'm missing something obvious, but pkg 1.5.1 wants to remove > locked > packages. The packages are indeed really removed. > > Thanks. > > --mikej > > "pkg lock is used to lock packages against reinstallation, modification > or > deletion." > > FreeBSD charon.corp.pai.local 10.1-RC1-p2 FreeBSD > > I do not have /usr/local/etc/pkg.conf file > > root@charon /var/log]# pkg lock -l > Currently locked packages: > chromium-40.0.2214.115 <- > firefox-esr-31.6.0,1 > libreoffice-4.3.6 <- > > [root@charon /var/log]# pkg upgrade > Updating 0local repository catalogue... > 0local repository is up-to-date. > All repositories are up-to-date. > Checking for upgrades (634 candidates): 100% > Processing candidates (634 candidates): 0% > > chromium-40.0.2214.115 is locked and may not be modified > Processing candidates (634 candidates): 100% > The following 75 package(s) will be affected (of 0 checked): > > Installed packages to be REMOVED: > libvisio01-0.1.1 > libmspub01-0.1.2 > libe-book-0.1.2 > libcdr01-0.1.1 > qt5-webkit-5.3.2_1 > libreoffice-4.3.6<-- > qt5-declarative-5.3.2 > stellarium-0.13.1 > chromium-40.0.2214.115 < > qt5-designer-5.3.2 > qt5-assistant-5.3.2 > > Can you run pkg -o DEBUG_LEVEL=4 upgrade and send me the output (be careful this will be verbose) This is probably due to icu update somehow, as libreoffice and chrome will not work without being themselves upgraded but you locked them. Probably the answer of removing them is bad and we should just stop the processing saying we cannot go further without you unlocking the said packages. Best regards, Bapt pgpA4ThsQ_mA3.pgp Description: PGP signature
pkg 1.5.1 wants to remove locked packages
Maybe I'm missing something obvious, but pkg 1.5.1 wants to remove locked packages. The packages are indeed really removed. Thanks. --mikej "pkg lock is used to lock packages against reinstallation, modification or deletion." FreeBSD charon.corp.pai.local 10.1-RC1-p2 FreeBSD I do not have /usr/local/etc/pkg.conf file root@charon /var/log]# pkg lock -l Currently locked packages: chromium-40.0.2214.115 <- firefox-esr-31.6.0,1 libreoffice-4.3.6 <- [root@charon /var/log]# pkg upgrade Updating 0local repository catalogue... 0local repository is up-to-date. All repositories are up-to-date. Checking for upgrades (634 candidates): 100% Processing candidates (634 candidates): 0% chromium-40.0.2214.115 is locked and may not be modified Processing candidates (634 candidates): 100% The following 75 package(s) will be affected (of 0 checked): Installed packages to be REMOVED: libvisio01-0.1.1 libmspub01-0.1.2 libe-book-0.1.2 libcdr01-0.1.1 qt5-webkit-5.3.2_1 libreoffice-4.3.6<-- qt5-declarative-5.3.2 stellarium-0.13.1 chromium-40.0.2214.115 < qt5-designer-5.3.2 qt5-assistant-5.3.2 [root@charon /usr/local/etc]# pkg -vv Version : 1.5.1 PKG_DBDIR = "/var/db/pkg"; PKG_CACHEDIR = "/var/cache/pkg"; PORTSDIR = "/usr/ports"; INDEXDIR = ""; INDEXFILE = "INDEX-10"; HANDLE_RC_SCRIPTS = false; DEFAULT_ALWAYS_YES = false; ASSUME_ALWAYS_YES = false; REPOS_DIR [ "/etc/pkg/", "/usr/local/etc/pkg/repos/", ] PLIST_KEYWORDS_DIR = ""; SYSLOG = true; ABI = "FreeBSD:10:amd64"; ALTABI = "freebsd:10:x86:64"; DEVELOPER_MODE = false; VULNXML_SITE = "http://vuxml.freebsd.org/freebsd/vuln.xml.bz2";; FETCH_RETRY = 3; PKG_PLUGINS_DIR = "/usr/local/lib/pkg/"; PKG_ENABLE_PLUGINS = true; PLUGINS [ ] DEBUG_SCRIPTS = false; PLUGINS_CONF_DIR = "/usr/local/etc/pkg/"; PERMISSIVE = false; REPO_AUTOUPDATE = true; NAMESERVER = ""; EVENT_PIPE = ""; FETCH_TIMEOUT = 30; UNSET_TIMESTAMP = false; SSH_RESTRICT_DIR = ""; PKG_ENV { } PKG_SSH_ARGS = ""; DEBUG_LEVEL = 0; ALIAS { } CUDF_SOLVER = ""; SAT_SOLVER = ""; RUN_SCRIPTS = true; CASE_SENSITIVE_MATCH = false; LOCK_WAIT = 1; LOCK_RETRIES = 5; SQLITE_PROFILE = false; WORKERS_COUNT = 0; READ_LOCK = false; PLIST_ACCEPT_DIRECTORIES = false; IP_VERSION = 0; AUTOMERGE = true; VERSION_SOURCE = ""; CONSERVATIVE_UPGRADE = true; PKG_CREATE_VERBOSE = false; Repositories: 0local: { url : "pkg+http://10.10.0.80/10stablepkg";, enabled : yes, priority: 0, mirror_type : "SRV" } [root@charon /usr/local/etc]# ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
Re: all those c++ ABI variations in ports
A problem I have not seen noted here are ports that load run time modules. gnuradio is a case in point. The dependancies are all built (by default) with stock clang++ & system libs but some of the runtime code it loads for operation has modules compiled with gfortran. -- - d...@freebsd.org d...@db.net http://www.db.net/~db ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
Re: [New Port] Working on Gitlab - Calling for Help and Ideas
Hello Alexander, thanks for your reply! I found that pretty all could be installed either via ports or via gems, but of course port for gitlab would be awesome. One thing - we got gem which can't be built vanilla on FreeBSD due to something changed in krb5. That's timfel-krb5-auth. So, I made port for this gem, it's not polished, but it definitely something to start with: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=199695 That is pretty interesting, especially this gem is not mentioned in the Gemfile of Gitlab. I've added myself as CC for the bug-report for further watching. :) Thanks for your reply and work! Torsten ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
FreeBSD ports you maintain which are out of date
Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated, you can safely ignore the entry. You will not be e-mailed again for any of the port/version combinations below. Full details can be found at the following URL: http://portscout.freebsd.org/po...@freebsd.org.html Port| Current version | New version +-+ print/lilypond-devel| 2.19.11 | 2.19.19 +-+ If any of the above results are invalid, please check the following page for details on how to improve portscout's detection and selection of distfiles on a per-port basis: http://portscout.freebsd.org/info/portscout-portconfig.txt Thanks. ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
Re: FreeBSD Port: msmtp-1.4.32_3
Dutchman01 wrote: > Hi, > > > > Could you please upgrade msmtp to version 1.6.2. > > Thanks a lot. > > See http://sourceforge.net/projects/msmtp/files/msmtp/1.6.2/ Hi, I hope to get to it early this week. Thanks for the heads-up. Roman Bogorodskiy ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"