diff options
author | miwi <miwi@FreeBSD.org> | 2008-12-05 03:58:30 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2008-12-05 03:58:30 +0800 |
commit | 57d4dfdd5ab7306d7ca1be99aacac72c02e7b534 (patch) | |
tree | 78cdbb51ffcd1dac9fba72fdca3c5f76497d8f51 | |
parent | df5f97a24c4fc14388418d562f30dccdd2aec2a0 (diff) | |
download | freebsd-ports-gnome-57d4dfdd5ab7306d7ca1be99aacac72c02e7b534.tar.gz freebsd-ports-gnome-57d4dfdd5ab7306d7ca1be99aacac72c02e7b534.tar.zst freebsd-ports-gnome-57d4dfdd5ab7306d7ca1be99aacac72c02e7b534.zip |
- Update to 2.39
PR: 129312
Submitted by: Guido Falsi <mad@madpilot.net> (maintainer)
-rw-r--r-- | www/phprecipebook/Makefile | 2 | ||||
-rw-r--r-- | www/phprecipebook/distinfo | 6 | ||||
-rw-r--r-- | www/phprecipebook/files/patch-sql-recipedb.mysql | 20 |
3 files changed, 4 insertions, 24 deletions
diff --git a/www/phprecipebook/Makefile b/www/phprecipebook/Makefile index 05c20394da56..7554f2dca0a9 100644 --- a/www/phprecipebook/Makefile +++ b/www/phprecipebook/Makefile @@ -6,7 +6,7 @@ # PORTNAME= phprecipebook -PORTVERSION= 2.38 +PORTVERSION= 2.39 CATEGORIES= www deskutils MASTER_SITES= SF diff --git a/www/phprecipebook/distinfo b/www/phprecipebook/distinfo index db206bc737be..461e49dd0d86 100644 --- a/www/phprecipebook/distinfo +++ b/www/phprecipebook/distinfo @@ -1,3 +1,3 @@ -MD5 (phprecipebook-2.38.tar.gz) = 864ae8fb66213c2796fdd4b7a58a053d -SHA256 (phprecipebook-2.38.tar.gz) = c05d53f849ef84a0b6690c6d20e3f703e215a7ef0a0b1990354ffe14bd34d2b3 -SIZE (phprecipebook-2.38.tar.gz) = 556970 +MD5 (phprecipebook-2.39.tar.gz) = ca2d535f1d59440cb3b0ab1a4610f884 +SHA256 (phprecipebook-2.39.tar.gz) = c00aefe04cf99c6884c89a6e44b28062728c6007946e40fcd3fe93bdd86d0ecb +SIZE (phprecipebook-2.39.tar.gz) = 589171 diff --git a/www/phprecipebook/files/patch-sql-recipedb.mysql b/www/phprecipebook/files/patch-sql-recipedb.mysql deleted file mode 100644 index ed978aa1bd3c..000000000000 --- a/www/phprecipebook/files/patch-sql-recipedb.mysql +++ /dev/null @@ -1,20 +0,0 @@ ---- sql/recipedb.mysql.orig 2007-03-31 20:22:08.000000000 +0200 -+++ sql/recipedb.mysql 2007-09-27 17:10:02.000000000 +0200 -@@ -154,7 +154,7 @@ - PRIMARY KEY (meal_id)); - - CREATE TABLE recipe_mealplans ( -- mplan_date DATE NOT NULL DEFAULT 'now()', -+ mplan_date TIMESTAMP DEFAULT CURRENT_TIMESTAMP, - mplan_meal INT NOT NULL REFERENCES recipe_meals(meal_id) ON DELETE CASCADE, - mplan_recipe INT NOT NULL REFERENCES recipe_recipes(recipe_id) ON DELETE CASCADE, - mplan_servings INT NOT NULL DEFAULT 0, -@@ -164,7 +164,7 @@ - CREATE TABLE recipe_reviews ( - review_recipe INT NOT NULL REFERENCES recipe_recipes(recipe_id) ON DELETE CASCADE, - review_comments VARCHAR(255) NOT NULL, -- review_date TIMESTAMP DEFAULT 'now()', -+ review_date TIMESTAMP DEFAULT CURRENT_TIMESTAMP, - review_owner VARCHAR(32) NOT NULL REFERENCES security_users(user_login) ON DELETE SET NULL ON UPDATE CASCADE, - PRIMARY KEY (review_recipe,review_comments,review_owner)); - |