java: remove pushed packages

Julien LepillerTue Oct 03 22:19:41+0200 2017

c08f55c

java: remove pushed packages

more/packages/java.scm

12121212
    (native-inputs
12131213
     `(("junit" ,java-junit)))
12141214
    (home-page "https://github.com/jboss-javassist/javassist")
1215-
    (synopsis "")
1216-
    (description "")
1215+
    (synopsis "Java bytecode engineering toolkit")
1216+
    (description "Javassist (JAVA programming ASSISTant) makes Java bytecode
1217+
manipulation simple.  It is a class library for editing bytecodes in Java; it
1218+
enables Java programs to define a new class at runtime and to modify a class
1219+
file when the JVM loads it.")
12171220
    (license (list license:gpl2 license:cddl1.0)))); either gpl2 only or cddl.
12181221
12191222
(define-public java-jboss-annotations-api-spec

21522155
     `(("junit" ,java-junit)
21532156
       ("hamcrest" ,java-hamcrest-core)))))
21542157
2155-
(define java-asm-old
2156-
  (package
2157-
    (inherit java-asm)
2158-
    (version "3.3.1")
2159-
    (source (origin
2160-
              (method url-fetch)
2161-
              (uri (string-append "http://download.forge.ow2.org/asm/asm-"
2162-
                                  version ".tar.gz"))
2163-
              (sha256
2164-
               (base32
2165-
                "1xcp06wbqqq4jm93pafjw5jc08vy30qiw9s7kff9gmw23ka279b9"))))))
2166-
2167-
(define-public java-microemulator
2168-
  (package
2169-
    (name "java-microemulator")
2170-
    (version "2.0.4")
2171-
    (source (origin
2172-
              (method url-fetch)
2173-
              (uri (string-append "mirror://sourceforge/microemulator/microemulator/"
2174-
                                  version "/microemulator-" version ".zip"))
2175-
              (sha256
2176-
               (base32
2177-
                "0x9a4xqw6747c130y2znfwg945jgpjnd4bzj5gdamxmi7848dslb"))))
2178-
    (build-system ant-build-system)
2179-
    (arguments
2180-
     `(#:jar-name "microemulator.jar"
2181-
       #:source-dir "src"
2182-
       #:tests? #f; no tests
2183-
       #:phases
2184-
       (modify-phases %standard-phases
2185-
         (add-before 'configure 'unpack-jar
2186-
           (lambda _
2187-
             (mkdir-p "src")
2188-
             (with-directory-excursion "src"
2189-
               (zero? (system* "jar" "xf" "../microemulator-sources.jar")))))
2190-
         (add-before 'configure 'remove-old-dep
2191-
           (lambda _
2192-
             ;; requires netscape.javascript for which I can't find a free implementation
2193-
             (delete-file "src/org/microemu/applet/CookieRecordStoreManager.java")
2194-
             ;; requires an old version of swt
2195-
             (delete-file "src/org/microemu/app/Swt.java"))))))
2196-
    (inputs
2197-
     `(("java-swt" ,java-swt)
2198-
       ("asm" ,java-asm-old)))
2199-
    (native-inputs
2200-
     `(("unzip" ,unzip)))
2201-
    (home-page "https://sourceforge.net/projects/microemulator/")
2202-
    (synopsis "")
2203-
    (description "")
2204-
    (license license:asl2.0)))
2205-
2206-
(define-public java-osgi-cmpn
2207-
  (package
2208-
    (name "java-osgi-cmpn")
2209-
    (version "6.0.0")
2210-
    (source (origin
2211-
              (method url-fetch)
2212-
              (uri (string-append "http://central.maven.org/maven2/"
2213-
                                  "org/osgi/osgi.cmpn/" version "/osgi.cmpn-"
2214-
                                  version "-sources.jar"))
2215-
              (sha256
2216-
               (base32
2217-
                "1lmb6xyrmkqdhv1kayf0514rlwq6ypvs4m44ibrck3snp8241wys"))))
2218-
    (build-system ant-build-system)
2219-
    (arguments
2220-
     `(#:jar-name "osgi-cmpn.jar"
2221-
       #:tests? #f)); no tests
2222-
    (inputs
2223-
     `(("annotation" ,java-osgi-annotation)
2224-
       ("core" ,java-osgi-core)
2225-
       ("java-datanucleus-javax-persistence" ,java-datanucleus-javax-persistence)
2226-
       ("microemulator" ,java-microemulator)
2227-
       ("tomcat" ,java-tomcat)))
2228-
    (home-page "http://www.osgi.org")
2229-
    (synopsis "Compendium specification module of OSGi framework")
2230-
    (description
2231-
      "OSGi, for Open Services Gateway initiative framework, is a module system
2232-
and service platform for the Java programming language.  This package contains
2233-
the compendium specification module, providing interfaces and classes for use
2234-
in compiling bundles.")
2235-
    (license license:asl2.0)))
2236-
2237-
(define-public java-osgi-service-component-annotations
2238-
  (package
2239-
    (name "java-osgi-service-component-annotations")
2240-
    (version "1.3.0")
2241-
    (source (origin
2242-
              (method url-fetch)
2243-
              (uri (string-append "http://central.maven.org/maven2/org/osgi/"
2244-
                                  "org.osgi.service.component.annotations/"
2245-
                                  version "/org.osgi.service.component.annotations-"
2246-
                                  version "-sources.jar"))
2247-
              (sha256
2248-
               (base32
2249-
                "15rq9cmp4fpn74q44m4j35qsqmjf5lx3hcrk6pzvbhc08igic2f0"))))
2250-
    (build-system ant-build-system)
2251-
    (arguments
2252-
     `(#:jar-name "osgi-service-component-annotations.jar"
2253-
       #:tests? #f)); no tests
2254-
    (inputs
2255-
     `(("annotation" ,java-osgi-annotation)))
2256-
    (home-page "http://www.osgi.org")
2257-
    (synopsis "Support annotations for osgi-service-component")
2258-
    (description
2259-
      "OSGi, for Open Services Gateway initiative framework, is a module system
2260-
and service platform for the Java programming language.  This package contains
2261-
the support annotations for osgi-service-component.")
2262-
    (license license:asl2.0)))
2263-
2264-
(define-public java-osgi-dto
2265-
  (package
2266-
    (name "java-osgi-dto")
2267-
    (version "1.0.0")
2268-
    (source (origin
2269-
              (method url-fetch)
2270-
              (uri (string-append "http://central.maven.org/maven2/org/osgi/"
2271-
                                  "org.osgi.dto/" version "/org.osgi.dto-"
2272-
                                  version "-sources.jar"))
2273-
              (sha256
2274-
               (base32
2275-
                "0f4bqjzadn0hwk6sd3h5gvbyfp3yci1s6r0v770cc15p0pg627yr"))))
2276-
    (build-system ant-build-system)
2277-
    (arguments
2278-
     `(#:jar-name "osgi-resource.jar"
2279-
       #:tests? #f)); no tests
2280-
    (inputs
2281-
     `(("annotation" ,java-osgi-annotation)))
2282-
    (home-page "http://www.osgi.org")
2283-
    (synopsis "")
2284-
    (description "")
2285-
    (license license:asl2.0)))
2286-
2287-
(define-public java-osgi-resource
2288-
  (package
2289-
    (name "java-osgi-resource")
2290-
    (version "1.0.0")
2291-
    (source (origin
2292-
              (method url-fetch)
2293-
              (uri (string-append "http://central.maven.org/maven2/org/osgi/"
2294-
                                  "org.osgi.resource/"
2295-
                                  version "/org.osgi.resource-"
2296-
                                  version "-sources.jar"))
2297-
              (sha256
2298-
               (base32
2299-
                "0hi0fsc5v99q22bd7lrkvpz1y0ds4w9arjldpwsrcpqvz2js7q2d"))))
2300-
    (build-system ant-build-system)
2301-
    (arguments
2302-
     `(#:jar-name "osgi-resource.jar"
2303-
       #:tests? #f)); no tests
2304-
    (inputs
2305-
     `(("annotation" ,java-osgi-annotation)
2306-
       ("dto" ,java-osgi-dto)))
2307-
    (home-page "http://www.osgi.org")
2308-
    (synopsis "")
2309-
    (description "")
2310-
    (license license:asl2.0)))
2311-
2312-
(define-public java-osgi-namespace-contract
2313-
  (package
2314-
    (name "java-osgi-namespace-contract")
2315-
    (version "1.0.0")
2316-
    (source (origin
2317-
              (method url-fetch)
2318-
              (uri (string-append "http://central.maven.org/maven2/org/osgi/"
2319-
                                  "org.osgi.namespace.contract/"
2320-
                                  version "/org.osgi.namespace.contract-"
2321-
                                  version "-sources.jar"))
2322-
              (sha256
2323-
               (base32
2324-
                "1iz4f2i0fvqrlq90ki9nfzcfpvy2av434ri25bglywqssx8mmp36"))))
2325-
    (build-system ant-build-system)
2326-
    (inputs
2327-
     `(("resource" ,java-osgi-resource)
2328-
       ("annotation" ,java-osgi-annotation)))
2329-
    (arguments
2330-
     `(#:jar-name "osgi-namespace-contract.jar"
2331-
       #:tests? #f)); no tests
2332-
    (home-page "http://www.osgi.org")
2333-
    (synopsis "")
2334-
    (description "")
2335-
    (license license:asl2.0)))
2336-
2337-
(define-public java-osgi-namespace-extender
2338-
  (package
2339-
    (name "java-osgi-namespace-extender")
2340-
    (version "1.0.1")
2341-
    (source (origin
2342-
              (method url-fetch)
2343-
              (uri (string-append "http://central.maven.org/maven2/org/osgi/"
2344-
                                  "org.osgi.namespace.extender/"
2345-
                                  version "/org.osgi.namespace.extender-"
2346-
                                  version "-sources.jar"))
2347-
              (sha256
2348-
               (base32
2349-
                "0jgqiak2i05qv6j3gd33xlaifzzc0ylxxk376v2x0apfg3vvixmz"))))
2350-
    (build-system ant-build-system)
2351-
    (inputs
2352-
     `(("resource" ,java-osgi-resource)
2353-
       ("annotation" ,java-osgi-annotation)))
2354-
    (arguments
2355-
     `(#:jar-name "osgi-namespace-contract.jar"
2356-
       #:tests? #f)); no tests
2357-
    (home-page "http://www.osgi.org")
2358-
    (synopsis "")
2359-
    (description "")
2360-
    (license license:asl2.0)))
2361-
2362-
(define-public java-osgi-namespace-service
2363-
  (package
2364-
    (name "java-osgi-namespace-service")
2365-
    (version "1.0.0")
2366-
    (source (origin
2367-
              (method url-fetch)
2368-
              (uri (string-append "http://central.maven.org/maven2/org/osgi/"
2369-
                                  "org.osgi.namespace.service/"
2370-
                                  version "/org.osgi.namespace.service-"
2371-
                                  version "-sources.jar"))
2372-
              (sha256
2373-
               (base32
2374-
                "0qmw8n2449nkmm56d1znz9zhazb6ya3vsimd5bf5jg23zzhgl8c8"))))
2375-
    (build-system ant-build-system)
2376-
    (inputs
2377-
     `(("resource" ,java-osgi-resource)
2378-
       ("annotation" ,java-osgi-annotation)))
2379-
    (arguments
2380-
     `(#:jar-name "osgi-namespace-contract.jar"
2381-
       #:tests? #f)); no tests
2382-
    (home-page "http://www.osgi.org")
2383-
    (synopsis "")
2384-
    (description "")
2385-
    (license license:asl2.0)))
2386-
2387-
(define-public java-osgi-util-function
2388-
  (package
2389-
    (name "java-osgi-util-function")
2390-
    (version "1.0.0")
2391-
    (source (origin
2392-
              (method url-fetch)
2393-
              (uri (string-append "http://central.maven.org/maven2/org/osgi/"
2394-
                                  "org.osgi.util.function/"
2395-
                                  version "/org.osgi.util.function-"
2396-
                                  version "-sources.jar"))
2397-
              (sha256
2398-
               (base32
2399-
                "04l7j3hwmmj28w23m7paca0afzncs42j2mdr3liqq8kvp548sc6x"))))
2400-
    (build-system ant-build-system)
2401-
    (arguments
2402-
     `(#:jar-name "osgi-util-function.jar"
2403-
       #:tests? #f)); no tests
2404-
    (inputs
2405-
     `(("annotation" ,java-osgi-annotation)))
2406-
    (home-page "http://www.osgi.org")
2407-
    (synopsis "")
2408-
    (description "")
2409-
    (license license:asl2.0)))
2410-
2411-
(define-public java-osgi-util-promise
2412-
  (package
2413-
    (name "java-osgi-util-promise")
2414-
    (version "1.0.0")
2415-
    (source (origin
2416-
              (method url-fetch)
2417-
              (uri (string-append "http://central.maven.org/maven2/org/osgi/"
2418-
                                  "org.osgi.util.promise/"
2419-
                                  version "/org.osgi.util.promise-"
2420-
                                  version "-sources.jar"))
2421-
              (sha256
2422-
               (base32
2423-
                "0y34dwiflg1c4ahvkswpf9z02xph2sr9fm04ia5493x3lshpw22c"))))
2424-
    (build-system ant-build-system)
2425-
    (arguments
2426-
     `(#:jar-name "osgi-util-promise.jar"
2427-
       #:tests? #f)); no tests
2428-
    (inputs
2429-
     `(("annotation" ,java-osgi-annotation)
2430-
       ("function" ,java-osgi-util-function)))
2431-
    (home-page "http://www.osgi.org")
2432-
    (synopsis "")
2433-
    (description "")
2434-
    (license license:asl2.0)))
2435-
2436-
(define-public java-osgi-service-metatype-annotations
2437-
  (package
2438-
    (name "java-osgi-service-metatype-annotations")
2439-
    (version "1.3.0")
2440-
    (source (origin
2441-
              (method url-fetch)
2442-
              (uri (string-append "http://central.maven.org/maven2/org/osgi/"
2443-
                                  "org.osgi.service.metatype.annotations/"
2444-
                                  version "/org.osgi.service.metatype.annotations-"
2445-
                                  version "-sources.jar"))
2446-
              (sha256
2447-
               (base32
2448-
                "12rwm3349wk80vm88rcdgs4435m4jxkpkj5mrx326skkz2c6hyw6"))))
2449-
    (build-system ant-build-system)
2450-
    (arguments
2451-
     `(#:jar-name "osgi-service-metatype-annotations.jar"
2452-
       #:tests? #f)); no tests
2453-
    (inputs
2454-
     `(("annotation" ,java-osgi-annotation)))
2455-
    (home-page "http://www.osgi.org")
2456-
    (synopsis "Support annotations for metatype")
2457-
    (description
2458-
      "OSGi, for Open Services Gateway initiative framework, is a module system
2459-
and service platform for the Java programming language.  This package contains
2460-
the support annotations for metatype.")
2461-
    (license license:asl2.0)))
2462-
2463-
(define-public java-osgi-service-repository
2464-
  (package
2465-
    (name "java-osgi-service-repository")
2466-
    (version "1.1.0")
2467-
    (source (origin
2468-
              (method url-fetch)
2469-
              (uri (string-append "http://central.maven.org/maven2/org/osgi/"
2470-
                                  "org.osgi.service.repository/"
2471-
                                  version "/org.osgi.service.repository-"
2472-
                                  version "-sources.jar"))
2473-
              (sha256
2474-
               (base32
2475-
                "1k41mhg7b58pd8nsghr2qwcjrxdnf1p9spsw9v11k4257g6rl06n"))))
2476-
    (build-system ant-build-system)
2477-
    (arguments
2478-
     `(#:jar-name "osgi-service-repository.jar"
2479-
       #:tests? #f)); no tests
2480-
    (inputs
2481-
     `(("annotation" ,java-osgi-annotation)
2482-
       ("promise" ,java-osgi-util-promise)
2483-
       ("resource" ,java-osgi-resource)))
2484-
    (home-page "http://www.osgi.org")
2485-
    (synopsis "service-repository")
2486-
    (description
2487-
      "OSGi, for Open Services Gateway initiative framework, is a module system
2488-
and service platform for the Java programming language.  This package contains
2489-
the service-repository.")
2490-
    (license license:asl2.0)))
2491-
2492-
(define-public java-osgi-framework
2493-
  (package
2494-
    (name "java-osgi-framework")
2495-
    (version "1.8.0")
2496-
    (source (origin
2497-
              (method url-fetch)
2498-
              (uri (string-append "http://central.maven.org/maven2/org/osgi/"
2499-
                                  "org.osgi.framework/" version "/org.osgi.framework-"
2500-
                                  version "-sources.jar"))
2501-
              (sha256
2502-
               (base32
2503-
                "1lwp2zfad3rybcc6q9bwz8xsgkc92ypzy5p6x54387f1qj65m73s"))))
2504-
    (build-system ant-build-system)
2505-
    (arguments
2506-
     `(#:jar-name "osgi-framework.jar"
2507-
       #:tests? #f)); no tests
2508-
    (inputs
2509-
     `(("annotation" ,java-osgi-annotation)
2510-
       ("resource" ,java-osgi-resource)
2511-
       ("dto" ,java-osgi-dto)))
2512-
    (home-page "http://www.osgi.org")
2513-
    (synopsis "OSGi framework")
2514-
    (description
2515-
      "OSGi, for Open Services Gateway initiative framework, is a module system
2516-
and service platform for the Java programming language.")
2517-
    (license license:asl2.0)))
2518-
2519-
(define-public java-osgi-service-log
2520-
  (package
2521-
    (name "java-osgi-service-log")
2522-
    (version "1.3.0")
2523-
    (source (origin
2524-
              (method url-fetch)
2525-
              (uri (string-append "http://central.maven.org/maven2/org/osgi/"
2526-
                                  "org.osgi.service.log/"
2527-
                                  version "/org.osgi.service.log-"
2528-
                                  version "-sources.jar"))
2529-
              (sha256
2530-
               (base32
2531-
                "1029j30dzcwializzca0j3fkhwwz08kmmsha5agw1iccscimj6r0"))))
2532-
    (build-system ant-build-system)
2533-
    (arguments
2534-
     `(#:jar-name "osgi-service-log.jar"
2535-
       #:tests? #f)); no tests
2536-
    (inputs
2537-
     `(("java-osgi-framework" ,java-osgi-framework)))
2538-
    (home-page "http://www.osgi.org")
2539-
    (synopsis "service-log")
2540-
    (description
2541-
      "OSGi, for Open Services Gateway initiative framework, is a module system
2542-
and service platform for the Java programming language.  This package contains
2543-
the service-log.")
2544-
    (license license:asl2.0)))
2545-
2546-
(define-public java-osgi-service-jdbc
2547-
  (package
2548-
    (name "java-osgi-service-jdbc")
2549-
    (version "1.0.0")
2550-
    (source (origin
2551-
              (method url-fetch)
2552-
              (uri (string-append "http://central.maven.org/maven2/org/osgi/"
2553-
                                  "org.osgi.service.jdbc/"
2554-
                                  version "/org.osgi.service.jdbc-"
2555-
                                  version "-sources.jar"))
2556-
              (sha256
2557-
               (base32
2558-
                "11iln5v7bk469cgb9ddkrz9sa95b3733gqgaqw9xf5g6wq652yjz"))))
2559-
    (build-system ant-build-system)
2560-
    (arguments
2561-
     `(#:jar-name "osgi-service-jdbc.jar"
2562-
       #:tests? #f)); no tests
2563-
    (home-page "http://www.osgi.org")
2564-
    (synopsis "")
2565-
    (description
2566-
      "")
2567-
    (license license:asl2.0)))
2568-
2569-
(define-public java-osgi-service-resolver
2570-
  (package
2571-
    (name "java-osgi-service-resolver")
2572-
    (version "1.0.1")
2573-
    (source (origin
2574-
              (method url-fetch)
2575-
              (uri (string-append "http://central.maven.org/maven2/org/osgi/"
2576-
                                  "org.osgi.service.resolver/"
2577-
                                  version "/org.osgi.service.resolver-"
2578-
                                  version "-sources.jar"))
2579-
              (sha256
2580-
               (base32
2581-
                "1dzqn1ryfi2rq4zwsgp44bmj2wlfydjg1qbxw2b0z4xdjjy55vxd"))))
2582-
    (build-system ant-build-system)
2583-
    (arguments
2584-
     `(#:jar-name "osgi-service-resolver.jar"
2585-
       #:tests? #f)); no tests
2586-
    (inputs
2587-
     `(("annotation" ,java-osgi-annotation)
2588-
       ("resource" ,java-osgi-resource)))
2589-
    (home-page "http://www.osgi.org")
2590-
    (synopsis "Support annotations for osgi-service-component")
2591-
    (description "")
2592-
    (license license:asl2.0)))
2593-
2594-
(define-public java-osgi-util-tracker
2595-
  (package
2596-
    (name "java-osgi-util-tracker")
2597-
    (version "1.5.1")
2598-
    (source (origin
2599-
              (method url-fetch)
2600-
              (uri (string-append "http://central.maven.org/maven2/org/osgi/"
2601-
                                  "org.osgi.util.tracker/"
2602-
                                  version "/org.osgi.util.tracker-"
2603-
                                  version "-sources.jar"))
2604-
              (sha256
2605-
               (base32
2606-
                "0c4fh9vxwzsx59r8dygda0gq2gx3z5vfhc3jsphlqwf5w0h403lz"))))
2607-
    (build-system ant-build-system)
2608-
    (arguments
2609-
     `(#:jar-name "osgi-util-tracker.jar"
2610-
       #:tests? #f)); no tests
2611-
    (inputs
2612-
     `(("framework" ,java-osgi-framework)
2613-
       ("annotation" ,java-osgi-annotation)))
2614-
    (home-page "http://www.osgi.org")
2615-
    (synopsis "")
2616-
    (description
2617-
      "")
2618-
    (license license:asl2.0)))
2619-
2620-
(define-public java-osgi-service-cm
2621-
  (package
2622-
    (name "java-osgi-service-cm")
2623-
    (version "1.5.0")
2624-
    (source (origin
2625-
              (method url-fetch)
2626-
              (uri (string-append "http://central.maven.org/maven2/org/osgi/"
2627-
                                  "org.osgi.service.cm/"
2628-
                                  version "/org.osgi.service.cm-"
2629-
                                  version "-sources.jar"))
2630-
              (sha256
2631-
               (base32
2632-
                "1z8kap48y3xi0ggj8v6czglfnpnd94mmismgi2wbqhj1nl5fzbp6"))))
2633-
    (build-system ant-build-system)
2634-
    (arguments
2635-
     `(#:jar-name "osgi-service-cm.jar"
2636-
       #:tests? #f)); no tests
2637-
    (inputs
2638-
     `(("framework" ,java-osgi-framework)
2639-
       ("annotation" ,java-osgi-annotation)))
2640-
    (home-page "http://www.osgi.org")
2641-
    (synopsis "")
2642-
    (description
2643-
      "")
2644-
    (license license:asl2.0)))
2645-
2646-
(define-public java-osgi-service-packageadmin
2647-
  (package
2648-
    (name "java-osgi-service-packageadmin")
2649-
    (version "1.2.0")
2650-
    (source (origin
2651-
              (method url-fetch)
2652-
              (uri (string-append "http://central.maven.org/maven2/org/osgi/"
2653-
                                  "org.osgi.service.packageadmin/"
2654-
                                  version "/org.osgi.service.packageadmin-"
2655-
                                  version "-sources.jar"))
2656-
              (sha256
2657-
               (base32
2658-
                "041mpxzi7g36wmcily6y4ccn3jx15akpdy8gmhyb7m98x7qfvn52"))))
2659-
    (build-system ant-build-system)
2660-
    (arguments
2661-
     `(#:jar-name "osgi-service-packageadmin.jar"
2662-
       #:tests? #f)); no tests
2663-
    (inputs
2664-
     `(("framework" ,java-osgi-framework)))
2665-
    (home-page "http://www.osgi.org")
2666-
    (synopsis "")
2667-
    (description
2668-
      "OSGi, for Open Services Gateway initiative framework, is a module system
2669-
and service platform for the Java programming language.  This package contains
2670-
the packageadmin service.")
2671-
    (license license:asl2.0)))
2672-
26732158
(define-public java-aqute-bndlib
26742159
  (package
26752160
    (name "java-aqute-bndlib")