- Added pysmbc. Build requires libsmbclient-devel.
- Don't install consolehelper bits any more as they are no longer needed. - 0.9.91: - User interface overhaul, part 2.
This commit is contained in:
parent
ada1d9c8ca
commit
75de2a5b9c
@ -162,3 +162,5 @@ pycups-1.9.37.tar.bz2
|
|||||||
system-config-printer-0.7.82.2.tar.bz2
|
system-config-printer-0.7.82.2.tar.bz2
|
||||||
pycups-1.9.38.tar.bz2
|
pycups-1.9.38.tar.bz2
|
||||||
system-config-printer-0.9.90.tar.bz2
|
system-config-printer-0.9.90.tar.bz2
|
||||||
|
pysmbc-1.0.0.tar.bz2
|
||||||
|
system-config-printer-0.9.91.tar.bz2
|
||||||
|
BIN
pysmbc-1.0.0.tar.bz2.sig
Normal file
BIN
pysmbc-1.0.0.tar.bz2.sig
Normal file
Binary file not shown.
3
sources
3
sources
@ -1,2 +1,3 @@
|
|||||||
cf3a3db3f1ff08bdf2c9254086e8ec70 pycups-1.9.38.tar.bz2
|
cf3a3db3f1ff08bdf2c9254086e8ec70 pycups-1.9.38.tar.bz2
|
||||||
9d058c831fb6ebc5012eebfa14efc827 system-config-printer-0.9.90.tar.bz2
|
ebbefa0b433f165a506c651f48ae6122 pysmbc-1.0.0.tar.bz2
|
||||||
|
21c7bab0cf9ccc9550bf285679a1f2aa system-config-printer-0.9.91.tar.bz2
|
||||||
|
Binary file not shown.
BIN
system-config-printer-0.9.91.tar.bz2.sig
Normal file
BIN
system-config-printer-0.9.91.tar.bz2.sig
Normal file
Binary file not shown.
@ -1,4 +0,0 @@
|
|||||||
. config-util
|
|
||||||
PROGRAM=/usr/sbin/system-config-printer
|
|
||||||
SESSION=true
|
|
||||||
FALLBACK=true
|
|
@ -1,4 +0,0 @@
|
|||||||
#%PAM-1.0
|
|
||||||
auth include config-util
|
|
||||||
account include config-util
|
|
||||||
session include config-util
|
|
@ -1,21 +1,22 @@
|
|||||||
%define pycups_version 1.9.38
|
%define pycups_version 1.9.38
|
||||||
|
%define pysmbc_version 1.0.0
|
||||||
%{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
|
%{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
|
||||||
%{!?pyver: %define pyver %(%{__python} -c "import sys ; print sys.version[:3]")}
|
%{!?pyver: %define pyver %(%{__python} -c "import sys ; print sys.version[:3]")}
|
||||||
|
|
||||||
Summary: A printer administration tool
|
Summary: A printer administration tool
|
||||||
Name: system-config-printer
|
Name: system-config-printer
|
||||||
Version: 0.9.90
|
Version: 0.9.91
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
URL: http://cyberelk.net/tim/software/system-config-printer/
|
URL: http://cyberelk.net/tim/software/system-config-printer/
|
||||||
Group: System Environment/Base
|
Group: System Environment/Base
|
||||||
Source0: system-config-printer-%{version}.tar.bz2
|
Source0: http://cyberelk.net/tim/data/system-config-printer/system-config-printer-%{version}.tar.bz2
|
||||||
Source1: pycups-%{pycups_version}.tar.bz2
|
Source1: http://cyberelk.net/tim/data/pycups/pycups-%{pycups_version}.tar.bz2
|
||||||
Source2: system-config-printer.pam
|
Source2: http://cyberelk.net/tim/data/pysmbc/pysmbc-%{pysmbc_version}.tar.bz2
|
||||||
Source3: system-config-printer.console
|
|
||||||
|
|
||||||
BuildRequires: cups-devel >= 1.2
|
BuildRequires: cups-devel >= 1.2
|
||||||
BuildRequires: python-devel >= 2.4
|
BuildRequires: python-devel >= 2.4
|
||||||
|
BuildRequires: libsmbclient-devel >= 2.4
|
||||||
BuildRequires: desktop-file-utils >= 0.2.92
|
BuildRequires: desktop-file-utils >= 0.2.92
|
||||||
BuildRequires: gettext-devel
|
BuildRequires: gettext-devel
|
||||||
BuildRequires: intltool
|
BuildRequires: intltool
|
||||||
@ -50,13 +51,14 @@ Group: System Environment/Base
|
|||||||
Requires: python
|
Requires: python
|
||||||
Requires: foomatic
|
Requires: foomatic
|
||||||
Provides: pycups = %{pycups_version}
|
Provides: pycups = %{pycups_version}
|
||||||
|
Provides: pysmbc = %{pysmbc_version}
|
||||||
|
|
||||||
%description libs
|
%description libs
|
||||||
The common code used by both the graphical and non-graphical parts of
|
The common code used by both the graphical and non-graphical parts of
|
||||||
the configuration tool.
|
the configuration tool.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -a 1
|
%setup -q -a 1 -a 2
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure
|
%configure
|
||||||
@ -66,21 +68,22 @@ make
|
|||||||
make doc
|
make doc
|
||||||
popd
|
popd
|
||||||
|
|
||||||
|
pushd pysmbc-%{pysmbc_version}
|
||||||
|
make
|
||||||
|
make doc
|
||||||
|
popd
|
||||||
|
|
||||||
%install
|
%install
|
||||||
rm -rf %buildroot
|
rm -rf %buildroot
|
||||||
make DESTDIR=%buildroot install
|
make DESTDIR=%buildroot install
|
||||||
|
|
||||||
pushd pycups-%{pycups_version}
|
pushd pycups-%{pycups_version}
|
||||||
chmod 644 examples/cupstree.py
|
|
||||||
make DESTDIR=%buildroot install
|
make DESTDIR=%buildroot install
|
||||||
popd
|
popd
|
||||||
|
|
||||||
mkdir -p %buildroot%{_bindir}
|
pushd pysmbc-%{pysmbc_version}
|
||||||
mkdir -p %buildroot%{_sysconfdir}/pam.d
|
make DESTDIR=%buildroot install
|
||||||
mkdir -p %buildroot%{_sysconfdir}/security/console.apps
|
popd
|
||||||
install -p -m0644 %{SOURCE2} %buildroot%{_sysconfdir}/pam.d/%{name}
|
|
||||||
install -p -m0644 %{SOURCE3} %buildroot%{_sysconfdir}/security/console.apps/%{name}
|
|
||||||
ln -s consolehelper %buildroot%{_bindir}/%{name}
|
|
||||||
|
|
||||||
%find_lang system-config-printer
|
%find_lang system-config-printer
|
||||||
|
|
||||||
@ -90,9 +93,12 @@ rm -rf %buildroot
|
|||||||
%files libs -f system-config-printer.lang
|
%files libs -f system-config-printer.lang
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%doc --parents pycups-%{pycups_version}/{ChangeLog,README,NEWS,TODO,examples,html}
|
%doc --parents pycups-%{pycups_version}/{ChangeLog,README,NEWS,TODO,examples,html}
|
||||||
|
%doc --parents pysmbc-%{pysmbc_version}/{ChangeLog,README,NEWS,TODO,test.py,html}
|
||||||
%config(noreplace) %{_sysconfdir}/dbus-1/system.d/newprinternotification.conf
|
%config(noreplace) %{_sysconfdir}/dbus-1/system.d/newprinternotification.conf
|
||||||
%{python_sitearch}/cups.so
|
%{python_sitearch}/cups.so
|
||||||
%{python_sitearch}/cups-1.0-py%{pyver}.egg-info
|
%{python_sitearch}/cups-1.0-py%{pyver}.egg-info
|
||||||
|
%{python_sitearch}/smbc.so
|
||||||
|
%{python_sitearch}/smbc-1.0-py%{pyver}.egg-info
|
||||||
%dir %{_datadir}/%{name}
|
%dir %{_datadir}/%{name}
|
||||||
%{_datadir}/%{name}/cupshelpers.py*
|
%{_datadir}/%{name}/cupshelpers.py*
|
||||||
%{_datadir}/%{name}/ppds.py*
|
%{_datadir}/%{name}/ppds.py*
|
||||||
@ -103,7 +109,6 @@ rm -rf %buildroot
|
|||||||
%{_bindir}/%{name}
|
%{_bindir}/%{name}
|
||||||
%{_bindir}/%{name}-applet
|
%{_bindir}/%{name}-applet
|
||||||
%{_bindir}/my-default-printer
|
%{_bindir}/my-default-printer
|
||||||
%{_sbindir}/%{name}
|
|
||||||
%{_datadir}/%{name}/authconn.py*
|
%{_datadir}/%{name}/authconn.py*
|
||||||
%{_datadir}/%{name}/config.py*
|
%{_datadir}/%{name}/config.py*
|
||||||
%{_datadir}/%{name}/contextmenu.py*
|
%{_datadir}/%{name}/contextmenu.py*
|
||||||
@ -128,8 +133,6 @@ rm -rf %buildroot
|
|||||||
%{_datadir}/applications/redhat-system-config-printer.desktop
|
%{_datadir}/applications/redhat-system-config-printer.desktop
|
||||||
%{_datadir}/applications/redhat-manage-print-jobs.desktop
|
%{_datadir}/applications/redhat-manage-print-jobs.desktop
|
||||||
%{_datadir}/applications/redhat-my-default-printer.desktop
|
%{_datadir}/applications/redhat-my-default-printer.desktop
|
||||||
%config(noreplace) %{_sysconfdir}/pam.d/%{name}
|
|
||||||
%config(noreplace) %{_sysconfdir}/security/console.apps/%{name}
|
|
||||||
%{_sysconfdir}/xdg/autostart/redhat-print-applet.desktop
|
%{_sysconfdir}/xdg/autostart/redhat-print-applet.desktop
|
||||||
%{_mandir}/man1/*
|
%{_mandir}/man1/*
|
||||||
|
|
||||||
@ -138,6 +141,12 @@ rm -rf %buildroot
|
|||||||
exit 0
|
exit 0
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri May 16 2008 Tim Waugh <twaugh@redhat.com> 0.9.91-1
|
||||||
|
- Added pysmbc. Build requires libsmbclient-devel.
|
||||||
|
- Don't install consolehelper bits any more as they are no longer needed.
|
||||||
|
- 0.9.91:
|
||||||
|
- User interface overhaul, part 2.
|
||||||
|
|
||||||
* Thu Apr 3 2008 Tim Waugh <twaugh@redhat.com> 0.9.90-1
|
* Thu Apr 3 2008 Tim Waugh <twaugh@redhat.com> 0.9.90-1
|
||||||
- Updated pycups to 1.9.38.
|
- Updated pycups to 1.9.38.
|
||||||
- 0.9.90:
|
- 0.9.90:
|
||||||
|
Loading…
Reference in New Issue
Block a user