From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2195) id E1F67386F80C; Sun, 10 May 2020 18:45:50 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org E1F67386F80C To: cygwin-apps-cvs@sourceware.org Subject: [cygport - the Cygwin packaging tool] branch master, updated. 0.33.1-42-g5ffd56a X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 4d946dabbc5913e0fe72b689bb9fb1e17907bcb8 X-Git-Newrev: 5ffd56a4d7d55bfd9101a1ff41d81678f1864233 Message-Id: <20200510184550.E1F67386F80C@sourceware.org> Date: Sun, 10 May 2020 18:45:50 +0000 (GMT) From: Yaakov Selkowitz X-BeenThere: cygwin-apps-cvs@cygwin.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Cygwin-apps git logs List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 May 2020 18:45:51 -0000 https://sourceware.org/git/gitweb.cgi?p=cygwin-apps/cygport.git;h=5ffd56a4d7d55bfd9101a1ff41d81678f1864233 commit 5ffd56a4d7d55bfd9101a1ff41d81678f1864233 Author: Yaakov Selkowitz Date: Sun May 10 14:45:11 2020 -0400 Bump version to 0.34.0 Diff: --- NEWS | 13 +++++++++++++ cygport.spec | 2 +- data/sample.cygport | 2 +- meson.build | 2 +- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/NEWS b/NEWS index 656614d..69e1a46 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,16 @@ +0.34.0: + * New BUILD_REQUIRES variable used in separate -src.hint files. + * New PROVIDES and CONFLICTS variables for setting in .hint files. + * New unstable src_patch_apply_hook function. + * Improved OCaml dependency detection. + * kde.org: updated for KDE 19.12 and newer. + * meson: cygmeson now passes --auto-features=enabled. + * ocaml-dune: new cygclass for Dune-based OCaml packages. + * perl: new CPAN_SUBDIR optional variable. + * python3: new PYTHON3_PKGVERSION define. + * python-wheel: updated for Python 3.8 and obsoletion of 2.7. + * Numerous testsuite improvements. + 0.33.1: * Updates for changes in PHP 7.3 and Ruby 2.6/RubyGems 3.0. diff --git a/cygport.spec b/cygport.spec index 0a4e3d7..c69a15a 100644 --- a/cygport.spec +++ b/cygport.spec @@ -1,7 +1,7 @@ %define debug_package %{nil} Name: cygport -Version: 0.33.1 +Version: 0.34.0 Release: 1%{?dist} Summary: Cygwin package building tool diff --git a/data/sample.cygport b/data/sample.cygport index 891b810..60cf29a 100644 --- a/data/sample.cygport +++ b/data/sample.cygport @@ -1,7 +1,7 @@ inherit meson NAME="cygport" -VERSION=0.33.1 +VERSION=0.34.0 RELEASE=1 CATEGORY="Devel" SUMMARY="Cygwin source packaging tool" diff --git a/meson.build b/meson.build index cbcbf59..8527c96 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('cygport', - version: '0.33.1') + version: '0.34.0') bindir = join_paths(get_option('prefix'), get_option('bindir')) datadir = join_paths(get_option('prefix'), get_option('datadir'))