* [PATCH 0/4] Add Subversion.
@ 2013-01-25 19:42 Cyril Roelandt
2013-01-25 19:42 ` [PATCH 1/4] Add lipabr Cyril Roelandt
` (3 more replies)
0 siblings, 4 replies; 13+ messages in thread
From: Cyril Roelandt @ 2013-01-25 19:42 UTC (permalink / raw)
To: bug-guix
Hello !
This patch series adds Subversion and its dependencies, which probably will be
useful for other packages as well.
Regards,
Cyril Roelandt.
---
Cyril Roelandt (4):
Add lipabr.
Add libaprutil.
Add SQLite.
Add Subversion.
Makefile.am | 4 +
gnu/packages/libapr.scm | 91 ++++++++++++++++++++
.../patches/libapr-skip-getservbyname-test.patch | 25 ++++++
gnu/packages/sqlite.scm | 49 +++++++++++
gnu/packages/subversion.scm | 59 +++++++++++++
5 files changed, 228 insertions(+)
create mode 100644 gnu/packages/libapr.scm
create mode 100644 gnu/packages/patches/libapr-skip-getservbyname-test.patch
create mode 100644 gnu/packages/sqlite.scm
create mode 100644 gnu/packages/subversion.scm
--
1.7.10.4
^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH 1/4] Add lipabr.
2013-01-25 19:42 [PATCH 0/4] Add Subversion Cyril Roelandt
@ 2013-01-25 19:42 ` Cyril Roelandt
2013-01-25 20:19 ` Ludovic Courtès
2013-01-25 19:42 ` [PATCH 2/4] Add libaprutil Cyril Roelandt
` (2 subsequent siblings)
3 siblings, 1 reply; 13+ messages in thread
From: Cyril Roelandt @ 2013-01-25 19:42 UTC (permalink / raw)
To: bug-guix
* gnu/packages/libapr.scm: New file.
* gnu/packages/patches/libapr-skip-getservbyname-test.patch: New file
* Makefile.am: Add them
---
Makefile.am | 2 +
gnu/packages/libapr.scm | 58 ++++++++++++++++++++
.../patches/libapr-skip-getservbyname-test.patch | 25 +++++++++
3 files changed, 85 insertions(+)
create mode 100644 gnu/packages/libapr.scm
create mode 100644 gnu/packages/patches/libapr-skip-getservbyname-test.patch
diff --git a/Makefile.am b/Makefile.am
index 07b8428..bccb5ec 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -86,6 +86,7 @@ MODULES = \
gnu/packages/indent.scm \
gnu/packages/ld-wrapper.scm \
gnu/packages/less.scm \
+ gnu/packages/libapr.scm \
gnu/packages/libevent.scm \
gnu/packages/libffi.scm \
gnu/packages/libidn.scm \
@@ -156,6 +157,7 @@ dist_patch_DATA = \
gnu/packages/patches/guile-1.8-cpp-4.5.patch \
gnu/packages/patches/guile-default-utf8.patch \
gnu/packages/patches/guile-relocatable.patch \
+ gnu/packages/patches/libapr-skip-getservbyname-test.patch \
gnu/packages/patches/libevent-dns-tests.patch \
gnu/packages/patches/libtool-skip-tests.patch \
gnu/packages/patches/lsh-guile-compat.patch \
diff --git a/gnu/packages/libapr.scm b/gnu/packages/libapr.scm
new file mode 100644
index 0000000..36f0e1e
--- /dev/null
+++ b/gnu/packages/libapr.scm
@@ -0,0 +1,58 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2013 Cyril Roelandt <tipecaml@gmail.com>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (gnu packages libapr)
+ #:use-module (guix licenses)
+ #:use-module (guix packages)
+ #:use-module (guix download)
+ #:use-module (guix build-system gnu)
+ #:use-module (gnu packages)
+ #:use-module (gnu packages perl)
+ #:use-module (gnu packages autotools))
+
+(define-public libapr
+ (package
+ (name "libapr")
+ (version "1.4.6")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "http://mirrors.ircam.fr/pub/apache//apr/apr-"
+ version ".tar.bz2"))
+ (sha256
+ (base32
+ "1g0w9396akmhhrmjzmcwddny5ms43zvj2mrpdkyfcqxizrh5wqwv"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:patches (list (assoc-ref %build-inputs
+ "patch/skip-test"))
+ #:patch-flags '("-p0")))
+ (inputs `(("perl" ,perl)
+ ("libtool" ,libtool)
+ ("patch/skip-test"
+ ,(search-patch "libapr-skip-getservbyname-test.patch"))))
+ (home-page "http://apr.apache.org/")
+ (synopsis "The Apache Portable Runtime Library")
+ (description
+ "The mission of the Apache Portable Runtime (APR) project is to create and
+maintain software libraries that provide a predictable and consistent interface
+to underlying platform-specific implementations. The primary goal is to provide
+an API to which software developers may code and be assured of predictable if
+not identical behaviour regardless of the platform on which their software is
+built, relieving them of the need to code special-case conditions to work
+around or take advantage of platform-specific deficiencies or features.")
+ (license asl2.0)))
diff --git a/gnu/packages/patches/libapr-skip-getservbyname-test.patch b/gnu/packages/patches/libapr-skip-getservbyname-test.patch
new file mode 100644
index 0000000..e12a8eb
--- /dev/null
+++ b/gnu/packages/patches/libapr-skip-getservbyname-test.patch
@@ -0,0 +1,25 @@
+--- test/testsock.c 2013-01-24 06:57:21.000000000 +0100
++++ test/testsock.c 2013-01-24 17:24:54.000000000 +0100
+@@ -90,16 +90,22 @@
+ rv = apr_sockaddr_info_get(&sa, NULL, APR_UNSPEC, 0, 0, p);
+ APR_ASSERT_SUCCESS(tc, "Problem generating sockaddr", rv);
+
++ /* /etc/services is not available while compiling, so apr_getservbyname
++ * will always return APR_ENOENT. */
++#if 0
+ rv = apr_getservbyname(sa, "ftp");
+ APR_ASSERT_SUCCESS(tc, "Problem getting ftp service", rv);
+ ABTS_INT_EQUAL(tc, 21, sa->port);
++#endif
+
+ rv = apr_getservbyname(sa, "complete_and_utter_rubbish");
+ APR_ASSERT_SUCCESS(tc, "Problem getting non-existent service", !rv);
+
++#if 0
+ rv = apr_getservbyname(sa, "telnet");
+ APR_ASSERT_SUCCESS(tc, "Problem getting telnet service", rv);
+ ABTS_INT_EQUAL(tc, 23, sa->port);
++#endif
+ }
+
+ static apr_socket_t *setup_socket(abts_case *tc)
--
1.7.10.4
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH 2/4] Add libaprutil.
2013-01-25 19:42 [PATCH 0/4] Add Subversion Cyril Roelandt
2013-01-25 19:42 ` [PATCH 1/4] Add lipabr Cyril Roelandt
@ 2013-01-25 19:42 ` Cyril Roelandt
2013-07-18 19:34 ` Andreas Enge
2013-01-25 19:42 ` [PATCH 3/4] Add SQLite Cyril Roelandt
2013-01-25 19:42 ` [PATCH 4/4] Add Subversion Cyril Roelandt
3 siblings, 1 reply; 13+ messages in thread
From: Cyril Roelandt @ 2013-01-25 19:42 UTC (permalink / raw)
To: bug-guix
* gnu/packages/libapr: new variable.
---
gnu/packages/libapr.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/libapr.scm b/gnu/packages/libapr.scm
index 36f0e1e..b342e77 100644
--- a/gnu/packages/libapr.scm
+++ b/gnu/packages/libapr.scm
@@ -56,3 +56,36 @@ not identical behaviour regardless of the platform on which their software is
built, relieving them of the need to code special-case conditions to work
around or take advantage of platform-specific deficiencies or features.")
(license asl2.0)))
+
+(define-public libaprutil
+ (package
+ (name "libaprutil")
+ (version "1.5.1")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "http://apache.crihan.fr/dist//apr/apr-util-"
+ version ".tar.bz2"))
+ (sha256
+ (base32
+ "0832cb90zd7zqhhdx0v3i8viw1rmn0d945qbk1zid3cnky9r0s19"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("libapr" ,libapr)))
+ (arguments
+ '(#:phases
+ (alist-replace
+ 'configure
+ (lambda* (#:key inputs outputs #:allow-other-keys)
+ (let ((out (assoc-ref outputs "out"))
+ (libapr (assoc-ref inputs "libapr")))
+ (setenv "CONFIG_SHELL" (which "bash"))
+ (zero?
+ (system* "./configure"
+ (string-append "--prefix=" out)
+ (string-append "--with-apr=" libapr)))))
+ %standard-phases)))
+ (home-page "http://apr.apache.org/")
+ (synopsis "One of the Apache Portable Runtime Library companions")
+ (description
+ "APR-util provides a number of helpful abstractions on top of APR.")
+ (license asl2.0)))
--
1.7.10.4
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH 3/4] Add SQLite.
2013-01-25 19:42 [PATCH 0/4] Add Subversion Cyril Roelandt
2013-01-25 19:42 ` [PATCH 1/4] Add lipabr Cyril Roelandt
2013-01-25 19:42 ` [PATCH 2/4] Add libaprutil Cyril Roelandt
@ 2013-01-25 19:42 ` Cyril Roelandt
2013-01-25 20:38 ` Ludovic Courtès
2013-01-25 19:42 ` [PATCH 4/4] Add Subversion Cyril Roelandt
3 siblings, 1 reply; 13+ messages in thread
From: Cyril Roelandt @ 2013-01-25 19:42 UTC (permalink / raw)
To: bug-guix
* gnu/packages/sqlite.scm: New file.
* Makefile.am (MODULES): Add it.
---
Makefile.am | 1 +
gnu/packages/sqlite.scm | 49 +++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 50 insertions(+)
create mode 100644 gnu/packages/sqlite.scm
diff --git a/Makefile.am b/Makefile.am
index bccb5ec..1105183 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -123,6 +123,7 @@ MODULES = \
gnu/packages/scheme.scm \
gnu/packages/screen.scm \
gnu/packages/shishi.scm \
+ gnu/packages/sqlite.scm \
gnu/packages/system.scm \
gnu/packages/tcl.scm \
gnu/packages/texinfo.scm \
diff --git a/gnu/packages/sqlite.scm b/gnu/packages/sqlite.scm
new file mode 100644
index 0000000..3d5ec21
--- /dev/null
+++ b/gnu/packages/sqlite.scm
@@ -0,0 +1,49 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2013 Cyril Roelandt <tipecaml@gmail.com>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (gnu packages sqlite)
+ #:use-module (guix licenses)
+ #:use-module (guix packages)
+ #:use-module (guix download)
+ #:use-module (guix build-system gnu)
+ #:use-module (gnu packages))
+
+(define-public sqlite
+ (package
+ (name "sqlite")
+ (version "3.7.15.2")
+ (source (origin
+ (method url-fetch)
+ ;; TODO: Download from sqlite.org once this bug :
+ ;; http://lists.gnu.org/archive/html/bug-guile/2013-01/msg00027.html
+ ;; has been fixed.
+ (uri (string-append
+ "http://downloads.sourceforge.net/project/sqlite.mirror/SQLite%20"
+ version "/sqlite-autoconf-3071502.tar.gz"))
+ (sha256
+ (base32
+ "135s6r5z12q56brywpxnraqbqm7bdkxs76v7dygqgjpnjyvicbbq"))))
+ (build-system gnu-build-system)
+ (home-page "http://www.sqlite.org/")
+ (synopsis "The SQLite database management system")
+ (description
+ "SQLite is a software library that implements a self-contained, serverless,
+zero-configuration, transactional SQL database engine. SQLite is the most
+widely deployed SQL database engine in the world. The source code for SQLite is
+in the public domain.")
+ (license public-domain)))
--
1.7.10.4
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH 4/4] Add Subversion.
2013-01-25 19:42 [PATCH 0/4] Add Subversion Cyril Roelandt
` (2 preceding siblings ...)
2013-01-25 19:42 ` [PATCH 3/4] Add SQLite Cyril Roelandt
@ 2013-01-25 19:42 ` Cyril Roelandt
2013-01-25 20:54 ` Ludovic Courtès
3 siblings, 1 reply; 13+ messages in thread
From: Cyril Roelandt @ 2013-01-25 19:42 UTC (permalink / raw)
To: bug-guix
* gnu/packages/subversion.scm: New file.
* Makefile.am (MODULES): Add it.
---
Makefile.am | 1 +
gnu/packages/subversion.scm | 59 +++++++++++++++++++++++++++++++++++++++++++
2 files changed, 60 insertions(+)
create mode 100644 gnu/packages/subversion.scm
diff --git a/Makefile.am b/Makefile.am
index 1105183..b9ef018 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -124,6 +124,7 @@ MODULES = \
gnu/packages/screen.scm \
gnu/packages/shishi.scm \
gnu/packages/sqlite.scm \
+ gnu/packages/subversion.scm \
gnu/packages/system.scm \
gnu/packages/tcl.scm \
gnu/packages/texinfo.scm \
diff --git a/gnu/packages/subversion.scm b/gnu/packages/subversion.scm
new file mode 100644
index 0000000..4d3d9c2
--- /dev/null
+++ b/gnu/packages/subversion.scm
@@ -0,0 +1,59 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2013 Cyril Roelandt <tipecaml@gmail.com>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (gnu packages subversion)
+ #:use-module (guix licenses)
+ #:use-module (guix packages)
+ #:use-module (guix download)
+ #:use-module (guix build-system gnu)
+ #:use-module (gnu packages)
+ #:use-module (gnu packages compression)
+ #:use-module (gnu packages libapr)
+ #:use-module (gnu packages perl)
+ #:use-module (gnu packages python)
+ #:use-module (gnu packages sqlite))
+
+(define-public subversion
+ (package
+ (name "subversion")
+ (version "1.7.8")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append
+ "http://mirrors.ircam.fr/pub/apache/subversion/subversion-"
+ version ".tar.bz2"))
+ (sha256
+ (base32
+ "11inl9n1riahfnbk1fax0dysm2swakzhzhpmm2zvga6fikcx90zw"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("libapr" ,libapr)
+ ("libaprutil" ,libaprutil)
+ ("perl" ,perl)
+ ("python" ,python)
+ ("sqlite" ,sqlite)
+ ("zlib" ,zlib)))
+ (home-page "http://subversion.apache.org/")
+ (synopsis "Subversion, a revision control system")
+ (description
+ "Subversion exists to be universally recognized and adopted as an
+open-source, centralized version control system characterized by its
+reliability as a safe haven for valuable data; the simplicity of its model and
+usage; and its ability to support the needs of a wide variety of users and
+projects, from individuals to large-scale enterprise operations.")
+ (license asl2.0)))
--
1.7.10.4
^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH 1/4] Add lipabr.
2013-01-25 19:42 ` [PATCH 1/4] Add lipabr Cyril Roelandt
@ 2013-01-25 20:19 ` Ludovic Courtès
0 siblings, 0 replies; 13+ messages in thread
From: Ludovic Courtès @ 2013-01-25 20:19 UTC (permalink / raw)
To: Cyril Roelandt; +Cc: bug-guix
Cyril Roelandt <tipecaml@gmail.com> skribis:
> * gnu/packages/libapr.scm: New file.
> * gnu/packages/patches/libapr-skip-getservbyname-test.patch: New file
> * Makefile.am: Add them
> * gnu/packages/libapr: new variable.
Applied both, thanks!
Ludo’.
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 3/4] Add SQLite.
2013-01-25 19:42 ` [PATCH 3/4] Add SQLite Cyril Roelandt
@ 2013-01-25 20:38 ` Ludovic Courtès
2013-01-26 20:01 ` Cyril Roelandt
0 siblings, 1 reply; 13+ messages in thread
From: Ludovic Courtès @ 2013-01-25 20:38 UTC (permalink / raw)
To: Cyril Roelandt; +Cc: bug-guix
Cyril Roelandt <tipecaml@gmail.com> skribis:
> * gnu/packages/sqlite.scm: New file.
> * Makefile.am (MODULES): Add it.
Applied, thanks.
> + (uri (string-append
> + "http://downloads.sourceforge.net/project/sqlite.mirror/SQLite%20"
> + version "/sqlite-autoconf-3071502.tar.gz"))
I changed that to use mirror://sourceforge here. This is actually even
better than using sqlite.org.
Ludo’.
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 4/4] Add Subversion.
2013-01-25 19:42 ` [PATCH 4/4] Add Subversion Cyril Roelandt
@ 2013-01-25 20:54 ` Ludovic Courtès
0 siblings, 0 replies; 13+ messages in thread
From: Ludovic Courtès @ 2013-01-25 20:54 UTC (permalink / raw)
To: Cyril Roelandt; +Cc: bug-guix
Cyril Roelandt <tipecaml@gmail.com> skribis:
> * gnu/packages/subversion.scm: New file.
> * Makefile.am (MODULES): Add it.
Applied.
> + #:use-module (guix licenses)
Here I added #:select to avoid the name clash for ‘zlib’.
> + (uri (string-append
> + "http://mirrors.ircam.fr/pub/apache/subversion/subversion-"
> + version ".tar.bz2"))
In commit 47f9db4, I added a list of Apache mirrors, and then cc957c3
changes those packages to use mirror://apache instead.
Thanks!
Ludo’.
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 3/4] Add SQLite.
2013-01-25 20:38 ` Ludovic Courtès
@ 2013-01-26 20:01 ` Cyril Roelandt
2013-01-26 21:14 ` Ludovic Courtès
0 siblings, 1 reply; 13+ messages in thread
From: Cyril Roelandt @ 2013-01-26 20:01 UTC (permalink / raw)
To: Ludovic Courtès; +Cc: bug-guix
On 01/25/2013 09:38 PM, Ludovic Courtès wrote:
> Cyril Roelandt<tipecaml@gmail.com> skribis:
>
>> * gnu/packages/sqlite.scm: New file.
>> * Makefile.am (MODULES): Add it.
>
> Applied, thanks.
>
>> + (uri (string-append
>> + "http://downloads.sourceforge.net/project/sqlite.mirror/SQLite%20"
>> + version "/sqlite-autoconf-3071502.tar.gz"))
>
> I changed that to use mirror://sourceforge here. This is actually even
> better than using sqlite.org.
>
Should we remove the TODO item, then ?
";;TODO: Download from sqlite.org once this bug :
;; http://lists.gnu.org/archive/html/bug-guile/2013-01/msg00027.html
;; has been fixed."
Cyril.
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 3/4] Add SQLite.
2013-01-26 20:01 ` Cyril Roelandt
@ 2013-01-26 21:14 ` Ludovic Courtès
0 siblings, 0 replies; 13+ messages in thread
From: Ludovic Courtès @ 2013-01-26 21:14 UTC (permalink / raw)
To: Cyril Roelandt; +Cc: bug-guix
Cyril Roelandt <tipecaml@gmail.com> skribis:
> On 01/25/2013 09:38 PM, Ludovic Courtès wrote:
>> Cyril Roelandt<tipecaml@gmail.com> skribis:
>>
>>> * gnu/packages/sqlite.scm: New file.
>>> * Makefile.am (MODULES): Add it.
>>
>> Applied, thanks.
>>
>>> + (uri (string-append
>>> + "http://downloads.sourceforge.net/project/sqlite.mirror/SQLite%20"
>>> + version "/sqlite-autoconf-3071502.tar.gz"))
>>
>> I changed that to use mirror://sourceforge here. This is actually even
>> better than using sqlite.org.
>>
>
> Should we remove the TODO item, then ?
>
> ";;TODO: Download from sqlite.org once this bug :
> ;; http://lists.gnu.org/archive/html/bug-guile/2013-01/msg00027.html
> ;; has been fixed."
Well, we can add sqlite.org as an alternate address when it’s usable, so no.
Ludo’.
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 2/4] Add libaprutil.
2013-01-25 19:42 ` [PATCH 2/4] Add libaprutil Cyril Roelandt
@ 2013-07-18 19:34 ` Andreas Enge
2013-07-18 22:01 ` Ludovic Courtès
0 siblings, 1 reply; 13+ messages in thread
From: Andreas Enge @ 2013-07-18 19:34 UTC (permalink / raw)
To: guix-devel
Am Freitag, 25. Januar 2013 schrieb Cyril Roelandt:
> * gnu/packages/libapr: new variable.
> gnu/packages/libapr.scm | 33 +++++++++++++++++++++++++++++++++
> +(define-public libaprutil
While trying to update subversion, I come across libapr.scm. Unlike Debian,
we normally do not add "lib" in front of the name for a library package.
For instance, we use "cairo" instead of "libcairo". So I would suggest to
rename the file to apr.scm, and the package libapr to apr.
I am not sure for libaprutil, however, for which the official name is APR-
util. Shall we use apr-util or aprutil to avoid the dash?
Andreas
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 2/4] Add libaprutil.
2013-07-18 19:34 ` Andreas Enge
@ 2013-07-18 22:01 ` Ludovic Courtès
2013-08-05 13:33 ` Andreas Enge
0 siblings, 1 reply; 13+ messages in thread
From: Ludovic Courtès @ 2013-07-18 22:01 UTC (permalink / raw)
To: Andreas Enge; +Cc: guix-devel
Andreas Enge <andreas@enge.fr> skribis:
> Am Freitag, 25. Januar 2013 schrieb Cyril Roelandt:
>> * gnu/packages/libapr: new variable.
>> gnu/packages/libapr.scm | 33 +++++++++++++++++++++++++++++++++
>> +(define-public libaprutil
>
> While trying to update subversion, I come across libapr.scm. Unlike Debian,
> we normally do not add "lib" in front of the name for a library package.
> For instance, we use "cairo" instead of "libcairo". So I would suggest to
> rename the file to apr.scm, and the package libapr to apr.
+1
> I am not sure for libaprutil, however, for which the official name is APR-
> util. Shall we use apr-util or aprutil to avoid the dash?
The general naming algorithm should be: (string-downcase upstream-name).
In this case, that gives ‘apr-util’.
Ludo’.
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 2/4] Add libaprutil.
2013-07-18 22:01 ` Ludovic Courtès
@ 2013-08-05 13:33 ` Andreas Enge
0 siblings, 0 replies; 13+ messages in thread
From: Andreas Enge @ 2013-08-05 13:33 UTC (permalink / raw)
To: Ludovic Courtès; +Cc: guix-devel
Am Freitag, 19. Juli 2013 schrieb Ludovic Courtès:
> Andreas Enge <andreas@enge.fr> skribis:
> > While trying to update subversion, I come across libapr.scm. Unlike
> > Debian, we normally do not add "lib" in front of the name for a
> > library package. For instance, we use "cairo" instead of "libcairo".
> > So I would suggest to rename the file to apr.scm, and the package
> > libapr to apr.
>
> +1
>
> > I am not sure for libaprutil, however, for which the official name is
> > APR- util. Shall we use apr-util or aprutil to avoid the dash?
> In this case, that gives ‘apr-util’.
Done in commit 2b24faa295972e839d0ec540375eb74955264feb.
Andreas
^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2013-08-05 13:33 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-25 19:42 [PATCH 0/4] Add Subversion Cyril Roelandt
2013-01-25 19:42 ` [PATCH 1/4] Add lipabr Cyril Roelandt
2013-01-25 20:19 ` Ludovic Courtès
2013-01-25 19:42 ` [PATCH 2/4] Add libaprutil Cyril Roelandt
2013-07-18 19:34 ` Andreas Enge
2013-07-18 22:01 ` Ludovic Courtès
2013-08-05 13:33 ` Andreas Enge
2013-01-25 19:42 ` [PATCH 3/4] Add SQLite Cyril Roelandt
2013-01-25 20:38 ` Ludovic Courtès
2013-01-26 20:01 ` Cyril Roelandt
2013-01-26 21:14 ` Ludovic Courtès
2013-01-25 19:42 ` [PATCH 4/4] Add Subversion Cyril Roelandt
2013-01-25 20:54 ` Ludovic Courtès
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.