diff --git a/openprinting/cups/BUILD b/openprinting/cups/BUILD
new file mode 100755
index 0000000..9fc4558
--- /dev/null
+++ b/openprinting/cups/BUILD
@@ -0,0 +1,24 @@
+# prevent install of init scripts and Mac OS X localization bundle dir
+OPTS="--without-rcdir --without-bundledir $OPTS" &&
+
+# set language options
+if [[ $EXTRA_LANG == n ]]; then
+ OPTS="--without-languages $OPTS"
+else
+ if [[ $CUPS_LANG == all ]]; then
+ OPTS="--with-languages $OPTS"
+ else
+ OPTS="--with-languages=$CUPS_LANG $OPTS"
+ fi
+fi &&
+
+OPTS="--libdir=$INSTALL_ROOT/usr/lib $CUPS_OPTS $OPTS" &&
+OPTS="$OPTS CC=gcc CXX=g++" &&
+OPTS+=" --disable-static" &&
+
+# needed for dbus 1.14
+if is_depends_enabled $SPELL dbus;then
+ OPTS+=" --with-dbusdir=$INSTALL_ROOT/usr/share/dbus-1"
+fi &&
+
+default_build
diff --git a/openprinting/cups/CONFIGURE b/openprinting/cups/CONFIGURE
new file mode 100755
index 0000000..42c6b5c
--- /dev/null
+++ b/openprinting/cups/CONFIGURE
@@ -0,0 +1,17 @@
+. $GRIMOIRE/FUNCTIONS &&
+
+persistent_remove CUPS_VER &&
+
+config_query EXTRA_LANG "Do you want to build extra languages?" n
+
+if [[ $EXTRA_LANG == y ]]; then
+ config_query_list CUPS_LANG "Which additional language to install?" \
+ all de es fr ja pl sv
+fi &&
+
+config_query_option CUPS_OPTS \
+ "Do you want to enable raw printing" \
+ n \
+ '--enable-raw-printing' \
+ '--disable-raw-printing'
+
diff --git a/openprinting/cups/CONFLICTS b/openprinting/cups/CONFLICTS
new file mode 100755
index 0000000..73a4927
--- /dev/null
+++ b/openprinting/cups/CONFLICTS
@@ -0,0 +1,2 @@
+conflicts gnulpr &&
+conflicts cups-old
diff --git a/openprinting/cups/DEPENDS b/openprinting/cups/DEPENDS
new file mode 100755
index 0000000..1c8a34a
--- /dev/null
+++ b/openprinting/cups/DEPENDS
@@ -0,0 +1,43 @@
+depends zlib &&
+depends -sub CXX gcc &&
+depends PKG-CONFIG &&
+
+depends shared-mime-info &&
+
+optional_depends avahi \
+ '--with-dnssd=avahi' \
+ '--with-dnssd=no' \
+ 'use Avahi Service Discovery' &&
+
+optional_depends libpaper \
+ '--enable-libpaper' \
+ '--disable-libpaper' \
+ 'Enable libpaper support' &&
+
+optional_depends "libusb" \
+ '--enable-libusb' \
+ '--disable-libusb' \
+ 'usb printers' &&
+optional_depends "dbus" \
+ "--enable-dbus" \
+ "--disable-dbus" \
+ "hardware notifications" &&
+
+optional_depends "linux-pam" \
+ "--enable-pam" \
+ "--disable-pam" \
+ "for pluggable authentication" &&
+
+optional_depends gnutls "--with-tls=gnutls" "" 'security' &&
+
+optional_depends "acl" \
+ "--enable-acl"
\
+ "--disable-acl"
\
+ "for file system access control lists support" &&
+
+optional_depends krb5 '--enable-gssapi' '--disable-gssapi' 'GSSAPI support
(deprecated)' &&
+optional_depends systemd '--with-systemd' '--without-systemd' 'SystemD
support' &&
+
+optional_depends libxcrypt '' '' 'crypto support' &&
+suggest_depends ghostscript '' '' 'to print Postscript files' &&
+suggest_depends cups-filters '' '' 'extra backends and filters'
diff --git a/openprinting/cups/DETAILS b/openprinting/cups/DETAILS
new file mode 100755
index 0000000..e276143
--- /dev/null
+++ b/openprinting/cups/DETAILS
@@ -0,0 +1,25 @@
+ SPELL=cups
+ VERSION=2.4.7
+ SECURITY_PATCH=19
+ SOURCE=$SPELL-$VERSION-source.tar.gz
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
+
SOURCE_URL[0]=https://github.com/OpenPrinting/cups/releases/download/v$VERSION/$SOURCE
+ SOURCE2=$SOURCE.sig
+ SOURCE2_URL[0]=${SOURCE_URL[0]}.sig
+ SOURCE_GPG=op.gpg:$SOURCE.sig:UPSTREAM_KEY
+ SOURCE2_IGNORE=signature
+ WEB_SITE=https://github.com/OpenPrinting/cups
+ ENTERED=20010922
+ LICENSE[0]=APACHE
+ KEYWORDS="printer"
+ SHORT="Common Unix Printing System is a portable printing layer"
+cat << EOF
+OpenPrinting CUPS Sources (Apple CUPS + common patches)
+
+CUPS provides a portable printing layer for UNIX-based operating systems.
+It was developed to promote a standard printing solution. It is the standard
+printing system in Mac OS X and most Linux distributions.
+CUPS uses the Internet Printing Protocol ("IPP") as the basis for managing
+print jobs and queues and adds network printer browsing and PostScript
Printer
+Description ("PPD") based printing options to support real-world printing.
+EOF
diff --git a/openprinting/cups/FINAL b/openprinting/cups/FINAL
new file mode 100755
index 0000000..604cb27
--- /dev/null
+++ b/openprinting/cups/FINAL
@@ -0,0 +1,2 @@
+default_final &&
+update-mime-database /usr/share/mime/
diff --git a/openprinting/cups/HISTORY b/openprinting/cups/HISTORY
new file mode 100644
index 0000000..77ed9af
--- /dev/null
+++ b/openprinting/cups/HISTORY
@@ -0,0 +1,758 @@
+2024-01-22 Treeve Jelbert <treeve AT sourcemage.org>
+ * DEPENDS: fix various flags
+
+2024-01-21 Treeve Jelbert <treeve AT sourcemage.org>
+ * DEPENDS: optional xlibxcrypt
+
+2023-09-21 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 2.4.7
+ SECURITY_PATCH++ fix CVE-2023-4504
+
+2023-06-22 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 2.4.6
+ SECURITY_PATCH++ fix CVE-2023-34241
+
+2023-06-14 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 2.4.5
+
+2023-06-07 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 2.4.4
+
+2023-06-03 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 2.4.3
+ SECURITY_PATCH++; fixes CVE-2023-32324
+
+2022-07-27 Vlad Glagolev <stealth AT sourcemage.org>
+ * DEPENDS: switch to PKG-CONFIG provider (automated)
+
+2022-05-26 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 2.4.2
+ SECURITY_PATCH++; fixes CVE-2022-26691
+
+2022-04-19 Treeve Jelbert <treeve AT sourcemage.org>
+ * DEPENDS: revert to old enable/disable format
+ * BUILD: use /usr/share/dbus-1 for dbus files; needed for dbus-1.14
+
+2022-01-28 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 2.4.1
+ * op.gpg: update Zdenek Dohnal
+
+2021-11-29 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS version 2.4.0
+ * CONFIGURE DEPENDS: change all options
+ {en,dis}able-xxx => with{,out}=xxx
+ deprecate Kerberos support
+ * op.gpg: add Zdenek Dohnal
+
+2021-03-15 Treeve Jelbert <treeve AT sourcemage.org>
+ * TRIGGERS: deleted, redundant
+
+2021-02-03 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS version 2.3.3op2
+ SECURITY_PATCH++ fixes CVE-2020-10001
+
+2020-11-28 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS version 2.3.3op1
+ now download from OpenPrinting, as Apple seems to abandoned cups.
+ * cups.gpg: deleted
+ * op.gpg: added "Michael R Sweet <michael.r.sweet AT gmail.com>"
+
+2020-06-10 Treeve Jelbert <treeve AT sourcemage.org>
+ * DEPENDS: remove obsolete options
+
+2020-05-26 Ismael Luceno <ismael AT sourcemage.org>
+ * DETAILS: Removed CUPS_VER
+
+2020-04-29 Florian Franzmann <bwlf AT bandrate.org>
+ * DETAILS: version 2.3.3, SECURITY_PATCH++, fixes CVE-2020-3898,
+ CVE-2019-8842
+
+2019-12-14 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 2.3.1
+ SECURITY_PATCH++ fixes CVE-2019-2228
+
+2019-08-24 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 2.3.0
+
+2019-08-16 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 2.2.12
+ SECURITY_PATCH++ fixes CVE-2019-8696 and CVE-2019-8675
+
+2019-03-23 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 2.2.11
+
+2018-12-08 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 2.2.8
+ SECURITY_PATCH++ fixes CVE-2018-4700
+
+2011-11-08 Florian Franzmann <bwlf AT bandrate.org>
+ * DETAILS: version 2.2.9
+
+2018-06-08 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 2.2.8
+
+2018-03-28 Treeve Jelbert <treeve AT sourcemage.org>
+ * cups.gpgL add 35DA97EB "CUPS.org <security AT cups.org>"
+
+2017-11-09 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 2.2.6
+
+2017-10-16 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 2.2.5
+
+2017-07-04 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 2.2.4
+
+2017-03-30 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 2.2.3
+
+2017-01-29 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 2.2.2
+
+2016-10-24 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 2.2.1
+
+2016-09-14 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 2.2.0
+
+2016-07-09 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: add gpg checking
+ * cup.gpg: added 08D76223 CUPS.org <security AT cups.org>
+ * DETAILS: version 2.1.4
+
+2016-02-28 Ismael Luceno <ismael AT sourcemage.org>
+ * DEPENDS: Fixed typo, "sysytemd" -> "systemd"
+
+2016-02-15 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 2.1.3
+
+2015-12-23Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 2.1.2
+
+2015-09-01 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 2.1.0
+ * DEPENDS: add optional systemd
+
+2015-08-17 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 2.0.4
+
+2015-06-10 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 2.0.3
+ SECURITY_PATCH++, fixes CVE-2015-1158/CVE-2015-1159
+
+2015-02-22 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 2.0.2
+ SECURITY_PATCH++
+
+2014-11-19 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 2.0.1
+ * DEPENDS: add optional avahi
+ * BUILD: disable static - causes build problems
+
+2014-10-08 Treeve Jelbert <treeve AT sourcemage.org>
+ * DEPENDS: add flags for acl
+ remove references to openssl
+ mdnsresponder is now optional
+
+2014-10-02 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 2.0.0
+ * DEPENDS, CONFIGURE: openssl is no longer supported
+
+2014-09-02 Treeve Jelbert <treeve AT sourcemage.org>
+ * DEPENDS: add krb5
+ * FINAL: specify default_final
+
+2014-08-31 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.7.5
+ SECURITY_PATCH++, fix CVE-2014-5029/5030/5031
+
+2014-08-23 Treeve Jelbert <treeve AT sourcemage.org>
+ * DEPENDS, CONFIGURE: improve SSL/gnutls choice - remive obsolete
flags
+
+2014-08-19 Treeve Jelbert <treeve AT sourcemage.org>
+ * DEPENDS: openssl => SSL
+ fix ssl
+
+2014-07-23 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.7.4
+ SECURITY_PATCH++, fix CVE-2014-353
+
+2014-05-28 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.7.3
+ * DEPEDNS: add mdnsresponder
+
+2014-01-9 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.7.1
+
+2013-10-25 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.7.0
+
+2013-10-20 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.6.4
+
+2013-09-14 Robin Cook <rcook AT wyrms.net>
+ * BUILD: force to use gcc as will use clang by default and fail
+
+2013-07-12 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.6.3
+
+2013-05-30 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: fixed source url
+
+2013-03-19 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.6.2
+
+2013-02-24 Treeve Jelbert <treeve AT sourcemage.org>
+ * DEPENDS: adjust flags for openssl & gnutls
+
+2012-07-28 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.6.1
+
+2012-07-27 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.6.0
+ * DEPENDS: remove JPEG, tiff, poppler, ghostscript, libpng,
+ openldap and openslp
+ these have all been removed from CUPS.
+ The corresponding filters are available from cups-filters
+ add shared-mime-info
+ add suggest_depends cups-filters
+ * CONFIGURE: remove obsolete options
+ * FINAL, POST_REMOVE: added - run update-mime-database
+
+2012-05-15 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.5.3
+
+2012-05-09 Treeve Jelbert <treeve AT sourcemage.org>
+ * DEPENDS: libusb => LIBUSB
+
+2012-04-22 Treeve Jelbert <treeve AT sourcemage.org>
+ * DEPENDS: python => PYTHON
+
+2012-02-06 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.5.2
+
+2012-02-04 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.5.1
+
+2011-11-23 Treeve Jelbert <treeve AT sourcemage.org>
+ * INSTALL, 70-cups-libusb.rules: deleted
+ the udev rule is not needed and invalid.
+ udevd[1108]: invalid ENV attribute, 'DEVTYPE' can not be set
+ usb printer works without this
+
+2011-07-30 Florian Franzmann <bwlf AT bandrate.org>
+ * DEPENDS: changed dependency on g++ to dependency on gcc with
+ sub-depends on CXX (scripted)
+
+2011-07-30 Vlad Glagolev <stealth AT sourcemage.org>
+ * BUILD: don't install extra lang dir (needed for Mac OS X)
+ * DETAILS: PATCHLEVEL=1
+
+2011-07-27 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.5.0
+
+2011-06-29 Ladislav Hagara <hgr AT vabo.cz>
+ * DETAILS: 1.4.7
+
+2011-01-07 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: updated spell to 1.4.6
+
+2010-11-11 Ladislav Hagara <hgr AT vabo.cz>
+ * DETAILS: 1.4.5, SECURITY_PATCH=5
+
+2010-11-03 Ladislav Hagara <hgr AT vabo.cz>
+ * DEPENDS: jpeg -> JPEG
+
+2010-06-17 Ladislav Hagara <hgr AT vabo.cz>
+ * DETAILS: 1.4.4, SECURITY_PATCH=4
+
+2010-03-31 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.4.3
+ * PRE_BUILD, serial.patch: deleted
+
+2009-11-16 Treeve Jelbert <treeve AT sourcemage.org>
+ * 70-cups-libusb.rules: fix syntax error
+
+2009-11-10 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.4.2
+
+2009-10-11 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: PATCHLEVEL=1
+ * INSTALL, cups/70-cups-libusb.rules: added
+ fix from fedora so that can print to usb printers using libusb
+ the user must be a member of the lp group
+
+2009-09-13 Ladislav Hagara <hgr AT vabo.cz>
+ * DETAILS: 1.4.1
+
+2009-08-29 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.4.0 (devel)
+
+2009-07-04 Andraž "ruskie" Levstik <ruskie+f03a580f AT codemages.net>
+ * BUILD: added CUPS_OPTS
+ * CONFIGURE: plenty of extra options
+ * DEPENDS: some dependencies are completely optional
+
+2009-07-03 Ladislav Hagara <hgr AT vabo.cz>
+ * DETAILS: 1.3.11
+
+2009-06-09 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.4rc1 (devel)
+
+2009-05-29 Eric Sandall <sandalle AT sourcemage.org>
+ * BUILD: Install libraries to $INSTALL_ROOT/usr/lib instead of
+ $INSTALL_ROOT/usr/lib64 on 64bit arch
+
+2009-05-21 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.4b3 (devel)
+
+2009-04-19 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.3.10
+
+2009-02-06 Eric Sandall <sandalle AT sourcemage.org>
+ * serial.patch: Include linux/types.h before linux/serial.h
+ Based on Julien's hal/probe-serial.patch
+ Fixes Bug#15065
+ * PRE_BUILD: Apply serial.patch
+
+2008-12-16 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.4b2 (devel)
+
+2008-10-28 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.4b1 (devel)
+ * PREPARE: added, support for devel/stable versions
+ * DEPENDS: add optional libusb
+ POSTSCRIPT-INTERPRETER -> ghostscript
+
+2008-10-10 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: updated spell to 1.3.9; renewed SOURCE_URL[0];
SECURITY_PATCH+=1
+
+2008-08-22 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
+ * DETAILS: added two mirrors of the first and moved it to the last
+ place; the source copy was corrupted #14647
+
+2008-08-18 Julien "_kaze_" ROZO <julien AT rozo.org>
+ * BUILD: switched --without-rcdir and $OPTS to follow best practice
+ * DEPENDS: fixed suggest_depends, so "to print Postscript files" is
+ not passed as a configure flag
+
+2008-07-23 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: updated spell to 1.3.8, quoting the paths!
+
+2008-04-02 Florian Franzmann <bwlf AT bandrate.org>
+ * DETAILS: updated to 1.3.7, SECURITY_PATCH=1, fixes
+ CVE-2008-0047 and CVE-2008-1373
+
+2008-02-20 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.3.6
+
+2008-01-28 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
+ * TRIGGERS: removed is_depends_enabled.function reference
+
+2007-12-18 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.3.5
+
+2007-11-11 David Kowis <dkowis AT shlrm.org>
+ * BUILD was very much broke. Not sure if it's even the right spot
+ for what's there.
+
+2007-10-31 Ladislav Hagara <hgr AT vabo.cz>
+ * DETAILS: 1.3.4
+
+2007-09-28 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.3.3
+
+2007-09-19 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.3.2
+
+2007-09-15 George Sherwood <george AT beernabeer.com>
+ * DETAILS: Updated to version 1.3.1. Removed all broken mirrors.
+
+2007-08-14 David Brown <dmlb2000 AT gmail.com>
+ * DEPENDS: fixed syntax errors in previous commit
+
+2007-08-14 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.3.0
+ * DEPENDS: add pkgconfig, optional openldap
+ * BUILD: remove sedit, it breaks configure
+ remove obsolete comments
+
+2007-08-09 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: update description
+
+2007-07-12 Treeve Jelbert <treeve AT sourcemage.org>
+ * DEPENDS: add optional gnutls
+ fixes bug #13105
+
+2007-07-12 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: remove mention of espgs
+ * DEPENDS: add 'suggest_depends POSTSCRIPT-INTERPRETER'
+ fixes bug #13308
+
+2007-07-12 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.2.12
+
+2007-05-10 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.2.11
+
+2007-03-31 Elisamuel Resto <ryuji AT mages.ath.cx>
+ * DEPENDS: Fixed a typo in the description for the openslp depend
+
+2007-03-20 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.2.10
+
+2007-03-15 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.2.9
+
+2007-02-14 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.2.8
+ * CONFIGURE: add French language support
+
+2007-02-14 Eric Sandall <sandalle AT sourcemage.org>
+ * DEPENDS: Optionally depends on openslp (cupsd links against it)
+
+2006-11-16 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.2.7
+ add SOURCEFORGE_URL
+ disable easysoft urls, they don't seem to be updated anymore
+
+2006-11-07 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.2.6
+
+2006-10-21 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.2.5
+
+2006-10-20 Juuso Alasuutari <iuso AT sourcemage.org>
+ * TRIGGERS: Rewritten to use is_depends_enabled, sources
+ is_depends_enabled.function (remove it when is_depends_enabled
+ is in stable sorcery).
+
+2006-10-05 Juuso Alasuutari <iuso AT sourcemage.org>
+ * DEPENDS: Added optional_depends acl.
+
+2006-09-22 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: versioon 1.2.4
+
+2006-09-19 Juuso Alasuutari <iuso AT sourcemage.org>
+ * TRIGGERS: Added check_self for gnutls cast.
+
+2006-09-10 George Sherwood <george AT beernabeer.com>
+ * CONFIGURE: Added option to build no languages. Changed from
+ config_query_multi since it wasn't working. Added all option.
+ Addresses Bug #12935.
+ * BUILD: Added options to build no, all or one extra language.
+
+2006-08-30 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: versioon 1.2.3
+
+2006-07-26 Treeve Jelbert <treeve AT sourcemage.org>
+ * BUILD: stop install of xinetd scrip
+ * xinetd/cups-lpd: add
+
+2006-07-26 Treeve Jelbert <treeve AT sourcemage.org>
+ * CONFIGURE: add
+ allow user choice of installed languages
+ the choice 'none' is currently disabled, configure fails with it
+ also only one language currently works
+ * BUILD: add --without-rcdir
+ fixes bug #12911
+ add code for languages
+
+2006-07-25 Treeve Jelbert <treeve AT sourcemage.org>
+ * DEPENDS: add optional dbus
+
+2006-07-19 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
+ * DEPENDS: added g++ #12871
+
+2006-07-19 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: versioon 1.2.2
+
+2006-06-25 George Sherwood <george AT beernabeer.com>
+ * DEPENDS: Removed depends gcc34
+ * CONFLICTS: Added conflict cups-old
+ * PROVIDES: Added file to provide CUPS
+
+2006-06-24 George Sherwood <george AT beernabeer.com>
+ * DETAILS: Updated to version 1.2.1. Removed GCC_VERSION.
+ Works with 4.0.3
+ * xpdf-pl3.patch: Removed. Not needed.
+ * Makefile.diff: Removed. Not needed.
+ * PRE_BUILD: Removed. Patches not required.
+
+2006-06-16 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
+ * PRE_BUILD: removed the conflict managment
+ * CONFLICTS: readded
+ * TRIGGERS: cleaned up
+
+2006-04-28 Arwed v. Merkatz <v.merkatz AT gmx.net>
+ * PRE_BUILD: replaced 'gaze depends' call with
+ fast_up_depends, bug #10661
+
+2006-03-12 Karsten Behrmann <BearPerson AT sourcemage.org>
+ * DETAILS: (automated) Add KEYWORDS
+
+2005-10-09 Jason Flatt <jflatt AT sourcemage.org>
+ * DEPENDS: Added missing deps on zlib, jpeg, tiff and libpng.
+
+2005-09-26 Jason Flatt <jflatt AT sourcemage.org>
+ * BUILD, PRE_BUILD: Moved the Makefile patch code to PRE_BUILD.
+ * DETAILS, cups-1.1.23-source.tar.bz2.sig: Converted from MD5 to GPG.
+ Updated SOURCE_URLs.
+ * DETAILS, DEPENDS: Removed dependency on espgs and noted it in the
+ long description.
+ * INSTALL: Removed, as it doesn't seem to be necessary.
+
+2005-09-16 Gareth Clay <gareth AT caffeinefuelled.co.uk>
+ * init.d/cups: added some handling for the case where hplip is
+ installed
+
+2005-08-25 Jason Flatt <jflatt AT sourcemage.org>
+ * DEPENDS: Removed dependency on Samba (since cups really does nothing
+ with it) (bug # 8245).
+ * INSTALL: Removed code for creating Samba symlink (also bug # 8245).
+
+2005-07-30 Treeve Jelbert <treeve AT sourcemage.org>
+ * PREPARE: deleted
+
+2005-07-22 Sergey Lipnevich <sergey AT sourcemage.org>
+ * DEPENDS,DETAILS: use GCC 3.4, to work on AMD64 in particular;
+ * DETAILS: remove ARCHIVE=off.
+
+2005-02-22 Eric Sandall <sandalle AT sourcemage.org>
+ * xpdf-pl3.patch: Updated to CUPS 1.1.23
+ * PRE_BUILD: Patch now applies with -p1
+ cd to SOURCE_DIRECTORY (Bug #8299)
+
+2005-02-21 Seth Woolley <seth AT tautology.org>
+ * DETAILS: update UPDATED for SECURITY FIX
+ * PRE_BUILD: added patching for patch below
+ * xpdf-pl3.patch: added for security fix
+ authenticated access can overflow xpdftops routine
+
+2005-01-29 Arjan Bouter <abouter AT sourcemage.org>
+ * INSTALL: converted spell_installed to spell_ok
+
+2005-01-23 Arjan Bouter <abouter AT sourcemage.org>
+ * lowercase linux-pam
+
+2004-01-05 Eric Sandall <sandalle AT sourcemage.org>
+ * DETAILS: Updated to 1.1.23 SECURITY FIX (Bug #7912)
+ Expanded SHORT
+
+2004-11-22 Eric Sandall <sandalle AT sourcemage.org>
+ * PRE_BUILD: Changed `exit 1` to `return 1` (Bug #7649)
+
+2004-10-30 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.2.2
+ adjust urls to use $VERSION
+
+2004-09-16 Jason Flatt <jason AT flattfamily.com>
+ * DETAILS: Version bump to 1.2.1 (bug # 7374).
+ Corrected SOURCE_URL[0], moved it to position [3], created [0], [1]
+ & [2] and arranged them in the order most likely to succeed.
+
+2004-08-29 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.2.1rc2
+
+2004-08-15 Jason Flatt <jason AT flattfamily.com>
+ * DETAILS: Correctly spelled BUILD_API (bug # 7233).
+ Removed MAINTAINER.
+ * BUILD, DEPENDS, TRIGGERS: Cleaned up whitespace.
+ * INSTALL: Simplified and cleaned up whitespace.
+
+2004-06-03 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.2.1rc1
+ BUILD_API=2
+ * BUILD: simplify
+ * INSTALL: add
+
+2003-11-24 Jason Flatt <jason AT flattfamily.com>
+ * DETAILS: Version bump to 1.1.20.
+
+2003-11-10 Jason Flatt <jason AT flattfamily.com>
+ * DETAILS: Version bump to 1.1.20rc6.
+
+2003-10-27 Jason Flatt <jason AT flattfamily.com>
+ * DETAILS: Updated MD5 and VERSION to 1.1.20rc5.
+
+2003-10-20 Jason Flatt <jason AT flattfamily.com>
+ * HISTORY: Reformatted this file based on new standard.
+
+2003-10-09 Jason Flatt <jason AT flattfamily.com>
+ * DETAILS: updated UPDATED so hpoj users don't get hosed
+ * init.d/cups: added check for hpoj in NEEDS
+
+2003-09-19 Jason Flatt <jason AT flattfamily.com>
+ * DETAILS: Version bump to 1.1.20rc2.
+
+2003-09-06 Jason Flatt <jason AT flattfamily.com>
+ * DETAILS: Version bump to 1.1.20rc1.
+
+2003-08-22 hgg <hgreig AT bigpond.net.au>
+ * DETAILS: Update UPDATED purely for test grimoire integration.
+
+2003-08-10 hgg <hgreig AT bigpond.net.au>
+ * Revert on_dispel Linux-PAM cast_self (doesn't work the way it is
+ documented)
+
+2003-07-28 Arwed v. Merkatz <v.merkatz AT gmx.net>
+ * init.d/cups: updated to new init system
+
+2003-07-26 hgg <hgreig AT bigpond.net.au>
+ * TRIGGERS: Update for Linux-PAM
+
+2003-06-23 hgg <hgreig AT bigpond.net.au>
+ * DETAILS: ARCHIVE="off" fix in bugzilla bug #1068, reverting change
13315,
+ keeping 13321.
+ * PREPARE: Added to remove cache after fixing bug #1068
+
+2003-05-27 Jason Flatt <jason AT flattfamily.com>
+ * DETAILS: Version bump to 1.1.19. Includes previous security fix.
+
+2003-05-27 Arwed v. Merkatz <v.merkatz AT gmx.net>
+ * Apply security fix, see http://www.cups.org/str.php?L75
+
+2003-05-19 Jason Flatt <jason AT flattfamily.com>
+ * BUILD: Update for ${INSTALL_ROOT}.
+
+2003-04-25 Jason Flatt <jason AT flattfamily.com>
+ * Removed all references to cupsomatic since I am unable to find the
file
+ on any public Web or FTP site, and since it has been replaced with
+ foomatic-rip.
+ * Also, some minor code clean up.
+
+2003-05-14 Seth Woolley <seth AT tautology.org>
+ * BUILD: Added unpack for SOURCE2
+
+2003-05-02 Rob Verkuylen <rob AT verkuylen.net>
+ * Copied /init.d/cups.sh to /init.d/cups. Step 1/3 in bug #3115.
+
+2003-04-25 Jason Flatt <jason AT flattfamily.com>
+ * DETAILS: Updated MAINTAINER e-mail address.
+
+2003-04-25 Seth Woolley <seth AT tautology.org>
+ * DETAILS: Modified to fix md5 for SOURCE2.
+
+2003-03-04 Jason Flatt <jason AT flattfamily.com>
+ * Changed where the cupsomatic file was being installed (thanks to
+ Christian Sonne [FreakCERS] for the heads up).
+
+2003-02-25 Jason Flatt <jasonflatt AT wizard.com>
+ * Forgot to change the script from SGL to SMGL.
+
+2003-02-25 Jason Flatt <jasonflatt AT wizard.com>
+ * Updated to use new init.d functionality.
+
+2003-01-30 Seth Woolley <seth AT tautology.org>
+ * DETAILS: Added md5[1] for cupsomatic.
+
+2003-01-17 Jason Flatt <jasonflatt AT wizard.com>
+ * lib_runlevel: Modified to pad date with zeros (%H) instead of spaces
+ (%k). Fixes bug 2257, thanks to Robert Helgesson (rycee).
+
+2002-12-20 Jason Flatt <jasonflatt AT wizard.com>
+ * DETAILS: Version update to 1.1.18.
+
+2002-11-01 Jason Flatt <jasonflatt AT wizard.com>
+ * BUILD: Modified to use lib_runlevel for both parts of init script
+ installation.
+
+2002-11-01 Jason Flatt <jasonflatt AT wizard.com>
+ * BUILD: Fixed to take care of bug # 1542.
+ * POST_INSTALL, PRE_REMOVE: Fixed to account for cups init script name
+ change (thanks to Tom Garland).
+ * Added a second cups init script to account for another bug which was
+ discovered during the fixing and testing of the above two bugs. :^)
+
+2002-10-25 Jason Flatt <jasonflatt AT wizard.com>
+ * HISTORY: Set correct date for MD5 removal entry.
+
+2002-10-25 Jason Flatt <jasonflatt AT wizard.com>
+ * BUILD: Modified for init script stuff as per Neal Birch's
recomendations.
+
+2002-10-25 Jason Flatt <jasonflatt AT wizard.com>
+ * DETAILS: Removed MD5 for cupsomatic as it changes frequently and I
+ don't want to keep the spell from casting when I will not be able to
+ keep up on the MD5.
+
+2002-10-23 Jason Flatt <jasonflatt AT wizard.com>
+ * TRIGGERS: Added for optional_depends LinuxPAM.
+
+2002-10-20 Jason Flatt <jasonflatt AT wizard.com>
+ * Changed the way the init script is done to address bug # 1358.
+
+2002-10-14 Jason Flatt <jasonflatt AT wizard.com>
+ * DETAILS: Modified to address bug # 1180.
+
+2002-10-07 Jason Flatt <jasonflatt AT wizard.com>
+ * DETAILS: Updated VERSION to 1.1.16.
+
+2002-10-03 Jason Flatt <jasonflatt AT wizard.com>
+ * DETAILS: Updated MD5 for cupsomatic.
+
+2002-09-24 Jason Flatt <jasonflatt AT wizard.com>
+ * CONFIGURE: Moved symlink queries to (hopefully fixes bug # 895).
+ * cupsomatic: Removed and set it up to be downloaded during cast.
+ * Makefile.diff: Re-added. (I have no idea what happened to that
file.)
+
+2002-09-08 Eric Sandall <sandalle AT sourcemage.org>
+ * Fixed Bug #856
+
+2002-08-27 Jason Flatt <jasonflatt AT wizard.com>
+ * DEPENDS: Cleaned up. Changed espgs from optional_depends to depends.
+ * HISTORY: Reformatted this file.
+
+2002-08-17 Jason Flatt <jasonflatt AT wizard.com>
+ * cupsomatic: Compressed as it is rather large. Doing my part for the
+ dial-up users of the world. :^)
+
+2002-08-16 Jason Flatt <jasonflatt AT wizard.com>
+ * cupsomatic: Added to spell for easy access during install.
+
+2002-08-15 Jason Flatt <jasonflatt AT wizard.com>
+ * DEPENDS: Modified how CUPS is installed w/Samba to eliminate a
+ (unreported) bug in the original code.
+ * PRE_BUILD: Modified the conflict checking to hopefully work a little
+ better.
+ * Added a suggestion from Eric Sandall to hopefully kill bug # 237.
+ * Revamped how the init scripts are installed and setup.
+
+2002-08-02 Jason Flatt <jasonflatt AT wizard.com>
+ * DETAILS: Changed LICENSE= and MD5= to LICENSE[x]= and MD5[x]=.
+ * HISTORY: Reformatted this file.
+
+2002-06-24 Jason Flatt <jasonflatt AT wizard.com>
+ * DETAILS: Forgot to add ARCHIVE="off" for previous bug fix.
+
+2002-06-23 Jason Flatt <jasonflatt AT wizard.com>
+ * CONFLICTS: Removed to modify the way cups and gnulpr handle
conflicts
+ with each other (fixes bug # 207).
+ * PRE_BUILD: Added to modify the way cups and gnulpr handle conflicts
with
+ each other (fixes bug # 207).
+
+2002-06-22 Jason Flatt <jasonflatt AT wizard.com>
+ * DETAILS: Added LICENSE and MD5 to DETAILS.
+
+2002-06-10 Jason Flatt <jasonflatt AT wizard.com>
+ * DETAILS: Updated VERSION to 1.1.15 (and source to include -1 on
version).
+
+2002-06-10 Jason Flatt <jasonflatt AT wizard.com>
+ * USEGCC2: Removed as it compiles w/gcc 3.1 and executes.
+
+2002-05-29 Jason Flatt <jasonflatt AT wizard.com>
+ * USEGCC2: Added in preparation for gcc3 upgrade.
+
+2002-05-08 Jason Flatt <jasonflatt AT wizard.com>
+ * HISTORY: Reformatted to conform to new template.
+
+2002-04-21 Jason Flatt <jasonflatt AT wizard.com>
+ * CONFLICTS: Added.
+ * DETAILS: Updated long description for improved readability.
+ * HISTORY: Corrected this file.
+
+2002-04-16 Jason Flatt <jasonflatt AT wizard.com>
+ * DEPENDS: Added support for SAMBA printers as per Giovanni Lopedote.
+
+2002-03-24 Jason Flatt <jasonflatt AT wizard.com>
+ * DETAILS: Added MAINTAINER=jasonflatt AT wizard.com to DETAILS file.
+ * HISTORY: Added this file.
diff --git a/openprinting/cups/POST_REMOVE b/openprinting/cups/POST_REMOVE
new file mode 100755
index 0000000..8abcc90
--- /dev/null
+++ b/openprinting/cups/POST_REMOVE
@@ -0,0 +1 @@
+update-mime-database /usr/share/mime/
diff --git a/openprinting/cups/PROVIDES b/openprinting/cups/PROVIDES
new file mode 100755
index 0000000..7c846a0
--- /dev/null
+++ b/openprinting/cups/PROVIDES
@@ -0,0 +1 @@
+CUPS
diff --git a/openprinting/cups/init.d/cups b/openprinting/cups/init.d/cups
new file mode 100755
index 0000000..c35f34e
--- /dev/null
+++ b/openprinting/cups/init.d/cups
@@ -0,0 +1,13 @@
+#!/bin/bash
+
+PROGRAM=/usr/sbin/cupsd
+RUNLEVEL=3
+if [ -x /usr/sbin/ptal-init ]; then
+ NEEDS="hpoj +network +remote_fs"
+elif [ -x /usr/sbin/hpiod ]; then
+ NEEDS="hplip +network +remote_fs"
+else
+ NEEDS="+network +remote_fs"
+fi
+
+. /etc/init.d/smgl_init
diff --git a/openprinting/cups/xinetd.d/cups-lpd
b/openprinting/cups/xinetd.d/cups-lpd
new file mode 100644
index 0000000..499073f
--- /dev/null
+++ b/openprinting/cups/xinetd.d/cups-lpd
@@ -0,0 +1,11 @@
+service printer
+{
+ socket_type = stream
+ protocol = tcp
+ wait = no
+ user = lp
+ group = lp
+ passenv =
+ server = /usr/lib/cups/daemon/cups-lpd
+ server_args = -o document-format=application/octet-stream
+}
diff --git a/printer/cups-old/CONFLICTS b/printer/cups-old/CONFLICTS
deleted file mode 100755
index 1048b2c..0000000
--- a/printer/cups-old/CONFLICTS
+++ /dev/null
@@ -1,2 +0,0 @@
-conflicts gnulpr &&
-conflicts cups
diff --git a/printer/cups-old/DEPENDS b/printer/cups-old/DEPENDS
deleted file mode 100755
index 0e85430..0000000
--- a/printer/cups-old/DEPENDS
+++ /dev/null
@@ -1,17 +0,0 @@
-depends gcc34 &&
-
-depends zlib &&
-depends JPEG &&
-depends tiff &&
-depends libpng &&
-
-optional_depends "linux-pam" \
- "--enable-pam" \
- "--disable-pam" \
- "for pluggable authentication" &&
-
-optional_depends "SSL" \
- "--enable-ssl" \
- "--disable-ssl" \
- "for encrypted communications"
-
diff --git a/printer/cups-old/DETAILS b/printer/cups-old/DETAILS
deleted file mode 100755
index f6fafbf..0000000
--- a/printer/cups-old/DETAILS
+++ /dev/null
@@ -1,36 +0,0 @@
- SPELL=cups-old
- VERSION=1.1.23
- SOURCE=cups-$VERSION-source.tar.bz2
-SOURCE_DIRECTORY=$BUILD_DIRECTORY/cups-$VERSION
- SOURCE_URL[0]=ftp://ftp.easysw.com/pub/cups/$VERSION/$SOURCE ## Oregon,
USA
- SOURCE_URL[1]=ftp://ftp2.easysw.com/pub/cups/$VERSION/$SOURCE ##
Maryland, USA
- SOURCE_URL[2]=ftp://ftp3.easysw.com/pub/cups/$VERSION/$SOURCE ##
California, USA
-
SOURCE_URL[3]=http://www.nu6.org/_/mirror/ftp.easysw.com/pub/ghostscript/${VERSION}/${SOURCE}
## Gustavsberg, Sweden
-
SOURCE_URL[4]=ftp://ftp.rz.tu-bs.de/pub/mirror/ftp.easysw.com/ftp/pub/cups/${VERSION}/${SOURCE}
## Braunschweig, Germany
- WEB_SITE=http://www.cups.org
- SOURCE_GPG="gurus.gpg:${SOURCE}.sig"
- ENTERED=20010922
- UPDATED=20050221
- LICENSE[0]=http://www.cups.org/faq0003.html
- GCC_VERSION=3.4
- KEYWORDS="printer"
- SHORT="Common Unix Printing System is a portable printing layer"
-cat << EOF
-The Common UNIX Printing System (CUPS) provides a portable printing layer for
-UNIX(r)-based operating systems. It has been developed to promote a standard
-printing solution for all UNIX vendors and users. CUPS provides the System V
-and Berkeley commandline interfaces, uses the Internet Printing Protocol
-(IPP) as the basis for managing print jobs and queues, supports (with
-reduced functionality) the Line Printer Daemon (LPD), Server Message Block
-(SMB), and AppSocket (a.k.a. JetDirect) protocols, and adds network printer
-browsing and PostScript Printer Description (PPD)-based printing options to
-support real-world printing under UNIX. CUPS also includes a customized
-version of GNU Ghostscript and an image file RIP that are used to support
-non-PostScript printers. Sample drivers for HP and EPSON printers are
-included that use these filters.
-
-NOTE:
- In order to be able to print to postscript printers, you will need to
- cast espgs after casting cups.
-
-EOF
diff --git a/printer/cups-old/HISTORY b/printer/cups-old/HISTORY
deleted file mode 100644
index 96aa25a..0000000
--- a/printer/cups-old/HISTORY
+++ /dev/null
@@ -1,301 +0,0 @@
-2014-08-19 Treeve Jelbert <treeve AT sourcemage.org>
- * DEPENDS: openssl => SSL
-
-2010-11-03 Ladislav Hagara <hgr AT vabo.cz>
- * DEPENDS: jpeg -> JPEG
-
-2010-17-06 Bor Kraljič <pyrobor AT ver.si>
- * cups-1.1.23-source.tar.bz2.sig: resigned sources due to gpg error
(bug #15746)
-
-2008-01-28 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
- * TRIGGERS: removed is_depends_enabled.function reference
-
-2006-10-20 Juuso Alasuutari <iuso AT sourcemage.org>
- * TRIGGERS: Rewritten to use is_depends_enabled, sources
- is_depends_enabled.function (remove it when is_depends_enabled
- is in stable sorcery).
-
-2006-09-21 Juuso Alasuutari <iuso AT sourcemage.org>
- * DETAILS: [automated] Removed BUILD_API=2.
-
-2006-09-19 Juuso Alasuutari <iuso AT sourcemage.org>
- * TRIGGERS: Added check_self for gnutls cast.
-
-2006-06-16 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
- * PRE_BUILD: removed the conflict managment
- * CONFLICTS: readded
- * TRIGGERS: cleaned up
-
-2006-04-28 Arwed v. Merkatz <v.merkatz AT gmx.net>
- * PRE_BUILD: replaced 'gaze depends' call with
- fast_up_depends, bug #10661
-
-2006-03-12 Karsten Behrmann <BearPerson AT sourcemage.org>
- * DETAILS: (automated) Add KEYWORDS
-
-2005-10-09 Jason Flatt <jflatt AT sourcemage.org>
- * DEPENDS: Added missing deps on zlib, jpeg, tiff and libpng.
-
-2005-09-26 Jason Flatt <jflatt AT sourcemage.org>
- * BUILD, PRE_BUILD: Moved the Makefile patch code to PRE_BUILD.
- * DETAILS, cups-1.1.23-source.tar.bz2.sig: Converted from MD5 to GPG.
- Updated SOURCE_URLs.
- * DETAILS, DEPENDS: Removed dependency on espgs and noted it in the
- long description.
- * INSTALL: Removed, as it doesn't seem to be necessary.
-
-2005-09-16 Gareth Clay <gareth AT caffeinefuelled.co.uk>
- * init.d/cups: added some handling for the case where hplip is
- installed
-
-2005-08-25 Jason Flatt <jflatt AT sourcemage.org>
- * DEPENDS: Removed dependency on Samba (since cups really does nothing
- with it) (bug # 8245).
- * INSTALL: Removed code for creating Samba symlink (also bug # 8245).
-
-2005-07-30 Treeve Jelbert <treeve AT sourcemage.org>
- * PREPARE: deleted
-
-2005-07-22 Sergey Lipnevich <sergey AT sourcemage.org>
- * DEPENDS,DETAILS: use GCC 3.4, to work on AMD64 in particular;
- * DETAILS: remove ARCHIVE=off.
-
-2005-02-22 Eric Sandall <sandalle AT sourcemage.org>
- * xpdf-pl3.patch: Updated to CUPS 1.1.23
- * PRE_BUILD: Patch now applies with -p1
- cd to SOURCE_DIRECTORY (Bug #8299)
-
-2005-02-21 Seth Woolley <seth AT tautology.org>
- * DETAILS: update UPDATED for SECURITY FIX
- * PRE_BUILD: added patching for patch below
- * xpdf-pl3.patch: added for security fix
- authenticated access can overflow xpdftops routine
-
-2005-01-29 Arjan Bouter <abouter AT sourcemage.org>
- * INSTALL: converted spell_installed to spell_ok
-
-2005-01-23 Arjan Bouter <abouter AT sourcemage.org>
- * lowercase linux-pam
-
-2004-01-05 Eric Sandall <sandalle AT sourcemage.org>
- * DETAILS: Updated to 1.1.23 SECURITY FIX (Bug #7912)
- Expanded SHORT
-
-2004-11-22 Eric Sandall <sandalle AT sourcemage.org>
- * PRE_BUILD: Changed `exit 1` to `return 1` (Bug #7649)
-
-2004-10-30 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.2.2
- adjust urls to use $VERSION
-
-2004-09-16 Jason Flatt <jason AT flattfamily.com>
- * DETAILS: Version bump to 1.2.1 (bug # 7374).
- Corrected SOURCE_URL[0], moved it to position [3], created [0], [1]
- & [2] and arranged them in the order most likely to succeed.
-
-2004-08-29 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.2.1rc2
-
-2004-08-15 Jason Flatt <jason AT flattfamily.com>
- * DETAILS: Correctly spelled BUILD_API (bug # 7233).
- Removed MAINTAINER.
- * BUILD, DEPENDS, TRIGGERS: Cleaned up whitespace.
- * INSTALL: Simplified and cleaned up whitespace.
-
-2004-06-03 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.2.1rc1
- BUILD_API=2
- * BUILD: simplify
- * INSTALL: add
-
-2003-11-24 Jason Flatt <jason AT flattfamily.com>
- * DETAILS: Version bump to 1.1.20.
-
-2003-11-10 Jason Flatt <jason AT flattfamily.com>
- * DETAILS: Version bump to 1.1.20rc6.
-
-2003-10-27 Jason Flatt <jason AT flattfamily.com>
- * DETAILS: Updated MD5 and VERSION to 1.1.20rc5.
-
-2003-10-20 Jason Flatt <jason AT flattfamily.com>
- * HISTORY: Reformatted this file based on new standard.
-
-2003-10-09 Jason Flatt <jason AT flattfamily.com>
- * DETAILS: updated UPDATED so hpoj users don't get hosed
- * init.d/cups: added check for hpoj in NEEDS
-
-2003-09-19 Jason Flatt <jason AT flattfamily.com>
- * DETAILS: Version bump to 1.1.20rc2.
-
-2003-09-06 Jason Flatt <jason AT flattfamily.com>
- * DETAILS: Version bump to 1.1.20rc1.
-
-2003-08-22 hgg <hgreig AT bigpond.net.au>
- * DETAILS: Update UPDATED purely for test grimoire integration.
-
-2003-08-10 hgg <hgreig AT bigpond.net.au>
- * Revert on_dispel Linux-PAM cast_self (doesn't work the way it is
- documented)
-
-2003-07-28 Arwed v. Merkatz <v.merkatz AT gmx.net>
- * init.d/cups: updated to new init system
-
-2003-07-26 hgg <hgreig AT bigpond.net.au>
- * TRIGGERS: Update for Linux-PAM
-
-2003-06-23 hgg <hgreig AT bigpond.net.au>
- * DETAILS: ARCHIVE="off" fix in bugzilla bug #1068, reverting change
13315,
- keeping 13321.
- * PREPARE: Added to remove cache after fixing bug #1068
-
-2003-05-27 Jason Flatt <jason AT flattfamily.com>
- * DETAILS: Version bump to 1.1.19. Includes previous security fix.
-
-2003-05-27 Arwed v. Merkatz <v.merkatz AT gmx.net>
- * Apply security fix, see http://www.cups.org/str.php?L75
-
-2003-05-19 Jason Flatt <jason AT flattfamily.com>
- * BUILD: Update for ${INSTALL_ROOT}.
-
-2003-04-25 Jason Flatt <jason AT flattfamily.com>
- * Removed all references to cupsomatic since I am unable to find the
file
- on any public Web or FTP site, and since it has been replaced with
- foomatic-rip.
- * Also, some minor code clean up.
-
-2003-05-14 Seth Woolley <seth AT tautology.org>
- * BUILD: Added unpack for SOURCE2
-
-2003-05-02 Rob Verkuylen <rob AT verkuylen.net>
- * Copied /init.d/cups.sh to /init.d/cups. Step 1/3 in bug #3115.
-
-2003-04-25 Jason Flatt <jason AT flattfamily.com>
- * DETAILS: Updated MAINTAINER e-mail address.
-
-2003-04-25 Seth Woolley <seth AT tautology.org>
- * DETAILS: Modified to fix md5 for SOURCE2.
-
-2003-03-04 Jason Flatt <jason AT flattfamily.com>
- * Changed where the cupsomatic file was being installed (thanks to
- Christian Sonne [FreakCERS] for the heads up).
-
-2003-02-25 Jason Flatt <jasonflatt AT wizard.com>
- * Forgot to change the script from SGL to SMGL.
-
-2003-02-25 Jason Flatt <jasonflatt AT wizard.com>
- * Updated to use new init.d functionality.
-
-2003-01-30 Seth Woolley <seth AT tautology.org>
- * DETAILS: Added md5[1] for cupsomatic.
-
-2003-01-17 Jason Flatt <jasonflatt AT wizard.com>
- * lib_runlevel: Modified to pad date with zeros (%H) instead of spaces
- (%k). Fixes bug 2257, thanks to Robert Helgesson (rycee).
-
-2002-12-20 Jason Flatt <jasonflatt AT wizard.com>
- * DETAILS: Version update to 1.1.18.
-
-2002-11-01 Jason Flatt <jasonflatt AT wizard.com>
- * BUILD: Modified to use lib_runlevel for both parts of init script
- installation.
-
-2002-11-01 Jason Flatt <jasonflatt AT wizard.com>
- * BUILD: Fixed to take care of bug # 1542.
- * POST_INSTALL, PRE_REMOVE: Fixed to account for cups init script name
- change (thanks to Tom Garland).
- * Added a second cups init script to account for another bug which was
- discovered during the fixing and testing of the above two bugs. :^)
-
-2002-10-25 Jason Flatt <jasonflatt AT wizard.com>
- * HISTORY: Set correct date for MD5 removal entry.
-
-2002-10-25 Jason Flatt <jasonflatt AT wizard.com>
- * BUILD: Modified for init script stuff as per Neal Birch's
recomendations.
-
-2002-10-25 Jason Flatt <jasonflatt AT wizard.com>
- * DETAILS: Removed MD5 for cupsomatic as it changes frequently and I
- don't want to keep the spell from casting when I will not be able to
- keep up on the MD5.
-
-2002-10-23 Jason Flatt <jasonflatt AT wizard.com>
- * TRIGGERS: Added for optional_depends LinuxPAM.
-
-2002-10-20 Jason Flatt <jasonflatt AT wizard.com>
- * Changed the way the init script is done to address bug # 1358.
-
-2002-10-14 Jason Flatt <jasonflatt AT wizard.com>
- * DETAILS: Modified to address bug # 1180.
-
-2002-10-07 Jason Flatt <jasonflatt AT wizard.com>
- * DETAILS: Updated VERSION to 1.1.16.
-
-2002-10-03 Jason Flatt <jasonflatt AT wizard.com>
- * DETAILS: Updated MD5 for cupsomatic.
-
-2002-09-24 Jason Flatt <jasonflatt AT wizard.com>
- * CONFIGURE: Moved symlink queries to (hopefully fixes bug # 895).
- * cupsomatic: Removed and set it up to be downloaded during cast.
- * Makefile.diff: Re-added. (I have no idea what happened to that
file.)
-
-2002-09-08 Eric Sandall <sandalle AT sourcemage.org>
- * Fixed Bug #856
-
-2002-08-27 Jason Flatt <jasonflatt AT wizard.com>
- * DEPENDS: Cleaned up. Changed espgs from optional_depends to depends.
- * HISTORY: Reformatted this file.
-
-2002-08-17 Jason Flatt <jasonflatt AT wizard.com>
- * cupsomatic: Compressed as it is rather large. Doing my part for the
- dial-up users of the world. :^)
-
-2002-08-16 Jason Flatt <jasonflatt AT wizard.com>
- * cupsomatic: Added to spell for easy access during install.
-
-2002-08-15 Jason Flatt <jasonflatt AT wizard.com>
- * DEPENDS: Modified how CUPS is installed w/Samba to eliminate a
- (unreported) bug in the original code.
- * PRE_BUILD: Modified the conflict checking to hopefully work a little
- better.
- * Added a suggestion from Eric Sandall to hopefully kill bug # 237.
- * Revamped how the init scripts are installed and setup.
-
-2002-08-02 Jason Flatt <jasonflatt AT wizard.com>
- * DETAILS: Changed LICENSE= and MD5= to LICENSE[x]= and MD5[x]=.
- * HISTORY: Reformatted this file.
-
-2002-06-24 Jason Flatt <jasonflatt AT wizard.com>
- * DETAILS: Forgot to add ARCHIVE="off" for previous bug fix.
-
-2002-06-23 Jason Flatt <jasonflatt AT wizard.com>
- * CONFLICTS: Removed to modify the way cups and gnulpr handle
conflicts
- with each other (fixes bug # 207).
- * PRE_BUILD: Added to modify the way cups and gnulpr handle conflicts
with
- each other (fixes bug # 207).
-
-2002-06-22 Jason Flatt <jasonflatt AT wizard.com>
- * DETAILS: Added LICENSE and MD5 to DETAILS.
-
-2002-06-10 Jason Flatt <jasonflatt AT wizard.com>
- * DETAILS: Updated VERSION to 1.1.15 (and source to include -1 on
version).
-
-2002-06-10 Jason Flatt <jasonflatt AT wizard.com>
- * USEGCC2: Removed as it compiles w/gcc 3.1 and executes.
-
-2002-05-29 Jason Flatt <jasonflatt AT wizard.com>
- * USEGCC2: Added in preparation for gcc3 upgrade.
-
-2002-05-08 Jason Flatt <jasonflatt AT wizard.com>
- * HISTORY: Reformatted to conform to new template.
-
-2002-04-21 Jason Flatt <jasonflatt AT wizard.com>
- * CONFLICTS: Added.
- * DETAILS: Updated long description for improved readability.
- * HISTORY: Corrected this file.
-
-2002-04-16 Jason Flatt <jasonflatt AT wizard.com>
- * DEPENDS: Added support for SAMBA printers as per Giovanni Lopedote.
-
-2002-03-24 Jason Flatt <jasonflatt AT wizard.com>
- * DETAILS: Added MAINTAINER=jasonflatt AT wizard.com to DETAILS file.
- * HISTORY: Added this file.
-
diff --git a/printer/cups-old/Makefile.diff b/printer/cups-old/Makefile.diff
deleted file mode 100644
index 2d1349e..0000000
--- a/printer/cups-old/Makefile.diff
+++ /dev/null
@@ -1,33 +0,0 @@
---- Makefile.old 2003-05-27 21:52:27.000000000 -0700
-+++ Makefile 2003-05-27 21:52:49.000000000 -0700
-@@ -89,30 +89,6 @@
- echo Installing cups-config script...
- $(INSTALL_DIR) $(BINDIR)
- $(INSTALL_SCRIPT) cups-config $(BINDIR)/cups-config
-- echo Installing startup script...
-- if test "x$(INITDIR)" != "x"; then \
-- $(INSTALL_DIR) $(BUILDROOT)$(INITDIR)/init.d; \
-- $(INSTALL_SCRIPT) cups.sh $(BUILDROOT)$(INITDIR)/init.d/cups;
\
-- $(INSTALL_DIR) $(BUILDROOT)$(INITDIR)/rc0.d; \
-- $(INSTALL_SCRIPT) cups.sh
$(BUILDROOT)$(INITDIR)/rc0.d/K00cups; \
-- $(INSTALL_DIR) $(BUILDROOT)$(INITDIR)/rc2.d; \
-- $(INSTALL_SCRIPT) cups.sh
$(BUILDROOT)$(INITDIR)/rc2.d/S99cups; \
-- $(INSTALL_DIR) $(BUILDROOT)$(INITDIR)/rc3.d; \
-- $(INSTALL_SCRIPT) cups.sh
$(BUILDROOT)$(INITDIR)/rc3.d/S99cups; \
-- $(INSTALL_DIR) $(BUILDROOT)$(INITDIR)/rc5.d; \
-- $(INSTALL_SCRIPT) cups.sh
$(BUILDROOT)$(INITDIR)/rc5.d/S99cups; \
-- fi
-- if test "x$(INITDIR)" = "x" -a "x$(INITDDIR)" != "x"; then \
-- $(INSTALL_DIR) $(BUILDROOT)$(INITDDIR); \
-- if test "$(INITDDIR)" =
"/System/Library/StartupItems/PrintingServices"; then \
-- $(INSTALL_SCRIPT) cups.osx
$(BUILDROOT)$(INITDDIR)/PrintingServices; \
-- $(INSTALL_DATA) cups.plist
$(BUILDROOT)$(INITDDIR)/StartupParameters.plist; \
-- $(INSTALL_DIR)
$(BUILDROOT)$(INITDDIR)/Resources/English.lproj; \
-- $(INSTALL_DATA) cups.strings
$(BUILDROOT)$(INITDDIR)/Resources/English.lproj/Localizable.strings; \
-- else \
-- $(INSTALL_SCRIPT) cups.sh
$(BUILDROOT)$(INITDDIR)/cups; \
-- fi \
-- fi
-
- #
- # Install source and header files...
diff --git a/printer/cups-old/PRE_BUILD b/printer/cups-old/PRE_BUILD
deleted file mode 100755
index 8ececd7..0000000
--- a/printer/cups-old/PRE_BUILD
+++ /dev/null
@@ -1,6 +0,0 @@
-default_pre_build &&
-cd $SOURCE_DIRECTORY &&
-
-patch -p0 < $SCRIPT_DIRECTORY/xpdf-pl3.patch &&
-patch -p0 < $SCRIPT_DIRECTORY/Makefile.diff
-
diff --git a/printer/cups-old/PROVIDES b/printer/cups-old/PROVIDES
deleted file mode 100755
index 7c846a0..0000000
--- a/printer/cups-old/PROVIDES
+++ /dev/null
@@ -1 +0,0 @@
-CUPS
diff --git a/printer/cups-old/TRIGGERS b/printer/cups-old/TRIGGERS
deleted file mode 100755
index 9b329f7..0000000
--- a/printer/cups-old/TRIGGERS
+++ /dev/null
@@ -1,6 +0,0 @@
-
-if is_depends_enabled $SPELL linux-pam; then
- on_cast linux-pam cast_self
-fi &&
-
-on_cast gnutls check_self
diff --git a/printer/cups-old/cups-1.1.23-source.tar.bz2.sig
b/printer/cups-old/cups-1.1.23-source.tar.bz2.sig
deleted file mode 100644
index 0f074bf..0000000
Binary files a/printer/cups-old/cups-1.1.23-source.tar.bz2.sig and /dev/null
differ
diff --git a/printer/cups-old/init.d/cups-old
b/printer/cups-old/init.d/cups-old
deleted file mode 100755
index c35f34e..0000000
--- a/printer/cups-old/init.d/cups-old
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/bash
-
-PROGRAM=/usr/sbin/cupsd
-RUNLEVEL=3
-if [ -x /usr/sbin/ptal-init ]; then
- NEEDS="hpoj +network +remote_fs"
-elif [ -x /usr/sbin/hpiod ]; then
- NEEDS="hplip +network +remote_fs"
-else
- NEEDS="+network +remote_fs"
-fi
-
-. /etc/init.d/smgl_init
diff --git a/printer/cups-old/xpdf-pl3.patch b/printer/cups-old/xpdf-pl3.patch
deleted file mode 100644
index fdd7746..0000000
--- a/printer/cups-old/xpdf-pl3.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff -Naur pdftops/XRef.cxx pdftops/XRef.cxx
---- pdftops/XRef.cxx 2005-02-22 10:27:40.025289672 -0800
-+++ pdftops/XRef.cxx 2005-02-22 10:27:57.643611280 -0800
-@@ -527,6 +527,9 @@
- } else {
- keyLength = 5;
- }
-+ if (keyLength > 16) {
-+ keyLength = 16;
-+ }
- permFlags = permissions.getInt();
- if (encVersion >= 1 && encVersion <= 2 &&
- encRevision >= 2 && encRevision <= 3) {
diff --git a/printer/cups/BUILD b/printer/cups/BUILD
deleted file mode 100755
index 9fc4558..0000000
--- a/printer/cups/BUILD
+++ /dev/null
@@ -1,24 +0,0 @@
-# prevent install of init scripts and Mac OS X localization bundle dir
-OPTS="--without-rcdir --without-bundledir $OPTS" &&
-
-# set language options
-if [[ $EXTRA_LANG == n ]]; then
- OPTS="--without-languages $OPTS"
-else
- if [[ $CUPS_LANG == all ]]; then
- OPTS="--with-languages $OPTS"
- else
- OPTS="--with-languages=$CUPS_LANG $OPTS"
- fi
-fi &&
-
-OPTS="--libdir=$INSTALL_ROOT/usr/lib $CUPS_OPTS $OPTS" &&
-OPTS="$OPTS CC=gcc CXX=g++" &&
-OPTS+=" --disable-static" &&
-
-# needed for dbus 1.14
-if is_depends_enabled $SPELL dbus;then
- OPTS+=" --with-dbusdir=$INSTALL_ROOT/usr/share/dbus-1"
-fi &&
-
-default_build
diff --git a/printer/cups/CONFIGURE b/printer/cups/CONFIGURE
deleted file mode 100755
index 42c6b5c..0000000
--- a/printer/cups/CONFIGURE
+++ /dev/null
@@ -1,17 +0,0 @@
-. $GRIMOIRE/FUNCTIONS &&
-
-persistent_remove CUPS_VER &&
-
-config_query EXTRA_LANG "Do you want to build extra languages?" n
-
-if [[ $EXTRA_LANG == y ]]; then
- config_query_list CUPS_LANG "Which additional language to install?" \
- all de es fr ja pl sv
-fi &&
-
-config_query_option CUPS_OPTS \
- "Do you want to enable raw printing" \
- n \
- '--enable-raw-printing' \
- '--disable-raw-printing'
-
diff --git a/printer/cups/CONFLICTS b/printer/cups/CONFLICTS
deleted file mode 100755
index 73a4927..0000000
--- a/printer/cups/CONFLICTS
+++ /dev/null
@@ -1,2 +0,0 @@
-conflicts gnulpr &&
-conflicts cups-old
diff --git a/printer/cups/DEPENDS b/printer/cups/DEPENDS
deleted file mode 100755
index 1c8a34a..0000000
--- a/printer/cups/DEPENDS
+++ /dev/null
@@ -1,43 +0,0 @@
-depends zlib &&
-depends -sub CXX gcc &&
-depends PKG-CONFIG &&
-
-depends shared-mime-info &&
-
-optional_depends avahi \
- '--with-dnssd=avahi' \
- '--with-dnssd=no' \
- 'use Avahi Service Discovery' &&
-
-optional_depends libpaper \
- '--enable-libpaper' \
- '--disable-libpaper' \
- 'Enable libpaper support' &&
-
-optional_depends "libusb" \
- '--enable-libusb' \
- '--disable-libusb' \
- 'usb printers' &&
-optional_depends "dbus" \
- "--enable-dbus" \
- "--disable-dbus" \
- "hardware notifications" &&
-
-optional_depends "linux-pam" \
- "--enable-pam" \
- "--disable-pam" \
- "for pluggable authentication" &&
-
-optional_depends gnutls "--with-tls=gnutls" "" 'security' &&
-
-optional_depends "acl" \
- "--enable-acl"
\
- "--disable-acl"
\
- "for file system access control lists support" &&
-
-optional_depends krb5 '--enable-gssapi' '--disable-gssapi' 'GSSAPI support
(deprecated)' &&
-optional_depends systemd '--with-systemd' '--without-systemd' 'SystemD
support' &&
-
-optional_depends libxcrypt '' '' 'crypto support' &&
-suggest_depends ghostscript '' '' 'to print Postscript files' &&
-suggest_depends cups-filters '' '' 'extra backends and filters'
diff --git a/printer/cups/DETAILS b/printer/cups/DETAILS
deleted file mode 100755
index e276143..0000000
--- a/printer/cups/DETAILS
+++ /dev/null
@@ -1,25 +0,0 @@
- SPELL=cups
- VERSION=2.4.7
- SECURITY_PATCH=19
- SOURCE=$SPELL-$VERSION-source.tar.gz
-SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
-
SOURCE_URL[0]=https://github.com/OpenPrinting/cups/releases/download/v$VERSION/$SOURCE
- SOURCE2=$SOURCE.sig
- SOURCE2_URL[0]=${SOURCE_URL[0]}.sig
- SOURCE_GPG=op.gpg:$SOURCE.sig:UPSTREAM_KEY
- SOURCE2_IGNORE=signature
- WEB_SITE=https://github.com/OpenPrinting/cups
- ENTERED=20010922
- LICENSE[0]=APACHE
- KEYWORDS="printer"
- SHORT="Common Unix Printing System is a portable printing layer"
-cat << EOF
-OpenPrinting CUPS Sources (Apple CUPS + common patches)
-
-CUPS provides a portable printing layer for UNIX-based operating systems.
-It was developed to promote a standard printing solution. It is the standard
-printing system in Mac OS X and most Linux distributions.
-CUPS uses the Internet Printing Protocol ("IPP") as the basis for managing
-print jobs and queues and adds network printer browsing and PostScript
Printer
-Description ("PPD") based printing options to support real-world printing.
-EOF
diff --git a/printer/cups/FINAL b/printer/cups/FINAL
deleted file mode 100755
index 604cb27..0000000
--- a/printer/cups/FINAL
+++ /dev/null
@@ -1,2 +0,0 @@
-default_final &&
-update-mime-database /usr/share/mime/
diff --git a/printer/cups/HISTORY b/printer/cups/HISTORY
deleted file mode 100644
index 77ed9af..0000000
--- a/printer/cups/HISTORY
+++ /dev/null
@@ -1,758 +0,0 @@
-2024-01-22 Treeve Jelbert <treeve AT sourcemage.org>
- * DEPENDS: fix various flags
-
-2024-01-21 Treeve Jelbert <treeve AT sourcemage.org>
- * DEPENDS: optional xlibxcrypt
-
-2023-09-21 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 2.4.7
- SECURITY_PATCH++ fix CVE-2023-4504
-
-2023-06-22 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 2.4.6
- SECURITY_PATCH++ fix CVE-2023-34241
-
-2023-06-14 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 2.4.5
-
-2023-06-07 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 2.4.4
-
-2023-06-03 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 2.4.3
- SECURITY_PATCH++; fixes CVE-2023-32324
-
-2022-07-27 Vlad Glagolev <stealth AT sourcemage.org>
- * DEPENDS: switch to PKG-CONFIG provider (automated)
-
-2022-05-26 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 2.4.2
- SECURITY_PATCH++; fixes CVE-2022-26691
-
-2022-04-19 Treeve Jelbert <treeve AT sourcemage.org>
- * DEPENDS: revert to old enable/disable format
- * BUILD: use /usr/share/dbus-1 for dbus files; needed for dbus-1.14
-
-2022-01-28 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 2.4.1
- * op.gpg: update Zdenek Dohnal
-
-2021-11-29 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS version 2.4.0
- * CONFIGURE DEPENDS: change all options
- {en,dis}able-xxx => with{,out}=xxx
- deprecate Kerberos support
- * op.gpg: add Zdenek Dohnal
-
-2021-03-15 Treeve Jelbert <treeve AT sourcemage.org>
- * TRIGGERS: deleted, redundant
-
-2021-02-03 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS version 2.3.3op2
- SECURITY_PATCH++ fixes CVE-2020-10001
-
-2020-11-28 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS version 2.3.3op1
- now download from OpenPrinting, as Apple seems to abandoned cups.
- * cups.gpg: deleted
- * op.gpg: added "Michael R Sweet <michael.r.sweet AT gmail.com>"
-
-2020-06-10 Treeve Jelbert <treeve AT sourcemage.org>
- * DEPENDS: remove obsolete options
-
-2020-05-26 Ismael Luceno <ismael AT sourcemage.org>
- * DETAILS: Removed CUPS_VER
-
-2020-04-29 Florian Franzmann <bwlf AT bandrate.org>
- * DETAILS: version 2.3.3, SECURITY_PATCH++, fixes CVE-2020-3898,
- CVE-2019-8842
-
-2019-12-14 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 2.3.1
- SECURITY_PATCH++ fixes CVE-2019-2228
-
-2019-08-24 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 2.3.0
-
-2019-08-16 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 2.2.12
- SECURITY_PATCH++ fixes CVE-2019-8696 and CVE-2019-8675
-
-2019-03-23 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 2.2.11
-
-2018-12-08 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 2.2.8
- SECURITY_PATCH++ fixes CVE-2018-4700
-
-2011-11-08 Florian Franzmann <bwlf AT bandrate.org>
- * DETAILS: version 2.2.9
-
-2018-06-08 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 2.2.8
-
-2018-03-28 Treeve Jelbert <treeve AT sourcemage.org>
- * cups.gpgL add 35DA97EB "CUPS.org <security AT cups.org>"
-
-2017-11-09 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 2.2.6
-
-2017-10-16 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 2.2.5
-
-2017-07-04 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 2.2.4
-
-2017-03-30 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 2.2.3
-
-2017-01-29 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 2.2.2
-
-2016-10-24 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 2.2.1
-
-2016-09-14 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 2.2.0
-
-2016-07-09 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: add gpg checking
- * cup.gpg: added 08D76223 CUPS.org <security AT cups.org>
- * DETAILS: version 2.1.4
-
-2016-02-28 Ismael Luceno <ismael AT sourcemage.org>
- * DEPENDS: Fixed typo, "sysytemd" -> "systemd"
-
-2016-02-15 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 2.1.3
-
-2015-12-23Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 2.1.2
-
-2015-09-01 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 2.1.0
- * DEPENDS: add optional systemd
-
-2015-08-17 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 2.0.4
-
-2015-06-10 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 2.0.3
- SECURITY_PATCH++, fixes CVE-2015-1158/CVE-2015-1159
-
-2015-02-22 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 2.0.2
- SECURITY_PATCH++
-
-2014-11-19 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 2.0.1
- * DEPENDS: add optional avahi
- * BUILD: disable static - causes build problems
-
-2014-10-08 Treeve Jelbert <treeve AT sourcemage.org>
- * DEPENDS: add flags for acl
- remove references to openssl
- mdnsresponder is now optional
-
-2014-10-02 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 2.0.0
- * DEPENDS, CONFIGURE: openssl is no longer supported
-
-2014-09-02 Treeve Jelbert <treeve AT sourcemage.org>
- * DEPENDS: add krb5
- * FINAL: specify default_final
-
-2014-08-31 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.7.5
- SECURITY_PATCH++, fix CVE-2014-5029/5030/5031
-
-2014-08-23 Treeve Jelbert <treeve AT sourcemage.org>
- * DEPENDS, CONFIGURE: improve SSL/gnutls choice - remive obsolete
flags
-
-2014-08-19 Treeve Jelbert <treeve AT sourcemage.org>
- * DEPENDS: openssl => SSL
- fix ssl
-
-2014-07-23 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.7.4
- SECURITY_PATCH++, fix CVE-2014-353
-
-2014-05-28 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.7.3
- * DEPEDNS: add mdnsresponder
-
-2014-01-9 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.7.1
-
-2013-10-25 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.7.0
-
-2013-10-20 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.6.4
-
-2013-09-14 Robin Cook <rcook AT wyrms.net>
- * BUILD: force to use gcc as will use clang by default and fail
-
-2013-07-12 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.6.3
-
-2013-05-30 Vlad Glagolev <stealth AT sourcemage.org>
- * DETAILS: fixed source url
-
-2013-03-19 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.6.2
-
-2013-02-24 Treeve Jelbert <treeve AT sourcemage.org>
- * DEPENDS: adjust flags for openssl & gnutls
-
-2012-07-28 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.6.1
-
-2012-07-27 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.6.0
- * DEPENDS: remove JPEG, tiff, poppler, ghostscript, libpng,
- openldap and openslp
- these have all been removed from CUPS.
- The corresponding filters are available from cups-filters
- add shared-mime-info
- add suggest_depends cups-filters
- * CONFIGURE: remove obsolete options
- * FINAL, POST_REMOVE: added - run update-mime-database
-
-2012-05-15 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.5.3
-
-2012-05-09 Treeve Jelbert <treeve AT sourcemage.org>
- * DEPENDS: libusb => LIBUSB
-
-2012-04-22 Treeve Jelbert <treeve AT sourcemage.org>
- * DEPENDS: python => PYTHON
-
-2012-02-06 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.5.2
-
-2012-02-04 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.5.1
-
-2011-11-23 Treeve Jelbert <treeve AT sourcemage.org>
- * INSTALL, 70-cups-libusb.rules: deleted
- the udev rule is not needed and invalid.
- udevd[1108]: invalid ENV attribute, 'DEVTYPE' can not be set
- usb printer works without this
-
-2011-07-30 Florian Franzmann <bwlf AT bandrate.org>
- * DEPENDS: changed dependency on g++ to dependency on gcc with
- sub-depends on CXX (scripted)
-
-2011-07-30 Vlad Glagolev <stealth AT sourcemage.org>
- * BUILD: don't install extra lang dir (needed for Mac OS X)
- * DETAILS: PATCHLEVEL=1
-
-2011-07-27 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.5.0
-
-2011-06-29 Ladislav Hagara <hgr AT vabo.cz>
- * DETAILS: 1.4.7
-
-2011-01-07 Vlad Glagolev <stealth AT sourcemage.org>
- * DETAILS: updated spell to 1.4.6
-
-2010-11-11 Ladislav Hagara <hgr AT vabo.cz>
- * DETAILS: 1.4.5, SECURITY_PATCH=5
-
-2010-11-03 Ladislav Hagara <hgr AT vabo.cz>
- * DEPENDS: jpeg -> JPEG
-
-2010-06-17 Ladislav Hagara <hgr AT vabo.cz>
- * DETAILS: 1.4.4, SECURITY_PATCH=4
-
-2010-03-31 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.4.3
- * PRE_BUILD, serial.patch: deleted
-
-2009-11-16 Treeve Jelbert <treeve AT sourcemage.org>
- * 70-cups-libusb.rules: fix syntax error
-
-2009-11-10 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.4.2
-
-2009-10-11 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: PATCHLEVEL=1
- * INSTALL, cups/70-cups-libusb.rules: added
- fix from fedora so that can print to usb printers using libusb
- the user must be a member of the lp group
-
-2009-09-13 Ladislav Hagara <hgr AT vabo.cz>
- * DETAILS: 1.4.1
-
-2009-08-29 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.4.0 (devel)
-
-2009-07-04 Andraž "ruskie" Levstik <ruskie+f03a580f AT codemages.net>
- * BUILD: added CUPS_OPTS
- * CONFIGURE: plenty of extra options
- * DEPENDS: some dependencies are completely optional
-
-2009-07-03 Ladislav Hagara <hgr AT vabo.cz>
- * DETAILS: 1.3.11
-
-2009-06-09 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.4rc1 (devel)
-
-2009-05-29 Eric Sandall <sandalle AT sourcemage.org>
- * BUILD: Install libraries to $INSTALL_ROOT/usr/lib instead of
- $INSTALL_ROOT/usr/lib64 on 64bit arch
-
-2009-05-21 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.4b3 (devel)
-
-2009-04-19 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.3.10
-
-2009-02-06 Eric Sandall <sandalle AT sourcemage.org>
- * serial.patch: Include linux/types.h before linux/serial.h
- Based on Julien's hal/probe-serial.patch
- Fixes Bug#15065
- * PRE_BUILD: Apply serial.patch
-
-2008-12-16 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.4b2 (devel)
-
-2008-10-28 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.4b1 (devel)
- * PREPARE: added, support for devel/stable versions
- * DEPENDS: add optional libusb
- POSTSCRIPT-INTERPRETER -> ghostscript
-
-2008-10-10 Vlad Glagolev <stealth AT sourcemage.org>
- * DETAILS: updated spell to 1.3.9; renewed SOURCE_URL[0];
SECURITY_PATCH+=1
-
-2008-08-22 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
- * DETAILS: added two mirrors of the first and moved it to the last
- place; the source copy was corrupted #14647
-
-2008-08-18 Julien "_kaze_" ROZO <julien AT rozo.org>
- * BUILD: switched --without-rcdir and $OPTS to follow best practice
- * DEPENDS: fixed suggest_depends, so "to print Postscript files" is
- not passed as a configure flag
-
-2008-07-23 Vlad Glagolev <stealth AT sourcemage.org>
- * DETAILS: updated spell to 1.3.8, quoting the paths!
-
-2008-04-02 Florian Franzmann <bwlf AT bandrate.org>
- * DETAILS: updated to 1.3.7, SECURITY_PATCH=1, fixes
- CVE-2008-0047 and CVE-2008-1373
-
-2008-02-20 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.3.6
-
-2008-01-28 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
- * TRIGGERS: removed is_depends_enabled.function reference
-
-2007-12-18 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.3.5
-
-2007-11-11 David Kowis <dkowis AT shlrm.org>
- * BUILD was very much broke. Not sure if it's even the right spot
- for what's there.
-
-2007-10-31 Ladislav Hagara <hgr AT vabo.cz>
- * DETAILS: 1.3.4
-
-2007-09-28 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.3.3
-
-2007-09-19 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.3.2
-
-2007-09-15 George Sherwood <george AT beernabeer.com>
- * DETAILS: Updated to version 1.3.1. Removed all broken mirrors.
-
-2007-08-14 David Brown <dmlb2000 AT gmail.com>
- * DEPENDS: fixed syntax errors in previous commit
-
-2007-08-14 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.3.0
- * DEPENDS: add pkgconfig, optional openldap
- * BUILD: remove sedit, it breaks configure
- remove obsolete comments
-
-2007-08-09 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: update description
-
-2007-07-12 Treeve Jelbert <treeve AT sourcemage.org>
- * DEPENDS: add optional gnutls
- fixes bug #13105
-
-2007-07-12 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: remove mention of espgs
- * DEPENDS: add 'suggest_depends POSTSCRIPT-INTERPRETER'
- fixes bug #13308
-
-2007-07-12 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.2.12
-
-2007-05-10 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.2.11
-
-2007-03-31 Elisamuel Resto <ryuji AT mages.ath.cx>
- * DEPENDS: Fixed a typo in the description for the openslp depend
-
-2007-03-20 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.2.10
-
-2007-03-15 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.2.9
-
-2007-02-14 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.2.8
- * CONFIGURE: add French language support
-
-2007-02-14 Eric Sandall <sandalle AT sourcemage.org>
- * DEPENDS: Optionally depends on openslp (cupsd links against it)
-
-2006-11-16 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.2.7
- add SOURCEFORGE_URL
- disable easysoft urls, they don't seem to be updated anymore
-
-2006-11-07 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.2.6
-
-2006-10-21 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.2.5
-
-2006-10-20 Juuso Alasuutari <iuso AT sourcemage.org>
- * TRIGGERS: Rewritten to use is_depends_enabled, sources
- is_depends_enabled.function (remove it when is_depends_enabled
- is in stable sorcery).
-
-2006-10-05 Juuso Alasuutari <iuso AT sourcemage.org>
- * DEPENDS: Added optional_depends acl.
-
-2006-09-22 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: versioon 1.2.4
-
-2006-09-19 Juuso Alasuutari <iuso AT sourcemage.org>
- * TRIGGERS: Added check_self for gnutls cast.
-
-2006-09-10 George Sherwood <george AT beernabeer.com>
- * CONFIGURE: Added option to build no languages. Changed from
- config_query_multi since it wasn't working. Added all option.
- Addresses Bug #12935.
- * BUILD: Added options to build no, all or one extra language.
-
-2006-08-30 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: versioon 1.2.3
-
-2006-07-26 Treeve Jelbert <treeve AT sourcemage.org>
- * BUILD: stop install of xinetd scrip
- * xinetd/cups-lpd: add
-
-2006-07-26 Treeve Jelbert <treeve AT sourcemage.org>
- * CONFIGURE: add
- allow user choice of installed languages
- the choice 'none' is currently disabled, configure fails with it
- also only one language currently works
- * BUILD: add --without-rcdir
- fixes bug #12911
- add code for languages
-
-2006-07-25 Treeve Jelbert <treeve AT sourcemage.org>
- * DEPENDS: add optional dbus
-
-2006-07-19 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
- * DEPENDS: added g++ #12871
-
-2006-07-19 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: versioon 1.2.2
-
-2006-06-25 George Sherwood <george AT beernabeer.com>
- * DEPENDS: Removed depends gcc34
- * CONFLICTS: Added conflict cups-old
- * PROVIDES: Added file to provide CUPS
-
-2006-06-24 George Sherwood <george AT beernabeer.com>
- * DETAILS: Updated to version 1.2.1. Removed GCC_VERSION.
- Works with 4.0.3
- * xpdf-pl3.patch: Removed. Not needed.
- * Makefile.diff: Removed. Not needed.
- * PRE_BUILD: Removed. Patches not required.
-
-2006-06-16 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
- * PRE_BUILD: removed the conflict managment
- * CONFLICTS: readded
- * TRIGGERS: cleaned up
-
-2006-04-28 Arwed v. Merkatz <v.merkatz AT gmx.net>
- * PRE_BUILD: replaced 'gaze depends' call with
- fast_up_depends, bug #10661
-
-2006-03-12 Karsten Behrmann <BearPerson AT sourcemage.org>
- * DETAILS: (automated) Add KEYWORDS
-
-2005-10-09 Jason Flatt <jflatt AT sourcemage.org>
- * DEPENDS: Added missing deps on zlib, jpeg, tiff and libpng.
-
-2005-09-26 Jason Flatt <jflatt AT sourcemage.org>
- * BUILD, PRE_BUILD: Moved the Makefile patch code to PRE_BUILD.
- * DETAILS, cups-1.1.23-source.tar.bz2.sig: Converted from MD5 to GPG.
- Updated SOURCE_URLs.
- * DETAILS, DEPENDS: Removed dependency on espgs and noted it in the
- long description.
- * INSTALL: Removed, as it doesn't seem to be necessary.
-
-2005-09-16 Gareth Clay <gareth AT caffeinefuelled.co.uk>
- * init.d/cups: added some handling for the case where hplip is
- installed
-
-2005-08-25 Jason Flatt <jflatt AT sourcemage.org>
- * DEPENDS: Removed dependency on Samba (since cups really does nothing
- with it) (bug # 8245).
- * INSTALL: Removed code for creating Samba symlink (also bug # 8245).
-
-2005-07-30 Treeve Jelbert <treeve AT sourcemage.org>
- * PREPARE: deleted
-
-2005-07-22 Sergey Lipnevich <sergey AT sourcemage.org>
- * DEPENDS,DETAILS: use GCC 3.4, to work on AMD64 in particular;
- * DETAILS: remove ARCHIVE=off.
-
-2005-02-22 Eric Sandall <sandalle AT sourcemage.org>
- * xpdf-pl3.patch: Updated to CUPS 1.1.23
- * PRE_BUILD: Patch now applies with -p1
- cd to SOURCE_DIRECTORY (Bug #8299)
-
-2005-02-21 Seth Woolley <seth AT tautology.org>
- * DETAILS: update UPDATED for SECURITY FIX
- * PRE_BUILD: added patching for patch below
- * xpdf-pl3.patch: added for security fix
- authenticated access can overflow xpdftops routine
-
-2005-01-29 Arjan Bouter <abouter AT sourcemage.org>
- * INSTALL: converted spell_installed to spell_ok
-
-2005-01-23 Arjan Bouter <abouter AT sourcemage.org>
- * lowercase linux-pam
-
-2004-01-05 Eric Sandall <sandalle AT sourcemage.org>
- * DETAILS: Updated to 1.1.23 SECURITY FIX (Bug #7912)
- Expanded SHORT
-
-2004-11-22 Eric Sandall <sandalle AT sourcemage.org>
- * PRE_BUILD: Changed `exit 1` to `return 1` (Bug #7649)
-
-2004-10-30 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.2.2
- adjust urls to use $VERSION
-
-2004-09-16 Jason Flatt <jason AT flattfamily.com>
- * DETAILS: Version bump to 1.2.1 (bug # 7374).
- Corrected SOURCE_URL[0], moved it to position [3], created [0], [1]
- & [2] and arranged them in the order most likely to succeed.
-
-2004-08-29 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.2.1rc2
-
-2004-08-15 Jason Flatt <jason AT flattfamily.com>
- * DETAILS: Correctly spelled BUILD_API (bug # 7233).
- Removed MAINTAINER.
- * BUILD, DEPENDS, TRIGGERS: Cleaned up whitespace.
- * INSTALL: Simplified and cleaned up whitespace.
-
-2004-06-03 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.2.1rc1
- BUILD_API=2
- * BUILD: simplify
- * INSTALL: add
-
-2003-11-24 Jason Flatt <jason AT flattfamily.com>
- * DETAILS: Version bump to 1.1.20.
-
-2003-11-10 Jason Flatt <jason AT flattfamily.com>
- * DETAILS: Version bump to 1.1.20rc6.
-
-2003-10-27 Jason Flatt <jason AT flattfamily.com>
- * DETAILS: Updated MD5 and VERSION to 1.1.20rc5.
-
-2003-10-20 Jason Flatt <jason AT flattfamily.com>
- * HISTORY: Reformatted this file based on new standard.
-
-2003-10-09 Jason Flatt <jason AT flattfamily.com>
- * DETAILS: updated UPDATED so hpoj users don't get hosed
- * init.d/cups: added check for hpoj in NEEDS
-
-2003-09-19 Jason Flatt <jason AT flattfamily.com>
- * DETAILS: Version bump to 1.1.20rc2.
-
-2003-09-06 Jason Flatt <jason AT flattfamily.com>
- * DETAILS: Version bump to 1.1.20rc1.
-
-2003-08-22 hgg <hgreig AT bigpond.net.au>
- * DETAILS: Update UPDATED purely for test grimoire integration.
-
-2003-08-10 hgg <hgreig AT bigpond.net.au>
- * Revert on_dispel Linux-PAM cast_self (doesn't work the way it is
- documented)
-
-2003-07-28 Arwed v. Merkatz <v.merkatz AT gmx.net>
- * init.d/cups: updated to new init system
-
-2003-07-26 hgg <hgreig AT bigpond.net.au>
- * TRIGGERS: Update for Linux-PAM
-
-2003-06-23 hgg <hgreig AT bigpond.net.au>
- * DETAILS: ARCHIVE="off" fix in bugzilla bug #1068, reverting change
13315,
- keeping 13321.
- * PREPARE: Added to remove cache after fixing bug #1068
-
-2003-05-27 Jason Flatt <jason AT flattfamily.com>
- * DETAILS: Version bump to 1.1.19. Includes previous security fix.
-
-2003-05-27 Arwed v. Merkatz <v.merkatz AT gmx.net>
- * Apply security fix, see http://www.cups.org/str.php?L75
-
-2003-05-19 Jason Flatt <jason AT flattfamily.com>
- * BUILD: Update for ${INSTALL_ROOT}.
-
-2003-04-25 Jason Flatt <jason AT flattfamily.com>
- * Removed all references to cupsomatic since I am unable to find the
file
- on any public Web or FTP site, and since it has been replaced with
- foomatic-rip.
- * Also, some minor code clean up.
-
-2003-05-14 Seth Woolley <seth AT tautology.org>
- * BUILD: Added unpack for SOURCE2
-
-2003-05-02 Rob Verkuylen <rob AT verkuylen.net>
- * Copied /init.d/cups.sh to /init.d/cups. Step 1/3 in bug #3115.
-
-2003-04-25 Jason Flatt <jason AT flattfamily.com>
- * DETAILS: Updated MAINTAINER e-mail address.
-
-2003-04-25 Seth Woolley <seth AT tautology.org>
- * DETAILS: Modified to fix md5 for SOURCE2.
-
-2003-03-04 Jason Flatt <jason AT flattfamily.com>
- * Changed where the cupsomatic file was being installed (thanks to
- Christian Sonne [FreakCERS] for the heads up).
-
-2003-02-25 Jason Flatt <jasonflatt AT wizard.com>
- * Forgot to change the script from SGL to SMGL.
-
-2003-02-25 Jason Flatt <jasonflatt AT wizard.com>
- * Updated to use new init.d functionality.
-
-2003-01-30 Seth Woolley <seth AT tautology.org>
- * DETAILS: Added md5[1] for cupsomatic.
-
-2003-01-17 Jason Flatt <jasonflatt AT wizard.com>
- * lib_runlevel: Modified to pad date with zeros (%H) instead of spaces
- (%k). Fixes bug 2257, thanks to Robert Helgesson (rycee).
-
-2002-12-20 Jason Flatt <jasonflatt AT wizard.com>
- * DETAILS: Version update to 1.1.18.
-
-2002-11-01 Jason Flatt <jasonflatt AT wizard.com>
- * BUILD: Modified to use lib_runlevel for both parts of init script
- installation.
-
-2002-11-01 Jason Flatt <jasonflatt AT wizard.com>
- * BUILD: Fixed to take care of bug # 1542.
- * POST_INSTALL, PRE_REMOVE: Fixed to account for cups init script name
- change (thanks to Tom Garland).
- * Added a second cups init script to account for another bug which was
- discovered during the fixing and testing of the above two bugs. :^)
-
-2002-10-25 Jason Flatt <jasonflatt AT wizard.com>
- * HISTORY: Set correct date for MD5 removal entry.
-
-2002-10-25 Jason Flatt <jasonflatt AT wizard.com>
- * BUILD: Modified for init script stuff as per Neal Birch's
recomendations.
-
-2002-10-25 Jason Flatt <jasonflatt AT wizard.com>
- * DETAILS: Removed MD5 for cupsomatic as it changes frequently and I
- don't want to keep the spell from casting when I will not be able to
- keep up on the MD5.
-
-2002-10-23 Jason Flatt <jasonflatt AT wizard.com>
- * TRIGGERS: Added for optional_depends LinuxPAM.
-
-2002-10-20 Jason Flatt <jasonflatt AT wizard.com>
- * Changed the way the init script is done to address bug # 1358.
-
-2002-10-14 Jason Flatt <jasonflatt AT wizard.com>
- * DETAILS: Modified to address bug # 1180.
-
-2002-10-07 Jason Flatt <jasonflatt AT wizard.com>
- * DETAILS: Updated VERSION to 1.1.16.
-
-2002-10-03 Jason Flatt <jasonflatt AT wizard.com>
- * DETAILS: Updated MD5 for cupsomatic.
-
-2002-09-24 Jason Flatt <jasonflatt AT wizard.com>
- * CONFIGURE: Moved symlink queries to (hopefully fixes bug # 895).
- * cupsomatic: Removed and set it up to be downloaded during cast.
- * Makefile.diff: Re-added. (I have no idea what happened to that
file.)
-
-2002-09-08 Eric Sandall <sandalle AT sourcemage.org>
- * Fixed Bug #856
-
-2002-08-27 Jason Flatt <jasonflatt AT wizard.com>
- * DEPENDS: Cleaned up. Changed espgs from optional_depends to depends.
- * HISTORY: Reformatted this file.
-
-2002-08-17 Jason Flatt <jasonflatt AT wizard.com>
- * cupsomatic: Compressed as it is rather large. Doing my part for the
- dial-up users of the world. :^)
-
-2002-08-16 Jason Flatt <jasonflatt AT wizard.com>
- * cupsomatic: Added to spell for easy access during install.
-
-2002-08-15 Jason Flatt <jasonflatt AT wizard.com>
- * DEPENDS: Modified how CUPS is installed w/Samba to eliminate a
- (unreported) bug in the original code.
- * PRE_BUILD: Modified the conflict checking to hopefully work a little
- better.
- * Added a suggestion from Eric Sandall to hopefully kill bug # 237.
- * Revamped how the init scripts are installed and setup.
-
-2002-08-02 Jason Flatt <jasonflatt AT wizard.com>
- * DETAILS: Changed LICENSE= and MD5= to LICENSE[x]= and MD5[x]=.
- * HISTORY: Reformatted this file.
-
-2002-06-24 Jason Flatt <jasonflatt AT wizard.com>
- * DETAILS: Forgot to add ARCHIVE="off" for previous bug fix.
-
-2002-06-23 Jason Flatt <jasonflatt AT wizard.com>
- * CONFLICTS: Removed to modify the way cups and gnulpr handle
conflicts
- with each other (fixes bug # 207).
- * PRE_BUILD: Added to modify the way cups and gnulpr handle conflicts
with
- each other (fixes bug # 207).
-
-2002-06-22 Jason Flatt <jasonflatt AT wizard.com>
- * DETAILS: Added LICENSE and MD5 to DETAILS.
-
-2002-06-10 Jason Flatt <jasonflatt AT wizard.com>
- * DETAILS: Updated VERSION to 1.1.15 (and source to include -1 on
version).
-
-2002-06-10 Jason Flatt <jasonflatt AT wizard.com>
- * USEGCC2: Removed as it compiles w/gcc 3.1 and executes.
-
-2002-05-29 Jason Flatt <jasonflatt AT wizard.com>
- * USEGCC2: Added in preparation for gcc3 upgrade.
-
-2002-05-08 Jason Flatt <jasonflatt AT wizard.com>
- * HISTORY: Reformatted to conform to new template.
-
-2002-04-21 Jason Flatt <jasonflatt AT wizard.com>
- * CONFLICTS: Added.
- * DETAILS: Updated long description for improved readability.
- * HISTORY: Corrected this file.
-
-2002-04-16 Jason Flatt <jasonflatt AT wizard.com>
- * DEPENDS: Added support for SAMBA printers as per Giovanni Lopedote.
-
-2002-03-24 Jason Flatt <jasonflatt AT wizard.com>
- * DETAILS: Added MAINTAINER=jasonflatt AT wizard.com to DETAILS file.
- * HISTORY: Added this file.
diff --git a/printer/cups/POST_REMOVE b/printer/cups/POST_REMOVE
deleted file mode 100755
index 8abcc90..0000000
--- a/printer/cups/POST_REMOVE
+++ /dev/null
@@ -1 +0,0 @@
-update-mime-database /usr/share/mime/
diff --git a/printer/cups/PROVIDES b/printer/cups/PROVIDES
deleted file mode 100755
index 7c846a0..0000000
--- a/printer/cups/PROVIDES
+++ /dev/null
@@ -1 +0,0 @@
-CUPS
diff --git a/printer/cups/init.d/cups b/printer/cups/init.d/cups
deleted file mode 100755
index c35f34e..0000000
--- a/printer/cups/init.d/cups
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/bash
-
-PROGRAM=/usr/sbin/cupsd
-RUNLEVEL=3
-if [ -x /usr/sbin/ptal-init ]; then
- NEEDS="hpoj +network +remote_fs"
-elif [ -x /usr/sbin/hpiod ]; then
- NEEDS="hplip +network +remote_fs"
-else
- NEEDS="+network +remote_fs"
-fi
-
-. /etc/init.d/smgl_init
diff --git a/printer/cups/xinetd.d/cups-lpd b/printer/cups/xinetd.d/cups-lpd
deleted file mode 100644
index 499073f..0000000
--- a/printer/cups/xinetd.d/cups-lpd
+++ /dev/null
@@ -1,11 +0,0 @@
-service printer
-{
- socket_type = stream
- protocol = tcp
- wait = no
- user = lp
- group = lp
- passenv =
- server = /usr/lib/cups/daemon/cups-lpd
- server_args = -o document-format=application/octet-stream
-}
diff --git a/printer/cupsddk/DEPENDS b/printer/cupsddk/DEPENDS
deleted file mode 100755
index f195df0..0000000
--- a/printer/cupsddk/DEPENDS
+++ /dev/null
@@ -1 +0,0 @@
-depends CUPS
diff --git a/printer/cupsddk/DETAILS b/printer/cupsddk/DETAILS
deleted file mode 100755
index a165edc..0000000
--- a/printer/cupsddk/DETAILS
+++ /dev/null
@@ -1,21 +0,0 @@
- SPELL=cupsddk
- VERSION=1.2.3
-
SOURCE_HASH=sha512:c898116f303c22f6f227d4327de56ddf07b5fb6ef0d66e61b01e064fc1911d596f43bf8acecab76af4c30f8a2603897154d7f37f1c7452e716c221968a7515a7
- SOURCE=${SPELL}-${VERSION}-source.tar.bz2
-SOURCE_DIRECTORY=${BUILD_DIRECTORY}/${SPELL}-${VERSION}
- SOURCE_URL[0]=ftp://ftp.easysw.com/pub/${SPELL}/${VERSION}/${SOURCE}
- WEB_SITE=http://www.cups.org/ddk.php
- LICENSE[0]=GPL
- ENTERED=20040414
- KEYWORDS="printer"
- SHORT="A suite of utilities that can be used to develop printer
drivers."
-cat << EOF
-
-The CUPS Driver Development Kit (DDK) provides a suite of standard drivers, a
-PPD file compiler, and other utilities that can be used to develop printer
-drivers for CUPS and other printing environments. CUPS provides a portable
-printing layer for UNIX®-based operating systems. The CUPS DDK provides the
-means for mass-producing PPD files and drivers/filters for CUPS-based printer
-drivers.
-
-EOF
diff --git a/printer/cupsddk/HISTORY b/printer/cupsddk/HISTORY
deleted file mode 100644
index abc8c4e..0000000
--- a/printer/cupsddk/HISTORY
+++ /dev/null
@@ -1,42 +0,0 @@
-2007-10-15 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.2.3
-
-2007-09-29 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.2.1
-
-2007-07-15 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.2.0
-
-2007-03-20 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.1.1
-
-2007-02-18 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.1.0
-
-2006-10-03 Juuso Alasuutari <iuso AT sourcemage.org>
- * DETAILS: [automated] Removed UPDATED.
-
-2006-09-21 Juuso Alasuutari <iuso AT sourcemage.org>
- * DETAILS: [automated] Removed BUILD_API=2.
-
-2006-06-25 George Sherwood <george AT beernabeer.com>
- * DEPENDS: Changed to CUPS from cups
-
-2006-03-12 Karsten Behrmann <BearPerson AT sourcemage.org>
- * DETAILS: (automated) Add KEYWORDS
-
-2005-11-29 Seth Woolley <seth AT tautology.org>
- * DETAILS: MD5 -> SHA512
-
-2005-09-06 Jason Flatt <jflatt AT sourcemage.org>
- * DETAILS: Version bunp to 1.0.1.
- Added a second SOURCE_URL (and changed the order).
-
-2004-09-19 Jason Flatt <jflatt AT sourcemage.org>
- * DETAILS: Version bump to 1.0.
- Filled in empty MD5[0].
- Added BUILD_API=2.
-
-2004-04-14 Jason Flatt <jflatt AT sourcemage.org>
- * Created this spell.
-
diff --git a/printer/gimp-print/DEPENDS b/printer/gimp-print/DEPENDS
deleted file mode 100755
index 47b589d..0000000
--- a/printer/gimp-print/DEPENDS
+++ /dev/null
@@ -1 +0,0 @@
-optional_depends "CUPS" "--with-cups" "" "for cups support"
diff --git a/printer/gimp-print/DETAILS b/printer/gimp-print/DETAILS
deleted file mode 100755
index b46a450..0000000
--- a/printer/gimp-print/DETAILS
+++ /dev/null
@@ -1,35 +0,0 @@
- SPELL=gimp-print
- VERSION=4.2.7
-
SOURCE_HASH=sha512:c86a725f2d0baac501db3ff1691b1d83be8bad549a45a6ac020dcd610c16678bd2c111c40be25fc3a6a932c3c7f8931e4b372acba17198248a1ab530e516195a
- SOURCE=${SPELL}-${VERSION}.tar.gz
-SOURCE_DIRECTORY=${BUILD_DIRECTORY}/${SPELL}-${VERSION}
-
SOURCE_URL[0]=http://downloads.sourceforge.net/sourceforge/${SPELL}/${SOURCE}
- WEB_SITE=http://gimp-print.sourceforge.net
- LICENSE[0]=GPL
- ENTERED=20010922
- UPDATED=20020501
- KEYWORDS="printer"
- SHORT="Gimp-Print is a collection of very high quality printer
drivers."
-cat << EOF
-
-Gimp-Print is a collection of very high quality printer drivers for
-UNIX/Linux. The goal of this project is uncompromising print quality and
-robustness. Included with this package is the Print plugin for the GIMP
-(hence the name), a CUPS driver, and a driver for Ghostscript that may be
-compiled into that package. This driver package is Foomatic-compatible to
-enable plug and play with many print spoolers. In addition, various printer
-maintenance utilities are included. Many users report that the quality of
-Gimp-Print on high end Epson Stylus printers matches or exceeds the quality
-of the drivers supplied for Windows and Macintosh.
-
-NOTE: the three spells cups, espgs and gimp-print represent a circular
- dependency relationship. If you want all three spells installed, cast
- espgs first, answering n to gimp-print. Then cast cups. Then cast espgs
- again with the -r -c options and answer y to gimp-print and y to
- gimp-prints optional_depends of cups. Like so:
-
- cast espgs # No to gimp-print
- cast cups
- cast -r -c espgs # Yes to gimp-print and yes to cups
-
-EOF
diff --git a/printer/gimp-print/HISTORY b/printer/gimp-print/HISTORY
deleted file mode 100644
index 5e99430..0000000
--- a/printer/gimp-print/HISTORY
+++ /dev/null
@@ -1,154 +0,0 @@
-2015-05-25 Thomas Orgis <sobukus AT sourcemage.org>
- * DETAILS: remove SOURCEFORGE_URL usage (automated)
-
-2006-09-21 Juuso Alasuutari <iuso AT sourcemage.org>
- * DETAILS: [automated] Removed BUILD_API=2.
-
-2006-06-25 George Sherwood <george AT beernabeer.com>
- * DEPENDS: Changed to CUPS from cups
-
-2006-03-12 Karsten Behrmann <BearPerson AT sourcemage.org>
- * DETAILS: (automated) Add KEYWORDS
-
-2005-11-29 Seth Woolley <seth AT tautology.org>
- * DETAILS: MD5 -> SHA512
-
-2005-07-30 Treeve Jelbert <treeve AT sourcemage.org>
- * PREPARE: deleted
- * DETAILS: remove devel version, which is superceded by guten-print
-
-2004-09-27 Clement MATHIEU <cykl AT mAdchAt.org>
- * DETAILS: version 4.2.7 use .gz
-
-2004-08-26 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 5.0.0-beta2
- use .bz2
-
-2004-07-15 Jason Flatt <jflatt AT sourcemage.org>
- * DETAILS: Updated to version 4.2.7.
- Added BUILD_API=2.
-
-2004-07-03 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 5.0.0-beta1 (devel)
- * PREPARE: added
- allow choice of of devel or stable versions
-
-2004-04-14 Jason Flatt <jflatt AT sourcemage.org>
- * DETAILS: Updated to version 4.2.7-pre1.
- Removed MAINTAINER.
-
-2004-01-14 Jason Flatt <jason AT flattfamily.com>
- * DETAILS: Updated to version 4.2.6.
-
-2003-12-06 Jason Flatt <jason AT flattfamily.com>
- * DETAILS: Updated to version 4.2.6-rc2.
-
-2003-11-18 Jason Flatt <jason AT flattfamily.com>
- * DETAILS: Updated to version 4.2.6-rc1.
-
-2003-10-20 Jason Flatt <jason AT flattfamily.com>
- * DETAILS: Updated to version 4.2.6-pre3.
-
-2003-10-20 Jason Flatt <jason AT flattfamily.com>
- * HISTORY: Reformatted this file based on new standard.
-
-2003-10-04 Jason Flatt <jason AT flattfamily.com>
- * POST_INSTALL: removed for no starting and stopping of services.
-
-2003-09-19 Jason Flatt <jason AT flattfamily.com>
- * DETAILS: Updated to version 4.2.6-pre2.
-
-2003-05-19 Jason Flatt <jason AT flattfamily.com>
- * BUILD: Update for ${INSTALL_ROOT}.
-
-2003-05-04 Jason Flatt <jason AT flattfamliy.com>
- * DETAILS: Updated MAINTAINER e-mail address.
- * HISTORY: Corrected HISTORY date for previous entry.
-
-2003-05-04 Jason Flatt <jason AT flattfamliy.com>
- * DEPENDS: Removed linuxdoc-tools from dependency list (bug #3040).
- * DETAILS: Updated to version 4.2.6-pre1.
-
-2003-04-04 Jason Flatt <jason AT flattfamliy.com>
- * DEPENDS: Removed dependency on gimp (bug #3006).
-
-2003-01-25 Jason Flatt <jasonflatt AT wizard.com>
- * DETAILS: Version bump from 4.2.4 to 4.2.5 (w/MD5 correction).
-
-2002-11-26 Jason Flatt <jasonflatt AT wizard.com>
- * DETAILS: Version bump from 4.2.3 to 4.2.4 (w/MD5 correction).
-
-2002-11-06 Jason Flatt <jasonflatt AT wizard.com>
- * DETAILS: Version bump from 4.2.2 to 4.2.3 (w/MD5 correction).
-
-2002-11-01 Jason Flatt <jasonflatt AT wizard.com>
- * POST_INSTALL: Modified to account for cups init script name change.
-
-2002-10-14 Jason Flatt <jasonflatt AT wizard.com>
- * DETAILS: Modified to address bug # 1180.
-
-2002-10-07 Jason Flatt <jasonflatt AT wizard.com>
- * DEPENDS: Removed optional_depends for postscript-intperpreter for
bug
- #1180.
-
-2002-09-16 Jason Flatt <jasonflatt AT wizard.com>
- * DETAILS: Updated version and MD5 to 4.2.2.
-
-2002-08-27 Jason Flatt <jasonflatt AT wizard.com>
- * DEPENDS: Changed to use postscript-interpreter.
- * DETAILS: Changed SOURCE from .bz2 to .gz.
-
-2002-08-21 Jason Flatt <jasonflatt AT wizard.com>
- * DETAILS: Updated MD5.
- * HISTORY: Reformatted this file (again and for the last time).
-
-2002-08-15 Jason Flatt <jasonflatt AT wizard.com>
- * DETAILS: Updated MD5 to reflect new version.
-
-2002-08-15 Jason Flatt <jasonflatt AT wizard.com>
- * Oops! Clean up from testing. (I must have left something in, but I
- don't remember what.)
-
-2002-08-15 Jason Flatt <jasonflatt AT wizard.com>
- * Thanks to Tom Gardner for the heads up. (Another poorly worded
update
- message. I gotta stop doing that.)
-
-2002-08-02 Jason Flatt <jasonflatt AT wizard.com>
- * DETAILS: Changed LICENSE= and MD5= to LICENSE[x]= and MD5[x]=.
- * HISTORY: Reformatted this file.
-
-2002-07-17 Jason Flatt <jasonflatt AT wizard.com>
- * DETAILS: Updated MD5 from previous version update.
-
-2002-07-04 Jason Flatt <jasonflatt AT wizard.com>
- * DETAILS: Modified SOURCE_URL[0] to use $SOURCEFORGE_URL variable.
- Removed SOURCE_URL[1] and SOURCE_URL[2].
-
-2002-06-28 Jason Flatt <jasonflatt AT wizard.com>
- * DETAILS: Version bump to 4.2.2-pre2.
-
-2002-06-22 Jason Flatt <jasonflatt AT wizard.com>
- * DETAILS: Added LICENSE and MD5 to DETAILS.
-
-2002-06-10 Jason Flatt <jasonflatt AT wizard.com>
- * USEGCC2: Removed as it compiles w/gcc 3.1 and executes.
-
-2002-05-29 Jason Flatt <jasonflatt AT wizard.com>
- * USEGCC2: Added in preparation for gcc3 upgrade.
-
-2002-05-08 Jason Flatt <jasonflatt AT wizard.com>
- * HISTORY: Reformatted to conform to new template.
-
-2002-05-07 Jason Flatt <jasonflatt AT wizard.com>
- * DETAILS: Updated SOURCE_URLs to reflect SourceForge mirror change.
-
-2002-05-01 Jason Flatt <jasonflatt AT wizard.com>
- * DETAILS: Changed version from 4.2.0 to 4.2.1. Updated long
description
- for improved readability.
- * HISTORY: Corrected this file.
- * POST_INSTALL: Changed spell-installed to spell_installed.
-
-2002-03-24 Jason Flatt <jasonflatt AT wizard.com>
- * DEPENDS: Changed gimp from optional_dependency to required.
- * HISTORY: Added this file.
-
diff --git a/printer/ijs/BUILD b/printer/ijs/BUILD
deleted file mode 100755
index 27ba77d..0000000
--- a/printer/ijs/BUILD
+++ /dev/null
@@ -1 +0,0 @@
-true
diff --git a/printer/ijs/DETAILS b/printer/ijs/DETAILS
deleted file mode 100755
index c7d5335..0000000
--- a/printer/ijs/DETAILS
+++ /dev/null
@@ -1,7 +0,0 @@
- SPELL=ijs
- VERSION=0
- PATCHLEVEL=9999
- SHORT="deprecated"
- cat << EOF
- deprecated spell [replaced by ghostscript]
- EOF
diff --git a/printer/ijs/DOWNLOAD b/printer/ijs/DOWNLOAD
deleted file mode 100755
index 27ba77d..0000000
--- a/printer/ijs/DOWNLOAD
+++ /dev/null
@@ -1 +0,0 @@
-true
diff --git a/printer/ijs/HISTORY b/printer/ijs/HISTORY
deleted file mode 100644
index 3475faf..0000000
--- a/printer/ijs/HISTORY
+++ /dev/null
@@ -1,40 +0,0 @@
-2019-05-25 Ismael Luceno <ismael AT sourcemage.org>
- * spell deprecated [reference implementation is now part of
ghostscript]
- * PATCHLEVEL=9999
- * DETAILS: version 0
-
-2008-04-28 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
- * ijs-0.35.tar.gz.asc: regenerated for #14355
- * DEPENDS: changed hpijs to hplip #14356
-
-2007-06-03 Treeve Jelbert <treeve AT sourcemage.org>
- * DEPENDS: fix minor typo, bug #13800
-
-2007-02-27 Florian Franzmann <bwlf AT bandrate.org>
- * DEPENDS: switched to gutenprint from gimp-print
-
-2006-10-03 Juuso Alasuutari <iuso AT sourcemage.org>
- * DETAILS: [automated] Removed UPDATED.
-
-2006-09-21 Juuso Alasuutari <iuso AT sourcemage.org>
- * DETAILS: [automated] Removed BUILD_API=2.
-
-2006-03-12 Karsten Behrmann <BearPerson AT sourcemage.org>
- * DETAILS: (automated) Add KEYWORDS
-
-2005-09-13 Jason Flatt <jflatt AT sourcemage.org>
- * DETAILS: Version bump to 0.35.
- Removed MAINTAINER field.
- Converted from MD5 to GPG.
- Converted to BUILD_API 2.
- * BUILD, Makefile.patch: Removed, not needed with new version.
-
-2003-10-20 Jason Flatt <jason AT flattfamily.com>
- * HISTORY: Reformatted this file based on new standard.
-
-2003-04-25 Jason Flatt <jason AT flattfamily.com>
- * DETAILS: Updated MAINTAINER e-mail address.
-
-2002-12-24 Jason Flatt <jasonflatt AT wizard.com>
- * Created this spell.
-
diff --git a/printer/ijs/INSTALL b/printer/ijs/INSTALL
deleted file mode 100755
index 27ba77d..0000000
--- a/printer/ijs/INSTALL
+++ /dev/null
@@ -1 +0,0 @@
-true
diff --git a/printer/ijs/PRE_BUILD b/printer/ijs/PRE_BUILD
deleted file mode 100755
index 27ba77d..0000000
--- a/printer/ijs/PRE_BUILD
+++ /dev/null
@@ -1 +0,0 @@
-true
diff --git a/printer/ijs/UP_TRIGGERS b/printer/ijs/UP_TRIGGERS
deleted file mode 100755
index f3d6dda..0000000
--- a/printer/ijs/UP_TRIGGERS
+++ /dev/null
@@ -1,2 +0,0 @@
-up_trigger ijs dispel_self
-up_trigger ghostscript cast_self
diff --git a/qt6/qt5compat/DETAILS b/qt6/qt5compat/DETAILS
index bc68e8f..84eb9b6 100755
--- a/qt6/qt5compat/DETAILS
+++ b/qt6/qt5compat/DETAILS
@@ -1,8 +1,8 @@
QT_URL=https://download.qt.io/official_releases
SPELL=qt5compat
SPELLX=${SPELL//6}-everywhere-src
- VERSION=6.6.1
-
SOURCE_HASH=sha512:2d5e2e40621590adb489dac4ae9a28fe8c2436de05dfe5aea47e449ae88ef82dd831e786d8290d04315c827f8adf217374ea5c6919ae12932496c5cd6ac28c01
+ VERSION=6.6.2
+
SOURCE_HASH=sha512:12e4142ce8e9b0863ee5d39c37f9a04ef696fd34c98b5d955464a1cfcc7d55ea8387b6238a49d9e9380f8c95f4b655ffa64fe250f27fee3d4e9f48065bcabb6a
SOURCE=$SPELLX-$VERSION.tar.xz
SOURCE_URL=$QT_URL/qt/${VERSION%.?}/$VERSION/submodules/$SOURCE
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELLX-$VERSION
diff --git a/qt6/qt5compat/HISTORY b/qt6/qt5compat/HISTORY
index fafb5ff..a48dcf6 100644
--- a/qt6/qt5compat/HISTORY
+++ b/qt6/qt5compat/HISTORY
@@ -1,3 +1,6 @@
+2024-02-14 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 6.6.2
+
2023-11-27 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 6.6.1