Changeset 60132 for trunk/dports/java
- Timestamp:
- Nov 2, 2009, 10:01:28 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dports/java/scala-migrations/Portfile
r58914 r60132 3 3 PortSystem 1.0 4 4 5 name 6 version 7 categories 8 platforms 9 maintainers 10 description 5 name scala-migrations 6 version 0.9.1 7 categories java 8 platforms darwin 9 maintainers blair 10 description Database migrations written in Scala 11 11 12 long_description 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 12 long_description Scala Migrations is a library to manage upgrades and \ 13 rollbacks to database schemas. Migrations allow a \ 14 source control system to manage together the database \ 15 schema and the code using the schema. It is designed \ 16 to allow multiple developers working on a project with \ 17 a database backend to design schema modifications \ 18 independently, apply the migrations to their local \ 19 database for debugging and when complete, check them \ 20 into a source control system to manage as one manages \ 21 normal source code. Other developers then check out \ 22 the new migrations and apply them to their local \ 23 database. Finally, the migrations are used to migrate \ 24 the production databases to the latest schema version. \ 25 The Scala Migrations library is written in Scala and \ 26 makes use of the clean Scala language to write easy to \ 27 understand migrations, which are also written in \ 28 Scala. Scala Migrations provides a database \ 29 abstraction layer that allows migrations to target any \ 30 supported database vendor. 31 31 32 homepage 32 homepage http://code.google.com/p/scala-migrations/ 33 33 34 master_sites 35 distfiles 34 master_sites googlecode 35 distfiles ${name}-${version}.jar 36 36 37 checksums 38 39 37 checksums md5 85879223077703e2a7c2a7ffba6b454d \ 38 sha1 2af3525e859de4987b067a0558b8c414141b0d5a \ 39 rmd160 65c92807916fdaa2e34cc4957ac634837071083f 40 40 extract.only 41 41 42 depends_lib 42 depends_lib bin:java:kaffe 43 43 44 use_configure 44 use_configure no 45 45 46 46 build { } 47 47 48 48 destroot { 49 49 set javadir ${destroot}${prefix}/share/java 50 50 51 52 51 xinstall -d -m 755 ${javadir} 52 file copy ${distpath}/${name}-${version}.jar ${javadir}/${name}.jar 53 53 }
Note: See TracChangeset
for help on using the changeset viewer.