mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Bump the version numbers for release. Also remove
specific version check on freeradius. Packages aren't available and the freeradius support isn't ready anyway.
This commit is contained in:
16
Makefile
16
Makefile
@@ -8,29 +8,29 @@ RPMBUILD ?= $(PWD)/rpmbuild
|
|||||||
# updating this you should run the version-update
|
# updating this you should run the version-update
|
||||||
# target.
|
# target.
|
||||||
SERV_MAJOR=0
|
SERV_MAJOR=0
|
||||||
SERV_MINOR=4
|
SERV_MINOR=5
|
||||||
SERV_RELEASE=1
|
SERV_RELEASE=0
|
||||||
SERV_VERSION=$(SERV_MAJOR).$(SERV_MINOR).$(SERV_RELEASE)
|
SERV_VERSION=$(SERV_MAJOR).$(SERV_MINOR).$(SERV_RELEASE)
|
||||||
SERV_TARBALL_PREFIX=$(PRJ_PREFIX)-server-$(SERV_VERSION)
|
SERV_TARBALL_PREFIX=$(PRJ_PREFIX)-server-$(SERV_VERSION)
|
||||||
SERV_TARBALL=$(SERV_TARBALL_PREFIX).tgz
|
SERV_TARBALL=$(SERV_TARBALL_PREFIX).tgz
|
||||||
|
|
||||||
ADMIN_MAJOR=0
|
ADMIN_MAJOR=0
|
||||||
ADMIN_MINOR=4
|
ADMIN_MINOR=5
|
||||||
ADMIN_RELEASE=1
|
ADMIN_RELEASE=0
|
||||||
ADMIN_VERSION=$(ADMIN_MAJOR).$(ADMIN_MINOR).$(ADMIN_RELEASE)
|
ADMIN_VERSION=$(ADMIN_MAJOR).$(ADMIN_MINOR).$(ADMIN_RELEASE)
|
||||||
ADMIN_TARBALL_PREFIX=$(PRJ_PREFIX)-admintools-$(ADMIN_VERSION)
|
ADMIN_TARBALL_PREFIX=$(PRJ_PREFIX)-admintools-$(ADMIN_VERSION)
|
||||||
ADMIN_TARBALL=$(ADMIN_TARBALL_PREFIX).tgz
|
ADMIN_TARBALL=$(ADMIN_TARBALL_PREFIX).tgz
|
||||||
|
|
||||||
PYTHON_MAJOR=0
|
PYTHON_MAJOR=0
|
||||||
PYTHON_MINOR=4
|
PYTHON_MINOR=5
|
||||||
PYTHON_RELEASE=1
|
PYTHON_RELEASE=0
|
||||||
PYTHON_VERSION=$(PYTHON_MAJOR).$(PYTHON_MINOR).$(PYTHON_RELEASE)
|
PYTHON_VERSION=$(PYTHON_MAJOR).$(PYTHON_MINOR).$(PYTHON_RELEASE)
|
||||||
PYTHON_TARBALL_PREFIX=$(PRJ_PREFIX)-python-$(PYTHON_VERSION)
|
PYTHON_TARBALL_PREFIX=$(PRJ_PREFIX)-python-$(PYTHON_VERSION)
|
||||||
PYTHON_TARBALL=$(PYTHON_TARBALL_PREFIX).tgz
|
PYTHON_TARBALL=$(PYTHON_TARBALL_PREFIX).tgz
|
||||||
|
|
||||||
CLI_MAJOR=0
|
CLI_MAJOR=0
|
||||||
CLI_MINOR=3
|
CLI_MINOR=5
|
||||||
CLI_RELEASE=1
|
CLI_RELEASE=0
|
||||||
CLI_VERSION=$(CLI_MAJOR).$(CLI_MINOR).$(CLI_RELEASE)
|
CLI_VERSION=$(CLI_MAJOR).$(CLI_MINOR).$(CLI_RELEASE)
|
||||||
CLI_TARBALL_PREFIX=$(PRJ_PREFIX)-client-$(CLI_VERSION)
|
CLI_TARBALL_PREFIX=$(PRJ_PREFIX)-client-$(CLI_VERSION)
|
||||||
CLI_TARBALL=$(CLI_TARBALL_PREFIX).tgz
|
CLI_TARBALL=$(CLI_TARBALL_PREFIX).tgz
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
Name: freeipa-admintools
|
Name: freeipa-admintools
|
||||||
Version: 0.4.1
|
Version: 0.5.0
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: FreeIPA authentication server
|
Summary: FreeIPA authentication server
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
AC_PREREQ(2.59c)
|
AC_PREREQ(2.59c)
|
||||||
AC_INIT([freeipa-client],
|
AC_INIT([ipa-client],
|
||||||
[0.3.1],
|
[0.5.0],
|
||||||
[https://hosted.fedoraproject.org/projects/freeipa/newticket])
|
[https://hosted.fedoraproject.org/projects/freeipa/newticket])
|
||||||
|
|
||||||
AC_CONFIG_SRCDIR([ipaclient/__init__.py])
|
AC_CONFIG_SRCDIR([ipaclient/__init__.py])
|
||||||
@@ -47,7 +47,7 @@ AC_CONFIG_FILES([
|
|||||||
AC_OUTPUT
|
AC_OUTPUT
|
||||||
|
|
||||||
echo "
|
echo "
|
||||||
FreeIPA client $VERSION
|
IPA client $VERSION
|
||||||
========================
|
========================
|
||||||
|
|
||||||
prefix: ${prefix}
|
prefix: ${prefix}
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
Name: freeipa-client
|
Name: freeipa-client
|
||||||
Version: 0.3.1
|
Version: 0.5.0
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: FreeIPA client
|
Summary: FreeIPA client
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
Name: freeipa-python
|
Name: freeipa-python
|
||||||
Version: 0.4.1
|
Version: 0.5.0
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: FreeIPA authentication server
|
Summary: FreeIPA authentication server
|
||||||
|
|
||||||
|
|||||||
@@ -35,7 +35,7 @@ def setup_package():
|
|||||||
try:
|
try:
|
||||||
setup(
|
setup(
|
||||||
name = "freeipa-python",
|
name = "freeipa-python",
|
||||||
version = "0.4.1",
|
version = "0.5.0",
|
||||||
license = "GPL",
|
license = "GPL",
|
||||||
author = "Karl MacMillan, et.al.",
|
author = "Karl MacMillan, et.al.",
|
||||||
author_email = "kmacmillan@redhat.com",
|
author_email = "kmacmillan@redhat.com",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
AC_PREREQ(2.59c)
|
AC_PREREQ(2.59c)
|
||||||
AC_INIT([freeipa-server],
|
AC_INIT([ipa-server],
|
||||||
[0.4],
|
[0.5],
|
||||||
[https://hosted.fedoraproject.org/projects/freeipa/newticket])
|
[https://hosted.fedoraproject.org/projects/freeipa/newticket])
|
||||||
|
|
||||||
AC_CONFIG_SRCDIR([ipaserver/ipaldap.py])
|
AC_CONFIG_SRCDIR([ipaserver/ipaldap.py])
|
||||||
@@ -234,7 +234,7 @@ AC_CONFIG_FILES([
|
|||||||
AC_OUTPUT
|
AC_OUTPUT
|
||||||
|
|
||||||
echo "
|
echo "
|
||||||
FreeIPA Server $VERSION
|
IPA Server $VERSION
|
||||||
========================
|
========================
|
||||||
|
|
||||||
prefix: ${prefix}
|
prefix: ${prefix}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
Name: freeipa-server
|
Name: freeipa-server
|
||||||
Version: 0.4.1
|
Version: 0.5.0
|
||||||
Release: 2%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: FreeIPA authentication server
|
Summary: FreeIPA authentication server
|
||||||
|
|
||||||
Group: System Environment/Base
|
Group: System Environment/Base
|
||||||
@@ -36,7 +36,7 @@ Requires: python-krbV
|
|||||||
Requires: TurboGears
|
Requires: TurboGears
|
||||||
Requires: python-tgexpandingformwidget
|
Requires: python-tgexpandingformwidget
|
||||||
Requires: acl
|
Requires: acl
|
||||||
Requires: freeradius >= 1.1.7
|
Requires: freeradius
|
||||||
Requires: pyasn1
|
Requires: pyasn1
|
||||||
|
|
||||||
%define httpd_conf /etc/httpd/conf.d
|
%define httpd_conf /etc/httpd/conf.d
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
Name: freeipa-server
|
Name: freeipa-server
|
||||||
Version: VERSION
|
Version: VERSION
|
||||||
Release: 2%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: FreeIPA authentication server
|
Summary: FreeIPA authentication server
|
||||||
|
|
||||||
Group: System Environment/Base
|
Group: System Environment/Base
|
||||||
@@ -36,7 +36,7 @@ Requires: python-krbV
|
|||||||
Requires: TurboGears
|
Requires: TurboGears
|
||||||
Requires: python-tgexpandingformwidget
|
Requires: python-tgexpandingformwidget
|
||||||
Requires: acl
|
Requires: acl
|
||||||
Requires: freeradius >= 1.1.7
|
Requires: freeradius
|
||||||
Requires: pyasn1
|
Requires: pyasn1
|
||||||
|
|
||||||
%define httpd_conf /etc/httpd/conf.d
|
%define httpd_conf /etc/httpd/conf.d
|
||||||
|
|||||||
Reference in New Issue
Block a user