diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2008-12-04 19:58:30 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2008-12-04 19:58:30 +0000 |
commit | aa2d879a5038b20cf948801a7f96b69d39baddf9 (patch) | |
tree | 7cee4b98908a30f75b584e10a60daa4c0c0acd71 /www/phprecipebook | |
parent | fe734c87c540bbe5d37cae8fd93320def526bdd3 (diff) | |
download | ports-aa2d879a5038b20cf948801a7f96b69d39baddf9.tar.gz ports-aa2d879a5038b20cf948801a7f96b69d39baddf9.zip |
Notes
Diffstat (limited to 'www/phprecipebook')
-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)); - |