From: Antero Mejr via Guix-patches via <guix-patches@gnu.org>
To: 63894@debbugs.gnu.org
Subject: [bug#63894] [PATCH 07/55] gnu: Add perl-sql-translator.
Date: Sun, 4 Jun 2023 17:42:01 +0000 [thread overview]
Message-ID: <20230604174249.30044-7-antero@mailbox.org> (raw)
In-Reply-To: <20230604174249.30044-1-antero@mailbox.org>
* gnu/packages/databases.scm (perl-sql-translator): New variable.
---
gnu/packages/databases.scm | 52 ++++++++++++++++++++++++++++++++++++++
1 file changed, 52 insertions(+)
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 99b0fc87bd..a587ab30bc 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -2440,6 +2440,58 @@ (define-public perl-sql-tokenizer
valid SQL query.")
(license license:perl-license)))
+(define-public perl-sql-translator
+ (package
+ (name "perl-sql-translator")
+ (version "1.63")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://cpan/authors/id/V/VE/VEESH/SQL-Translator-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "0cric118ms3dcnb3m2a1jdhdxmai8wwp5jbx34mf72s9jd6b11aq"))))
+ (build-system perl-build-system)
+ (native-inputs (list perl-file-sharedir-install
+ perl-json-maybexs
+ perl-test-differences
+ perl-test-exception
+ perl-test-most
+ perl-xml-writer
+ perl-yaml))
+ (propagated-inputs (list perl-carp-clan
+ perl-dbi
+ perl-file-sharedir
+ perl-gd
+ perl-graph
+ perl-graphviz
+ perl-moo
+ perl-package-variant
+ perl-parse-recdescent
+ perl-spreadsheet-parseexcel
+ perl-strictures-2
+ perl-sub-quote
+ perl-template-toolkit
+ perl-text-recordparser
+ perl-try-tiny
+ perl-xml-libxml))
+ (home-page "https://metacpan.org/release/SQL-Translator")
+ (synopsis "Manipulate structured data definitions (SQL and more)")
+ (description
+ "@code{SQL::Translator} is a group of Perl modules that converts
+vendor-specific SQL table definitions into other formats, such as other
+vendor-specific SQL, ER diagrams, documentation (POD and HTML), XML, and
+@code{Class::DBI} classes. The main focus is SQL, but parsers exist for other
+structured data formats, including Excel spreadsheets and arbitrarily
+delimited text files. Through the separation of the code into parsers and
+producers with an object model in between, it's possible to combine any parser
+with any producer, to plug in custom parsers or producers, or to manipulate
+the parsed data via the built-in object model. Presently only the definition
+parts of SQL are handled (CREATE, ALTER), not the manipulation of
+data (INSERT, UPDATE, DELETE).")
+ (license license:perl-license)))
+
(define-public unixodbc
(package
(name "unixodbc")
--
2.39.2
next prev parent reply other threads:[~2023-06-04 17:45 UTC|newest]
Thread overview: 56+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-06-04 17:36 [bug#63894] [PATCH] Add SpamAssassin, Debbugs dependencies Antero Mejr via Guix-patches via
2023-06-04 17:41 ` [bug#63894] [PATCH 01/55] gnu: perl-dbix-class: Update to 0.082843 Antero Mejr via Guix-patches via
2023-06-04 17:41 ` [bug#63894] [PATCH 02/55] gnu: Add perl-dbix-class-deploymenthandler Antero Mejr via Guix-patches via
2023-06-04 17:41 ` [bug#63894] [PATCH 03/55] gnu: Add perl-dbix-simple Antero Mejr via Guix-patches via
2023-06-04 17:41 ` [bug#63894] [PATCH 04/55] gnu: Add perl-dbicx-testdatabase Antero Mejr via Guix-patches via
2023-06-04 17:41 ` [bug#63894] [PATCH 05/55] gnu: Add perl-dbix-class-dynamicdefault Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 06/55] gnu: Add perl-dbix-class-timestamp Antero Mejr via Guix-patches via
2023-06-04 17:42 ` Antero Mejr via Guix-patches via [this message]
2023-06-04 17:42 ` [bug#63894] [PATCH 08/55] gnu: Add perl-test-postgresql Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 09/55] gnu: Add perl-fennec-lite Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 10/55] gnu: Add perl-test-file-sharedir Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 11/55] gnu: Add perl-test-fork Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 12/55] gnu: Add perl-test-mockrandom Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 13/55] gnu: perl-b-keywords: Update to 1.24 Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 14/55] gnu: Add perl-config-simple Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 15/55] gnu: Add perl-constant Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 16/55] gnu: Add perl-critic-policy-perlsecret Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 17/55] gnu: Add perl-data-messagepack Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 18/55] gnu: Add perl-datetime-format-mysql Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 19/55] gnu: Add perl-datetime-format-sqlite Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 20/55] gnu: Add perl-datetime-format-pg Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 21/55] gnu: Add perl-exporter-declare Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 22/55] gnu: Add perl-file-libmagic Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 23/55] gnu: Add perl-function-parameters Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 24/55] gnu: Add perl-gd Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 25/55] gnu: Add perl-graphviz Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 26/55] gnu: Add perl-log-contextual Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 27/55] gnu: Add perl-mail-rfc822-address Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 28/55] gnu: Add perl-meta-builder Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 29/55] gnu: Add perl-mldbm Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 30/55] gnu: Add perl-package-variant Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 31/55] gnu: Add perl-safe-hole Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 32/55] gnu: Add perl-spreadsheet-parseexcel Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 33/55] gnu: perl-sub-quote: Update to 2.006008 Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 34/55] gnu: perl-text-balanced: Update to 1.75 Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 35/55] gnu: Add perl-text-brew Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 36/55] gnu: Add perl-text-iconv Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 37/55] gnu: Add perl-text-recordparser Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 38/55] gnu: Add perl-text-reform Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 39/55] gnu: Add perl-text-tabulardisplay Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 40/55] gnu: Add perl-tie-hash-method Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 41/55] gnu: Add perl-time-warp Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 42/55] gnu: Add perl-user Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 43/55] gnu: Add perl-text-xslate Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 44/55] gnu: Add perl-gravatar-url Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 45/55] gnu: Add perl-io-sessiondata Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 46/55] gnu: Add perl-soap-lite Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 47/55] gnu: Add geolite-country-data Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 48/55] gnu: Add perl-geo-ip Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 49/55] gnu: Add perl-net-smtps Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 50/55] gnu: Add perl-net-ip Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 51/55] gnu: Add perl-net-imap-simple Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 52/55] gnu: Add perl-mail-dmarc Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 53/55] gnu: Add perl-net-libidn Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 54/55] gnu: Add perl-razor2-client-agent Antero Mejr via Guix-patches via
2023-06-04 17:42 ` [bug#63894] [PATCH 55/55] gnu: Add spamassassin Antero Mejr via Guix-patches via
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://guix.gnu.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20230604174249.30044-7-antero@mailbox.org \
--to=guix-patches@gnu.org \
--cc=63894@debbugs.gnu.org \
--cc=antero@mailbox.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).