Compare commits
34 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f6e9279b46 | ||
|
|
2bf66fabaf | ||
|
|
adf05e4dc2 | ||
|
|
9b28fc5f03 | ||
|
|
a59192b586 | ||
|
|
acb1e56310 | ||
|
|
86e6060dfc | ||
|
|
b3fc1029a9 |
||
|
|
82e972b520 | ||
|
|
5fbe136096 | ||
|
|
5a341bbbc0 | ||
|
|
b8a3c3d48c | ||
|
|
2bbad6a30d | ||
|
|
e9bd5a5cfb | ||
|
|
ff2287d64c | ||
|
|
f6e4abbcc3 | ||
|
|
83b6d7972e | ||
|
|
6e37096900 | ||
|
|
fb030ad58b | ||
|
|
31e7d25084 | ||
|
|
33d5df9a12 | ||
|
|
a2555e4f5b | ||
|
|
4e85684d55 | ||
|
|
edf7c903a4 | ||
|
|
2e78fe0b24 | ||
|
|
646f7fe8eb | ||
|
|
476c2f5c02 | ||
|
|
872ee2e2ad | ||
|
|
e0b9f1219f | ||
|
|
cc0a50fbcf | ||
|
|
37bc840677 | ||
|
|
18c5fc3223 | ||
|
|
932c95165d | ||
|
|
79afb3b0c3 |
6 changed files with 1 additions and 169 deletions
|
|
@ -1 +0,0 @@
|
|||
389-ds-console-1.2.0.tar.bz2
|
||||
|
|
@ -1,145 +0,0 @@
|
|||
%define major_version 1.2
|
||||
%define minor_version 0
|
||||
|
||||
%define shortname 389-ds
|
||||
%define pkgname dirsrv
|
||||
|
||||
Name: 389-ds-console
|
||||
Version: %{major_version}.%{minor_version}
|
||||
Release: 6%{?dist}
|
||||
Summary: 389 Directory Server Management Console
|
||||
|
||||
Group: Applications/System
|
||||
License: GPLv2
|
||||
URL: http://port389.org
|
||||
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
BuildArch: noarch
|
||||
Source: http://port389.org/sources/%{name}-%{version}.tar.bz2
|
||||
Requires: 389-admin
|
||||
BuildRequires: ant >= 1.6.2
|
||||
BuildRequires: ldapjdk
|
||||
BuildRequires: idm-console-framework >= 1.1
|
||||
BuildRequires: java-devel >= 1:1.6.0
|
||||
Provides: fedora-ds-console = %{version}-%{release}
|
||||
Obsoletes: fedora-ds-console < 1.2.0-3
|
||||
%if 0%{?rhel} < 6
|
||||
ExcludeArch: ppc
|
||||
%endif
|
||||
|
||||
|
||||
%description
|
||||
A Java based remote management console used for managing 389
|
||||
Directory Server. The 389 Console is required to load and
|
||||
run these jar files.
|
||||
|
||||
%package doc
|
||||
Summary: Web docs for 389 Directory Server Management Console
|
||||
Group: Documentation
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
|
||||
%description doc
|
||||
Web docs for 389 Directory Server Management Console
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
%{ant} \
|
||||
-Dconsole.location=%{_javadir} \
|
||||
-Dbuilt.dir=`pwd`/built
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
install -d $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/html/java
|
||||
install -m644 built/package/%{shortname}* $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/html/java
|
||||
install -d $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/manual/en/slapd/help
|
||||
install -m644 help/en/*.html $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/manual/en/slapd
|
||||
install -m644 help/en/tokens.map $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/manual/en/slapd
|
||||
install -m644 help/en/help/*.html $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/manual/en/slapd/help
|
||||
|
||||
# create symlinks
|
||||
pushd $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/html/java
|
||||
ln -s %{shortname}-%{version}.jar %{shortname}-%{major_version}.jar
|
||||
ln -s %{shortname}-%{version}.jar %{shortname}.jar
|
||||
ln -s %{shortname}-%{version}_en.jar %{shortname}-%{major_version}_en.jar
|
||||
ln -s %{shortname}-%{version}_en.jar %{shortname}_en.jar
|
||||
popd
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%doc LICENSE
|
||||
%{_datadir}/%{pkgname}/html/java/%{shortname}-%{version}.jar
|
||||
%{_datadir}/%{pkgname}/html/java/%{shortname}-%{major_version}.jar
|
||||
%{_datadir}/%{pkgname}/html/java/%{shortname}.jar
|
||||
%{_datadir}/%{pkgname}/html/java/%{shortname}-%{version}_en.jar
|
||||
%{_datadir}/%{pkgname}/html/java/%{shortname}-%{major_version}_en.jar
|
||||
%{_datadir}/%{pkgname}/html/java/%{shortname}_en.jar
|
||||
|
||||
%files doc
|
||||
%defattr(-,root,root,-)
|
||||
%dir %{_datadir}/%{pkgname}/manual/en/slapd
|
||||
%doc %{_datadir}/%{pkgname}/manual/en/slapd/tokens.map
|
||||
%doc %{_datadir}/%{pkgname}/manual/en/slapd/*.html
|
||||
%doc %{_datadir}/%{pkgname}/manual/en/slapd/help/*.html
|
||||
|
||||
%changelog
|
||||
* Fri Dec 18 2009 Rich Megginson <rmeggins@redhat.com> - 1.2.0-6
|
||||
- Excluding PPC for EPEL builds as there is not openjdk there
|
||||
|
||||
* Wed Aug 12 2009 Rich Megginson <rmeggins@redhat.com> 1.2.0-5
|
||||
- final rebuild for 1.2.0 release
|
||||
|
||||
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.0-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||
|
||||
* Tue Jul 14 2009 Rich Megginson <rmeggins@redhat.com> 1.2.0-3
|
||||
- added doc subpackage
|
||||
|
||||
* Fri May 15 2009 Rich Megginson <rmeggins@redhat.com> 1.2.0-2
|
||||
- rename to 389
|
||||
|
||||
* Tue Mar 31 2009 Rich Megginson <rmeggins@redhat.com> 1.2.0-1
|
||||
- this is the 1.2.0 release
|
||||
|
||||
* Tue Mar 31 2009 Rich Megginson <rmeggins@redhat.com> 1.1.3-1
|
||||
- this is the 1.1.3 release
|
||||
|
||||
* Thu Sep 4 2008 Rich Megginson <rmeggins@redhat.com> 1.1.2-2
|
||||
- fixed incorrect source
|
||||
|
||||
* Thu Jul 3 2008 Rich Megginson <rmeggins@redhat.com> 1.1.2-1
|
||||
- fix threading issues with create new ds instance dialog
|
||||
|
||||
* Wed Apr 16 2008 Rich Megginson <rmeggins@redhat.com> 1.1.1-3
|
||||
- use java-devel > 1.5.0 for build requires
|
||||
|
||||
* Tue Jan 22 2008 Rich Megginson <rmeggins@redhat.com> 1.1.1-2
|
||||
- resolves bug 429421
|
||||
- had incorrect source - new source has been uploaded
|
||||
|
||||
* Thu Jan 10 2008 Rich Megginson <rmeggins@redhat.com> 1.1.1-1
|
||||
- changes for fedora package review
|
||||
- added requires for icedtea java
|
||||
- added LICENSE
|
||||
|
||||
* Wed Dec 19 2007 Rich Megginson <rmeggins@redhat.com> 1.1.0-5
|
||||
- This is for the Fedora DS 1.1 release
|
||||
|
||||
* Mon Aug 13 2007 Nathan Kinder <nkinder@redhat.com> 1.1.0-4
|
||||
- Added online help files to package. Use pkgname for filesystem
|
||||
path naming instead of shortname.
|
||||
|
||||
* Wed Aug 1 2007 Nathan Kinder <nkinder@redhat.com> 1.1.0-3
|
||||
- Updated build requirement for new console framework package.
|
||||
Updated install location and Admin Server dependency. Also did
|
||||
some specfile cleanup.
|
||||
|
||||
* Mon Jul 30 2007 Nathan Kinder <nkinder@redhat.com> 1.1.0-2
|
||||
- Updated requirements.
|
||||
|
||||
* Mon Nov 14 2005 Nathan Kinder <nkinder@redhat.com> 1.1.0-1
|
||||
- Initial creation
|
||||
21
Makefile
21
Makefile
|
|
@ -1,21 +0,0 @@
|
|||
# Makefile for source rpm: 389-ds-console
|
||||
# $Id: Makefile,v 1.1 2009/07/17 20:49:57 ausil Exp $
|
||||
NAME := 389-ds-console
|
||||
SPECFILE = $(firstword $(wildcard *.spec))
|
||||
|
||||
define find-makefile-common
|
||||
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(find-makefile-common))
|
||||
|
||||
ifeq ($(MAKEFILE_COMMON),)
|
||||
# attept a checkout
|
||||
define checkout-makefile-common
|
||||
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
|
||||
endif
|
||||
|
||||
include $(MAKEFILE_COMMON)
|
||||
1
dead.package
Normal file
1
dead.package
Normal file
|
|
@ -0,0 +1 @@
|
|||
Retiring 389-ds-console as its been replaced by Cockpit UI plugin
|
||||
|
|
@ -1 +0,0 @@
|
|||
89-ds-console-1_2_0-3:HEAD:389-ds-console-1.2.0-3.src.rpm:1247864626
|
||||
1
sources
1
sources
|
|
@ -1 +0,0 @@
|
|||
2a856772523e5a331e1c407545ee3cfc 389-ds-console-1.2.0.tar.bz2
|
||||
Reference in a new issue