Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (832cab039c247def819acf67645f2e71de16d7f7)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Vlad Glagolev <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (832cab039c247def819acf67645f2e71de16d7f7)
  • Date: Sat, 11 Sep 2010 15:25:15 -0500

GIT changes to master grimoire by Vlad Glagolev <stealth AT sourcemage.org>:

printer/ghostscript/DETAILS | 16 +++---
printer/ghostscript/HISTORY | 5 ++
printer/ghostscript/PRE_BUILD | 3 -
printer/ghostscript/ghostscript.patch | 78
----------------------------------
4 files changed, 14 insertions(+), 88 deletions(-)

New commits:
commit 832cab039c247def819acf67645f2e71de16d7f7
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

ghostscript: => 8.71.1

diff --git a/printer/ghostscript/DETAILS b/printer/ghostscript/DETAILS
index ba0845e..29e3a65 100755
--- a/printer/ghostscript/DETAILS
+++ b/printer/ghostscript/DETAILS
@@ -1,12 +1,14 @@
SPELL=ghostscript
- VERSION=8.71
-
SOURCE_HASH=sha512:86ae1e797d7bb3d3e65ad36cab0434bdd957812c5340fc8cff14e76fd772b3d65742dc81ab39d7320482b1fe35b501658b5c64c5c7377b359f7357f3244c1173
- SOURCE=$SPELL-$VERSION.tar.gz
-SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
- SOURCE_URL[0]=http://ghostscript.com/releases/$SOURCE
- WEB_SITE=http://www.ghostscript.com/awki
+ VERSION=8.71.1
+ SOURCE=gnu-$SPELL-$VERSION.tar.bz2
+ SOURCE2=$SOURCE.sig
+ SOURCE2_IGNORE=signature
+ SOURCE_GPG=gnu.gpg:$SOURCE2:UPSTREAM_KEY
+ SOURCE_URL[0]=$GNU_URL/$SPELL/$SOURCE
+ SOURCE2_URL[0]=${SOURCE_URL[0]}.sig
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/gnu-$SPELL-$VERSION"
+ WEB_SITE=http://www.ghostscript.com/
LICENSE[0]=GPL
- PATCHLEVEL=1
ENTERED=20010922
KEYWORDS="interpreter postscript printer"
SHORT="interpreter for the PostScript language"
diff --git a/printer/ghostscript/HISTORY b/printer/ghostscript/HISTORY
index fc08321..44910d3 100644
--- a/printer/ghostscript/HISTORY
+++ b/printer/ghostscript/HISTORY
@@ -1,3 +1,8 @@
+2010-09-12 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: updated spell to 8.71.1; changed source extension;
converted
+ to upstream signature checking
+ * PRE_BUILD, ghostscript.patch: removed, fixed by upstream
+
2010-06-07 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
* BUILD: always build the JAPAN set of drivers #14764

diff --git a/printer/ghostscript/PRE_BUILD b/printer/ghostscript/PRE_BUILD
deleted file mode 100755
index b22a0de..0000000
--- a/printer/ghostscript/PRE_BUILD
+++ /dev/null
@@ -1,3 +0,0 @@
-default_pre_build &&
-cd $SOURCE_DIRECTORY &&
-patch -p1 < $SPELL_DIRECTORY/ghostscript.patch
diff --git a/printer/ghostscript/ghostscript.patch
b/printer/ghostscript/ghostscript.patch
deleted file mode 100644
index 826c029..0000000
--- a/printer/ghostscript/ghostscript.patch
+++ /dev/null
@@ -1,78 +0,0 @@
-diff --git a/cups/gdevcups.c b/cups/gdevcups.c
-index 551b806..4000abf 100644
---- a/cups/gdevcups.c
-+++ b/cups/gdevcups.c
-@@ -975,7 +975,8 @@ cups_map_cmyk(gx_device *pdev, /* I - Device
info */
- frac k, /* I - Black value */
- frac *out) /* O - Device colors */
- {
-- int c0, c1, c2, c3; /* Temporary color values */
-+ int c0 = 0, c1 = 0,
-+ c2 = 0, c3 = 0; /* Temporary color values */
- float rr, rg, rb, /* Real RGB colors */
- ciex, ciey, ciez, /* CIE XYZ colors */
- ciey_yn, /* Normalized luminance */
-@@ -2703,9 +2704,13 @@ cups_put_params(gx_device *pdev, /* I - Device
info */
- int color_set; /* Were the color attrs set? */
- gdev_prn_space_params sp; /* Space parameter data */
- int width, /* New width of page */
-- height; /* New height of page */
-+ height, /* New height of page */
-+ colorspace, /* New color space */
-+ bitspercolor; /* New bits per color */
- static int width_old = 0, /* Previous width */
-- height_old = 0; /* Previous height */
-+ height_old = 0, /* Previous height */
-+ colorspace_old = 0,/* Previous color space */
-+ bitspercolor_old = 0;/* Previous bits per color */
- ppd_attr_t *backside = NULL,
- *backsiderequiresflippedmargins = NULL;
- float swap;
-@@ -2800,9 +2805,10 @@ cups_put_params(gx_device *pdev, /* I - Device
info */
- else if (code == 0) \
- { \
- dprintf1("DEBUG: Setting %s to", sname); \
-- for (i = 0; i < count; i ++) \
-- dprintf1(" %d", (unsigned)(arrayval.data[i])); \
-- cups->header.name[i] = (unsigned)arrayval.data[i]; \
-+ for (i = 0; i < count; i ++) { \
-+ dprintf1(" %d", (unsigned)(arrayval.data[i])); \
-+ cups->header.name[i] = (unsigned)(arrayval.data[i]); \
-+ } \
- dprintf("...\n"); \
- }
-
-@@ -3243,23 +3249,31 @@ cups_put_params(gx_device *pdev, /* I - Device
info */
- }
- #endif /* CUPS_RASTER_SYNCv1 */
-
-+ colorspace = cups->header.cupsColorSpace;
-+ bitspercolor = cups->header.cupsBitsPerColor;
-+
- /*
- * Don't reallocate memory unless the device has been opened...
- * Also reallocate only if the size has actually changed...
- */
-
-- if (pdev->is_open && (width != width_old || height != height_old))
-+ if (pdev->is_open &&
-+ (width != width_old || height != height_old ||
-+ colorspace != colorspace_old || bitspercolor != bitspercolor_old))
- {
-
- width_old = width;
- height_old = height;
-+ colorspace_old = colorspace;
-+ bitspercolor_old = bitspercolor;
-
- /*
- * Device is open and size has changed, so reallocate...
- */
-
-- dprintf4("DEBUG2: Reallocating memory, [%.0f %.0f] = %dx%d
pixels...\n",
-- pdev->MediaSize[0], pdev->MediaSize[1], width, height);
-+ dprintf6("DEBUG2: Reallocating memory, [%.0f %.0f] = %dx%d pixels,
color space: %d, bits per color: %d...\n",
-+ pdev->MediaSize[0], pdev->MediaSize[1], width, height,
-+ colorspace, bitspercolor);
-
- sp = ((gx_device_printer *)pdev)->space_params;



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (832cab039c247def819acf67645f2e71de16d7f7), Vlad Glagolev, 09/11/2010

Archive powered by MHonArc 2.6.24.

Top of Page