| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
| |
... which it isn't linked with.
PR: 269673
Reported by: Luc <lucmove@gmail.com>
|
|
|
|
| |
Reported by: portscout
|
|
|
|
|
| |
PR: 266334
Reported by: Daniel Engberg <diizzy@FreeBSD.org>
|
|
|
|
| |
PR: 266334
|
|
|
|
| |
Reported by: portscout
|
|
|
|
|
|
|
|
|
|
| |
Commit b7f05445c00f has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.
Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.
There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.
This commit implements such a proposal and moves one of the WWW: entries
of each pkg-descr file into the respective port's Makefile. A heuristic
attempts to identify the most relevant URL in case there is more than
one WWW: entry in some pkg-descr file. URLs that are not moved into the
Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr
files in order to preserve them.
There are 1256 ports that had no WWW: entries in pkg-descr files. These
ports will not be touched in this commit.
The portlint port has been adjusted to expect a WWW entry in each port
Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as
deprecated.
Approved by: portmgr (tcberner)
|
|
|
|
| |
Reported by: portscout
|
|
|
|
| |
Reported by: fallout
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
Update to 3.23.0.
Fix pkg-plist: using the default share/man location
Release Notes:
https://cmake.org/cmake/help/v3.23/release/3.23.html
PR: 262886
Exp-run by: antoine
|
|
|
|
| |
Reported by: portscout
|
|
|
|
| |
Reported by: portscout
|
|
|
|
| |
Reported by: portscout
|
|
|
|
|
|
|
|
| |
Big thank you to Florian Walpen <dev@submerge.ch> and
Goran Mekić <meka@tilda.center> for working on Jack2.
PR: 251125
Submitted by: Florian Walpen <dev@submerge.ch> (original version)
|
|
|
|
| |
Reported by: portscout
|
|
|
|
|
| |
PR: 248459
Exp-run by: antoine
|
|
|
|
| |
bug was fixed by the upstream
|
|
|
|
| |
Reported by: portscout
|
|
|
|
| |
Contains bugfix for unresolved argp symbol in the LV2 plugin.
|
| |
|
|
|
|
| |
Reported by: lwhsu
|
| |
|
|
|
|
|
|
|
| |
Reported by: portscout
Notes:
svn path=/head/; revision=553679
|
|
|
|
| |
Notes:
svn path=/head/; revision=550400
|
|
|
|
|
|
|
| |
Changes: https://github.com/Yoshimi/yoshimi/blob/1.7.2/Changelog
Notes:
svn path=/head/; revision=545213
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
src/LV2_Plugin/YoshimiLV2Plugin.cpp:80:5: error: cannot initialize a member subobject of type 'LV2_Handle (*)(const struct LV2_Descriptor *, double, const char *, const LV2_Feature *const *)' (aka 'void *(*)(const LV2_Descriptor *, double, const char *, const LV2_Feature *const *)') with an lvalue of type 'LV2_Handle (const struct _LV2_Descriptor *, double, const char *, const LV2_Feature *const *)' (aka 'void *(const _LV2_Descriptor *, double, const char *, const LV2_Feature *const *)'): type mismatch at 1st parameter ('const struct LV2_Descriptor *' vs 'const struct _LV2_Descriptor *')
YoshimiLV2Plugin::instantiate,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/LV2_Plugin/YoshimiLV2Plugin.cpp:93:5: error: cannot initialize a member subobject of type 'LV2_Handle (*)(const struct LV2_Descriptor *, double, const char *, const LV2_Feature *const *)' (aka 'void *(*)(const LV2_Descriptor *, double, const char *, const LV2_Feature *const *)') with an lvalue of type 'LV2_Handle (const struct _LV2_Descriptor *, double, const char *, const LV2_Feature *const *)' (aka 'void *(const _LV2_Descriptor *, double, const char *, const LV2_Feature *const *)'): type mismatch at 1st parameter ('const struct LV2_Descriptor *' vs 'const struct _LV2_Descriptor *')
YoshimiLV2Plugin::instantiate,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/LV2_Plugin/YoshimiLV2Plugin.cpp:396:34: error: no matching constructor for initialization of 'YoshimiLV2Plugin'
YoshimiLV2Plugin *inst = new YoshimiLV2Plugin(synth, sample_rate, bundle_path, features, desc);
^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/LV2_Plugin/YoshimiLV2Plugin.cpp:257:19: note: candidate constructor not viable: cannot convert argument of incomplete type 'const struct _LV2_Descriptor *' to 'const LV2_Descriptor *' for 5th argument
YoshimiLV2Plugin::YoshimiLV2Plugin(SynthEngine *synth, double sampleRate, const char *bundlePath, const LV2_Feature *const *features, const LV2_Descriptor *desc):
^
src/LV2_Plugin/YoshimiLV2Plugin.h:47:7: note: candidate constructor (the implicit copy constructor) not viable: requires 1 argument, but 5 were provided
class YoshimiLV2Plugin : public MusicIO
^
src/LV2_Plugin/YoshimiLV2Plugin.cpp:833:5: error: cannot initialize a member subobject of type 'LV2UI_Handle (*)(const struct LV2UI_Descriptor *, const char *, const char *, LV2UI_Write_Function, LV2UI_Controller, LV2UI_Widget *, const LV2_Feature *const *)' (aka 'void *(*)(const LV2UI_Descriptor *, const char *, const char *, void (*)(void *, unsigned int, unsigned int, unsigned int, const void *), void *, void **, const LV2_Feature *const *)') with an lvalue of type 'LV2UI_Handle (const _LV2UI_Descriptor *, const char *, const char *, LV2UI_Write_Function, LV2UI_Controller, LV2UI_Widget *, const LV2_Feature *const *)' (aka 'void *(const _LV2UI_Descriptor *, const char *, const char *, void (*)(void *, unsigned int, unsigned int, unsigned int, const void *), void *, void **, const LV2_Feature *const *)'): type mismatch at 1st parameter ('const struct LV2UI_Descriptor *' vs 'const _LV2UI_Descriptor *')
YoshimiLV2PluginUI::instantiate,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Notes:
svn path=/head/; revision=537166
|
|
|
|
|
|
|
| |
Changes: https://github.com/Yoshimi/yoshimi/blob/1.7.1/Changelog
Notes:
svn path=/head/; revision=532441
|
|
|
|
|
|
|
|
|
|
| |
Reduce time cost and churn when updating the port and add some
files to the plist dynamically.
Changes: https://github.com/Yoshimi/yoshimi/blob/1.7.0.1/Changelog
Notes:
svn path=/head/; revision=524973
|
|
|
|
|
|
|
| |
Changes: https://github.com/Yoshimi/yoshimi/blob/1.7.0/Changelog
Notes:
svn path=/head/; revision=523525
|
|
|
|
|
|
|
| |
Changes: https://github.com/Yoshimi/yoshimi/compare/1.6.1~1...1.6.1
Notes:
svn path=/head/; revision=520339
|
|
|
|
|
|
|
| |
Changes: https://github.com/Yoshimi/yoshimi/blob/1.6.1/Changelog
Notes:
svn path=/head/; revision=520259
|
|
|
|
|
|
|
| |
Changes: https://github.com/Yoshimi/yoshimi/blob/1.6.0.3/Changelog
Notes:
svn path=/head/; revision=517362
|
|
|
|
|
|
|
| |
Changes: https://github.com/Yoshimi/yoshimi/blob/1.6.0.2/Changelog
Notes:
svn path=/head/; revision=514796
|
|
|
|
|
|
|
|
|
| |
Builds fine on arm.
Approved by: mentors (implicit approval)
Notes:
svn path=/head/; revision=511924
|
|
|
|
|
|
|
| |
Changes: https://github.com/Yoshimi/yoshimi/blob/1.6.0.1/Changelog
Notes:
svn path=/head/; revision=511745
|
|
|
|
|
|
|
| |
It now includes the FreeBSD build fix.
Notes:
svn path=/head/; revision=510689
|
|
|
|
|
|
|
| |
Changes: https://github.com/Yoshimi/yoshimi/blob/1.6.0/doc/Yoshimi_1.6.0_features.txt
Notes:
svn path=/head/; revision=510688
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3
to GCC 9.1 under most circumstances now after revision 507371.
This includes ports
- with USE_GCC=yes or USE_GCC=any,
- with USES=fortran,
- using Mk/bsd.octave.mk which in turn features USES=fortran, and
- with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang,
c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib
plus, everything INDEX-11 shows with a dependency on lang/gcc9 now.
PR: 238330
Notes:
svn path=/head/; revision=507372
|
|
|
|
|
|
|
| |
Changes: https://github.com/Yoshimi/yoshimi/blob/1.5.11.4/Changelog
Notes:
svn path=/head/; revision=502847
|
|
|
|
|
|
|
| |
Upstream rerolled the 1.5.11 tarball to include the missing manual.
Notes:
svn path=/head/; revision=501514
|
|
|
|
| |
Notes:
svn path=/head/; revision=501365
|
|
|
|
|
|
|
|
| |
Announcement: https://www.freelists.org/post/yoshimi/Version-1511
Changes: https://github.com/Yoshimi/yoshimi/blob/1.5.11/Changelog
Notes:
svn path=/head/; revision=501364
|
|
|
|
|
|
|
|
|
|
| |
Where necessary, pet portlint.
Approved by: portmgr
Obtained from: aarch64 TRYBROKEN run
Notes:
svn path=/head/; revision=500752
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Use release tarball from SourceForge
- Take maintainership
Changes: https://github.com/Yoshimi/yoshimi/blob/1.5.10.2/Changelog
PR: 237362
Approved by: hello@blubee.me (maintainer timeout, 2 weeks)
Notes:
svn path=/head/; revision=500664
|
|
|
|
|
|
|
|
|
|
|
| |
- Bump PORTREVISION of dependent ports for shlib change
Changes: https://tiswww.case.edu/php/chet/readline/CHANGES
PR: 236156
Exp-run by: antoine
Notes:
svn path=/head/; revision=498476
|
|
|
|
|
|
|
|
|
|
|
| |
cc1plus: error: unrecognized command line option "-std=gnu++11"
While here, pet portlint.
Approved by: portmgr (tier-2 blanket)
Notes:
svn path=/head/; revision=495858
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Ports that build out of source now simply can use "USES=cmake"
instead of "USES=cmake:outsource". Ports that fail to build
out of source now need to specify "USES=cmake:insource".
I tried to only set insource where explictely needed.
PR: 232038
Exp-run by: antoine
Notes:
svn path=/head/; revision=488341
|
|
|
|
|
|
|
|
|
|
|
| |
Also various fixes related to said option.
PR: 230864
Submitted by: mat
exp-runs by: antoine
Notes:
svn path=/head/; revision=479406
|