Commit graph

56 commits

Author SHA1 Message Date
markd
b4cd404742 py-sip: move bits to be shared with py-sip-qt5 to Makefile.common 2018-11-22 02:25:11 +00:00
adam
c8d00ed8c1 py-sip: updated to 4.19.13
SIP v4.19.13 has been released. This is a minor bug-fix release.
SIP v4.19.12 has been released. This is both a bug-fix release and a minor functional release.
SIP v4.19.11 has been released. This is a minor functional release.
SIP v4.19.8 has been released. This is a minor bug-fix release.
2018-10-07 09:00:09 +00:00
maya
2c6f0a48bf py-sip: we call the libraries Qt5Things in pkgsrc for everyone,
not just linux.

from Anthony Mallet in PR pkg/53594.
2018-09-18 03:33:20 +00:00
adam
8e858d64b8 py-sip: updated to 4.19.8
SIP v4.19.8 has been released. This is a minor bug-fix release.
2018-04-14 20:07:11 +00:00
adam
03b2537d2b py-sip: updated to 4.19.7
v4.19.7
- The %Docstring directive can now include automatically generated signature
  descriptions using the "signature" option.
- typedefs can now have %Docstring directives.
- Bug fixes.
2018-02-01 21:03:09 +00:00
jperkin
92e8361a55 py-sip: Fix linker flags with SunOS/clang. Bump PKGREVISION. 2018-01-26 15:47:18 +00:00
jperkin
69652f329a py-sip: Handle SunOS/clang correctly. 2018-01-25 14:08:59 +00:00
markd
042265ee9d py-sip: update to 4.19.5 2018-01-17 19:16:05 +00:00
wiz
b09d521285 Pass LDFLAGS to build. Fixes RELRO. 2017-07-15 13:20:50 +00:00
wiz
1682c6507d Remove unnecessary PLIST_SUBST and FILES_SUBST that are now provided
by the infrastructure.

Mark a couple more packages as not ready for python-3.x.
2016-08-28 15:48:28 +00:00
jperkin
02201cb05b Use OPSYSVARS. 2016-02-26 10:57:45 +00:00
adam
ca47a27ef8 Changes 4.17:
- Added support for PEP 465 (__matmul__ and __imatmul__).
- Added support for PEP 492 (__aenter__, __aexit__, __await__, __aiter__
  and __anext__).
- Added support for MSVC 2015 to the build system.
- Bug fixes.
2015-10-26 21:40:01 +00:00
adam
3fd6cf312b Changes 4.16.5:
- Added the asarray() method to sip.voidptr.
- Bug fixes.
2014-12-30 06:43:59 +00:00
wiz
1f4572677a Update to 4.16.2:
v4.16.2 3rd July 2014
  - Deprecated the %ConsolidatedModule directive as it won't be supported in
    SIP v5.
  - Bug fixes.

v4.16.1 9th June 2014
  - Bug fixes.

v4.16 26th May 2014
  - Added the /NoSetter/ variable annotation.
  - Added the -B option to sip.
  - Changed the handling of timelines (introducing a potential incompatibility)
    so that later versions of wrapped libraries can be wrapped so long as they
    are compatible with known versions.
  - Added support for the 'no_receiver_check' argument to connect() in PyQt
    v4.11.
  - Added the --configuration option to configure.py.
  - Added the --sysroot option to configure.py.
  - Added the --target-py-version option to configure.py.
  - Added the --no-tools option to configure.py.
  - Added the --use-qmake option to configure.py.
  - Bug fixes.

v4.15.5 14th March 2014
  - The use_arch argument of sipconfig.create_wrapper() can now specify a space
    separated set of architectures.
  - Bug fixes.

v4.15.4 8th January 2014
  - Added SIP_SSIZE_T_FORMAT to the C API.
  - Bug fixes (specifically for PyQt5).

v4.15.3 16th October 2013
  - Bug fixes (specifically for PyQtChart).

v4.15.2 14th September 2013
  - sipConvertToArray() will now optionally take ownership of the array memory.
  - Added support for char, unsigned char, short, int, float and double as
    array types.
  - Bug fixes.

v4.15.1 23rd August 2013
  - Fixes a regression in the handling of hidden virtual methods.

v4.15 21st August 2013
  - Added the call_super_init argument to the %Module directive to specify that
    classes should support cooperative multi-inheritance.
  - Added the %FinalisationCode directive.
  - Added the /Mixin/ class annotation.
  - Added the /NoScope/ enum annotation.
  - Added sipConvertFromNewPyType() to the C API.
  - Added sipConvertToArray() and sipConvertToTypedArray() to the C API.
  - Added sipRegisterProxyResolver() to the C API.
  - Bug fixes.
2014-08-21 21:32:38 +00:00
wiz
aa67e11089 Mark packages as not ready for python-3.x where applicable;
either because they themselves are not ready or because a
dependency isn't. This is annotated by
PYTHON_VERSIONS_INCOMPATIBLE=  33 # not yet ported as of x.y.z
or
PYTHON_VERSIONS_INCOMPATIBLE=  33 # py-foo, py-bar
respectively, please use the same style for other packages,
and check during updates.

Use versioned_dependencies.mk where applicable.
Use REPLACE_PYTHON instead of handcoded alternatives, where applicable.
Reorder Makefile sections into standard order, where applicable.

Remove PYTHON_VERSIONS_INCLUDE_3X lines since that will be default
with the next commit.

Whitespace cleanups and other nits corrected, where necessary.
2014-01-25 10:29:56 +00:00
drochner
9108629114 revert to 4.14.7
4.15 causes compatibility problems with pyqt3 and pyKDE
(which were complained about in the pyqt mailing list but not fixed yet)
2013-09-05 15:27:42 +00:00
drochner
3a8883bb40 update to 4.15.1
This fixes a regression in v4.15 related to the handling of hidden
virtual methods.
(hopefully fixes the build problem with py-qt3 reported by Greg Oster)
2013-08-24 11:48:37 +00:00
drochner
96df58aac9 update to 4.15
Adds features required by PyQt v5.0.1 and PyQt v4.10.3
2013-08-23 11:25:38 +00:00
wiz
28654fe030 Update to 4.14.7:
v4.14.7 16th June 2013
  - The internal API version is increased to 10.0 requiring the regeneration of
    all modules.
  - Added the /Sequence/ function annotation.
  - %ConvertFromTypeCode can now be specified for classes.
  - Added sipEnableAutoconversion() to the C API.
  - Added sipSetDestroyOnExit() to the C API.
  - Bug fixes.

Bump coming (for first point).
2013-07-04 17:03:02 +00:00
drochner
10e96624ae update to 4.14.6
This is a minor bug fix release.
2013-05-03 15:46:32 +00:00
drochner
34676a7f64 update to 4.14.5
This is a minor bug fix release, specifically for QGIS.
2013-04-10 15:00:00 +00:00
asau
8aba7e3fbf Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
drochner
b42b119927 update to 4.14
changes: API extensions, needed by py-qt4-4.9.5
2012-10-10 16:49:56 +00:00
drochner
ed859ddacb update to 4.13.3
This is mainly a bug fix release.
2012-07-03 18:12:00 +00:00
jdc
a1604238a6 Work around gcc/sparc64/-O2 bug by using buildlink to remove "-O2". 2012-05-29 10:57:16 +00:00
obache
d1692f61bf Files as a argment of compileall.py is only acceptable for python 2.7 and 3.2.
Back to change generation of Makefile, and add some trick for PEP 3147.
2012-05-23 13:26:49 +00:00
obache
07d257609b Fixes for Python>=32 PEP 3147.
Let to compile PYC files in post-install phase, instead of installing
.pyc files generaed as a side effect.
2012-05-22 09:43:33 +00:00
drochner
101710c0a7 update to 4.13.2
This is a bug fix release.
2012-02-17 18:36:45 +00:00
drochner
35a53d7406 update to 4.13.1
This is a minor feature release. It is required by PyQt v4.9.
2012-01-17 19:02:01 +00:00
joerg
9a0666357e Tag the 28 locations that result in a Python 3.1 package as supporting so.
Remove it from the default list for the rest.
2011-12-03 00:02:14 +00:00
drochner
262ce8d2dd update to 4.13
changes: minor feature additions (added some directives and operators)
2011-11-07 11:22:21 +00:00
hans
d6b9f322bb Fix build on SunOS. 2011-09-14 17:56:08 +00:00
drochner
506eb8589e update to 4.12.4
This is a minor bug fix release.
2011-09-12 18:17:30 +00:00
drochner
225441ecc7 update to 4.12.3
This is a minor bug fix release.
2011-06-09 11:56:25 +00:00
drochner
b14a0725b3 update to 4.12.2
chanhes: small number of functional enhancements
2011-05-13 16:40:20 +00:00
drochner
4a1bc09c86 update to 4.12.1
changes: small functional enhancements
2011-02-03 19:27:04 +00:00
drochner
68a3d2b452 update to 4.12
In addition to many functional improvements, the release provides
a path for ensuring easy migration to SIP v5.
2011-01-11 15:14:20 +00:00
adam
518b4e4516 Changes 4.11.2:
* /KeepReference/ can now be applied to global functions and static methods.
* %TypeCode can now be specified in a %MappedType directive.
* Mapped types for templates no longer require the template arguments to be
  fully defined.
* Build system changes required by PyQt v4.8 and Qt v4.7.
2010-11-15 13:06:56 +00:00
drochner
c0c6818f8d update to 4.11.1
This is a minor bug fix release.
(fixes problems with the help viewer of devel/eric4)
2010-09-07 16:35:09 +00:00
drochner
bdd50eb867 update to 4.11
changes:
added the %UnitPostIncludeCode directive
/KeepReference/ will now accept a key to track when the same object
 is passed to more than one method
operator() and __call__() can now accept keyword arguments
added support for Python v3.2

pkgsrc note: runtime API changed, client pkgs need to be rebuilt
2010-09-02 09:18:10 +00:00
markd
9f58707dda Update sip to 4.10.5 (4.10.3 no longer available)
v4.10.5 16th July 2010
  - A bug fix release for Python v3 and Python v2.7.

v4.10.4 15th July 2010
  - Use capsules when being built for Python v2.7 to work around an apparent
    bug in the support for PyCObject.
2010-07-18 12:56:12 +00:00
drochner
2206d7a484 update to 4.10.3
changes: bugfixes
2010-07-13 18:19:57 +00:00
drochner
1b5a6aa5c5 4.10.1 disappeared from the distribution site, was replaced by 4.10.2
which fixes a regression in the new-style error handling of C++ ctors
2010-04-20 09:33:22 +00:00
drochner
0c165754a1 update to 4.10.1
This is primarily a bug-fix release.
2010-04-13 15:26:31 +00:00
drochner
3d3b166365 update to 4.10
changes: added some methods and options

pkgsrc note: this changes the API revision compiled into
the runtime library, so updates of py-qt* must be enforced
2010-02-04 18:34:43 +00:00
drochner
a6bda813f4 sip-4.9 changed the API major, so a py-qt built against an older one
will not be compatible anymore
(noticed by Dennis den Brok, see mail to tech-pkg)
bump the API requirement
being here, update to 4.9.3 which brings another little bugfix
2009-11-24 17:17:35 +00:00
wiz
9591aebf64 Update to 4.9.2, bugfix release. 2009-11-23 14:36:28 +00:00
wiz
020e00811a Update to 4.9.1:
v4.9.1 23rd October 2009
  - A bug fix release.

v4.9 26th September 2009
  - Added support for __iter__ and __next__.  (__next__ is used for Python v2
    as well as v3.)
  - Added the %API directive.
  - Added the /API/ annotation.
  - Added sipIsAPIEnabled() to the C API.
  - Added sip.getapi() and sip.setapi() to the Python API.
  - Added sip.ispyowned() to the Python API.
  - Mapped types can now act as a namespace for enums and static methods.
  - The /Array/ annotation can now be applied to classes and mapped types.
  - The /NoArgParser/ annotation can now be applied to methods as well as
    functions.
  - Added the --arch flag to configure.py to specify which MacOS/X
    architectures are built.
  - SIP is now also licensed under the GPL v2 and v3.
2009-11-17 15:21:21 +00:00
tron
2ffbaf3d20 Remove "PYTHON_VERSIONS_ACCEPTED= 26 25 24" which is unnecessary
after Python 2.3 has been removed from "pkgsrc".

Approved by Thomas Klausner.
2009-09-23 09:54:45 +00:00
joerg
e0d4ecdfc2 Retire Python 2.3 support. 2009-09-07 19:02:13 +00:00